psl-2.1.25/.cargo_vcs_info.json0000644000000001360000000000100117210ustar { "git": { "sha1": "d09ba368f6a8efd5cb784fa870fa8f2c693d5acd" }, "path_in_vcs": "" }psl-2.1.25/.github/workflows/ci.yml000064400000000000000000000016071046102023000152300ustar 00000000000000name: CI on: [push, pull_request] jobs: check: name: Check on v1.41 runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v4 - name: Install stable toolchain uses: dtolnay/rust-toolchain@stable with: toolchain: 1.41.1 - name: Run cargo check run: cargo check --all-features test: name: Test on stable runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v4 - name: Install stable toolchain uses: dtolnay/rust-toolchain@stable with: toolchain: stable components: rustfmt, clippy - name: Run cargo fmt run: cargo fmt --all -- --check - name: Run cargo clippy run: cargo clippy --all-features -- -D warnings - name: Run cargo test run: cargo test --all-features psl-2.1.25/.github/workflows/update.yaml000064400000000000000000000033151046102023000162560ustar 00000000000000name: Publish on: workflow_dispatch: push: branches: - main schedule: - cron: '0 0 * * *' # midnight UTC env: CARGO_TERM_COLOR: always jobs: publish: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable with: toolchain: stable components: rustfmt - name: Install deps run: | sudo apt update sudo apt install --yes gcc pkg-config libssl-dev - name: Install cargo play run: cargo install --locked cargo-play - name: Install cargo make run: cargo install --locked cargo-make - name: Download the list and run tests run: cargo make test - name: Publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }} GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash run: | if ! git diff --exit-code --quiet data/rules.txt; then cargo doc --all-features git config --local user.email "actions@users.noreply.github.com" git config --local user.name "github-actions[bot]" git remote add upstream https://rushmorem:${{ secrets.GITHUB_TOKEN }}@github.com/addr-rs/psl.git git add data/rules.txt src/list.rs git commit -m 'update the list' cargo install --force --locked --version 0.3.30 release-plz /home/runner/.cargo/bin/release-plz update --no-changelog git add Cargo.toml git commit -m 'bump version' git push upstream main /home/runner/.cargo/bin/release-plz release fi psl-2.1.25/.gitignore000064400000000000000000000000311046102023000124730ustar 00000000000000/target Cargo.lock *.swp psl-2.1.25/Cargo.lock0000644000000376170000000000100077120ustar # This file is automatically @generated by Cargo. # It is not intended for manual editing. version = 3 [[package]] name = "base-x" version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" [[package]] name = "bumpalo" version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" [[package]] name = "cfg-if" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "colored" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" dependencies = [ "lazy_static", "windows-sys", ] [[package]] name = "const_fn" version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" [[package]] name = "crossbeam-deque" version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" dependencies = [ "crossbeam-epoch", "crossbeam-utils", ] [[package]] name = "crossbeam-epoch" version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "darling" version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858" dependencies = [ "darling_core", "darling_macro", ] [[package]] name = "darling_core" version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", "strsim", "syn 1.0.109", ] [[package]] name = "darling_macro" version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72" dependencies = [ "darling_core", "quote", "syn 1.0.109", ] [[package]] name = "derive-new" version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535" dependencies = [ "proc-macro2", "quote", "syn 1.0.109", ] [[package]] name = "derive_builder" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0" dependencies = [ "darling", "derive_builder_core", "proc-macro2", "quote", "syn 1.0.109", ] [[package]] name = "derive_builder_core" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef" dependencies = [ "darling", "proc-macro2", "quote", "syn 1.0.109", ] [[package]] name = "discard" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" [[package]] name = "either" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" [[package]] name = "fnv" version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "ident_case" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "itoa" version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "lazy_static" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" version = "0.2.153" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "log" version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "once_cell" version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "proc-macro-hack" version = "0.5.20+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" version = "1.0.78" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" dependencies = [ "unicode-ident", ] [[package]] name = "psl" version = "2.1.25" dependencies = [ "psl-types", "rspec", ] [[package]] name = "psl-types" version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "quote" version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" dependencies = [ "proc-macro2", ] [[package]] name = "rayon" version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" dependencies = [ "either", "rayon-core", ] [[package]] name = "rayon-core" version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" dependencies = [ "crossbeam-deque", "crossbeam-utils", ] [[package]] name = "rspec" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89389e7c690310e855df3d9b507985ca0d323e2e766b2fedf369b02671e70e0a" dependencies = [ "colored", "derive-new", "derive_builder", "rayon", "time", ] [[package]] name = "rustc_version" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" dependencies = [ "semver", ] [[package]] name = "ryu" version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" [[package]] name = "semver" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" dependencies = [ "semver-parser", ] [[package]] name = "semver-parser" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" version = "1.0.196" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" version = "1.0.196" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" dependencies = [ "proc-macro2", "quote", "syn 2.0.48", ] [[package]] name = "serde_json" version = "1.0.113" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" dependencies = [ "itoa", "ryu", "serde", ] [[package]] name = "sha1" version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" dependencies = [ "sha1_smol", ] [[package]] name = "sha1_smol" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" [[package]] name = "standback" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" dependencies = [ "version_check", ] [[package]] name = "stdweb" version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" dependencies = [ "discard", "rustc_version", "stdweb-derive", "stdweb-internal-macros", "stdweb-internal-runtime", "wasm-bindgen", ] [[package]] name = "stdweb-derive" version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" dependencies = [ "proc-macro2", "quote", "serde", "serde_derive", "syn 1.0.109", ] [[package]] name = "stdweb-internal-macros" version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" dependencies = [ "base-x", "proc-macro2", "quote", "serde", "serde_derive", "serde_json", "sha1", "syn 1.0.109", ] [[package]] name = "stdweb-internal-runtime" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" [[package]] name = "strsim" version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" [[package]] name = "syn" version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] [[package]] name = "syn" version = "2.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] [[package]] name = "time" version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" dependencies = [ "const_fn", "libc", "standback", "stdweb", "time-macros", "version_check", "winapi", ] [[package]] name = "time-macros" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" dependencies = [ "proc-macro-hack", "time-macros-impl", ] [[package]] name = "time-macros-impl" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" dependencies = [ "proc-macro-hack", "proc-macro2", "quote", "standback", "syn 1.0.109", ] [[package]] name = "unicode-ident" version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "version_check" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "wasm-bindgen" version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" dependencies = [ "cfg-if", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", "syn 2.0.48", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-macro" version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" dependencies = [ "quote", "wasm-bindgen-macro-support", ] [[package]] name = "wasm-bindgen-macro-support" version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" dependencies = [ "proc-macro2", "quote", "syn 2.0.48", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" version = "0.2.91" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" [[package]] name = "winapi" version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ "winapi-i686-pc-windows-gnu", "winapi-x86_64-pc-windows-gnu", ] [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows-sys" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ "windows-targets", ] [[package]] name = "windows-targets" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ "windows_aarch64_gnullvm", "windows_aarch64_msvc", "windows_i686_gnu", "windows_i686_msvc", "windows_x86_64_gnu", "windows_x86_64_gnullvm", "windows_x86_64_msvc", ] [[package]] name = "windows_aarch64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_i686_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_x86_64_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" psl-2.1.25/Cargo.toml0000644000000020010000000000100077100ustar # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "psl" version = "2.1.25" authors = ["rushmorem "] exclude = ["/tests"] description = "Extract root domain and suffix from a domain name" documentation = "https://docs.rs/psl" readme = "README.md" keywords = [ "tld", "no_std", "tldextract", "domain", "publicsuffix", ] license = "MIT/Apache-2.0" repository = "https://github.com/addr-rs/psl" [dependencies.psl-types] version = "2.0.11" [dev-dependencies.rspec] version = "1.0.0" [features] default = ["helpers"] helpers = [] psl-2.1.25/Cargo.toml.orig000064400000000000000000000010101046102023000133700ustar 00000000000000[package] name = "psl" description = "Extract root domain and suffix from a domain name" version = "2.1.25" license = "MIT/Apache-2.0" repository = "https://github.com/addr-rs/psl" documentation = "https://docs.rs/psl" readme = "README.md" keywords = ["tld", "no_std", "tldextract", "domain", "publicsuffix"] authors = ["rushmorem "] edition = "2018" exclude = ["/tests"] [features] default = ["helpers"] helpers = [ ] [dependencies] psl-types = "2.0.11" [dev-dependencies] rspec = "1.0.0" psl-2.1.25/LICENSE000064400000000000000000000020621046102023000115160ustar 00000000000000MIT License Copyright (c) 2016 Rushmore Mushambi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. psl-2.1.25/Makefile.toml000064400000000000000000000017111046102023000131230ustar 00000000000000[tasks.compile-list] env = { "CARGO_MAKE_RUST_SCRIPT_PROVIDER" = "cargo-play" } script_runner = "@rust" script = ''' //# psl-codegen = "0.9" fn main() { let list = psl_codegen::compile_psl("data/rules.txt"); let module = format!("//! This file is automatically @generated by cargo-make. //! It is not intended for manual editing. #![allow(clippy::all)] // TODO lint this code? {}", list); std::fs::write("src/list.rs", module).unwrap(); } ''' [tasks.format] install_crate = "rustfmt" command = "cargo" args = ["fmt", "--all"] dependencies = ["compile-list"] [tasks.check] command = "cargo" args = ["check", "--all-features"] dependencies = ["format"] [tasks.build] command = "cargo" args = ["build", "--all-features"] dependencies = ["format"] [tasks.clippy] command = "cargo" args = ["clippy", "--all-features"] dependencies = ["format"] [tasks.test] command = "cargo" args = ["test", "--all-features"] dependencies = ["format"] psl-2.1.25/README.md000064400000000000000000000050031046102023000117660ustar 00000000000000# PSL A native Rust library for Mozilla's Public Suffix List [![CI](https://github.com/addr-rs/psl/actions/workflows/ci.yml/badge.svg)](https://github.com/addr-rs/psl/actions/workflows/ci.yml) [![Publish](https://github.com/addr-rs/psl/actions/workflows/update.yaml/badge.svg)](https://github.com/addr-rs/psl/actions/workflows/update.yaml) [![Latest Version](https://img.shields.io/crates/v/psl.svg)](https://crates.io/crates/psl) [![Crates.io downloads](https://img.shields.io/crates/d/psl)](https://crates.io/crates/psl) [![Docs](https://docs.rs/psl/badge.svg)](https://docs.rs/psl) [![Minimum supported Rust version](https://img.shields.io/badge/rustc-1.41+-yellow.svg)](https://www.rust-lang.org) ![Maintenance](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) This library uses Mozilla's [Public Suffix List](https://publicsuffix.org) to reliably determine the suffix of a domain name. It compiles the list down to native Rust code for ultimate speed. This list compilation is done as a separate step by the `Publish` GitHub Action so the crate still compiles very quickly. The `Publish` action automatically checks for updates everyday and pushes an updated crate to crates.io if there were any updates in the upstream domain suffixes. This keeps the crate automatically synchronised with the official list. If you need a dynamic list that can be updated at runtime, though a bit slower, please use the [publicsuffix](https://crates.io/crates/publicsuffix) crate instead (which also has optional support for looking up domain names in any case). ## Setting Up Add this crate to your `Cargo.toml`: ```toml [dependencies] psl = "2" ``` ## Examples ```rust let suffix = psl::suffix(b"www.example.com")?; assert_eq!(suffix, "com"); assert_eq!(suffix.typ(), Some(psl::Type::Icann)); let domain = psl::domain(b"www.example.com")?; assert_eq!(domain, "example.com"); assert_eq!(domain.suffix(), "com"); let domain = psl::domain("www.食狮.中国".as_bytes())?; assert_eq!(domain, "食狮.中国"); assert_eq!(domain.suffix(), "中国"); let domain = psl::domain(b"www.xn--85x722f.xn--55qx5d.cn")?; assert_eq!(domain, "xn--85x722f.xn--55qx5d.cn"); assert_eq!(domain.suffix(), "xn--55qx5d.cn"); let domain = psl::domain(b"a.b.example.uk.com")?; assert_eq!(domain, "example.uk.com"); assert_eq!(domain.suffix(), "uk.com"); let domain = psl::domain(b"_tcp.example.com.")?; assert_eq!(domain, "example.com."); assert_eq!(domain.suffix(), "com."); ``` psl-2.1.25/benches/benches.rs000064400000000000000000000006311046102023000140750ustar 00000000000000#![feature(test)] extern crate test; use psl::{List, Psl}; use test::Bencher; const DOMAIN: &[u8] = b"www.example.com"; #[bench] fn bench_find(b: &mut Bencher) { b.iter(|| List.find(DOMAIN.rsplit(|x| *x == b'.'))); } #[bench] fn bench_suffix(b: &mut Bencher) { b.iter(|| List.suffix(DOMAIN).unwrap()); } #[bench] fn bench_domain(b: &mut Bencher) { b.iter(|| List.domain(DOMAIN).unwrap()); } psl-2.1.25/data/rules.txt000064400000000000000000004151321046102023000133230ustar 00000000000000ac com.ac edu.ac gov.ac net.ac mil.ac org.ac drr.ac ad nom.ad ae co.ae net.ae org.ae sch.ae ac.ae gov.ae mil.ae blogspot.ae aero accident-investigation.aero accident-prevention.aero aerobatic.aero aeroclub.aero aerodrome.aero agents.aero aircraft.aero airline.aero airport.aero air-surveillance.aero airtraffic.aero air-traffic-control.aero ambulance.aero amusement.aero association.aero author.aero ballooning.aero broker.aero caa.aero cargo.aero catering.aero certification.aero championship.aero charter.aero civilaviation.aero club.aero conference.aero consultant.aero consulting.aero control.aero council.aero crew.aero design.aero dgca.aero educator.aero emergency.aero engine.aero engineer.aero entertainment.aero equipment.aero exchange.aero express.aero federation.aero flight.aero fuel.aero gliding.aero government.aero groundhandling.aero group.aero hanggliding.aero homebuilt.aero insurance.aero journal.aero journalist.aero leasing.aero logistics.aero magazine.aero maintenance.aero media.aero microlight.aero modelling.aero navigation.aero parachuting.aero paragliding.aero passenger-association.aero pilot.aero press.aero production.aero recreation.aero repbody.aero res.aero research.aero rotorcraft.aero safety.aero scientist.aero services.aero show.aero skydiving.aero software.aero student.aero trader.aero trading.aero trainer.aero union.aero workinggroup.aero works.aero af gov.af com.af org.af net.af edu.af ag com.ag org.ag net.ag co.ag nom.ag ai off.ai com.ai net.ai org.ai uwu.ai al com.al edu.al gov.al mil.al net.al org.al blogspot.al am co.am com.am commune.am net.am org.am radio.am blogspot.am neko.am nyaa.am ao ed.ao gv.ao og.ao co.ao pb.ao it.ao aq ar bet.ar com.ar coop.ar edu.ar gob.ar gov.ar int.ar mil.ar musica.ar mutual.ar net.ar org.ar senasa.ar tur.ar blogspot.com.ar arpa e164.arpa in-addr.arpa ip6.arpa iris.arpa uri.arpa urn.arpa as gov.as asia cloudns.asia at ac.at co.at gv.at or.at sth.ac.at wien.funkfeuer.at *.futurecms.at *.ex.futurecms.at *.in.futurecms.at futurehosting.at futuremailing.at *.ex.ortsinfo.at *.kunden.ortsinfo.at blogspot.co.at biz.at info.at 123webseite.at priv.at myspreadshop.at 12hp.at 2ix.at 4lima.at lima-city.at au com.au net.au org.au edu.au gov.au asn.au id.au info.au conf.au oz.au act.au nsw.au nt.au qld.au sa.au tas.au vic.au wa.au act.edu.au catholic.edu.au nsw.edu.au nt.edu.au qld.edu.au sa.edu.au tas.edu.au vic.edu.au wa.edu.au qld.gov.au sa.gov.au tas.gov.au vic.gov.au wa.gov.au schools.nsw.edu.au blogspot.com.au mel.cloudlets.com.au myspreadshop.com.au aw com.aw ax be.ax cat.ax es.ax eu.ax gg.ax mc.ax us.ax xy.ax az com.az net.az int.az gov.az org.az edu.az info.az pp.az mil.az name.az pro.az biz.az ba com.ba edu.ba gov.ba mil.ba net.ba org.ba rs.ba blogspot.ba bb biz.bb co.bb com.bb edu.bb gov.bb info.bb net.bb org.bb store.bb tv.bb *.bd be ac.be webhosting.be blogspot.be cloud.interhostsolutions.be ezproxy.kuleuven.be 123website.be myspreadshop.be *.transurl.be bf gov.bf bg a.bg b.bg c.bg d.bg e.bg f.bg g.bg h.bg i.bg j.bg k.bg l.bg m.bg n.bg o.bg p.bg q.bg r.bg s.bg t.bg u.bg v.bg w.bg x.bg y.bg z.bg 0.bg 1.bg 2.bg 3.bg 4.bg 5.bg 6.bg 7.bg 8.bg 9.bg blogspot.bg barsy.bg bh com.bh edu.bh net.bh org.bh gov.bh bi co.bi com.bi edu.bi or.bi org.bi biz activetrail.biz cloudns.biz jozi.biz dyndns.biz for-better.biz for-more.biz for-some.biz for-the.biz selfip.biz webhop.biz orx.biz mmafan.biz myftp.biz no-ip.biz dscloud.biz bj africa.bj agro.bj architectes.bj assur.bj avocats.bj co.bj com.bj eco.bj econo.bj edu.bj info.bj loisirs.bj money.bj net.bj org.bj ote.bj resto.bj restaurant.bj tourism.bj univ.bj blogspot.bj bm com.bm edu.bm gov.bm net.bm org.bm bn com.bn edu.bn gov.bn net.bn org.bn co.bn bo com.bo edu.bo gob.bo int.bo org.bo net.bo mil.bo tv.bo web.bo academia.bo agro.bo arte.bo blog.bo bolivia.bo ciencia.bo cooperativa.bo democracia.bo deporte.bo ecologia.bo economia.bo empresa.bo indigena.bo industria.bo info.bo medicina.bo movimiento.bo musica.bo natural.bo nombre.bo noticias.bo patria.bo politica.bo profesional.bo plurinacional.bo pueblo.bo revista.bo salud.bo tecnologia.bo tksat.bo transporte.bo wiki.bo br 9guacu.br abc.br adm.br adv.br agr.br aju.br am.br anani.br aparecida.br app.br arq.br art.br ato.br b.br barueri.br belem.br bhz.br bib.br bio.br blog.br bmd.br boavista.br bsb.br campinagrande.br campinas.br caxias.br cim.br cng.br cnt.br com.br contagem.br coop.br coz.br cri.br cuiaba.br curitiba.br def.br des.br det.br dev.br ecn.br eco.br edu.br emp.br enf.br eng.br esp.br etc.br eti.br far.br feira.br flog.br floripa.br fm.br fnd.br fortal.br fot.br foz.br fst.br g12.br geo.br ggf.br goiania.br gov.br ac.gov.br al.gov.br am.gov.br ap.gov.br ba.gov.br ce.gov.br df.gov.br es.gov.br go.gov.br ma.gov.br mg.gov.br ms.gov.br mt.gov.br pa.gov.br pb.gov.br pe.gov.br pi.gov.br pr.gov.br rj.gov.br rn.gov.br ro.gov.br rr.gov.br rs.gov.br sc.gov.br se.gov.br sp.gov.br to.gov.br gru.br imb.br ind.br inf.br jab.br jampa.br jdf.br joinville.br jor.br jus.br leg.br lel.br log.br londrina.br macapa.br maceio.br manaus.br maringa.br mat.br med.br mil.br morena.br mp.br mus.br natal.br net.br niteroi.br *.nom.br not.br ntr.br odo.br ong.br org.br osasco.br palmas.br poa.br ppg.br pro.br psc.br psi.br pvh.br qsl.br radio.br rec.br recife.br rep.br ribeirao.br rio.br riobranco.br riopreto.br salvador.br sampa.br santamaria.br santoandre.br saobernardo.br saogonca.br seg.br sjc.br slg.br slz.br sorocaba.br srv.br taxi.br tc.br tec.br teo.br the.br tmp.br trd.br tur.br tv.br udi.br vet.br vix.br vlog.br wiki.br zlg.br blogspot.com.br ac.leg.br al.leg.br am.leg.br ap.leg.br ba.leg.br ce.leg.br df.leg.br es.leg.br go.leg.br ma.leg.br mg.leg.br ms.leg.br mt.leg.br pa.leg.br pb.leg.br pe.leg.br pi.leg.br pr.leg.br rj.leg.br rn.leg.br ro.leg.br rr.leg.br rs.leg.br sc.leg.br se.leg.br sp.leg.br to.leg.br simplesite.com.br bs com.bs net.bs org.bs edu.bs gov.bs we.bs bt com.bt edu.bt gov.bt net.bt org.bt bv bw co.bw org.bw by gov.by mil.by com.by of.by blogspot.com.by mycloud.by mediatech.by bz com.bz net.bz org.bz edu.bz gov.bz za.bz gsj.bz ca ab.ca bc.ca mb.ca nb.ca nf.ca nl.ca ns.ca nt.ca nu.ca on.ca pe.ca qc.ca sk.ca yk.ca gc.ca barsy.ca *.awdev.ca co.ca blogspot.ca no-ip.ca myspreadshop.ca cat cc cloudns.cc ftpaccess.cc game-server.cc myphotos.cc scrapping.cc twmail.cc csx.cc fantasyleague.cc instances.spawn.cc cd gov.cd cf blogspot.cf cg ch square7.ch blogspot.ch alp1.ae.flow.ch appengine.flow.ch linkyard-cloud.ch dnsking.ch gotdns.ch 123website.ch myspreadshop.ch *.firenet.ch *.svc.firenet.ch 12hp.ch 2ix.ch 4lima.ch lima-city.ch ci org.ci or.ci com.ci co.ci edu.ci ed.ci ac.ci net.ci go.ci asso.ci aéroport.ci int.ci presse.ci md.ci gouv.ci fin.ci nl.ci *.ck !www.ck cl co.cl gob.cl gov.cl mil.cl blogspot.cl cm co.cm com.cm gov.cm net.cm cn ac.cn com.cn edu.cn gov.cn net.cn org.cn mil.cn 公司.cn 网络.cn 網絡.cn ah.cn bj.cn cq.cn fj.cn gd.cn gs.cn gz.cn gx.cn ha.cn hb.cn he.cn hi.cn hl.cn hn.cn jl.cn js.cn jx.cn ln.cn nm.cn nx.cn qh.cn sc.cn sd.cn sh.cn sn.cn sx.cn tj.cn xj.cn xz.cn yn.cn zj.cn hk.cn mo.cn tw.cn execute-api.cn-north-1.amazonaws.com.cn execute-api.cn-northwest-1.amazonaws.com.cn *.compute.amazonaws.com.cn emrappui-prod.cn-north-1.amazonaws.com.cn emrnotebooks-prod.cn-north-1.amazonaws.com.cn emrstudio-prod.cn-north-1.amazonaws.com.cn emrappui-prod.cn-northwest-1.amazonaws.com.cn emrnotebooks-prod.cn-northwest-1.amazonaws.com.cn emrstudio-prod.cn-northwest-1.amazonaws.com.cn *.cn-north-1.airflow.amazonaws.com.cn *.cn-northwest-1.airflow.amazonaws.com.cn s3.dualstack.cn-north-1.amazonaws.com.cn s3-accesspoint.dualstack.cn-north-1.amazonaws.com.cn s3-website.dualstack.cn-north-1.amazonaws.com.cn s3.cn-north-1.amazonaws.com.cn s3-accesspoint.cn-north-1.amazonaws.com.cn s3-deprecated.cn-north-1.amazonaws.com.cn s3-object-lambda.cn-north-1.amazonaws.com.cn s3-website.cn-north-1.amazonaws.com.cn s3.dualstack.cn-northwest-1.amazonaws.com.cn s3-accesspoint.dualstack.cn-northwest-1.amazonaws.com.cn s3.cn-northwest-1.amazonaws.com.cn s3-accesspoint.cn-northwest-1.amazonaws.com.cn s3-object-lambda.cn-northwest-1.amazonaws.com.cn s3-website.cn-northwest-1.amazonaws.com.cn notebook.cn-north-1.sagemaker.com.cn notebook.cn-northwest-1.sagemaker.com.cn studio.cn-north-1.sagemaker.com.cn studio.cn-northwest-1.sagemaker.com.cn cn-north-1.eb.amazonaws.com.cn cn-northwest-1.eb.amazonaws.com.cn *.elb.amazonaws.com.cn canva-apps.cn instantcloud.cn direct.quickconnect.cn co arts.co com.co edu.co firm.co gov.co info.co int.co mil.co net.co nom.co org.co rec.co web.co carrd.co crd.co *.otap.co blogspot.com.co leadpages.co lpages.co mypi.co n4t.co firewalledreplit.co id.firewalledreplit.co repl.co id.repl.co supabase.co com a2hosted.com cpserver.com *.devcdnaccesso.com adobeaemcloud.com *.dev.adobeaemcloud.com airkitapps.com airkitapps-au.com aivencloud.com kasserver.com execute-api.af-south-1.amazonaws.com execute-api.ap-east-1.amazonaws.com execute-api.ap-northeast-1.amazonaws.com execute-api.ap-northeast-2.amazonaws.com execute-api.ap-northeast-3.amazonaws.com execute-api.ap-south-1.amazonaws.com execute-api.ap-south-2.amazonaws.com execute-api.ap-southeast-1.amazonaws.com execute-api.ap-southeast-2.amazonaws.com execute-api.ap-southeast-3.amazonaws.com execute-api.ap-southeast-4.amazonaws.com execute-api.ca-central-1.amazonaws.com execute-api.ca-west-1.amazonaws.com execute-api.eu-central-1.amazonaws.com execute-api.eu-central-2.amazonaws.com execute-api.eu-north-1.amazonaws.com execute-api.eu-south-1.amazonaws.com execute-api.eu-south-2.amazonaws.com execute-api.eu-west-1.amazonaws.com execute-api.eu-west-2.amazonaws.com execute-api.eu-west-3.amazonaws.com execute-api.il-central-1.amazonaws.com execute-api.me-central-1.amazonaws.com execute-api.me-south-1.amazonaws.com execute-api.sa-east-1.amazonaws.com execute-api.us-east-1.amazonaws.com execute-api.us-east-2.amazonaws.com execute-api.us-gov-east-1.amazonaws.com execute-api.us-gov-west-1.amazonaws.com execute-api.us-west-1.amazonaws.com execute-api.us-west-2.amazonaws.com auth.af-south-1.amazoncognito.com auth.ap-northeast-1.amazoncognito.com auth.ap-northeast-2.amazoncognito.com auth.ap-northeast-3.amazoncognito.com auth.ap-south-1.amazoncognito.com auth.ap-southeast-1.amazoncognito.com auth.ap-southeast-2.amazoncognito.com auth.ap-southeast-3.amazoncognito.com auth.ca-central-1.amazoncognito.com auth.eu-central-1.amazoncognito.com auth.eu-north-1.amazoncognito.com auth.eu-south-1.amazoncognito.com auth.eu-west-1.amazoncognito.com auth.eu-west-2.amazoncognito.com auth.eu-west-3.amazoncognito.com auth.il-central-1.amazoncognito.com auth.me-south-1.amazoncognito.com auth.sa-east-1.amazoncognito.com auth.us-east-1.amazoncognito.com auth-fips.us-east-1.amazoncognito.com auth.us-east-2.amazoncognito.com auth-fips.us-east-2.amazoncognito.com auth-fips.us-gov-west-1.amazoncognito.com auth.us-west-1.amazoncognito.com auth-fips.us-west-1.amazoncognito.com auth.us-west-2.amazoncognito.com auth-fips.us-west-2.amazoncognito.com *.compute.amazonaws.com *.compute-1.amazonaws.com us-east-1.amazonaws.com emrappui-prod.af-south-1.amazonaws.com emrnotebooks-prod.af-south-1.amazonaws.com emrstudio-prod.af-south-1.amazonaws.com emrappui-prod.ap-east-1.amazonaws.com emrnotebooks-prod.ap-east-1.amazonaws.com emrstudio-prod.ap-east-1.amazonaws.com emrappui-prod.ap-northeast-1.amazonaws.com emrnotebooks-prod.ap-northeast-1.amazonaws.com emrstudio-prod.ap-northeast-1.amazonaws.com emrappui-prod.ap-northeast-2.amazonaws.com emrnotebooks-prod.ap-northeast-2.amazonaws.com emrstudio-prod.ap-northeast-2.amazonaws.com emrappui-prod.ap-northeast-3.amazonaws.com emrnotebooks-prod.ap-northeast-3.amazonaws.com emrstudio-prod.ap-northeast-3.amazonaws.com emrappui-prod.ap-south-1.amazonaws.com emrnotebooks-prod.ap-south-1.amazonaws.com emrstudio-prod.ap-south-1.amazonaws.com emrappui-prod.ap-southeast-1.amazonaws.com emrnotebooks-prod.ap-southeast-1.amazonaws.com emrstudio-prod.ap-southeast-1.amazonaws.com emrappui-prod.ap-southeast-2.amazonaws.com emrnotebooks-prod.ap-southeast-2.amazonaws.com emrstudio-prod.ap-southeast-2.amazonaws.com emrappui-prod.ap-southeast-3.amazonaws.com emrnotebooks-prod.ap-southeast-3.amazonaws.com emrstudio-prod.ap-southeast-3.amazonaws.com emrappui-prod.ca-central-1.amazonaws.com emrnotebooks-prod.ca-central-1.amazonaws.com emrstudio-prod.ca-central-1.amazonaws.com emrappui-prod.eu-central-1.amazonaws.com emrnotebooks-prod.eu-central-1.amazonaws.com emrstudio-prod.eu-central-1.amazonaws.com emrappui-prod.eu-north-1.amazonaws.com emrnotebooks-prod.eu-north-1.amazonaws.com emrstudio-prod.eu-north-1.amazonaws.com emrappui-prod.eu-south-1.amazonaws.com emrnotebooks-prod.eu-south-1.amazonaws.com emrstudio-prod.eu-south-1.amazonaws.com emrappui-prod.eu-west-1.amazonaws.com emrnotebooks-prod.eu-west-1.amazonaws.com emrstudio-prod.eu-west-1.amazonaws.com emrappui-prod.eu-west-2.amazonaws.com emrnotebooks-prod.eu-west-2.amazonaws.com emrstudio-prod.eu-west-2.amazonaws.com emrappui-prod.eu-west-3.amazonaws.com emrnotebooks-prod.eu-west-3.amazonaws.com emrstudio-prod.eu-west-3.amazonaws.com emrappui-prod.me-central-1.amazonaws.com emrnotebooks-prod.me-central-1.amazonaws.com emrstudio-prod.me-central-1.amazonaws.com emrappui-prod.me-south-1.amazonaws.com emrnotebooks-prod.me-south-1.amazonaws.com emrstudio-prod.me-south-1.amazonaws.com emrappui-prod.sa-east-1.amazonaws.com emrnotebooks-prod.sa-east-1.amazonaws.com emrstudio-prod.sa-east-1.amazonaws.com emrappui-prod.us-east-1.amazonaws.com emrnotebooks-prod.us-east-1.amazonaws.com emrstudio-prod.us-east-1.amazonaws.com emrappui-prod.us-east-2.amazonaws.com emrnotebooks-prod.us-east-2.amazonaws.com emrstudio-prod.us-east-2.amazonaws.com emrappui-prod.us-gov-east-1.amazonaws.com emrnotebooks-prod.us-gov-east-1.amazonaws.com emrstudio-prod.us-gov-east-1.amazonaws.com emrappui-prod.us-gov-west-1.amazonaws.com emrnotebooks-prod.us-gov-west-1.amazonaws.com emrstudio-prod.us-gov-west-1.amazonaws.com emrappui-prod.us-west-1.amazonaws.com emrnotebooks-prod.us-west-1.amazonaws.com emrstudio-prod.us-west-1.amazonaws.com emrappui-prod.us-west-2.amazonaws.com emrnotebooks-prod.us-west-2.amazonaws.com emrstudio-prod.us-west-2.amazonaws.com *.ap-northeast-1.airflow.amazonaws.com *.ap-northeast-2.airflow.amazonaws.com *.ap-south-1.airflow.amazonaws.com *.ap-southeast-1.airflow.amazonaws.com *.ap-southeast-2.airflow.amazonaws.com *.ca-central-1.airflow.amazonaws.com *.eu-central-1.airflow.amazonaws.com *.eu-north-1.airflow.amazonaws.com *.eu-west-1.airflow.amazonaws.com *.eu-west-2.airflow.amazonaws.com *.eu-west-3.airflow.amazonaws.com *.sa-east-1.airflow.amazonaws.com *.us-east-1.airflow.amazonaws.com *.us-east-2.airflow.amazonaws.com *.us-west-2.airflow.amazonaws.com s3.dualstack.af-south-1.amazonaws.com s3-accesspoint.dualstack.af-south-1.amazonaws.com s3-website.dualstack.af-south-1.amazonaws.com s3.af-south-1.amazonaws.com s3-accesspoint.af-south-1.amazonaws.com s3-object-lambda.af-south-1.amazonaws.com s3-website.af-south-1.amazonaws.com s3.dualstack.ap-east-1.amazonaws.com s3-accesspoint.dualstack.ap-east-1.amazonaws.com s3.ap-east-1.amazonaws.com s3-accesspoint.ap-east-1.amazonaws.com s3-object-lambda.ap-east-1.amazonaws.com s3-website.ap-east-1.amazonaws.com s3.dualstack.ap-northeast-1.amazonaws.com s3-accesspoint.dualstack.ap-northeast-1.amazonaws.com s3-website.dualstack.ap-northeast-1.amazonaws.com s3.ap-northeast-1.amazonaws.com s3-accesspoint.ap-northeast-1.amazonaws.com s3-object-lambda.ap-northeast-1.amazonaws.com s3-website.ap-northeast-1.amazonaws.com s3.dualstack.ap-northeast-2.amazonaws.com s3-accesspoint.dualstack.ap-northeast-2.amazonaws.com s3-website.dualstack.ap-northeast-2.amazonaws.com s3.ap-northeast-2.amazonaws.com s3-accesspoint.ap-northeast-2.amazonaws.com s3-object-lambda.ap-northeast-2.amazonaws.com s3-website.ap-northeast-2.amazonaws.com s3.dualstack.ap-northeast-3.amazonaws.com s3-accesspoint.dualstack.ap-northeast-3.amazonaws.com s3-website.dualstack.ap-northeast-3.amazonaws.com s3.ap-northeast-3.amazonaws.com s3-accesspoint.ap-northeast-3.amazonaws.com s3-object-lambda.ap-northeast-3.amazonaws.com s3-website.ap-northeast-3.amazonaws.com s3.dualstack.ap-south-1.amazonaws.com s3-accesspoint.dualstack.ap-south-1.amazonaws.com s3-website.dualstack.ap-south-1.amazonaws.com s3.ap-south-1.amazonaws.com s3-accesspoint.ap-south-1.amazonaws.com s3-object-lambda.ap-south-1.amazonaws.com s3-website.ap-south-1.amazonaws.com s3.dualstack.ap-south-2.amazonaws.com s3-accesspoint.dualstack.ap-south-2.amazonaws.com s3.ap-south-2.amazonaws.com s3-accesspoint.ap-south-2.amazonaws.com s3-object-lambda.ap-south-2.amazonaws.com s3-website.ap-south-2.amazonaws.com s3.dualstack.ap-southeast-1.amazonaws.com s3-accesspoint.dualstack.ap-southeast-1.amazonaws.com s3-website.dualstack.ap-southeast-1.amazonaws.com s3.ap-southeast-1.amazonaws.com s3-accesspoint.ap-southeast-1.amazonaws.com s3-object-lambda.ap-southeast-1.amazonaws.com s3-website.ap-southeast-1.amazonaws.com s3.dualstack.ap-southeast-2.amazonaws.com s3-accesspoint.dualstack.ap-southeast-2.amazonaws.com s3-website.dualstack.ap-southeast-2.amazonaws.com s3.ap-southeast-2.amazonaws.com s3-accesspoint.ap-southeast-2.amazonaws.com s3-object-lambda.ap-southeast-2.amazonaws.com s3-website.ap-southeast-2.amazonaws.com s3.dualstack.ap-southeast-3.amazonaws.com s3-accesspoint.dualstack.ap-southeast-3.amazonaws.com s3.ap-southeast-3.amazonaws.com s3-accesspoint.ap-southeast-3.amazonaws.com s3-object-lambda.ap-southeast-3.amazonaws.com s3-website.ap-southeast-3.amazonaws.com s3.dualstack.ap-southeast-4.amazonaws.com s3-accesspoint.dualstack.ap-southeast-4.amazonaws.com s3.ap-southeast-4.amazonaws.com s3-accesspoint.ap-southeast-4.amazonaws.com s3-object-lambda.ap-southeast-4.amazonaws.com s3-website.ap-southeast-4.amazonaws.com s3.dualstack.ca-central-1.amazonaws.com s3-accesspoint.dualstack.ca-central-1.amazonaws.com s3-accesspoint-fips.dualstack.ca-central-1.amazonaws.com s3-fips.dualstack.ca-central-1.amazonaws.com s3-website.dualstack.ca-central-1.amazonaws.com s3.ca-central-1.amazonaws.com s3-accesspoint.ca-central-1.amazonaws.com s3-accesspoint-fips.ca-central-1.amazonaws.com s3-fips.ca-central-1.amazonaws.com s3-object-lambda.ca-central-1.amazonaws.com s3-website.ca-central-1.amazonaws.com s3.dualstack.ca-west-1.amazonaws.com s3-accesspoint.dualstack.ca-west-1.amazonaws.com s3-accesspoint-fips.dualstack.ca-west-1.amazonaws.com s3-fips.dualstack.ca-west-1.amazonaws.com s3-website.dualstack.ca-west-1.amazonaws.com s3.ca-west-1.amazonaws.com s3-accesspoint.ca-west-1.amazonaws.com s3-accesspoint-fips.ca-west-1.amazonaws.com s3-fips.ca-west-1.amazonaws.com s3-website.ca-west-1.amazonaws.com s3.dualstack.eu-central-1.amazonaws.com s3-accesspoint.dualstack.eu-central-1.amazonaws.com s3-website.dualstack.eu-central-1.amazonaws.com s3.eu-central-1.amazonaws.com s3-accesspoint.eu-central-1.amazonaws.com s3-object-lambda.eu-central-1.amazonaws.com s3-website.eu-central-1.amazonaws.com s3.dualstack.eu-central-2.amazonaws.com s3-accesspoint.dualstack.eu-central-2.amazonaws.com s3.eu-central-2.amazonaws.com s3-accesspoint.eu-central-2.amazonaws.com s3-object-lambda.eu-central-2.amazonaws.com s3-website.eu-central-2.amazonaws.com s3.dualstack.eu-north-1.amazonaws.com s3-accesspoint.dualstack.eu-north-1.amazonaws.com s3.eu-north-1.amazonaws.com s3-accesspoint.eu-north-1.amazonaws.com s3-object-lambda.eu-north-1.amazonaws.com s3-website.eu-north-1.amazonaws.com s3.dualstack.eu-south-1.amazonaws.com s3-accesspoint.dualstack.eu-south-1.amazonaws.com s3-website.dualstack.eu-south-1.amazonaws.com s3.eu-south-1.amazonaws.com s3-accesspoint.eu-south-1.amazonaws.com s3-object-lambda.eu-south-1.amazonaws.com s3-website.eu-south-1.amazonaws.com s3.dualstack.eu-south-2.amazonaws.com s3-accesspoint.dualstack.eu-south-2.amazonaws.com s3.eu-south-2.amazonaws.com s3-accesspoint.eu-south-2.amazonaws.com s3-object-lambda.eu-south-2.amazonaws.com s3-website.eu-south-2.amazonaws.com s3.dualstack.eu-west-1.amazonaws.com s3-accesspoint.dualstack.eu-west-1.amazonaws.com s3-website.dualstack.eu-west-1.amazonaws.com s3.eu-west-1.amazonaws.com s3-accesspoint.eu-west-1.amazonaws.com s3-deprecated.eu-west-1.amazonaws.com s3-object-lambda.eu-west-1.amazonaws.com s3-website.eu-west-1.amazonaws.com s3.dualstack.eu-west-2.amazonaws.com s3-accesspoint.dualstack.eu-west-2.amazonaws.com s3.eu-west-2.amazonaws.com s3-accesspoint.eu-west-2.amazonaws.com s3-object-lambda.eu-west-2.amazonaws.com s3-website.eu-west-2.amazonaws.com s3.dualstack.eu-west-3.amazonaws.com s3-accesspoint.dualstack.eu-west-3.amazonaws.com s3-website.dualstack.eu-west-3.amazonaws.com s3.eu-west-3.amazonaws.com s3-accesspoint.eu-west-3.amazonaws.com s3-object-lambda.eu-west-3.amazonaws.com s3-website.eu-west-3.amazonaws.com s3.dualstack.il-central-1.amazonaws.com s3-accesspoint.dualstack.il-central-1.amazonaws.com s3.il-central-1.amazonaws.com s3-accesspoint.il-central-1.amazonaws.com s3-object-lambda.il-central-1.amazonaws.com s3-website.il-central-1.amazonaws.com s3.dualstack.me-central-1.amazonaws.com s3-accesspoint.dualstack.me-central-1.amazonaws.com s3.me-central-1.amazonaws.com s3-accesspoint.me-central-1.amazonaws.com s3-object-lambda.me-central-1.amazonaws.com s3-website.me-central-1.amazonaws.com s3.dualstack.me-south-1.amazonaws.com s3-accesspoint.dualstack.me-south-1.amazonaws.com s3.me-south-1.amazonaws.com s3-accesspoint.me-south-1.amazonaws.com s3-object-lambda.me-south-1.amazonaws.com s3-website.me-south-1.amazonaws.com s3.amazonaws.com s3-1.amazonaws.com s3-ap-east-1.amazonaws.com s3-ap-northeast-1.amazonaws.com s3-ap-northeast-2.amazonaws.com s3-ap-northeast-3.amazonaws.com s3-ap-south-1.amazonaws.com s3-ap-southeast-1.amazonaws.com s3-ap-southeast-2.amazonaws.com s3-ca-central-1.amazonaws.com s3-eu-central-1.amazonaws.com s3-eu-north-1.amazonaws.com s3-eu-west-1.amazonaws.com s3-eu-west-2.amazonaws.com s3-eu-west-3.amazonaws.com s3-external-1.amazonaws.com s3-fips-us-gov-east-1.amazonaws.com s3-fips-us-gov-west-1.amazonaws.com mrap.accesspoint.s3-global.amazonaws.com s3-me-south-1.amazonaws.com s3-sa-east-1.amazonaws.com s3-us-east-2.amazonaws.com s3-us-gov-east-1.amazonaws.com s3-us-gov-west-1.amazonaws.com s3-us-west-1.amazonaws.com s3-us-west-2.amazonaws.com s3-website-ap-northeast-1.amazonaws.com s3-website-ap-southeast-1.amazonaws.com s3-website-ap-southeast-2.amazonaws.com s3-website-eu-west-1.amazonaws.com s3-website-sa-east-1.amazonaws.com s3-website-us-east-1.amazonaws.com s3-website-us-gov-west-1.amazonaws.com s3-website-us-west-1.amazonaws.com s3-website-us-west-2.amazonaws.com s3.dualstack.sa-east-1.amazonaws.com s3-accesspoint.dualstack.sa-east-1.amazonaws.com s3-website.dualstack.sa-east-1.amazonaws.com s3.sa-east-1.amazonaws.com s3-accesspoint.sa-east-1.amazonaws.com s3-object-lambda.sa-east-1.amazonaws.com s3-website.sa-east-1.amazonaws.com s3.dualstack.us-east-1.amazonaws.com s3-accesspoint.dualstack.us-east-1.amazonaws.com s3-accesspoint-fips.dualstack.us-east-1.amazonaws.com s3-fips.dualstack.us-east-1.amazonaws.com s3-website.dualstack.us-east-1.amazonaws.com s3.us-east-1.amazonaws.com s3-accesspoint.us-east-1.amazonaws.com s3-accesspoint-fips.us-east-1.amazonaws.com s3-deprecated.us-east-1.amazonaws.com s3-fips.us-east-1.amazonaws.com s3-object-lambda.us-east-1.amazonaws.com s3-website.us-east-1.amazonaws.com s3.dualstack.us-east-2.amazonaws.com s3-accesspoint.dualstack.us-east-2.amazonaws.com s3-accesspoint-fips.dualstack.us-east-2.amazonaws.com s3-fips.dualstack.us-east-2.amazonaws.com s3.us-east-2.amazonaws.com s3-accesspoint.us-east-2.amazonaws.com s3-accesspoint-fips.us-east-2.amazonaws.com s3-deprecated.us-east-2.amazonaws.com s3-fips.us-east-2.amazonaws.com s3-object-lambda.us-east-2.amazonaws.com s3-website.us-east-2.amazonaws.com s3.dualstack.us-gov-east-1.amazonaws.com s3-accesspoint.dualstack.us-gov-east-1.amazonaws.com s3-accesspoint-fips.dualstack.us-gov-east-1.amazonaws.com s3-fips.dualstack.us-gov-east-1.amazonaws.com s3.us-gov-east-1.amazonaws.com s3-accesspoint.us-gov-east-1.amazonaws.com s3-accesspoint-fips.us-gov-east-1.amazonaws.com s3-fips.us-gov-east-1.amazonaws.com s3-object-lambda.us-gov-east-1.amazonaws.com s3-website.us-gov-east-1.amazonaws.com s3.dualstack.us-gov-west-1.amazonaws.com s3-accesspoint.dualstack.us-gov-west-1.amazonaws.com s3-accesspoint-fips.dualstack.us-gov-west-1.amazonaws.com s3-fips.dualstack.us-gov-west-1.amazonaws.com s3.us-gov-west-1.amazonaws.com s3-accesspoint.us-gov-west-1.amazonaws.com s3-accesspoint-fips.us-gov-west-1.amazonaws.com s3-fips.us-gov-west-1.amazonaws.com s3-object-lambda.us-gov-west-1.amazonaws.com s3-website.us-gov-west-1.amazonaws.com s3.dualstack.us-west-1.amazonaws.com s3-accesspoint.dualstack.us-west-1.amazonaws.com s3-accesspoint-fips.dualstack.us-west-1.amazonaws.com s3-fips.dualstack.us-west-1.amazonaws.com s3-website.dualstack.us-west-1.amazonaws.com s3.us-west-1.amazonaws.com s3-accesspoint.us-west-1.amazonaws.com s3-accesspoint-fips.us-west-1.amazonaws.com s3-fips.us-west-1.amazonaws.com s3-object-lambda.us-west-1.amazonaws.com s3-website.us-west-1.amazonaws.com s3.dualstack.us-west-2.amazonaws.com s3-accesspoint.dualstack.us-west-2.amazonaws.com s3-accesspoint-fips.dualstack.us-west-2.amazonaws.com s3-fips.dualstack.us-west-2.amazonaws.com s3-website.dualstack.us-west-2.amazonaws.com s3.us-west-2.amazonaws.com s3-accesspoint.us-west-2.amazonaws.com s3-accesspoint-fips.us-west-2.amazonaws.com s3-deprecated.us-west-2.amazonaws.com s3-fips.us-west-2.amazonaws.com s3-object-lambda.us-west-2.amazonaws.com s3-website.us-west-2.amazonaws.com analytics-gateway.ap-northeast-1.amazonaws.com analytics-gateway.ap-northeast-2.amazonaws.com analytics-gateway.ap-south-1.amazonaws.com analytics-gateway.ap-southeast-1.amazonaws.com analytics-gateway.ap-southeast-2.amazonaws.com analytics-gateway.eu-central-1.amazonaws.com analytics-gateway.eu-west-1.amazonaws.com analytics-gateway.us-east-1.amazonaws.com analytics-gateway.us-east-2.amazonaws.com analytics-gateway.us-west-2.amazonaws.com *.amplifyapp.com *.awsapprunner.com webview-assets.aws-cloud9.af-south-1.amazonaws.com vfs.cloud9.af-south-1.amazonaws.com webview-assets.cloud9.af-south-1.amazonaws.com webview-assets.aws-cloud9.ap-east-1.amazonaws.com vfs.cloud9.ap-east-1.amazonaws.com webview-assets.cloud9.ap-east-1.amazonaws.com webview-assets.aws-cloud9.ap-northeast-1.amazonaws.com vfs.cloud9.ap-northeast-1.amazonaws.com webview-assets.cloud9.ap-northeast-1.amazonaws.com webview-assets.aws-cloud9.ap-northeast-2.amazonaws.com vfs.cloud9.ap-northeast-2.amazonaws.com webview-assets.cloud9.ap-northeast-2.amazonaws.com webview-assets.aws-cloud9.ap-northeast-3.amazonaws.com vfs.cloud9.ap-northeast-3.amazonaws.com webview-assets.cloud9.ap-northeast-3.amazonaws.com webview-assets.aws-cloud9.ap-south-1.amazonaws.com vfs.cloud9.ap-south-1.amazonaws.com webview-assets.cloud9.ap-south-1.amazonaws.com webview-assets.aws-cloud9.ap-southeast-1.amazonaws.com vfs.cloud9.ap-southeast-1.amazonaws.com webview-assets.cloud9.ap-southeast-1.amazonaws.com webview-assets.aws-cloud9.ap-southeast-2.amazonaws.com vfs.cloud9.ap-southeast-2.amazonaws.com webview-assets.cloud9.ap-southeast-2.amazonaws.com webview-assets.aws-cloud9.ca-central-1.amazonaws.com vfs.cloud9.ca-central-1.amazonaws.com webview-assets.cloud9.ca-central-1.amazonaws.com webview-assets.aws-cloud9.eu-central-1.amazonaws.com vfs.cloud9.eu-central-1.amazonaws.com webview-assets.cloud9.eu-central-1.amazonaws.com webview-assets.aws-cloud9.eu-north-1.amazonaws.com vfs.cloud9.eu-north-1.amazonaws.com webview-assets.cloud9.eu-north-1.amazonaws.com webview-assets.aws-cloud9.eu-south-1.amazonaws.com vfs.cloud9.eu-south-1.amazonaws.com webview-assets.cloud9.eu-south-1.amazonaws.com webview-assets.aws-cloud9.eu-west-1.amazonaws.com vfs.cloud9.eu-west-1.amazonaws.com webview-assets.cloud9.eu-west-1.amazonaws.com webview-assets.aws-cloud9.eu-west-2.amazonaws.com vfs.cloud9.eu-west-2.amazonaws.com webview-assets.cloud9.eu-west-2.amazonaws.com webview-assets.aws-cloud9.eu-west-3.amazonaws.com vfs.cloud9.eu-west-3.amazonaws.com webview-assets.cloud9.eu-west-3.amazonaws.com webview-assets.aws-cloud9.il-central-1.amazonaws.com vfs.cloud9.il-central-1.amazonaws.com webview-assets.aws-cloud9.me-south-1.amazonaws.com vfs.cloud9.me-south-1.amazonaws.com webview-assets.cloud9.me-south-1.amazonaws.com webview-assets.aws-cloud9.sa-east-1.amazonaws.com vfs.cloud9.sa-east-1.amazonaws.com webview-assets.cloud9.sa-east-1.amazonaws.com webview-assets.aws-cloud9.us-east-1.amazonaws.com vfs.cloud9.us-east-1.amazonaws.com webview-assets.cloud9.us-east-1.amazonaws.com webview-assets.aws-cloud9.us-east-2.amazonaws.com vfs.cloud9.us-east-2.amazonaws.com webview-assets.cloud9.us-east-2.amazonaws.com webview-assets.aws-cloud9.us-west-1.amazonaws.com vfs.cloud9.us-west-1.amazonaws.com webview-assets.cloud9.us-west-1.amazonaws.com webview-assets.aws-cloud9.us-west-2.amazonaws.com vfs.cloud9.us-west-2.amazonaws.com webview-assets.cloud9.us-west-2.amazonaws.com elasticbeanstalk.com af-south-1.elasticbeanstalk.com ap-east-1.elasticbeanstalk.com ap-northeast-1.elasticbeanstalk.com ap-northeast-2.elasticbeanstalk.com ap-northeast-3.elasticbeanstalk.com ap-south-1.elasticbeanstalk.com ap-southeast-1.elasticbeanstalk.com ap-southeast-2.elasticbeanstalk.com ap-southeast-3.elasticbeanstalk.com ca-central-1.elasticbeanstalk.com eu-central-1.elasticbeanstalk.com eu-north-1.elasticbeanstalk.com eu-south-1.elasticbeanstalk.com eu-west-1.elasticbeanstalk.com eu-west-2.elasticbeanstalk.com eu-west-3.elasticbeanstalk.com il-central-1.elasticbeanstalk.com me-south-1.elasticbeanstalk.com sa-east-1.elasticbeanstalk.com us-east-1.elasticbeanstalk.com us-east-2.elasticbeanstalk.com us-gov-east-1.elasticbeanstalk.com us-gov-west-1.elasticbeanstalk.com us-west-1.elasticbeanstalk.com us-west-2.elasticbeanstalk.com *.elb.amazonaws.com awsglobalaccelerator.com siiites.com appspacehosted.com appspaceusercontent.com on-aptible.com myasustor.com balena-devices.com betainabox.com boutir.com bplaced.com cafjs.com canva-apps.com br.com cn.com de.com eu.com jpn.com mex.com ru.com sa.com uk.com us.com za.com ar.com hu.com kr.com no.com qc.com uy.com africa.com gr.com co.com jdevcloud.com wpdevcloud.com cloudcontrolled.com cloudcontrolapp.com cf-ipfs.com cloudflare-ipfs.com trycloudflare.com *.cprapid.com *.customer-oci.com *.oci.customer-oci.com *.ocp.customer-oci.com *.ocs.customer-oci.com cyclic-app.com dattolocal.com dattorelay.com dattoweb.com mydatto.com builtwithdark.com demo.datadetect.com instance.datadetect.com ddns5.com discordsays.com discordsez.com drayddns.com dreamhosters.com mydrobo.com dyndns-at-home.com dyndns-at-work.com dyndns-blog.com dyndns-free.com dyndns-home.com dyndns-ip.com dyndns-mail.com dyndns-office.com dyndns-pics.com dyndns-remote.com dyndns-server.com dyndns-web.com dyndns-wiki.com dyndns-work.com blogdns.com cechire.com dnsalias.com dnsdojo.com doesntexist.com dontexist.com doomdns.com dyn-o-saur.com dynalias.com est-a-la-maison.com est-a-la-masion.com est-le-patron.com est-mon-blogueur.com from-ak.com from-al.com from-ar.com from-ca.com from-ct.com from-dc.com from-de.com from-fl.com from-ga.com from-hi.com from-ia.com from-id.com from-il.com from-in.com from-ks.com from-ky.com from-ma.com from-md.com from-mi.com from-mn.com from-mo.com from-ms.com from-mt.com from-nc.com from-nd.com from-ne.com from-nh.com from-nj.com from-nm.com from-nv.com from-oh.com from-ok.com from-or.com from-pa.com from-pr.com from-ri.com from-sc.com from-sd.com from-tn.com from-tx.com from-ut.com from-va.com from-vt.com from-wa.com from-wi.com from-wv.com from-wy.com getmyip.com gotdns.com hobby-site.com homelinux.com homeunix.com iamallama.com is-a-anarchist.com is-a-blogger.com is-a-bookkeeper.com is-a-bulls-fan.com is-a-caterer.com is-a-chef.com is-a-conservative.com is-a-cpa.com is-a-cubicle-slave.com is-a-democrat.com is-a-designer.com is-a-doctor.com is-a-financialadvisor.com is-a-geek.com is-a-green.com is-a-guru.com is-a-hard-worker.com is-a-hunter.com is-a-landscaper.com is-a-lawyer.com is-a-liberal.com is-a-libertarian.com is-a-llama.com is-a-musician.com is-a-nascarfan.com is-a-nurse.com is-a-painter.com is-a-personaltrainer.com is-a-photographer.com is-a-player.com is-a-republican.com is-a-rockstar.com is-a-socialist.com is-a-student.com is-a-teacher.com is-a-techie.com is-a-therapist.com is-an-accountant.com is-an-actor.com is-an-actress.com is-an-anarchist.com is-an-artist.com is-an-engineer.com is-an-entertainer.com is-certified.com is-gone.com is-into-anime.com is-into-cars.com is-into-cartoons.com is-into-games.com is-leet.com is-not-certified.com is-slick.com is-uberleet.com is-with-theband.com isa-geek.com isa-hockeynut.com issmarterthanyou.com likes-pie.com likescandy.com neat-url.com saves-the-whales.com selfip.com sells-for-less.com sells-for-u.com servebbs.com simple-url.com space-to-rent.com teaches-yoga.com writesthisblog.com *.digitaloceanspaces.com ddnsfree.com ddnsgeek.com giize.com gleeze.com kozow.com loseyourip.com ooguy.com theworkpc.com mytuleap.com tuleap-partners.com encoreapi.com eu-1.evennode.com eu-2.evennode.com eu-3.evennode.com eu-4.evennode.com us-1.evennode.com us-2.evennode.com us-3.evennode.com us-4.evennode.com onfabrica.com fastly-edge.com fastly-terrarium.com fastvps-server.com mydobiss.com firebaseapp.com fldrv.com forgeblocks.com framercanvas.com freebox-os.com freeboxos.com freemyip.com aliases121.com gentapps.com gentlentapis.com githubusercontent.com *.0emm.com appspot.com *.r.appspot.com codespot.com googleapis.com googlecode.com pagespeedmobilizer.com publishproxy.com withgoogle.com withyoutube.com blogspot.com awsmppl.com herokuapp.com herokussl.com impertrixcdn.com impertrix.com smushcdn.com wphostedmail.com wpmucdn.com pixolino.com amscompute.com dopaas.com paas.hosted-by-previder.com rag-cloud.hosteur.com rag-cloud-ch.hosteur.com jcloud.ik-server.com jcloud-ver-jpc.ik-server.com demo.jelastic.com kilatiron.com paas.massivegrid.com jed.wafaicloud.com lon.wafaicloud.com ryd.wafaicloud.com *.cns.joyent.com ktistory.com lpusercontent.com app.lmpm.com members.linode.com *.nodebalancer.linode.com *.linodeobjects.com ip.linodeusercontent.com barsycenter.com barsyonline.com mazeplay.com miniserver.com atmeta.com apps.fbsbx.com meteorapp.com eu.meteorapp.com *.cloudapp.azure.com hostedpi.com customer.mythic-beasts.com caracal.mythic-beasts.com fentiger.mythic-beasts.com lynx.mythic-beasts.com ocelot.mythic-beasts.com oncilla.mythic-beasts.com onza.mythic-beasts.com sphinx.mythic-beasts.com vs.mythic-beasts.com x.mythic-beasts.com yali.mythic-beasts.com cloud.nospamproxy.com 4u.com nfshost.com 001www.com ddnslive.com myiphost.com blogsyte.com ciscofreak.com damnserver.com ditchyourip.com dnsiskinky.com dynns.com geekgalaxy.com health-carereform.com homesecuritymac.com homesecuritypc.com myactivedirectory.com mysecuritycamera.com net-freaks.com onthewifi.com point2this.com quicksytes.com securitytactics.com serveexchange.com servehumour.com servep2p.com servesarcasm.com stufftoread.com unusualperson.com workisboring.com 3utilities.com ddnsking.com myvnc.com servebeer.com servecounterstrike.com serveftp.com servegame.com servehalflife.com servehttp.com serveirc.com servemp3.com servepics.com servequake.com static.observableusercontent.com simplesite.com orsites.com operaunite.com authgear-staging.com authgearapps.com skygearapp.com outsystemscloud.com ownprovider.com pgfog.com pagefrontapp.com pagexl.com *.paywhirl.com gotpantheon.com upsunapp.com platter-app.com pleskns.com postman-echo.com xen.prgmr.com pythonanywhere.com eu.pythonanywhere.com qualifioapp.com ladesk.com qbuser.com qa2.com dev-myqnapcloud.com alpha-myqnapcloud.com myqnapcloud.com *.quipelements.com rackmaze.com rhcloud.com app.render.com onrender.com 180r.com dojin.com sakuratan.com sakuraweb.com x0.com *.builder.code.com *.dev-builder.code.com *.stg-builder.code.com *.001.test.code-builder-stg.platform.salesforce.com logoip.com scrysec.com firewall-gateway.com myshopblocks.com myshopify.com shopitsite.com 1kapp.com appchizi.com applinzi.com sinaapp.com vipsinaapp.com bounty-full.com alpha.bounty-full.com beta.bounty-full.com streamlitapp.com try-snowplow.com stackhero-network.com playstation-cloud.com myspreadshop.com api.stdlib.com temp-dns.com dsmynas.com familyds.com mytabit.com site.tb-hosting.com reservd.com thingdustdata.com bloxcms.com townnews-staging.com pro.typeform.com hk.com it.com *.vultrobjects.com wafflecell.com reserve-online.com hotelwithflight.com remotewd.com pages.wiardweb.com messwithdns.com woltlab-demo.com wpenginepowered.com js.wpenginepowered.com wixsite.com xnbay.com u2.xnbay.com u2-local.xnbay.com yolasite.com coop cr ac.cr co.cr ed.cr fi.cr go.cr or.cr sa.cr cu com.cu edu.cu org.cu net.cu gov.cu inf.cu cv com.cv edu.cv int.cv nome.cv org.cv blogspot.cv cw com.cw edu.cw net.cw org.cw cx gov.cx ath.cx info.cx cy ac.cy biz.cy com.cy ekloges.cy gov.cy ltd.cy mil.cy net.cy org.cy press.cy pro.cy tm.cy blogspot.com.cy j.scaleforce.com.cy cz co.cz realm.cz e4.cz blogspot.cz *.cloud.metacentrum.cz custom.metacentrum.cz flt.cloud.muni.cz usr.cloud.muni.cz de bplaced.de square7.de com.de dyn.cosidns.de dynamisches-dns.de dnsupdater.de internet-dns.de l-o-g-i-n.de dnshome.de fuettertdasnetz.de isteingeek.de istmein.de lebtimnetz.de leitungsen.de traeumtgerade.de ddnss.de dyn.ddnss.de dyndns.ddnss.de dyndns1.de dyn-ip24.de home-webserver.de dyn.home-webserver.de myhome-server.de *.frusky.de goip.de blogspot.de günstigbestellen.de günstigliefern.de pages.it.hs-heilbronn.de dyn-berlin.de in-berlin.de in-brb.de in-butter.de in-dsl.de in-vpn.de iservschule.de mein-iserv.de schulplattform.de schulserver.de test-iserv.de keymachine.de git-repos.de lcube-server.de svn-repos.de barsy.de 123webseite.de logoip.de firewall-gateway.de my-gateway.de my-router.de spdns.de customer.speedpartner.de myspreadshop.de taifun-dns.de 12hp.de 2ix.de 4lima.de lima-city.de dd-dns.de dray-dns.de draydns.de dyn-vpn.de dynvpn.de mein-vigor.de my-vigor.de my-wan.de syno-ds.de synology-diskstation.de synology-ds.de *.uberspace.de virtualuser.de virtual-user.de community-pro.de diskussionsbereich.de dj dk biz.dk co.dk firm.dk reg.dk store.dk blogspot.dk 123hjemmeside.dk myspreadshop.dk dm com.dm net.dm org.dm edu.dm gov.dm do art.do com.do edu.do gob.do gov.do mil.do net.do org.do sld.do web.do dz art.dz asso.dz com.dz edu.dz gov.dz org.dz net.dz pol.dz soc.dz tm.dz ec com.ec info.ec net.ec fin.ec k12.ec med.ec pro.ec org.ec edu.ec gov.ec gob.ec mil.ec base.ec official.ec edu git-pages.rit.edu ee edu.ee gov.ee riik.ee lib.ee med.ee com.ee pri.ee aip.ee org.ee fie.ee blogspot.com.ee eg com.eg edu.eg eun.eg gov.eg mil.eg name.eg net.eg org.eg sci.eg blogspot.com.eg *.er es com.es nom.es org.es gob.es edu.es blogspot.com.es 123miweb.es myspreadshop.es et com.et gov.et org.et edu.et biz.et name.et info.et net.et eu airkitapps.eu mycd.eu cloudns.eu jelastic.dogado.eu barsy.eu wellbeingzone.eu spdns.eu *.transurl.eu diskstation.eu fi aland.fi dy.fi blogspot.fi häkkinen.fi iki.fi fi.cloudplatform.fi demo.datacenter.fi paas.datacenter.fi kapsi.fi 123kotisivu.fi myspreadshop.fi fj ac.fj biz.fj com.fj gov.fj info.fj mil.fj name.fj net.fj org.fj pro.fj *.fk com.fm edu.fm net.fm org.fm fm radio.fm *.user.fm fo fr asso.fr com.fr gouv.fr nom.fr prd.fr tm.fr avoues.fr cci.fr greta.fr huissier-justice.fr en-root.fr fbx-os.fr fbxos.fr freebox-os.fr freeboxos.fr blogspot.fr goupile.fr 123siteweb.fr on-web.fr chirurgiens-dentistes-en-france.fr dedibox.fr aeroport.fr avocat.fr chambagri.fr chirurgiens-dentistes.fr experts-comptables.fr medecin.fr notaires.fr pharmacien.fr port.fr veterinaire.fr myspreadshop.fr ynh.fr ga gb edu.gd gov.gd gd ge com.ge edu.ge gov.ge org.ge mil.ge net.ge pvt.ge gf gg co.gg net.gg org.gg kaas.gg cya.gg panel.gg daemon.panel.gg gh com.gh edu.gh gov.gh org.gh mil.gh gi com.gi ltd.gi gov.gi mod.gi edu.gi org.gi gl co.gl com.gl edu.gl net.gl org.gl biz.gl xx.gl gm gn ac.gn com.gn edu.gn gov.gn org.gn net.gn gov gp com.gp net.gp mobi.gp edu.gp org.gp asso.gp app.gp gq gr com.gr edu.gr net.gr org.gr gov.gr blogspot.gr simplesite.gr gs gt com.gt edu.gt gob.gt ind.gt mil.gt net.gt org.gt blog.gt de.gt to.gt gu com.gu edu.gu gov.gu guam.gu info.gu net.gu org.gu web.gu gw gy co.gy com.gy edu.gy gov.gy net.gy org.gy be.gy hk com.hk edu.hk gov.hk idv.hk net.hk org.hk 公司.hk 教育.hk 敎育.hk 政府.hk 個人.hk 个人.hk 箇人.hk 網络.hk 网络.hk 组織.hk 網絡.hk 网絡.hk 组织.hk 組織.hk 組织.hk blogspot.hk secaas.hk ltd.hk inc.hk hm hn com.hn edu.hn org.hn net.hn mil.hn gob.hn cc.hn hr iz.hr from.hr name.hr com.hr blogspot.hr free.hr ht com.ht shop.ht firm.ht info.ht adult.ht net.ht pro.ht org.ht med.ht art.ht coop.ht pol.ht asso.ht edu.ht rel.ht gouv.ht perso.ht hu co.hu info.hu org.hu priv.hu sport.hu tm.hu 2000.hu agrar.hu bolt.hu casino.hu city.hu erotica.hu erotika.hu film.hu forum.hu games.hu hotel.hu ingatlan.hu jogasz.hu konyvelo.hu lakas.hu media.hu news.hu reklam.hu sex.hu shop.hu suli.hu szex.hu tozsde.hu utazas.hu video.hu blogspot.hu id ac.id biz.id co.id desa.id go.id mil.id my.id net.id or.id ponpes.id sch.id web.id *.rss.my.id flap.id blogspot.co.id forte.id ie gov.ie blogspot.ie myspreadshop.ie il ac.il co.il gov.il idf.il k12.il muni.il net.il org.il ravpage.co.il blogspot.co.il tabitorder.co.il mytabit.co.il ישראל אקדמיה.ישראל ישוב.ישראל צהל.ישראל ממשל.ישראל im ac.im co.im com.im ltd.co.im net.im org.im plc.co.im tt.im tv.im ro.im in 5g.in 6g.in ac.in ai.in am.in bihar.in biz.in business.in ca.in cn.in co.in com.in coop.in cs.in delhi.in dr.in edu.in er.in firm.in gen.in gov.in gujarat.in ind.in info.in int.in internet.in io.in me.in mil.in net.in nic.in org.in pg.in post.in pro.in res.in travel.in tv.in uk.in up.in us.in web.in cloudns.in cyclic.co.in blogspot.in barsy.in supabase.in info cloudns.info dynamic-dns.info dyndns.info barrel-of-knowledge.info barrell-of-knowledge.info for-our.info groks-the.info groks-this.info here-for-more.info knowsitall.info selfip.info webhop.info barsy.info mayfirst.info forumz.info nsupdate.info dvrcam.info ilovecollege.info no-ip.info dnsupdate.info v-info.info int eu.int io com.io *.on-acorn.io apigee.io b-data.io backplaneapp.io app.banzaicloud.io *.backyards.banzaicloud.io beagleboard.io bitbucket.io bluebite.io boxfuse.io *.s.brave.io browsersafetymark.io uk0.bigv.io cleverapps.io dyndns.dappnode.io dedyn.io drud.io definima.io fh-muenster.io shw.io id.forgerock.io ghost.io github.io gitlab.io lolipop.io hasura-app.io hostyhosting.io *.moonscale.io paas.beebyte.io sekd1.beebyteapp.io jele.io cloud-fr1.unispace.io webthings.io loginline.io barsy.io *.azurecontainer.io ngrok.io ap.ngrok.io au.ngrok.io eu.ngrok.io in.ngrok.io jp.ngrok.io sa.ngrok.io us.ngrok.io stage.nodeart.io nid.io pantheonsite.io dyn53.io pstmn.io mock.pstmn.io protonet.io qoto.io qcx.io *.sys.qcx.io vaporcloud.io g.vbrplsbx.io *.on-k3s.io *.on-rio.io readthedocs.io resindevice.io devices.resinstaging.io hzc.io sandcats.io shiftcrypto.io shiftedit.io mo-siemens.io musician.io apps.lair.io *.stolos.io spacekit.io utwente.io *.s5y.io edugit.io telebit.io cust.dev.thingdust.io cust.disrec.thingdust.io cust.prod.thingdust.io cust.testing.thingdust.io reservd.dev.thingdust.io reservd.disrec.thingdust.io reservd.testing.thingdust.io tickets.io upli.io 2038.io wedeploy.io editorx.io wixstudio.io basicserver.io virtualserver.io iq gov.iq edu.iq mil.iq com.iq org.iq net.iq ir ac.ir co.ir gov.ir id.ir net.ir org.ir sch.ir ایران.ir ايران.ir is net.is com.is edu.is gov.is org.is int.is cupcake.is blogspot.is it gov.it edu.it abr.it abruzzo.it aosta-valley.it aostavalley.it bas.it basilicata.it cal.it calabria.it cam.it campania.it emilia-romagna.it emiliaromagna.it emr.it friuli-v-giulia.it friuli-ve-giulia.it friuli-vegiulia.it friuli-venezia-giulia.it friuli-veneziagiulia.it friuli-vgiulia.it friuliv-giulia.it friulive-giulia.it friulivegiulia.it friulivenezia-giulia.it friuliveneziagiulia.it friulivgiulia.it fvg.it laz.it lazio.it lig.it liguria.it lom.it lombardia.it lombardy.it lucania.it mar.it marche.it mol.it molise.it piedmont.it piemonte.it pmn.it pug.it puglia.it sar.it sardegna.it sardinia.it sic.it sicilia.it sicily.it taa.it tos.it toscana.it trentin-sud-tirol.it trentin-süd-tirol.it trentin-sudtirol.it trentin-südtirol.it trentin-sued-tirol.it trentin-suedtirol.it trentino-a-adige.it trentino-aadige.it trentino-alto-adige.it trentino-altoadige.it trentino-s-tirol.it trentino-stirol.it trentino-sud-tirol.it trentino-süd-tirol.it trentino-sudtirol.it trentino-südtirol.it trentino-sued-tirol.it trentino-suedtirol.it trentino.it trentinoa-adige.it trentinoaadige.it trentinoalto-adige.it trentinoaltoadige.it trentinos-tirol.it trentinostirol.it trentinosud-tirol.it trentinosüd-tirol.it trentinosudtirol.it trentinosüdtirol.it trentinosued-tirol.it trentinosuedtirol.it trentinsud-tirol.it trentinsüd-tirol.it trentinsudtirol.it trentinsüdtirol.it trentinsued-tirol.it trentinsuedtirol.it tuscany.it umb.it umbria.it val-d-aosta.it val-daosta.it vald-aosta.it valdaosta.it valle-aosta.it valle-d-aosta.it valle-daosta.it valleaosta.it valled-aosta.it valledaosta.it vallee-aoste.it vallée-aoste.it vallee-d-aoste.it vallée-d-aoste.it valleeaoste.it valléeaoste.it valleedaoste.it valléedaoste.it vao.it vda.it ven.it veneto.it ag.it agrigento.it al.it alessandria.it alto-adige.it altoadige.it an.it ancona.it andria-barletta-trani.it andria-trani-barletta.it andriabarlettatrani.it andriatranibarletta.it ao.it aosta.it aoste.it ap.it aq.it aquila.it ar.it arezzo.it ascoli-piceno.it ascolipiceno.it asti.it at.it av.it avellino.it ba.it balsan-sudtirol.it balsan-südtirol.it balsan-suedtirol.it balsan.it bari.it barletta-trani-andria.it barlettatraniandria.it belluno.it benevento.it bergamo.it bg.it bi.it biella.it bl.it bn.it bo.it bologna.it bolzano-altoadige.it bolzano.it bozen-sudtirol.it bozen-südtirol.it bozen-suedtirol.it bozen.it br.it brescia.it brindisi.it bs.it bt.it bulsan-sudtirol.it bulsan-südtirol.it bulsan-suedtirol.it bulsan.it bz.it ca.it cagliari.it caltanissetta.it campidano-medio.it campidanomedio.it campobasso.it carbonia-iglesias.it carboniaiglesias.it carrara-massa.it carraramassa.it caserta.it catania.it catanzaro.it cb.it ce.it cesena-forli.it cesena-forlì.it cesenaforli.it cesenaforlì.it ch.it chieti.it ci.it cl.it cn.it co.it como.it cosenza.it cr.it cremona.it crotone.it cs.it ct.it cuneo.it cz.it dell-ogliastra.it dellogliastra.it en.it enna.it fc.it fe.it fermo.it ferrara.it fg.it fi.it firenze.it florence.it fm.it foggia.it forli-cesena.it forlì-cesena.it forlicesena.it forlìcesena.it fr.it frosinone.it ge.it genoa.it genova.it go.it gorizia.it gr.it grosseto.it iglesias-carbonia.it iglesiascarbonia.it im.it imperia.it is.it isernia.it kr.it la-spezia.it laquila.it laspezia.it latina.it lc.it le.it lecce.it lecco.it li.it livorno.it lo.it lodi.it lt.it lu.it lucca.it macerata.it mantova.it massa-carrara.it massacarrara.it matera.it mb.it mc.it me.it medio-campidano.it mediocampidano.it messina.it mi.it milan.it milano.it mn.it mo.it modena.it monza-brianza.it monza-e-della-brianza.it monza.it monzabrianza.it monzaebrianza.it monzaedellabrianza.it ms.it mt.it na.it naples.it napoli.it no.it novara.it nu.it nuoro.it og.it ogliastra.it olbia-tempio.it olbiatempio.it or.it oristano.it ot.it pa.it padova.it padua.it palermo.it parma.it pavia.it pc.it pd.it pe.it perugia.it pesaro-urbino.it pesarourbino.it pescara.it pg.it pi.it piacenza.it pisa.it pistoia.it pn.it po.it pordenone.it potenza.it pr.it prato.it pt.it pu.it pv.it pz.it ra.it ragusa.it ravenna.it rc.it re.it reggio-calabria.it reggio-emilia.it reggiocalabria.it reggioemilia.it rg.it ri.it rieti.it rimini.it rm.it rn.it ro.it roma.it rome.it rovigo.it sa.it salerno.it sassari.it savona.it si.it siena.it siracusa.it so.it sondrio.it sp.it sr.it ss.it suedtirol.it südtirol.it sv.it ta.it taranto.it te.it tempio-olbia.it tempioolbia.it teramo.it terni.it tn.it to.it torino.it tp.it tr.it trani-andria-barletta.it trani-barletta-andria.it traniandriabarletta.it tranibarlettaandria.it trapani.it trento.it treviso.it trieste.it ts.it turin.it tv.it ud.it udine.it urbino-pesaro.it urbinopesaro.it va.it varese.it vb.it vc.it ve.it venezia.it venice.it verbania.it vercelli.it verona.it vi.it vibo-valentia.it vibovalentia.it vicenza.it viterbo.it vr.it vs.it vt.it vv.it 12chars.it blogspot.it ibxos.it iliadboxos.it jc.neen.it cloud.jelastic.open.tim.it 16-b.it 32-b.it 64-b.it 123homepage.it myspreadshop.it syncloud.it je co.je net.je org.je of.je *.jm jo com.jo org.jo net.jo edu.jo sch.jo gov.jo mil.jo name.jo jobs jp ac.jp ad.jp co.jp ed.jp go.jp gr.jp lg.jp ne.jp or.jp aichi.jp akita.jp aomori.jp chiba.jp ehime.jp fukui.jp fukuoka.jp fukushima.jp gifu.jp gunma.jp hiroshima.jp hokkaido.jp hyogo.jp ibaraki.jp ishikawa.jp iwate.jp kagawa.jp kagoshima.jp kanagawa.jp kochi.jp kumamoto.jp kyoto.jp mie.jp miyagi.jp miyazaki.jp nagano.jp nagasaki.jp nara.jp niigata.jp oita.jp okayama.jp okinawa.jp osaka.jp saga.jp saitama.jp shiga.jp shimane.jp shizuoka.jp tochigi.jp tokushima.jp tokyo.jp tottori.jp toyama.jp wakayama.jp yamagata.jp yamaguchi.jp yamanashi.jp 栃木.jp 愛知.jp 愛媛.jp 兵庫.jp 熊本.jp 茨城.jp 北海道.jp 千葉.jp 和歌山.jp 長崎.jp 長野.jp 新潟.jp 青森.jp 静岡.jp 東京.jp 石川.jp 埼玉.jp 三重.jp 京都.jp 佐賀.jp 大分.jp 大阪.jp 奈良.jp 宮城.jp 宮崎.jp 富山.jp 山口.jp 山形.jp 山梨.jp 岩手.jp 岐阜.jp 岡山.jp 島根.jp 広島.jp 徳島.jp 沖縄.jp 滋賀.jp 神奈川.jp 福井.jp 福岡.jp 福島.jp 秋田.jp 群馬.jp 香川.jp 高知.jp 鳥取.jp 鹿児島.jp *.kawasaki.jp *.kitakyushu.jp *.kobe.jp *.nagoya.jp *.sapporo.jp *.sendai.jp *.yokohama.jp !city.kawasaki.jp !city.kitakyushu.jp !city.kobe.jp !city.nagoya.jp !city.sapporo.jp !city.sendai.jp !city.yokohama.jp aisai.aichi.jp ama.aichi.jp anjo.aichi.jp asuke.aichi.jp chiryu.aichi.jp chita.aichi.jp fuso.aichi.jp gamagori.aichi.jp handa.aichi.jp hazu.aichi.jp hekinan.aichi.jp higashiura.aichi.jp ichinomiya.aichi.jp inazawa.aichi.jp inuyama.aichi.jp isshiki.aichi.jp iwakura.aichi.jp kanie.aichi.jp kariya.aichi.jp kasugai.aichi.jp kira.aichi.jp kiyosu.aichi.jp komaki.aichi.jp konan.aichi.jp kota.aichi.jp mihama.aichi.jp miyoshi.aichi.jp nishio.aichi.jp nisshin.aichi.jp obu.aichi.jp oguchi.aichi.jp oharu.aichi.jp okazaki.aichi.jp owariasahi.aichi.jp seto.aichi.jp shikatsu.aichi.jp shinshiro.aichi.jp shitara.aichi.jp tahara.aichi.jp takahama.aichi.jp tobishima.aichi.jp toei.aichi.jp togo.aichi.jp tokai.aichi.jp tokoname.aichi.jp toyoake.aichi.jp toyohashi.aichi.jp toyokawa.aichi.jp toyone.aichi.jp toyota.aichi.jp tsushima.aichi.jp yatomi.aichi.jp akita.akita.jp daisen.akita.jp fujisato.akita.jp gojome.akita.jp hachirogata.akita.jp happou.akita.jp higashinaruse.akita.jp honjo.akita.jp honjyo.akita.jp ikawa.akita.jp kamikoani.akita.jp kamioka.akita.jp katagami.akita.jp kazuno.akita.jp kitaakita.akita.jp kosaka.akita.jp kyowa.akita.jp misato.akita.jp mitane.akita.jp moriyoshi.akita.jp nikaho.akita.jp noshiro.akita.jp odate.akita.jp oga.akita.jp ogata.akita.jp semboku.akita.jp yokote.akita.jp yurihonjo.akita.jp aomori.aomori.jp gonohe.aomori.jp hachinohe.aomori.jp hashikami.aomori.jp hiranai.aomori.jp hirosaki.aomori.jp itayanagi.aomori.jp kuroishi.aomori.jp misawa.aomori.jp mutsu.aomori.jp nakadomari.aomori.jp noheji.aomori.jp oirase.aomori.jp owani.aomori.jp rokunohe.aomori.jp sannohe.aomori.jp shichinohe.aomori.jp shingo.aomori.jp takko.aomori.jp towada.aomori.jp tsugaru.aomori.jp tsuruta.aomori.jp abiko.chiba.jp asahi.chiba.jp chonan.chiba.jp chosei.chiba.jp choshi.chiba.jp chuo.chiba.jp funabashi.chiba.jp futtsu.chiba.jp hanamigawa.chiba.jp ichihara.chiba.jp ichikawa.chiba.jp ichinomiya.chiba.jp inzai.chiba.jp isumi.chiba.jp kamagaya.chiba.jp kamogawa.chiba.jp kashiwa.chiba.jp katori.chiba.jp katsuura.chiba.jp kimitsu.chiba.jp kisarazu.chiba.jp kozaki.chiba.jp kujukuri.chiba.jp kyonan.chiba.jp matsudo.chiba.jp midori.chiba.jp mihama.chiba.jp minamiboso.chiba.jp mobara.chiba.jp mutsuzawa.chiba.jp nagara.chiba.jp nagareyama.chiba.jp narashino.chiba.jp narita.chiba.jp noda.chiba.jp oamishirasato.chiba.jp omigawa.chiba.jp onjuku.chiba.jp otaki.chiba.jp sakae.chiba.jp sakura.chiba.jp shimofusa.chiba.jp shirako.chiba.jp shiroi.chiba.jp shisui.chiba.jp sodegaura.chiba.jp sosa.chiba.jp tako.chiba.jp tateyama.chiba.jp togane.chiba.jp tohnosho.chiba.jp tomisato.chiba.jp urayasu.chiba.jp yachimata.chiba.jp yachiyo.chiba.jp yokaichiba.chiba.jp yokoshibahikari.chiba.jp yotsukaido.chiba.jp ainan.ehime.jp honai.ehime.jp ikata.ehime.jp imabari.ehime.jp iyo.ehime.jp kamijima.ehime.jp kihoku.ehime.jp kumakogen.ehime.jp masaki.ehime.jp matsuno.ehime.jp matsuyama.ehime.jp namikata.ehime.jp niihama.ehime.jp ozu.ehime.jp saijo.ehime.jp seiyo.ehime.jp shikokuchuo.ehime.jp tobe.ehime.jp toon.ehime.jp uchiko.ehime.jp uwajima.ehime.jp yawatahama.ehime.jp echizen.fukui.jp eiheiji.fukui.jp fukui.fukui.jp ikeda.fukui.jp katsuyama.fukui.jp mihama.fukui.jp minamiechizen.fukui.jp obama.fukui.jp ohi.fukui.jp ono.fukui.jp sabae.fukui.jp sakai.fukui.jp takahama.fukui.jp tsuruga.fukui.jp wakasa.fukui.jp ashiya.fukuoka.jp buzen.fukuoka.jp chikugo.fukuoka.jp chikuho.fukuoka.jp chikujo.fukuoka.jp chikushino.fukuoka.jp chikuzen.fukuoka.jp chuo.fukuoka.jp dazaifu.fukuoka.jp fukuchi.fukuoka.jp hakata.fukuoka.jp higashi.fukuoka.jp hirokawa.fukuoka.jp hisayama.fukuoka.jp iizuka.fukuoka.jp inatsuki.fukuoka.jp kaho.fukuoka.jp kasuga.fukuoka.jp kasuya.fukuoka.jp kawara.fukuoka.jp keisen.fukuoka.jp koga.fukuoka.jp kurate.fukuoka.jp kurogi.fukuoka.jp kurume.fukuoka.jp minami.fukuoka.jp miyako.fukuoka.jp miyama.fukuoka.jp miyawaka.fukuoka.jp mizumaki.fukuoka.jp munakata.fukuoka.jp nakagawa.fukuoka.jp nakama.fukuoka.jp nishi.fukuoka.jp nogata.fukuoka.jp ogori.fukuoka.jp okagaki.fukuoka.jp okawa.fukuoka.jp oki.fukuoka.jp omuta.fukuoka.jp onga.fukuoka.jp onojo.fukuoka.jp oto.fukuoka.jp saigawa.fukuoka.jp sasaguri.fukuoka.jp shingu.fukuoka.jp shinyoshitomi.fukuoka.jp shonai.fukuoka.jp soeda.fukuoka.jp sue.fukuoka.jp tachiarai.fukuoka.jp tagawa.fukuoka.jp takata.fukuoka.jp toho.fukuoka.jp toyotsu.fukuoka.jp tsuiki.fukuoka.jp ukiha.fukuoka.jp umi.fukuoka.jp usui.fukuoka.jp yamada.fukuoka.jp yame.fukuoka.jp yanagawa.fukuoka.jp yukuhashi.fukuoka.jp aizubange.fukushima.jp aizumisato.fukushima.jp aizuwakamatsu.fukushima.jp asakawa.fukushima.jp bandai.fukushima.jp date.fukushima.jp fukushima.fukushima.jp furudono.fukushima.jp futaba.fukushima.jp hanawa.fukushima.jp higashi.fukushima.jp hirata.fukushima.jp hirono.fukushima.jp iitate.fukushima.jp inawashiro.fukushima.jp ishikawa.fukushima.jp iwaki.fukushima.jp izumizaki.fukushima.jp kagamiishi.fukushima.jp kaneyama.fukushima.jp kawamata.fukushima.jp kitakata.fukushima.jp kitashiobara.fukushima.jp koori.fukushima.jp koriyama.fukushima.jp kunimi.fukushima.jp miharu.fukushima.jp mishima.fukushima.jp namie.fukushima.jp nango.fukushima.jp nishiaizu.fukushima.jp nishigo.fukushima.jp okuma.fukushima.jp omotego.fukushima.jp ono.fukushima.jp otama.fukushima.jp samegawa.fukushima.jp shimogo.fukushima.jp shirakawa.fukushima.jp showa.fukushima.jp soma.fukushima.jp sukagawa.fukushima.jp taishin.fukushima.jp tamakawa.fukushima.jp tanagura.fukushima.jp tenei.fukushima.jp yabuki.fukushima.jp yamato.fukushima.jp yamatsuri.fukushima.jp yanaizu.fukushima.jp yugawa.fukushima.jp anpachi.gifu.jp ena.gifu.jp gifu.gifu.jp ginan.gifu.jp godo.gifu.jp gujo.gifu.jp hashima.gifu.jp hichiso.gifu.jp hida.gifu.jp higashishirakawa.gifu.jp ibigawa.gifu.jp ikeda.gifu.jp kakamigahara.gifu.jp kani.gifu.jp kasahara.gifu.jp kasamatsu.gifu.jp kawaue.gifu.jp kitagata.gifu.jp mino.gifu.jp minokamo.gifu.jp mitake.gifu.jp mizunami.gifu.jp motosu.gifu.jp nakatsugawa.gifu.jp ogaki.gifu.jp sakahogi.gifu.jp seki.gifu.jp sekigahara.gifu.jp shirakawa.gifu.jp tajimi.gifu.jp takayama.gifu.jp tarui.gifu.jp toki.gifu.jp tomika.gifu.jp wanouchi.gifu.jp yamagata.gifu.jp yaotsu.gifu.jp yoro.gifu.jp annaka.gunma.jp chiyoda.gunma.jp fujioka.gunma.jp higashiagatsuma.gunma.jp isesaki.gunma.jp itakura.gunma.jp kanna.gunma.jp kanra.gunma.jp katashina.gunma.jp kawaba.gunma.jp kiryu.gunma.jp kusatsu.gunma.jp maebashi.gunma.jp meiwa.gunma.jp midori.gunma.jp minakami.gunma.jp naganohara.gunma.jp nakanojo.gunma.jp nanmoku.gunma.jp numata.gunma.jp oizumi.gunma.jp ora.gunma.jp ota.gunma.jp shibukawa.gunma.jp shimonita.gunma.jp shinto.gunma.jp showa.gunma.jp takasaki.gunma.jp takayama.gunma.jp tamamura.gunma.jp tatebayashi.gunma.jp tomioka.gunma.jp tsukiyono.gunma.jp tsumagoi.gunma.jp ueno.gunma.jp yoshioka.gunma.jp asaminami.hiroshima.jp daiwa.hiroshima.jp etajima.hiroshima.jp fuchu.hiroshima.jp fukuyama.hiroshima.jp hatsukaichi.hiroshima.jp higashihiroshima.hiroshima.jp hongo.hiroshima.jp jinsekikogen.hiroshima.jp kaita.hiroshima.jp kui.hiroshima.jp kumano.hiroshima.jp kure.hiroshima.jp mihara.hiroshima.jp miyoshi.hiroshima.jp naka.hiroshima.jp onomichi.hiroshima.jp osakikamijima.hiroshima.jp otake.hiroshima.jp saka.hiroshima.jp sera.hiroshima.jp seranishi.hiroshima.jp shinichi.hiroshima.jp shobara.hiroshima.jp takehara.hiroshima.jp abashiri.hokkaido.jp abira.hokkaido.jp aibetsu.hokkaido.jp akabira.hokkaido.jp akkeshi.hokkaido.jp asahikawa.hokkaido.jp ashibetsu.hokkaido.jp ashoro.hokkaido.jp assabu.hokkaido.jp atsuma.hokkaido.jp bibai.hokkaido.jp biei.hokkaido.jp bifuka.hokkaido.jp bihoro.hokkaido.jp biratori.hokkaido.jp chippubetsu.hokkaido.jp chitose.hokkaido.jp date.hokkaido.jp ebetsu.hokkaido.jp embetsu.hokkaido.jp eniwa.hokkaido.jp erimo.hokkaido.jp esan.hokkaido.jp esashi.hokkaido.jp fukagawa.hokkaido.jp fukushima.hokkaido.jp furano.hokkaido.jp furubira.hokkaido.jp haboro.hokkaido.jp hakodate.hokkaido.jp hamatonbetsu.hokkaido.jp hidaka.hokkaido.jp higashikagura.hokkaido.jp higashikawa.hokkaido.jp hiroo.hokkaido.jp hokuryu.hokkaido.jp hokuto.hokkaido.jp honbetsu.hokkaido.jp horokanai.hokkaido.jp horonobe.hokkaido.jp ikeda.hokkaido.jp imakane.hokkaido.jp ishikari.hokkaido.jp iwamizawa.hokkaido.jp iwanai.hokkaido.jp kamifurano.hokkaido.jp kamikawa.hokkaido.jp kamishihoro.hokkaido.jp kamisunagawa.hokkaido.jp kamoenai.hokkaido.jp kayabe.hokkaido.jp kembuchi.hokkaido.jp kikonai.hokkaido.jp kimobetsu.hokkaido.jp kitahiroshima.hokkaido.jp kitami.hokkaido.jp kiyosato.hokkaido.jp koshimizu.hokkaido.jp kunneppu.hokkaido.jp kuriyama.hokkaido.jp kuromatsunai.hokkaido.jp kushiro.hokkaido.jp kutchan.hokkaido.jp kyowa.hokkaido.jp mashike.hokkaido.jp matsumae.hokkaido.jp mikasa.hokkaido.jp minamifurano.hokkaido.jp mombetsu.hokkaido.jp moseushi.hokkaido.jp mukawa.hokkaido.jp muroran.hokkaido.jp naie.hokkaido.jp nakagawa.hokkaido.jp nakasatsunai.hokkaido.jp nakatombetsu.hokkaido.jp nanae.hokkaido.jp nanporo.hokkaido.jp nayoro.hokkaido.jp nemuro.hokkaido.jp niikappu.hokkaido.jp niki.hokkaido.jp nishiokoppe.hokkaido.jp noboribetsu.hokkaido.jp numata.hokkaido.jp obihiro.hokkaido.jp obira.hokkaido.jp oketo.hokkaido.jp okoppe.hokkaido.jp otaru.hokkaido.jp otobe.hokkaido.jp otofuke.hokkaido.jp otoineppu.hokkaido.jp oumu.hokkaido.jp ozora.hokkaido.jp pippu.hokkaido.jp rankoshi.hokkaido.jp rebun.hokkaido.jp rikubetsu.hokkaido.jp rishiri.hokkaido.jp rishirifuji.hokkaido.jp saroma.hokkaido.jp sarufutsu.hokkaido.jp shakotan.hokkaido.jp shari.hokkaido.jp shibecha.hokkaido.jp shibetsu.hokkaido.jp shikabe.hokkaido.jp shikaoi.hokkaido.jp shimamaki.hokkaido.jp shimizu.hokkaido.jp shimokawa.hokkaido.jp shinshinotsu.hokkaido.jp shintoku.hokkaido.jp shiranuka.hokkaido.jp shiraoi.hokkaido.jp shiriuchi.hokkaido.jp sobetsu.hokkaido.jp sunagawa.hokkaido.jp taiki.hokkaido.jp takasu.hokkaido.jp takikawa.hokkaido.jp takinoue.hokkaido.jp teshikaga.hokkaido.jp tobetsu.hokkaido.jp tohma.hokkaido.jp tomakomai.hokkaido.jp tomari.hokkaido.jp toya.hokkaido.jp toyako.hokkaido.jp toyotomi.hokkaido.jp toyoura.hokkaido.jp tsubetsu.hokkaido.jp tsukigata.hokkaido.jp urakawa.hokkaido.jp urausu.hokkaido.jp uryu.hokkaido.jp utashinai.hokkaido.jp wakkanai.hokkaido.jp wassamu.hokkaido.jp yakumo.hokkaido.jp yoichi.hokkaido.jp aioi.hyogo.jp akashi.hyogo.jp ako.hyogo.jp amagasaki.hyogo.jp aogaki.hyogo.jp asago.hyogo.jp ashiya.hyogo.jp awaji.hyogo.jp fukusaki.hyogo.jp goshiki.hyogo.jp harima.hyogo.jp himeji.hyogo.jp ichikawa.hyogo.jp inagawa.hyogo.jp itami.hyogo.jp kakogawa.hyogo.jp kamigori.hyogo.jp kamikawa.hyogo.jp kasai.hyogo.jp kasuga.hyogo.jp kawanishi.hyogo.jp miki.hyogo.jp minamiawaji.hyogo.jp nishinomiya.hyogo.jp nishiwaki.hyogo.jp ono.hyogo.jp sanda.hyogo.jp sannan.hyogo.jp sasayama.hyogo.jp sayo.hyogo.jp shingu.hyogo.jp shinonsen.hyogo.jp shiso.hyogo.jp sumoto.hyogo.jp taishi.hyogo.jp taka.hyogo.jp takarazuka.hyogo.jp takasago.hyogo.jp takino.hyogo.jp tamba.hyogo.jp tatsuno.hyogo.jp toyooka.hyogo.jp yabu.hyogo.jp yashiro.hyogo.jp yoka.hyogo.jp yokawa.hyogo.jp ami.ibaraki.jp asahi.ibaraki.jp bando.ibaraki.jp chikusei.ibaraki.jp daigo.ibaraki.jp fujishiro.ibaraki.jp hitachi.ibaraki.jp hitachinaka.ibaraki.jp hitachiomiya.ibaraki.jp hitachiota.ibaraki.jp ibaraki.ibaraki.jp ina.ibaraki.jp inashiki.ibaraki.jp itako.ibaraki.jp iwama.ibaraki.jp joso.ibaraki.jp kamisu.ibaraki.jp kasama.ibaraki.jp kashima.ibaraki.jp kasumigaura.ibaraki.jp koga.ibaraki.jp miho.ibaraki.jp mito.ibaraki.jp moriya.ibaraki.jp naka.ibaraki.jp namegata.ibaraki.jp oarai.ibaraki.jp ogawa.ibaraki.jp omitama.ibaraki.jp ryugasaki.ibaraki.jp sakai.ibaraki.jp sakuragawa.ibaraki.jp shimodate.ibaraki.jp shimotsuma.ibaraki.jp shirosato.ibaraki.jp sowa.ibaraki.jp suifu.ibaraki.jp takahagi.ibaraki.jp tamatsukuri.ibaraki.jp tokai.ibaraki.jp tomobe.ibaraki.jp tone.ibaraki.jp toride.ibaraki.jp tsuchiura.ibaraki.jp tsukuba.ibaraki.jp uchihara.ibaraki.jp ushiku.ibaraki.jp yachiyo.ibaraki.jp yamagata.ibaraki.jp yawara.ibaraki.jp yuki.ibaraki.jp anamizu.ishikawa.jp hakui.ishikawa.jp hakusan.ishikawa.jp kaga.ishikawa.jp kahoku.ishikawa.jp kanazawa.ishikawa.jp kawakita.ishikawa.jp komatsu.ishikawa.jp nakanoto.ishikawa.jp nanao.ishikawa.jp nomi.ishikawa.jp nonoichi.ishikawa.jp noto.ishikawa.jp shika.ishikawa.jp suzu.ishikawa.jp tsubata.ishikawa.jp tsurugi.ishikawa.jp uchinada.ishikawa.jp wajima.ishikawa.jp fudai.iwate.jp fujisawa.iwate.jp hanamaki.iwate.jp hiraizumi.iwate.jp hirono.iwate.jp ichinohe.iwate.jp ichinoseki.iwate.jp iwaizumi.iwate.jp iwate.iwate.jp joboji.iwate.jp kamaishi.iwate.jp kanegasaki.iwate.jp karumai.iwate.jp kawai.iwate.jp kitakami.iwate.jp kuji.iwate.jp kunohe.iwate.jp kuzumaki.iwate.jp miyako.iwate.jp mizusawa.iwate.jp morioka.iwate.jp ninohe.iwate.jp noda.iwate.jp ofunato.iwate.jp oshu.iwate.jp otsuchi.iwate.jp rikuzentakata.iwate.jp shiwa.iwate.jp shizukuishi.iwate.jp sumita.iwate.jp tanohata.iwate.jp tono.iwate.jp yahaba.iwate.jp yamada.iwate.jp ayagawa.kagawa.jp higashikagawa.kagawa.jp kanonji.kagawa.jp kotohira.kagawa.jp manno.kagawa.jp marugame.kagawa.jp mitoyo.kagawa.jp naoshima.kagawa.jp sanuki.kagawa.jp tadotsu.kagawa.jp takamatsu.kagawa.jp tonosho.kagawa.jp uchinomi.kagawa.jp utazu.kagawa.jp zentsuji.kagawa.jp akune.kagoshima.jp amami.kagoshima.jp hioki.kagoshima.jp isa.kagoshima.jp isen.kagoshima.jp izumi.kagoshima.jp kagoshima.kagoshima.jp kanoya.kagoshima.jp kawanabe.kagoshima.jp kinko.kagoshima.jp kouyama.kagoshima.jp makurazaki.kagoshima.jp matsumoto.kagoshima.jp minamitane.kagoshima.jp nakatane.kagoshima.jp nishinoomote.kagoshima.jp satsumasendai.kagoshima.jp soo.kagoshima.jp tarumizu.kagoshima.jp yusui.kagoshima.jp aikawa.kanagawa.jp atsugi.kanagawa.jp ayase.kanagawa.jp chigasaki.kanagawa.jp ebina.kanagawa.jp fujisawa.kanagawa.jp hadano.kanagawa.jp hakone.kanagawa.jp hiratsuka.kanagawa.jp isehara.kanagawa.jp kaisei.kanagawa.jp kamakura.kanagawa.jp kiyokawa.kanagawa.jp matsuda.kanagawa.jp minamiashigara.kanagawa.jp miura.kanagawa.jp nakai.kanagawa.jp ninomiya.kanagawa.jp odawara.kanagawa.jp oi.kanagawa.jp oiso.kanagawa.jp sagamihara.kanagawa.jp samukawa.kanagawa.jp tsukui.kanagawa.jp yamakita.kanagawa.jp yamato.kanagawa.jp yokosuka.kanagawa.jp yugawara.kanagawa.jp zama.kanagawa.jp zushi.kanagawa.jp aki.kochi.jp geisei.kochi.jp hidaka.kochi.jp higashitsuno.kochi.jp ino.kochi.jp kagami.kochi.jp kami.kochi.jp kitagawa.kochi.jp kochi.kochi.jp mihara.kochi.jp motoyama.kochi.jp muroto.kochi.jp nahari.kochi.jp nakamura.kochi.jp nankoku.kochi.jp nishitosa.kochi.jp niyodogawa.kochi.jp ochi.kochi.jp okawa.kochi.jp otoyo.kochi.jp otsuki.kochi.jp sakawa.kochi.jp sukumo.kochi.jp susaki.kochi.jp tosa.kochi.jp tosashimizu.kochi.jp toyo.kochi.jp tsuno.kochi.jp umaji.kochi.jp yasuda.kochi.jp yusuhara.kochi.jp amakusa.kumamoto.jp arao.kumamoto.jp aso.kumamoto.jp choyo.kumamoto.jp gyokuto.kumamoto.jp kamiamakusa.kumamoto.jp kikuchi.kumamoto.jp kumamoto.kumamoto.jp mashiki.kumamoto.jp mifune.kumamoto.jp minamata.kumamoto.jp minamioguni.kumamoto.jp nagasu.kumamoto.jp nishihara.kumamoto.jp oguni.kumamoto.jp ozu.kumamoto.jp sumoto.kumamoto.jp takamori.kumamoto.jp uki.kumamoto.jp uto.kumamoto.jp yamaga.kumamoto.jp yamato.kumamoto.jp yatsushiro.kumamoto.jp ayabe.kyoto.jp fukuchiyama.kyoto.jp higashiyama.kyoto.jp ide.kyoto.jp ine.kyoto.jp joyo.kyoto.jp kameoka.kyoto.jp kamo.kyoto.jp kita.kyoto.jp kizu.kyoto.jp kumiyama.kyoto.jp kyotamba.kyoto.jp kyotanabe.kyoto.jp kyotango.kyoto.jp maizuru.kyoto.jp minami.kyoto.jp minamiyamashiro.kyoto.jp miyazu.kyoto.jp muko.kyoto.jp nagaokakyo.kyoto.jp nakagyo.kyoto.jp nantan.kyoto.jp oyamazaki.kyoto.jp sakyo.kyoto.jp seika.kyoto.jp tanabe.kyoto.jp uji.kyoto.jp ujitawara.kyoto.jp wazuka.kyoto.jp yamashina.kyoto.jp yawata.kyoto.jp asahi.mie.jp inabe.mie.jp ise.mie.jp kameyama.mie.jp kawagoe.mie.jp kiho.mie.jp kisosaki.mie.jp kiwa.mie.jp komono.mie.jp kumano.mie.jp kuwana.mie.jp matsusaka.mie.jp meiwa.mie.jp mihama.mie.jp minamiise.mie.jp misugi.mie.jp miyama.mie.jp nabari.mie.jp shima.mie.jp suzuka.mie.jp tado.mie.jp taiki.mie.jp taki.mie.jp tamaki.mie.jp toba.mie.jp tsu.mie.jp udono.mie.jp ureshino.mie.jp watarai.mie.jp yokkaichi.mie.jp furukawa.miyagi.jp higashimatsushima.miyagi.jp ishinomaki.miyagi.jp iwanuma.miyagi.jp kakuda.miyagi.jp kami.miyagi.jp kawasaki.miyagi.jp marumori.miyagi.jp matsushima.miyagi.jp minamisanriku.miyagi.jp misato.miyagi.jp murata.miyagi.jp natori.miyagi.jp ogawara.miyagi.jp ohira.miyagi.jp onagawa.miyagi.jp osaki.miyagi.jp rifu.miyagi.jp semine.miyagi.jp shibata.miyagi.jp shichikashuku.miyagi.jp shikama.miyagi.jp shiogama.miyagi.jp shiroishi.miyagi.jp tagajo.miyagi.jp taiwa.miyagi.jp tome.miyagi.jp tomiya.miyagi.jp wakuya.miyagi.jp watari.miyagi.jp yamamoto.miyagi.jp zao.miyagi.jp aya.miyazaki.jp ebino.miyazaki.jp gokase.miyazaki.jp hyuga.miyazaki.jp kadogawa.miyazaki.jp kawaminami.miyazaki.jp kijo.miyazaki.jp kitagawa.miyazaki.jp kitakata.miyazaki.jp kitaura.miyazaki.jp kobayashi.miyazaki.jp kunitomi.miyazaki.jp kushima.miyazaki.jp mimata.miyazaki.jp miyakonojo.miyazaki.jp miyazaki.miyazaki.jp morotsuka.miyazaki.jp nichinan.miyazaki.jp nishimera.miyazaki.jp nobeoka.miyazaki.jp saito.miyazaki.jp shiiba.miyazaki.jp shintomi.miyazaki.jp takaharu.miyazaki.jp takanabe.miyazaki.jp takazaki.miyazaki.jp tsuno.miyazaki.jp achi.nagano.jp agematsu.nagano.jp anan.nagano.jp aoki.nagano.jp asahi.nagano.jp azumino.nagano.jp chikuhoku.nagano.jp chikuma.nagano.jp chino.nagano.jp fujimi.nagano.jp hakuba.nagano.jp hara.nagano.jp hiraya.nagano.jp iida.nagano.jp iijima.nagano.jp iiyama.nagano.jp iizuna.nagano.jp ikeda.nagano.jp ikusaka.nagano.jp ina.nagano.jp karuizawa.nagano.jp kawakami.nagano.jp kiso.nagano.jp kisofukushima.nagano.jp kitaaiki.nagano.jp komagane.nagano.jp komoro.nagano.jp matsukawa.nagano.jp matsumoto.nagano.jp miasa.nagano.jp minamiaiki.nagano.jp minamimaki.nagano.jp minamiminowa.nagano.jp minowa.nagano.jp miyada.nagano.jp miyota.nagano.jp mochizuki.nagano.jp nagano.nagano.jp nagawa.nagano.jp nagiso.nagano.jp nakagawa.nagano.jp nakano.nagano.jp nozawaonsen.nagano.jp obuse.nagano.jp ogawa.nagano.jp okaya.nagano.jp omachi.nagano.jp omi.nagano.jp ookuwa.nagano.jp ooshika.nagano.jp otaki.nagano.jp otari.nagano.jp sakae.nagano.jp sakaki.nagano.jp saku.nagano.jp sakuho.nagano.jp shimosuwa.nagano.jp shinanomachi.nagano.jp shiojiri.nagano.jp suwa.nagano.jp suzaka.nagano.jp takagi.nagano.jp takamori.nagano.jp takayama.nagano.jp tateshina.nagano.jp tatsuno.nagano.jp togakushi.nagano.jp togura.nagano.jp tomi.nagano.jp ueda.nagano.jp wada.nagano.jp yamagata.nagano.jp yamanouchi.nagano.jp yasaka.nagano.jp yasuoka.nagano.jp chijiwa.nagasaki.jp futsu.nagasaki.jp goto.nagasaki.jp hasami.nagasaki.jp hirado.nagasaki.jp iki.nagasaki.jp isahaya.nagasaki.jp kawatana.nagasaki.jp kuchinotsu.nagasaki.jp matsuura.nagasaki.jp nagasaki.nagasaki.jp obama.nagasaki.jp omura.nagasaki.jp oseto.nagasaki.jp saikai.nagasaki.jp sasebo.nagasaki.jp seihi.nagasaki.jp shimabara.nagasaki.jp shinkamigoto.nagasaki.jp togitsu.nagasaki.jp tsushima.nagasaki.jp unzen.nagasaki.jp ando.nara.jp gose.nara.jp heguri.nara.jp higashiyoshino.nara.jp ikaruga.nara.jp ikoma.nara.jp kamikitayama.nara.jp kanmaki.nara.jp kashiba.nara.jp kashihara.nara.jp katsuragi.nara.jp kawai.nara.jp kawakami.nara.jp kawanishi.nara.jp koryo.nara.jp kurotaki.nara.jp mitsue.nara.jp miyake.nara.jp nara.nara.jp nosegawa.nara.jp oji.nara.jp ouda.nara.jp oyodo.nara.jp sakurai.nara.jp sango.nara.jp shimoichi.nara.jp shimokitayama.nara.jp shinjo.nara.jp soni.nara.jp takatori.nara.jp tawaramoto.nara.jp tenkawa.nara.jp tenri.nara.jp uda.nara.jp yamatokoriyama.nara.jp yamatotakada.nara.jp yamazoe.nara.jp yoshino.nara.jp aga.niigata.jp agano.niigata.jp gosen.niigata.jp itoigawa.niigata.jp izumozaki.niigata.jp joetsu.niigata.jp kamo.niigata.jp kariwa.niigata.jp kashiwazaki.niigata.jp minamiuonuma.niigata.jp mitsuke.niigata.jp muika.niigata.jp murakami.niigata.jp myoko.niigata.jp nagaoka.niigata.jp niigata.niigata.jp ojiya.niigata.jp omi.niigata.jp sado.niigata.jp sanjo.niigata.jp seiro.niigata.jp seirou.niigata.jp sekikawa.niigata.jp shibata.niigata.jp tagami.niigata.jp tainai.niigata.jp tochio.niigata.jp tokamachi.niigata.jp tsubame.niigata.jp tsunan.niigata.jp uonuma.niigata.jp yahiko.niigata.jp yoita.niigata.jp yuzawa.niigata.jp beppu.oita.jp bungoono.oita.jp bungotakada.oita.jp hasama.oita.jp hiji.oita.jp himeshima.oita.jp hita.oita.jp kamitsue.oita.jp kokonoe.oita.jp kuju.oita.jp kunisaki.oita.jp kusu.oita.jp oita.oita.jp saiki.oita.jp taketa.oita.jp tsukumi.oita.jp usa.oita.jp usuki.oita.jp yufu.oita.jp akaiwa.okayama.jp asakuchi.okayama.jp bizen.okayama.jp hayashima.okayama.jp ibara.okayama.jp kagamino.okayama.jp kasaoka.okayama.jp kibichuo.okayama.jp kumenan.okayama.jp kurashiki.okayama.jp maniwa.okayama.jp misaki.okayama.jp nagi.okayama.jp niimi.okayama.jp nishiawakura.okayama.jp okayama.okayama.jp satosho.okayama.jp setouchi.okayama.jp shinjo.okayama.jp shoo.okayama.jp soja.okayama.jp takahashi.okayama.jp tamano.okayama.jp tsuyama.okayama.jp wake.okayama.jp yakage.okayama.jp aguni.okinawa.jp ginowan.okinawa.jp ginoza.okinawa.jp gushikami.okinawa.jp haebaru.okinawa.jp higashi.okinawa.jp hirara.okinawa.jp iheya.okinawa.jp ishigaki.okinawa.jp ishikawa.okinawa.jp itoman.okinawa.jp izena.okinawa.jp kadena.okinawa.jp kin.okinawa.jp kitadaito.okinawa.jp kitanakagusuku.okinawa.jp kumejima.okinawa.jp kunigami.okinawa.jp minamidaito.okinawa.jp motobu.okinawa.jp nago.okinawa.jp naha.okinawa.jp nakagusuku.okinawa.jp nakijin.okinawa.jp nanjo.okinawa.jp nishihara.okinawa.jp ogimi.okinawa.jp okinawa.okinawa.jp onna.okinawa.jp shimoji.okinawa.jp taketomi.okinawa.jp tarama.okinawa.jp tokashiki.okinawa.jp tomigusuku.okinawa.jp tonaki.okinawa.jp urasoe.okinawa.jp uruma.okinawa.jp yaese.okinawa.jp yomitan.okinawa.jp yonabaru.okinawa.jp yonaguni.okinawa.jp zamami.okinawa.jp abeno.osaka.jp chihayaakasaka.osaka.jp chuo.osaka.jp daito.osaka.jp fujiidera.osaka.jp habikino.osaka.jp hannan.osaka.jp higashiosaka.osaka.jp higashisumiyoshi.osaka.jp higashiyodogawa.osaka.jp hirakata.osaka.jp ibaraki.osaka.jp ikeda.osaka.jp izumi.osaka.jp izumiotsu.osaka.jp izumisano.osaka.jp kadoma.osaka.jp kaizuka.osaka.jp kanan.osaka.jp kashiwara.osaka.jp katano.osaka.jp kawachinagano.osaka.jp kishiwada.osaka.jp kita.osaka.jp kumatori.osaka.jp matsubara.osaka.jp minato.osaka.jp minoh.osaka.jp misaki.osaka.jp moriguchi.osaka.jp neyagawa.osaka.jp nishi.osaka.jp nose.osaka.jp osakasayama.osaka.jp sakai.osaka.jp sayama.osaka.jp sennan.osaka.jp settsu.osaka.jp shijonawate.osaka.jp shimamoto.osaka.jp suita.osaka.jp tadaoka.osaka.jp taishi.osaka.jp tajiri.osaka.jp takaishi.osaka.jp takatsuki.osaka.jp tondabayashi.osaka.jp toyonaka.osaka.jp toyono.osaka.jp yao.osaka.jp ariake.saga.jp arita.saga.jp fukudomi.saga.jp genkai.saga.jp hamatama.saga.jp hizen.saga.jp imari.saga.jp kamimine.saga.jp kanzaki.saga.jp karatsu.saga.jp kashima.saga.jp kitagata.saga.jp kitahata.saga.jp kiyama.saga.jp kouhoku.saga.jp kyuragi.saga.jp nishiarita.saga.jp ogi.saga.jp omachi.saga.jp ouchi.saga.jp saga.saga.jp shiroishi.saga.jp taku.saga.jp tara.saga.jp tosu.saga.jp yoshinogari.saga.jp arakawa.saitama.jp asaka.saitama.jp chichibu.saitama.jp fujimi.saitama.jp fujimino.saitama.jp fukaya.saitama.jp hanno.saitama.jp hanyu.saitama.jp hasuda.saitama.jp hatogaya.saitama.jp hatoyama.saitama.jp hidaka.saitama.jp higashichichibu.saitama.jp higashimatsuyama.saitama.jp honjo.saitama.jp ina.saitama.jp iruma.saitama.jp iwatsuki.saitama.jp kamiizumi.saitama.jp kamikawa.saitama.jp kamisato.saitama.jp kasukabe.saitama.jp kawagoe.saitama.jp kawaguchi.saitama.jp kawajima.saitama.jp kazo.saitama.jp kitamoto.saitama.jp koshigaya.saitama.jp kounosu.saitama.jp kuki.saitama.jp kumagaya.saitama.jp matsubushi.saitama.jp minano.saitama.jp misato.saitama.jp miyashiro.saitama.jp miyoshi.saitama.jp moroyama.saitama.jp nagatoro.saitama.jp namegawa.saitama.jp niiza.saitama.jp ogano.saitama.jp ogawa.saitama.jp ogose.saitama.jp okegawa.saitama.jp omiya.saitama.jp otaki.saitama.jp ranzan.saitama.jp ryokami.saitama.jp saitama.saitama.jp sakado.saitama.jp satte.saitama.jp sayama.saitama.jp shiki.saitama.jp shiraoka.saitama.jp soka.saitama.jp sugito.saitama.jp toda.saitama.jp tokigawa.saitama.jp tokorozawa.saitama.jp tsurugashima.saitama.jp urawa.saitama.jp warabi.saitama.jp yashio.saitama.jp yokoze.saitama.jp yono.saitama.jp yorii.saitama.jp yoshida.saitama.jp yoshikawa.saitama.jp yoshimi.saitama.jp aisho.shiga.jp gamo.shiga.jp higashiomi.shiga.jp hikone.shiga.jp koka.shiga.jp konan.shiga.jp kosei.shiga.jp koto.shiga.jp kusatsu.shiga.jp maibara.shiga.jp moriyama.shiga.jp nagahama.shiga.jp nishiazai.shiga.jp notogawa.shiga.jp omihachiman.shiga.jp otsu.shiga.jp ritto.shiga.jp ryuoh.shiga.jp takashima.shiga.jp takatsuki.shiga.jp torahime.shiga.jp toyosato.shiga.jp yasu.shiga.jp akagi.shimane.jp ama.shimane.jp gotsu.shimane.jp hamada.shimane.jp higashiizumo.shimane.jp hikawa.shimane.jp hikimi.shimane.jp izumo.shimane.jp kakinoki.shimane.jp masuda.shimane.jp matsue.shimane.jp misato.shimane.jp nishinoshima.shimane.jp ohda.shimane.jp okinoshima.shimane.jp okuizumo.shimane.jp shimane.shimane.jp tamayu.shimane.jp tsuwano.shimane.jp unnan.shimane.jp yakumo.shimane.jp yasugi.shimane.jp yatsuka.shimane.jp arai.shizuoka.jp atami.shizuoka.jp fuji.shizuoka.jp fujieda.shizuoka.jp fujikawa.shizuoka.jp fujinomiya.shizuoka.jp fukuroi.shizuoka.jp gotemba.shizuoka.jp haibara.shizuoka.jp hamamatsu.shizuoka.jp higashiizu.shizuoka.jp ito.shizuoka.jp iwata.shizuoka.jp izu.shizuoka.jp izunokuni.shizuoka.jp kakegawa.shizuoka.jp kannami.shizuoka.jp kawanehon.shizuoka.jp kawazu.shizuoka.jp kikugawa.shizuoka.jp kosai.shizuoka.jp makinohara.shizuoka.jp matsuzaki.shizuoka.jp minamiizu.shizuoka.jp mishima.shizuoka.jp morimachi.shizuoka.jp nishiizu.shizuoka.jp numazu.shizuoka.jp omaezaki.shizuoka.jp shimada.shizuoka.jp shimizu.shizuoka.jp shimoda.shizuoka.jp shizuoka.shizuoka.jp susono.shizuoka.jp yaizu.shizuoka.jp yoshida.shizuoka.jp ashikaga.tochigi.jp bato.tochigi.jp haga.tochigi.jp ichikai.tochigi.jp iwafune.tochigi.jp kaminokawa.tochigi.jp kanuma.tochigi.jp karasuyama.tochigi.jp kuroiso.tochigi.jp mashiko.tochigi.jp mibu.tochigi.jp moka.tochigi.jp motegi.tochigi.jp nasu.tochigi.jp nasushiobara.tochigi.jp nikko.tochigi.jp nishikata.tochigi.jp nogi.tochigi.jp ohira.tochigi.jp ohtawara.tochigi.jp oyama.tochigi.jp sakura.tochigi.jp sano.tochigi.jp shimotsuke.tochigi.jp shioya.tochigi.jp takanezawa.tochigi.jp tochigi.tochigi.jp tsuga.tochigi.jp ujiie.tochigi.jp utsunomiya.tochigi.jp yaita.tochigi.jp aizumi.tokushima.jp anan.tokushima.jp ichiba.tokushima.jp itano.tokushima.jp kainan.tokushima.jp komatsushima.tokushima.jp matsushige.tokushima.jp mima.tokushima.jp minami.tokushima.jp miyoshi.tokushima.jp mugi.tokushima.jp nakagawa.tokushima.jp naruto.tokushima.jp sanagochi.tokushima.jp shishikui.tokushima.jp tokushima.tokushima.jp wajiki.tokushima.jp adachi.tokyo.jp akiruno.tokyo.jp akishima.tokyo.jp aogashima.tokyo.jp arakawa.tokyo.jp bunkyo.tokyo.jp chiyoda.tokyo.jp chofu.tokyo.jp chuo.tokyo.jp edogawa.tokyo.jp fuchu.tokyo.jp fussa.tokyo.jp hachijo.tokyo.jp hachioji.tokyo.jp hamura.tokyo.jp higashikurume.tokyo.jp higashimurayama.tokyo.jp higashiyamato.tokyo.jp hino.tokyo.jp hinode.tokyo.jp hinohara.tokyo.jp inagi.tokyo.jp itabashi.tokyo.jp katsushika.tokyo.jp kita.tokyo.jp kiyose.tokyo.jp kodaira.tokyo.jp koganei.tokyo.jp kokubunji.tokyo.jp komae.tokyo.jp koto.tokyo.jp kouzushima.tokyo.jp kunitachi.tokyo.jp machida.tokyo.jp meguro.tokyo.jp minato.tokyo.jp mitaka.tokyo.jp mizuho.tokyo.jp musashimurayama.tokyo.jp musashino.tokyo.jp nakano.tokyo.jp nerima.tokyo.jp ogasawara.tokyo.jp okutama.tokyo.jp ome.tokyo.jp oshima.tokyo.jp ota.tokyo.jp setagaya.tokyo.jp shibuya.tokyo.jp shinagawa.tokyo.jp shinjuku.tokyo.jp suginami.tokyo.jp sumida.tokyo.jp tachikawa.tokyo.jp taito.tokyo.jp tama.tokyo.jp toshima.tokyo.jp chizu.tottori.jp hino.tottori.jp kawahara.tottori.jp koge.tottori.jp kotoura.tottori.jp misasa.tottori.jp nanbu.tottori.jp nichinan.tottori.jp sakaiminato.tottori.jp tottori.tottori.jp wakasa.tottori.jp yazu.tottori.jp yonago.tottori.jp asahi.toyama.jp fuchu.toyama.jp fukumitsu.toyama.jp funahashi.toyama.jp himi.toyama.jp imizu.toyama.jp inami.toyama.jp johana.toyama.jp kamiichi.toyama.jp kurobe.toyama.jp nakaniikawa.toyama.jp namerikawa.toyama.jp nanto.toyama.jp nyuzen.toyama.jp oyabe.toyama.jp taira.toyama.jp takaoka.toyama.jp tateyama.toyama.jp toga.toyama.jp tonami.toyama.jp toyama.toyama.jp unazuki.toyama.jp uozu.toyama.jp yamada.toyama.jp arida.wakayama.jp aridagawa.wakayama.jp gobo.wakayama.jp hashimoto.wakayama.jp hidaka.wakayama.jp hirogawa.wakayama.jp inami.wakayama.jp iwade.wakayama.jp kainan.wakayama.jp kamitonda.wakayama.jp katsuragi.wakayama.jp kimino.wakayama.jp kinokawa.wakayama.jp kitayama.wakayama.jp koya.wakayama.jp koza.wakayama.jp kozagawa.wakayama.jp kudoyama.wakayama.jp kushimoto.wakayama.jp mihama.wakayama.jp misato.wakayama.jp nachikatsuura.wakayama.jp shingu.wakayama.jp shirahama.wakayama.jp taiji.wakayama.jp tanabe.wakayama.jp wakayama.wakayama.jp yuasa.wakayama.jp yura.wakayama.jp asahi.yamagata.jp funagata.yamagata.jp higashine.yamagata.jp iide.yamagata.jp kahoku.yamagata.jp kaminoyama.yamagata.jp kaneyama.yamagata.jp kawanishi.yamagata.jp mamurogawa.yamagata.jp mikawa.yamagata.jp murayama.yamagata.jp nagai.yamagata.jp nakayama.yamagata.jp nanyo.yamagata.jp nishikawa.yamagata.jp obanazawa.yamagata.jp oe.yamagata.jp oguni.yamagata.jp ohkura.yamagata.jp oishida.yamagata.jp sagae.yamagata.jp sakata.yamagata.jp sakegawa.yamagata.jp shinjo.yamagata.jp shirataka.yamagata.jp shonai.yamagata.jp takahata.yamagata.jp tendo.yamagata.jp tozawa.yamagata.jp tsuruoka.yamagata.jp yamagata.yamagata.jp yamanobe.yamagata.jp yonezawa.yamagata.jp yuza.yamagata.jp abu.yamaguchi.jp hagi.yamaguchi.jp hikari.yamaguchi.jp hofu.yamaguchi.jp iwakuni.yamaguchi.jp kudamatsu.yamaguchi.jp mitou.yamaguchi.jp nagato.yamaguchi.jp oshima.yamaguchi.jp shimonoseki.yamaguchi.jp shunan.yamaguchi.jp tabuse.yamaguchi.jp tokuyama.yamaguchi.jp toyota.yamaguchi.jp ube.yamaguchi.jp yuu.yamaguchi.jp chuo.yamanashi.jp doshi.yamanashi.jp fuefuki.yamanashi.jp fujikawa.yamanashi.jp fujikawaguchiko.yamanashi.jp fujiyoshida.yamanashi.jp hayakawa.yamanashi.jp hokuto.yamanashi.jp ichikawamisato.yamanashi.jp kai.yamanashi.jp kofu.yamanashi.jp koshu.yamanashi.jp kosuge.yamanashi.jp minami-alps.yamanashi.jp minobu.yamanashi.jp nakamichi.yamanashi.jp nanbu.yamanashi.jp narusawa.yamanashi.jp nirasaki.yamanashi.jp nishikatsura.yamanashi.jp oshino.yamanashi.jp otsuki.yamanashi.jp showa.yamanashi.jp tabayama.yamanashi.jp tsuru.yamanashi.jp uenohara.yamanashi.jp yamanakako.yamanashi.jp yamanashi.yamanashi.jp user.aseinet.ne.jp buyshop.jp fashionstore.jp handcrafted.jp kawaiishop.jp supersale.jp theshop.jp gehirn.ne.jp usercontent.jp angry.jp babyblue.jp babymilk.jp backdrop.jp bambina.jp bitter.jp blush.jp boo.jp boy.jp boyfriend.jp but.jp candypop.jp capoo.jp catfood.jp cheap.jp chicappa.jp chillout.jp chips.jp chowder.jp chu.jp ciao.jp cocotte.jp coolblog.jp cranky.jp cutegirl.jp daa.jp deca.jp deci.jp digick.jp egoism.jp fakefur.jp fem.jp flier.jp floppy.jp fool.jp frenchkiss.jp girlfriend.jp girly.jp gloomy.jp gonna.jp greater.jp hacca.jp heavy.jp her.jp hiho.jp hippy.jp holy.jp hungry.jp icurus.jp itigo.jp jellybean.jp kikirara.jp kill.jp kilo.jp kuron.jp littlestar.jp lolipopmc.jp lolitapunk.jp lomo.jp lovepop.jp lovesick.jp main.jp mods.jp mond.jp mongolian.jp moo.jp namaste.jp nikita.jp nobushi.jp noor.jp oops.jp parallel.jp parasite.jp pecori.jp peewee.jp penne.jp pepper.jp perma.jp pigboat.jp pinoko.jp punyu.jp pupu.jp pussycat.jp pya.jp raindrop.jp readymade.jp sadist.jp schoolbus.jp secret.jp staba.jp stripper.jp sub.jp sunnyday.jp thick.jp tonkotsu.jp under.jp upper.jp velvet.jp verse.jp versus.jp vivian.jp watson.jp weblike.jp whitesnow.jp zombie.jp blogspot.jp 2-d.jp bona.jp crap.jp daynight.jp eek.jp flop.jp halfmoon.jp jeez.jp matrix.jp mimoza.jp ivory.ne.jp mail-box.ne.jp mints.ne.jp mokuren.ne.jp opal.ne.jp sakura.ne.jp sumomo.ne.jp topaz.ne.jp netgamers.jp nyanta.jp o0o0.jp rdy.jp rgr.jp rulez.jp s3.isk01.sakurastorage.jp s3.isk02.sakurastorage.jp saloon.jp sblo.jp skr.jp tank.jp uh-oh.jp undo.jp rs.webaccel.jp user.webaccel.jp websozai.jp xii.jp ke ac.ke co.ke go.ke info.ke me.ke mobi.ke ne.ke or.ke sc.ke blogspot.co.ke kg org.kg net.kg com.kg edu.kg gov.kg mil.kg io.kg jp.kg tv.kg uk.kg us.kg *.kh ki edu.ki biz.ki net.ki org.ki gov.ki info.ki com.ki km org.km nom.km gov.km prd.km tm.km edu.km mil.km ass.km com.km coop.km asso.km presse.km medecin.km notaires.km pharmaciens.km veterinaire.km gouv.km kn net.kn org.kn edu.kn gov.kn kp com.kp edu.kp gov.kp org.kp rep.kp tra.kp kr ac.kr co.kr es.kr go.kr hs.kr kg.kr mil.kr ms.kr ne.kr or.kr pe.kr re.kr sc.kr busan.kr chungbuk.kr chungnam.kr daegu.kr daejeon.kr gangwon.kr gwangju.kr gyeongbuk.kr gyeonggi.kr gyeongnam.kr incheon.kr jeju.kr jeonbuk.kr jeonnam.kr seoul.kr ulsan.kr blogspot.kr kw com.kw edu.kw emb.kw gov.kw ind.kw net.kw org.kw ky com.ky edu.ky net.ky org.ky kz org.kz edu.kz net.kz gov.kz mil.kz com.kz jcloud.kz upaas.kazteleport.kz la int.la net.la info.la edu.la gov.la per.la com.la org.la bnr.la c.la lb com.lb edu.lb gov.lb net.lb org.lb lc com.lc net.lc co.lc org.lc edu.lc gov.lc oy.lc li blogspot.li caa.li lk gov.lk sch.lk net.lk int.lk com.lk org.lk edu.lk ngo.lk soc.lk web.lk ltd.lk assn.lk grp.lk hotel.lk ac.lk lr com.lr edu.lr gov.lr org.lr net.lr ls ac.ls biz.ls co.ls edu.ls gov.ls info.ls net.ls org.ls sc.ls de.ls lt gov.lt blogspot.lt lu blogspot.lu 123website.lu lv com.lv edu.lv gov.lv org.lv mil.lv id.lv net.lv asn.lv conf.lv ly com.ly net.ly gov.ly plc.ly edu.ly sch.ly med.ly org.ly id.ly ma co.ma net.ma gov.ma org.ma ac.ma press.ma mc tm.mc asso.mc md blogspot.md at.md de.md jp.md to.md me co.me net.me org.me edu.me ac.me gov.me its.me priv.me c66.me daplie.me localhost.daplie.me edgestack.me filegear.me filegear-au.me filegear-de.me filegear-gb.me filegear-ie.me filegear-jp.me filegear-sg.me glitch.me ravendb.me lohmus.me barsy.me mcpe.me mcdir.me soundcast.me tcp4.me brasilia.me ddns.me dnsfor.me hopto.me loginto.me noip.me webhop.me vp4.me diskstation.me dscloud.me i234.me myds.me synology.me site.transip.me wedeploy.me yombo.me nohost.me mg org.mg nom.mg gov.mg prd.mg tm.mg edu.mg mil.mg com.mg co.mg mh mil mk com.mk org.mk net.mk edu.mk gov.mk inf.mk name.mk blogspot.mk ml com.ml edu.ml gouv.ml gov.ml net.ml org.ml presse.ml *.mm mn gov.mn edu.mn org.mn nyc.mn mo com.mo net.mo org.mo edu.mo gov.mo mobi barsy.mobi dscloud.mobi mp ju.mp mq mr gov.mr blogspot.mr ms com.ms edu.ms gov.ms net.ms org.ms lab.ms minisite.ms mt com.mt edu.mt net.mt org.mt blogspot.com.mt mu com.mu net.mu org.mu gov.mu ac.mu co.mu or.mu museum mv aero.mv biz.mv com.mv coop.mv edu.mv gov.mv info.mv int.mv mil.mv museum.mv name.mv net.mv org.mv pro.mv mw ac.mw biz.mw co.mw com.mw coop.mw edu.mw gov.mw int.mw museum.mw net.mw org.mw mx com.mx org.mx gob.mx edu.mx net.mx blogspot.mx my biz.my com.my edu.my gov.my mil.my name.my net.my org.my blogspot.my mz ac.mz adv.mz co.mz edu.mz gov.mz mil.mz net.mz org.mz na info.na pro.na name.na school.na or.na dr.na us.na mx.na ca.na in.na cc.na tv.na ws.na mobi.na co.na com.na org.na name forgot.her.name forgot.his.name nc asso.nc nom.nc ne net adobeaemcloud.net adobeio-static.net adobeioruntime.net akadns.net akamai.net akamai-staging.net akamaiedge.net akamaiedge-staging.net akamaihd.net akamaihd-staging.net akamaiorigin.net akamaiorigin-staging.net akamaized.net akamaized-staging.net edgekey.net edgekey-staging.net edgesuite.net edgesuite-staging.net alwaysdata.net myamaze.net cloudfront.net t3l3p0rt.net appudo.net cdn.prod.atlassian-dev.net myfritz.net onavstack.net shopselect.net blackbaudcdn.net boomla.net bplaced.net square7.net gb.net hu.net jp.net se.net uk.net in.net clickrising.net cloudaccess.net cdn77-ssl.net r.cdn77.net feste-ip.net knx-server.net static-access.net *.cryptonomic.net dattolocal.net mydatto.net debian.net bitbridge.net at-band-camp.net blogdns.net broke-it.net buyshouses.net dnsalias.net dnsdojo.net does-it.net dontexist.net dynalias.net dynathome.net endofinternet.net from-az.net from-co.net from-la.net from-ny.net gets-it.net ham-radio-op.net homeftp.net homeip.net homelinux.net homeunix.net in-the-band.net is-a-chef.net is-a-geek.net isa-geek.net kicks-ass.net office-on-the.net podzone.net scrapper-site.net selfip.net sells-it.net servebbs.net serveftp.net thruhere.net webhop.net definima.net casacam.net dynu.net dynv6.net twmail.net ru.net channelsdvr.net u.channelsdvr.net fastlylb.net map.fastlylb.net freetls.fastly.net map.fastly.net a.prod.fastly.net global.prod.fastly.net a.ssl.fastly.net b.ssl.fastly.net global.ssl.fastly.net edgeapp.net flynnhosting.net cdn-edges.net heteml.net cloudfunctions.net moonscale.net in-dsl.net in-vpn.net ipifony.net iobb.net cloudjiffy.net fra1-de.cloudjiffy.net west1-us.cloudjiffy.net jls-sto1.elastx.net jls-sto2.elastx.net jls-sto3.elastx.net faststacks.net fr-1.paas.massivegrid.net lon-1.paas.massivegrid.net lon-2.paas.massivegrid.net ny-1.paas.massivegrid.net ny-2.paas.massivegrid.net sg-1.paas.massivegrid.net jelastic.saveincloud.net nordeste-idc.saveincloud.net j.scaleforce.net jelastic.tsukaeru.net kinghost.net uni5.net krellian.net barsy.net memset.net azure-api.net azureedge.net azurefd.net azurewebsites.net azure-mobile.net azurestaticapps.net 1.azurestaticapps.net 2.azurestaticapps.net 3.azurestaticapps.net 4.azurestaticapps.net 5.azurestaticapps.net 6.azurestaticapps.net 7.azurestaticapps.net centralus.azurestaticapps.net eastasia.azurestaticapps.net eastus2.azurestaticapps.net westeurope.azurestaticapps.net westus2.azurestaticapps.net cloudapp.net trafficmanager.net blob.core.windows.net servicebus.windows.net dnsup.net hicam.net now-dns.net ownip.net vpndns.net eating-organic.net mydissent.net myeffect.net mymediapc.net mypsx.net mysecuritycamera.net nhlfan.net no-ip.net pgafan.net privatizehealthinsurance.net bounceme.net ddns.net redirectme.net serveblog.net serveminecraft.net sytes.net cloudycluster.net *.webpaas.ovh.net *.hosting.ovh.net bar0.net bar1.net bar2.net rackmaze.net squares.net schokokeks.net firewall-gateway.net seidat.net senseering.net siteleaf.net vps-host.net atl.jelastic.vps-host.net njs.jelastic.vps-host.net ric.jelastic.vps-host.net myspreadshop.net soc.srcf.net user.srcf.net supabase.net dsmynas.net familyds.net beta.tailscale.net ts.net torproject.net pages.torproject.net reserve-online.net community-pro.net meinforum.net yandexcloud.net storage.yandexcloud.net website.yandexcloud.net za.net nf com.nf net.nf per.nf rec.nf web.nf arts.nf firm.nf info.nf other.nf store.nf ng com.ng edu.ng gov.ng i.ng mil.ng mobi.ng name.ng net.ng org.ng sch.ng blogspot.com.ng col.ng firm.ng gen.ng ltd.ng ngo.ng ni ac.ni biz.ni co.ni com.ni edu.ni gob.ni in.ni info.ni int.ni mil.ni net.ni nom.ni org.ni web.ni nl co.nl hosting-cluster.nl blogspot.nl gov.nl khplay.nl 123website.nl myspreadshop.nl *.transurl.nl cistron.nl demon.nl no fhs.no vgs.no fylkesbibl.no folkebibl.no museum.no idrett.no priv.no mil.no stat.no dep.no kommune.no herad.no aa.no ah.no bu.no fm.no hl.no hm.no jan-mayen.no mr.no nl.no nt.no of.no ol.no oslo.no rl.no sf.no st.no svalbard.no tm.no tr.no va.no vf.no gs.aa.no gs.ah.no gs.bu.no gs.fm.no gs.hl.no gs.hm.no gs.jan-mayen.no gs.mr.no gs.nl.no gs.nt.no gs.of.no gs.ol.no gs.oslo.no gs.rl.no gs.sf.no gs.st.no gs.svalbard.no gs.tm.no gs.tr.no gs.va.no gs.vf.no akrehamn.no åkrehamn.no algard.no ålgård.no arna.no brumunddal.no bryne.no bronnoysund.no brønnøysund.no drobak.no drøbak.no egersund.no fetsund.no floro.no florø.no fredrikstad.no hokksund.no honefoss.no hønefoss.no jessheim.no jorpeland.no jørpeland.no kirkenes.no kopervik.no krokstadelva.no langevag.no langevåg.no leirvik.no mjondalen.no mjøndalen.no mo-i-rana.no mosjoen.no mosjøen.no nesoddtangen.no orkanger.no osoyro.no osøyro.no raholt.no råholt.no sandnessjoen.no sandnessjøen.no skedsmokorset.no slattum.no spjelkavik.no stathelle.no stavern.no stjordalshalsen.no stjørdalshalsen.no tananger.no tranby.no vossevangen.no afjord.no åfjord.no agdenes.no al.no ål.no alesund.no ålesund.no alstahaug.no alta.no áltá.no alaheadju.no álaheadju.no alvdal.no amli.no åmli.no amot.no åmot.no andebu.no andoy.no andøy.no andasuolo.no ardal.no årdal.no aremark.no arendal.no ås.no aseral.no åseral.no asker.no askim.no askvoll.no askoy.no askøy.no asnes.no åsnes.no audnedaln.no aukra.no aure.no aurland.no aurskog-holand.no aurskog-høland.no austevoll.no austrheim.no averoy.no averøy.no balestrand.no ballangen.no balat.no bálát.no balsfjord.no bahccavuotna.no báhccavuotna.no bamble.no bardu.no beardu.no beiarn.no bajddar.no bájddar.no baidar.no báidár.no berg.no bergen.no berlevag.no berlevåg.no bearalvahki.no bearalváhki.no bindal.no birkenes.no bjarkoy.no bjarkøy.no bjerkreim.no bjugn.no bodo.no bodø.no badaddja.no bådåddjå.no budejju.no bokn.no bremanger.no bronnoy.no brønnøy.no bygland.no bykle.no barum.no bærum.no bo.telemark.no bø.telemark.no bo.nordland.no bø.nordland.no bievat.no bievát.no bomlo.no bømlo.no batsfjord.no båtsfjord.no bahcavuotna.no báhcavuotna.no dovre.no drammen.no drangedal.no dyroy.no dyrøy.no donna.no dønna.no eid.no eidfjord.no eidsberg.no eidskog.no eidsvoll.no eigersund.no elverum.no enebakk.no engerdal.no etne.no etnedal.no evenes.no evenassi.no evenášši.no evje-og-hornnes.no farsund.no fauske.no fuossko.no fuoisku.no fedje.no fet.no finnoy.no finnøy.no fitjar.no fjaler.no fjell.no flakstad.no flatanger.no flekkefjord.no flesberg.no flora.no fla.no flå.no folldal.no forsand.no fosnes.no frei.no frogn.no froland.no frosta.no frana.no fræna.no froya.no frøya.no fusa.no fyresdal.no forde.no førde.no gamvik.no gangaviika.no gáŋgaviika.no gaular.no gausdal.no gildeskal.no gildeskål.no giske.no gjemnes.no gjerdrum.no gjerstad.no gjesdal.no gjovik.no gjøvik.no gloppen.no gol.no gran.no grane.no granvin.no gratangen.no grimstad.no grong.no kraanghke.no kråanghke.no grue.no gulen.no hadsel.no halden.no halsa.no hamar.no hamaroy.no habmer.no hábmer.no hapmir.no hápmir.no hammerfest.no hammarfeasta.no hámmárfeasta.no haram.no hareid.no harstad.no hasvik.no aknoluokta.no ákŋoluokta.no hattfjelldal.no aarborte.no haugesund.no hemne.no hemnes.no hemsedal.no heroy.more-og-romsdal.no herøy.møre-og-romsdal.no heroy.nordland.no herøy.nordland.no hitra.no hjartdal.no hjelmeland.no hobol.no hobøl.no hof.no hol.no hole.no holmestrand.no holtalen.no holtålen.no hornindal.no horten.no hurdal.no hurum.no hvaler.no hyllestad.no hagebostad.no hægebostad.no hoyanger.no høyanger.no hoylandet.no høylandet.no ha.no hå.no ibestad.no inderoy.no inderøy.no iveland.no jevnaker.no jondal.no jolster.no jølster.no karasjok.no karasjohka.no kárášjohka.no karlsoy.no galsa.no gálsá.no karmoy.no karmøy.no kautokeino.no guovdageaidnu.no klepp.no klabu.no klæbu.no kongsberg.no kongsvinger.no kragero.no kragerø.no kristiansand.no kristiansund.no krodsherad.no krødsherad.no kvalsund.no rahkkeravju.no ráhkkerávju.no kvam.no kvinesdal.no kvinnherad.no kviteseid.no kvitsoy.no kvitsøy.no kvafjord.no kvæfjord.no giehtavuoatna.no kvanangen.no kvænangen.no navuotna.no návuotna.no kafjord.no kåfjord.no gaivuotna.no gáivuotna.no larvik.no lavangen.no lavagis.no loabat.no loabát.no lebesby.no davvesiida.no leikanger.no leirfjord.no leka.no leksvik.no lenvik.no leangaviika.no leaŋgaviika.no lesja.no levanger.no lier.no lierne.no lillehammer.no lillesand.no lindesnes.no lindas.no lindås.no lom.no loppa.no lahppi.no láhppi.no lund.no lunner.no luroy.no lurøy.no luster.no lyngdal.no lyngen.no ivgu.no lardal.no lerdal.no lærdal.no lodingen.no lødingen.no lorenskog.no lørenskog.no loten.no løten.no malvik.no masoy.no måsøy.no muosat.no muosát.no mandal.no marker.no marnardal.no masfjorden.no meland.no meldal.no melhus.no meloy.no meløy.no meraker.no meråker.no moareke.no moåreke.no midsund.no midtre-gauldal.no modalen.no modum.no molde.no moskenes.no moss.no mosvik.no malselv.no målselv.no malatvuopmi.no málatvuopmi.no namdalseid.no aejrie.no namsos.no namsskogan.no naamesjevuemie.no nååmesjevuemie.no laakesvuemie.no nannestad.no narvik.no narviika.no naustdal.no nedre-eiker.no nes.akershus.no nes.buskerud.no nesna.no nesodden.no nesseby.no unjarga.no unjárga.no nesset.no nissedal.no nittedal.no nord-aurdal.no nord-fron.no nord-odal.no norddal.no nordkapp.no davvenjarga.no davvenjárga.no nordre-land.no nordreisa.no raisa.no ráisa.no nore-og-uvdal.no notodden.no naroy.no nærøy.no notteroy.no nøtterøy.no odda.no oksnes.no øksnes.no oppdal.no oppegard.no oppegård.no orkdal.no orland.no ørland.no orskog.no ørskog.no orsta.no ørsta.no os.hedmark.no os.hordaland.no osen.no osteroy.no osterøy.no ostre-toten.no østre-toten.no overhalla.no ovre-eiker.no øvre-eiker.no oyer.no øyer.no oygarden.no øygarden.no oystre-slidre.no øystre-slidre.no porsanger.no porsangu.no porsáŋgu.no porsgrunn.no radoy.no radøy.no rakkestad.no rana.no ruovat.no randaberg.no rauma.no rendalen.no rennebu.no rennesoy.no rennesøy.no rindal.no ringebu.no ringerike.no ringsaker.no rissa.no risor.no risør.no roan.no rollag.no rygge.no ralingen.no rælingen.no rodoy.no rødøy.no romskog.no rømskog.no roros.no røros.no rost.no røst.no royken.no røyken.no royrvik.no røyrvik.no rade.no råde.no salangen.no siellak.no saltdal.no salat.no sálát.no sálat.no samnanger.no sande.more-og-romsdal.no sande.møre-og-romsdal.no sande.vestfold.no sandefjord.no sandnes.no sandoy.no sandøy.no sarpsborg.no sauda.no sauherad.no sel.no selbu.no selje.no seljord.no sigdal.no siljan.no sirdal.no skaun.no skedsmo.no ski.no skien.no skiptvet.no skjervoy.no skjervøy.no skierva.no skiervá.no skjak.no skjåk.no skodje.no skanland.no skånland.no skanit.no skánit.no smola.no smøla.no snillfjord.no snasa.no snåsa.no snoasa.no snaase.no snåase.no sogndal.no sokndal.no sola.no solund.no songdalen.no sortland.no spydeberg.no stange.no stavanger.no steigen.no steinkjer.no stjordal.no stjørdal.no stokke.no stor-elvdal.no stord.no stordal.no storfjord.no omasvuotna.no strand.no stranda.no stryn.no sula.no suldal.no sund.no sunndal.no surnadal.no sveio.no svelvik.no sykkylven.no sogne.no søgne.no somna.no sømna.no sondre-land.no søndre-land.no sor-aurdal.no sør-aurdal.no sor-fron.no sør-fron.no sor-odal.no sør-odal.no sor-varanger.no sør-varanger.no matta-varjjat.no mátta-várjjat.no sorfold.no sørfold.no sorreisa.no sørreisa.no sorum.no sørum.no tana.no deatnu.no time.no tingvoll.no tinn.no tjeldsund.no dielddanuorri.no tjome.no tjøme.no tokke.no tolga.no torsken.no tranoy.no tranøy.no tromso.no tromsø.no tromsa.no romsa.no trondheim.no troandin.no trysil.no trana.no træna.no trogstad.no trøgstad.no tvedestrand.no tydal.no tynset.no tysfjord.no divtasvuodna.no divttasvuotna.no tysnes.no tysvar.no tysvær.no tonsberg.no tønsberg.no ullensaker.no ullensvang.no ulvik.no utsira.no vadso.no vadsø.no cahcesuolo.no čáhcesuolo.no vaksdal.no valle.no vang.no vanylven.no vardo.no vardø.no varggat.no várggát.no vefsn.no vaapste.no vega.no vegarshei.no vegårshei.no vennesla.no verdal.no verran.no vestby.no vestnes.no vestre-slidre.no vestre-toten.no vestvagoy.no vestvågøy.no vevelstad.no vik.no vikna.no vindafjord.no volda.no voss.no varoy.no værøy.no vagan.no vågan.no voagat.no vagsoy.no vågsøy.no vaga.no vågå.no valer.ostfold.no våler.østfold.no valer.hedmark.no våler.hedmark.no co.no blogspot.no 123hjemmeside.no myspreadshop.no *.np nr biz.nr info.nr gov.nr edu.nr org.nr net.nr com.nr nu merseine.nu mine.nu shacknet.nu enterprisecloud.nu nz ac.nz co.nz cri.nz geek.nz gen.nz govt.nz health.nz iwi.nz kiwi.nz maori.nz mil.nz māori.nz net.nz org.nz parliament.nz school.nz blogspot.co.nz om co.om com.om edu.om gov.om med.om museum.om net.om org.om pro.om onion org altervista.org tele.amune.org pimienta.org poivron.org potager.org sweetpepper.org ae.org us.org certmgr.org c.cdn77.org rsc.cdn77.org ssl.origin.cdn77-secure.org cloudns.org duckdns.org tunk.org dyndns.org blogdns.org blogsite.org boldlygoingnowhere.org dnsalias.org dnsdojo.org doesntexist.org dontexist.org doomdns.org dvrdns.org dynalias.org endofinternet.org endoftheinternet.org from-me.org game-host.org go.dyndns.org gotdns.org hobby-site.org home.dyndns.org homedns.org homeftp.org homelinux.org homeunix.org is-a-bruinsfan.org is-a-candidate.org is-a-celticsfan.org is-a-chef.org is-a-geek.org is-a-knight.org is-a-linux-user.org is-a-patsfan.org is-a-soxfan.org is-found.org is-lost.org is-saved.org is-very-bad.org is-very-evil.org is-very-good.org is-very-nice.org is-very-sweet.org isa-geek.org kicks-ass.org misconfused.org podzone.org readmyblog.org selfip.org sellsyourhome.org servebbs.org serveftp.org servegame.org stuff-4-sale.org webhop.org ddnss.org accesscam.org camdvr.org freeddns.org mywire.org webredirect.org eu.org al.eu.org asso.eu.org at.eu.org au.eu.org be.eu.org bg.eu.org ca.eu.org cd.eu.org ch.eu.org cn.eu.org cy.eu.org cz.eu.org de.eu.org dk.eu.org edu.eu.org ee.eu.org es.eu.org fi.eu.org fr.eu.org gr.eu.org hr.eu.org hu.eu.org ie.eu.org il.eu.org in.eu.org int.eu.org is.eu.org it.eu.org jp.eu.org kr.eu.org lt.eu.org lu.eu.org lv.eu.org mc.eu.org me.eu.org mk.eu.org mt.eu.org my.eu.org net.eu.org ng.eu.org nl.eu.org no.eu.org nz.eu.org paris.eu.org pl.eu.org pt.eu.org q-a.eu.org ro.eu.org ru.eu.org se.eu.org si.eu.org sk.eu.org tr.eu.org uk.eu.org us.eu.org twmail.org fedorainfracloud.org fedorapeople.org cloud.fedoraproject.org app.os.fedoraproject.org app.os.stg.fedoraproject.org freedesktop.org hepforge.org in-dsl.org in-vpn.org js.org barsy.org mayfirst.org mozilla-iot.org bmoattachments.org dynserv.org now-dns.org cable-modem.org collegefan.org couchpotatofries.org mlbfan.org mysecuritycamera.org nflfan.org read-books.org ufcfan.org hopto.org myftp.org no-ip.org zapto.org httpbin.org pubtls.org jpn.org my-firewall.org myfirewall.org spdns.org small-web.org dsmynas.org familyds.org s3.teckids.org tuxfamily.org diskstation.org hk.org wmflabs.org toolforge.org wmcloud.org za.org pa ac.pa gob.pa com.pa org.pa sld.pa edu.pa net.pa ing.pa abo.pa med.pa nom.pa pe edu.pe gob.pe nom.pe mil.pe org.pe com.pe net.pe blogspot.pe pf com.pf org.pf edu.pf *.pg ph com.ph net.ph org.ph gov.ph edu.ph ngo.ph mil.ph i.ph pk com.pk net.pk edu.pk org.pk fam.pk biz.pk web.pk gov.pk gob.pk gok.pk gon.pk gop.pk gos.pk info.pk pl com.pl net.pl org.pl aid.pl agro.pl atm.pl auto.pl biz.pl edu.pl gmina.pl gsm.pl info.pl mail.pl miasta.pl media.pl mil.pl nieruchomosci.pl nom.pl pc.pl powiat.pl priv.pl realestate.pl rel.pl sex.pl shop.pl sklep.pl sos.pl szkola.pl targi.pl tm.pl tourism.pl travel.pl turystyka.pl gov.pl ap.gov.pl griw.gov.pl ic.gov.pl is.gov.pl kmpsp.gov.pl konsulat.gov.pl kppsp.gov.pl kwp.gov.pl kwpsp.gov.pl mup.gov.pl mw.gov.pl oia.gov.pl oirm.gov.pl oke.gov.pl oow.gov.pl oschr.gov.pl oum.gov.pl pa.gov.pl pinb.gov.pl piw.gov.pl po.gov.pl pr.gov.pl psp.gov.pl psse.gov.pl pup.gov.pl rzgw.gov.pl sa.gov.pl sdn.gov.pl sko.gov.pl so.gov.pl sr.gov.pl starostwo.gov.pl ug.gov.pl ugim.gov.pl um.gov.pl umig.gov.pl upow.gov.pl uppo.gov.pl us.gov.pl uw.gov.pl uzs.gov.pl wif.gov.pl wiih.gov.pl winb.gov.pl wios.gov.pl witd.gov.pl wiw.gov.pl wkz.gov.pl wsa.gov.pl wskr.gov.pl wsse.gov.pl wuoz.gov.pl wzmiuw.gov.pl zp.gov.pl zpisdn.gov.pl augustow.pl babia-gora.pl bedzin.pl beskidy.pl bialowieza.pl bialystok.pl bielawa.pl bieszczady.pl boleslawiec.pl bydgoszcz.pl bytom.pl cieszyn.pl czeladz.pl czest.pl dlugoleka.pl elblag.pl elk.pl glogow.pl gniezno.pl gorlice.pl grajewo.pl ilawa.pl jaworzno.pl jelenia-gora.pl jgora.pl kalisz.pl kazimierz-dolny.pl karpacz.pl kartuzy.pl kaszuby.pl katowice.pl kepno.pl ketrzyn.pl klodzko.pl kobierzyce.pl kolobrzeg.pl konin.pl konskowola.pl kutno.pl lapy.pl lebork.pl legnica.pl lezajsk.pl limanowa.pl lomza.pl lowicz.pl lubin.pl lukow.pl malbork.pl malopolska.pl mazowsze.pl mazury.pl mielec.pl mielno.pl mragowo.pl naklo.pl nowaruda.pl nysa.pl olawa.pl olecko.pl olkusz.pl olsztyn.pl opoczno.pl opole.pl ostroda.pl ostroleka.pl ostrowiec.pl ostrowwlkp.pl pila.pl pisz.pl podhale.pl podlasie.pl polkowice.pl pomorze.pl pomorskie.pl prochowice.pl pruszkow.pl przeworsk.pl pulawy.pl radom.pl rawa-maz.pl rybnik.pl rzeszow.pl sanok.pl sejny.pl slask.pl slupsk.pl sosnowiec.pl stalowa-wola.pl skoczow.pl starachowice.pl stargard.pl suwalki.pl swidnica.pl swiebodzin.pl swinoujscie.pl szczecin.pl szczytno.pl tarnobrzeg.pl tgory.pl turek.pl tychy.pl ustka.pl walbrzych.pl warmia.pl warszawa.pl waw.pl wegrow.pl wielun.pl wlocl.pl wloclawek.pl wodzislaw.pl wolomin.pl wroclaw.pl zachpomor.pl zagan.pl zarow.pl zgora.pl zgorzelec.pl beep.pl ecommerce-shop.pl shoparena.pl homesklep.pl sdscloud.pl unicloud.pl krasnik.pl leczna.pl lubartow.pl lublin.pl poniatowa.pl swidnik.pl co.pl torun.pl simplesite.pl art.pl gliwice.pl krakow.pl poznan.pl wroc.pl zakopane.pl myspreadshop.pl gda.pl gdansk.pl gdynia.pl med.pl sopot.pl pm own.pm name.pm pn gov.pn co.pn org.pn edu.pn net.pn post pr com.pr net.pr org.pr gov.pr edu.pr isla.pr pro.pr biz.pr info.pr name.pr est.pr prof.pr ac.pr pro aaa.pro aca.pro acct.pro avocat.pro bar.pro cpa.pro eng.pro jur.pro law.pro med.pro recht.pro 12chars.pro cloudns.pro bci.dnstrace.pro barsy.pro ps edu.ps gov.ps sec.ps plo.ps com.ps org.ps net.ps pt net.pt gov.pt org.pt edu.pt int.pt publ.pt com.pt nome.pt blogspot.pt 123paginaweb.pt pw co.pw ne.pw or.pw ed.pw go.pw belau.pw cloudns.pw x443.pw py com.py coop.py edu.py gov.py mil.py net.py org.py qa com.qa edu.qa gov.qa mil.qa name.qa net.qa org.qa sch.qa blogspot.qa re asso.re com.re nom.re blogspot.re ro arts.ro com.ro firm.ro info.ro nom.ro nt.ro org.ro rec.ro store.ro tm.ro www.ro co.ro shop.ro blogspot.ro barsy.ro rs ac.rs co.rs edu.rs gov.rs in.rs org.rs shop.brendly.rs blogspot.rs ua.rs ox.rs ru ac.ru edu.ru gov.ru int.ru mil.ru test.ru eurodir.ru adygeya.ru bashkiria.ru bir.ru cbg.ru com.ru dagestan.ru grozny.ru kalmykia.ru kustanai.ru marine.ru mordovia.ru msk.ru mytis.ru nalchik.ru nov.ru pyatigorsk.ru spb.ru vladikavkaz.ru vladimir.ru blogspot.ru na4u.ru mircloud.ru jelastic.regruhosting.ru myjino.ru *.hosting.myjino.ru *.landing.myjino.ru *.spectrum.myjino.ru *.vps.myjino.ru hb.cldmail.ru mcdir.ru mcpre.ru vps.mcdir.ru net.ru org.ru pp.ru 123sait.ru lk3.ru ras.ru rw ac.rw co.rw coop.rw gov.rw mil.rw net.rw org.rw sa com.sa net.sa org.sa gov.sa med.sa pub.sa edu.sa sch.sa sb com.sb edu.sb gov.sb net.sb org.sb sc com.sc gov.sc net.sc org.sc edu.sc sd com.sd net.sd org.sd edu.sd med.sd tv.sd gov.sd info.sd se a.se ac.se b.se bd.se brand.se c.se d.se e.se f.se fh.se fhsk.se fhv.se g.se h.se i.se k.se komforb.se kommunalforbund.se komvux.se l.se lanbib.se m.se n.se naturbruksgymn.se o.se org.se p.se parti.se pp.se press.se r.se s.se t.se tm.se u.se w.se x.se y.se z.se com.se blogspot.se conf.se iopsys.se 123minsida.se itcouldbewor.se myspreadshop.se su.paba.se sg com.sg net.sg org.sg gov.sg edu.sg per.sg blogspot.sg enscaled.sg sh com.sh net.sh gov.sh org.sh mil.sh bip.sh hashbang.sh ent.platform.sh eu.platform.sh us.platform.sh now.sh vxl.sh wedeploy.sh si gitapp.si gitpage.si blogspot.si sj sk blogspot.sk sl com.sl net.sl edu.sl gov.sl org.sl sm sn art.sn com.sn edu.sn gouv.sn org.sn perso.sn univ.sn blogspot.sn so com.so edu.so gov.so me.so net.so org.so sch.so sr ss biz.ss com.ss edu.ss gov.ss me.ss net.ss org.ss sch.ss st co.st com.st consulado.st edu.st embaixada.st mil.st net.st org.st principe.st saotome.st store.st kirara.st noho.st su abkhazia.su adygeya.su aktyubinsk.su arkhangelsk.su armenia.su ashgabad.su azerbaijan.su balashov.su bashkiria.su bryansk.su bukhara.su chimkent.su dagestan.su east-kazakhstan.su exnet.su georgia.su grozny.su ivanovo.su jambyl.su kalmykia.su kaluga.su karacol.su karaganda.su karelia.su khakassia.su krasnodar.su kurgan.su kustanai.su lenug.su mangyshlak.su mordovia.su msk.su murmansk.su nalchik.su navoi.su north-kazakhstan.su nov.su obninsk.su penza.su pokrovsk.su sochi.su spb.su tashkent.su termez.su togliatti.su troitsk.su tselinograd.su tula.su tuva.su vladikavkaz.su vladimir.su vologda.su sv com.sv edu.sv gob.sv org.sv red.sv sx gov.sx sy edu.sy gov.sy net.sy mil.sy com.sy org.sy sz co.sz ac.sz org.sz tc ch.tc me.tc we.tc td blogspot.td tel tf sch.tf tg th ac.th co.th go.th in.th mi.th net.th or.th online.th shop.th tj ac.tj biz.tj co.tj com.tj edu.tj go.tj gov.tj int.tj mil.tj name.tj net.tj nic.tj org.tj test.tj web.tj tk tl gov.tl tm com.tm co.tm org.tm net.tm nom.tm gov.tm mil.tm edu.tm tn com.tn ens.tn fin.tn gov.tn ind.tn info.tn intl.tn mincom.tn nat.tn net.tn org.tn perso.tn tourism.tn orangecloud.tn to com.to gov.to net.to org.to edu.to mil.to 611.to oya.to rdv.to x0.to vpnplus.to direct.quickconnect.to nyan.to tr av.tr bbs.tr bel.tr biz.tr com.tr dr.tr edu.tr gen.tr gov.tr info.tr mil.tr k12.tr kep.tr name.tr net.tr org.tr pol.tr tel.tr tsk.tr tv.tr web.tr nc.tr gov.nc.tr blogspot.com.tr tt co.tt com.tt org.tt net.tt biz.tt info.tt pro.tt int.tt coop.tt jobs.tt mobi.tt travel.tt museum.tt aero.tt name.tt gov.tt edu.tt tv dyndns.tv better-than.tv on-the-web.tv worse-than.tv from.tv sakura.tv tw edu.tw gov.tw mil.tw com.tw net.tw org.tw idv.tw game.tw ebiz.tw club.tw 網路.tw 組織.tw 商業.tw mymailer.com.tw url.tw blogspot.tw tz ac.tz co.tz go.tz hotel.tz info.tz me.tz mil.tz mobi.tz ne.tz or.tz sc.tz tv.tz ua com.ua edu.ua gov.ua in.ua net.ua org.ua cherkassy.ua cherkasy.ua chernigov.ua chernihiv.ua chernivtsi.ua chernovtsy.ua ck.ua cn.ua cr.ua crimea.ua cv.ua dn.ua dnepropetrovsk.ua dnipropetrovsk.ua donetsk.ua dp.ua if.ua ivano-frankivsk.ua kh.ua kharkiv.ua kharkov.ua kherson.ua khmelnitskiy.ua khmelnytskyi.ua kiev.ua kirovograd.ua km.ua kr.ua kropyvnytskyi.ua krym.ua ks.ua kv.ua kyiv.ua lg.ua lt.ua lugansk.ua luhansk.ua lutsk.ua lv.ua lviv.ua mk.ua mykolaiv.ua nikolaev.ua od.ua odesa.ua odessa.ua pl.ua poltava.ua rivne.ua rovno.ua rv.ua sb.ua sebastopol.ua sevastopol.ua sm.ua sumy.ua te.ua ternopil.ua uz.ua uzhgorod.ua uzhhorod.ua vinnica.ua vinnytsia.ua vn.ua volyn.ua yalta.ua zakarpattia.ua zaporizhzhe.ua zaporizhzhia.ua zhitomir.ua zhytomyr.ua zp.ua zt.ua cc.ua inf.ua ltd.ua cx.ua ie.ua biz.ua co.ua pp.ua v.ua ug co.ug or.ug ac.ug sc.ug go.ug ne.ug com.ug org.ug blogspot.ug uk ac.uk co.uk gov.uk ltd.uk me.uk net.uk nhs.uk org.uk plc.uk police.uk *.sch.uk dh.bytemark.co.uk vm.bytemark.co.uk conn.uk copro.uk hosp.uk independent-commission.uk independent-inquest.uk independent-inquiry.uk independent-panel.uk independent-review.uk public-inquiry.uk royal-commission.uk campaign.gov.uk service.gov.uk api.gov.uk pymnt.uk blogspot.co.uk j.layershift.co.uk glug.org.uk lug.org.uk lugs.org.uk barsy.co.uk barsyonline.co.uk barsy.uk cust.retrosnub.co.uk nh-serv.co.uk no-ip.co.uk wellbeingzone.co.uk adimo.co.uk myspreadshop.co.uk affinitylottery.org.uk raffleentry.org.uk weeklylottery.org.uk us dni.us fed.us isa.us kids.us nsn.us ak.us al.us ar.us as.us az.us ca.us co.us ct.us dc.us de.us fl.us ga.us gu.us hi.us ia.us id.us il.us in.us ks.us ky.us la.us ma.us md.us me.us mi.us mn.us mo.us ms.us mt.us nc.us nd.us ne.us nh.us nj.us nm.us nv.us ny.us oh.us ok.us or.us pa.us pr.us ri.us sc.us sd.us tn.us tx.us ut.us vi.us vt.us va.us wa.us wi.us wv.us wy.us k12.ak.us k12.al.us k12.ar.us k12.as.us k12.az.us k12.ca.us k12.co.us k12.ct.us k12.dc.us k12.fl.us k12.ga.us k12.gu.us k12.ia.us k12.id.us k12.il.us k12.in.us k12.ks.us k12.ky.us k12.la.us k12.ma.us k12.md.us k12.me.us k12.mi.us k12.mn.us k12.mo.us k12.ms.us k12.mt.us k12.nc.us k12.ne.us k12.nh.us k12.nj.us k12.nm.us k12.nv.us k12.ny.us k12.oh.us k12.ok.us k12.or.us k12.pa.us k12.pr.us k12.sc.us k12.tn.us k12.tx.us k12.ut.us k12.vi.us k12.vt.us k12.va.us k12.wa.us k12.wi.us k12.wy.us cc.ak.us cc.al.us cc.ar.us cc.as.us cc.az.us cc.ca.us cc.co.us cc.ct.us cc.dc.us cc.de.us cc.fl.us cc.ga.us cc.gu.us cc.hi.us cc.ia.us cc.id.us cc.il.us cc.in.us cc.ks.us cc.ky.us cc.la.us cc.ma.us cc.md.us cc.me.us cc.mi.us cc.mn.us cc.mo.us cc.ms.us cc.mt.us cc.nc.us cc.nd.us cc.ne.us cc.nh.us cc.nj.us cc.nm.us cc.nv.us cc.ny.us cc.oh.us cc.ok.us cc.or.us cc.pa.us cc.pr.us cc.ri.us cc.sc.us cc.sd.us cc.tn.us cc.tx.us cc.ut.us cc.vi.us cc.vt.us cc.va.us cc.wa.us cc.wi.us cc.wv.us cc.wy.us lib.ak.us lib.al.us lib.ar.us lib.as.us lib.az.us lib.ca.us lib.co.us lib.ct.us lib.dc.us lib.fl.us lib.ga.us lib.gu.us lib.hi.us lib.ia.us lib.id.us lib.il.us lib.in.us lib.ks.us lib.ky.us lib.la.us lib.ma.us lib.md.us lib.me.us lib.mi.us lib.mn.us lib.mo.us lib.ms.us lib.mt.us lib.nc.us lib.nd.us lib.ne.us lib.nh.us lib.nj.us lib.nm.us lib.nv.us lib.ny.us lib.oh.us lib.ok.us lib.or.us lib.pa.us lib.pr.us lib.ri.us lib.sc.us lib.sd.us lib.tn.us lib.tx.us lib.ut.us lib.vi.us lib.vt.us lib.va.us lib.wa.us lib.wi.us lib.wy.us pvt.k12.ma.us chtr.k12.ma.us paroch.k12.ma.us ann-arbor.mi.us cog.mi.us dst.mi.us eaton.mi.us gen.mi.us mus.mi.us tec.mi.us washtenaw.mi.us graphox.us cloudns.us drud.us is-by.us land-4-sale.us stuff-4-sale.us phx.enscaled.us mircloud.us freeddns.us golffan.us noip.us pointto.us platterp.us lib.de.us uy com.uy edu.uy gub.uy mil.uy net.uy org.uy blogspot.com.uy uz co.uz com.uz net.uz org.uz va vc com.vc net.vc org.vc gov.vc mil.vc edu.vc gv.vc d.gv.vc 0e.vc ve arts.ve bib.ve co.ve com.ve e12.ve edu.ve firm.ve gob.ve gov.ve info.ve int.ve mil.ve net.ve nom.ve org.ve rar.ve rec.ve store.ve tec.ve web.ve vg at.vg vi co.vi com.vi k12.vi net.vi org.vi vn ac.vn ai.vn biz.vn com.vn edu.vn gov.vn health.vn id.vn info.vn int.vn io.vn name.vn net.vn org.vn pro.vn angiang.vn bacgiang.vn backan.vn baclieu.vn bacninh.vn baria-vungtau.vn bentre.vn binhdinh.vn binhduong.vn binhphuoc.vn binhthuan.vn camau.vn cantho.vn caobang.vn daklak.vn daknong.vn danang.vn dienbien.vn dongnai.vn dongthap.vn gialai.vn hagiang.vn haiduong.vn haiphong.vn hanam.vn hanoi.vn hatinh.vn haugiang.vn hoabinh.vn hungyen.vn khanhhoa.vn kiengiang.vn kontum.vn laichau.vn lamdong.vn langson.vn laocai.vn longan.vn namdinh.vn nghean.vn ninhbinh.vn ninhthuan.vn phutho.vn phuyen.vn quangbinh.vn quangnam.vn quangngai.vn quangninh.vn quangtri.vn soctrang.vn sonla.vn tayninh.vn thaibinh.vn thainguyen.vn thanhhoa.vn thanhphohochiminh.vn thuathienhue.vn tiengiang.vn travinh.vn tuyenquang.vn vinhlong.vn vinhphuc.vn yenbai.vn blogspot.vn vu com.vu edu.vu net.vu org.vu cn.vu blog.vu dev.vu me.vu wf biz.wf sch.wf ws com.ws net.ws org.ws gov.ws edu.ws *.advisor.ws cloud66.ws dyndns.ws mypets.ws yt org.yt امارات հայ বাংলা бг البحرين бел 中国 中國 الجزائر مصر ею ευ موريتانيا გე ελ 香港 公司.香港 教育.香港 政府.香港 個人.香港 網絡.香港 組織.香港 ಭಾರತ ଭାରତ ভাৰত भारतम् भारोत ڀارت ഭാരതം भारत بارت بھارت భారత్ ભારત ਭਾਰਤ ভারত இந்தியா ایران ايران عراق الاردن 한국 қаз ລາວ ලංකා இலங்கை المغرب мкд мон 澳門 澳门 مليسيا عمان پاکستان پاكستان فلسطين срб пр.срб орг.срб обр.срб од.срб упр.срб ак.срб рф قطر السعودية السعودیة السعودیۃ السعوديه سودان 新加坡 சிங்கப்பூர் سورية سوريا ไทย ศึกษา.ไทย ธุรกิจ.ไทย รัฐบาล.ไทย ทหาร.ไทย เน็ต.ไทย องค์กร.ไทย تونس 台灣 台湾 臺灣 укр اليمن xxx ye com.ye edu.ye gov.ye net.ye mil.ye org.ye ac.za agric.za alt.za co.za edu.za gov.za grondar.za law.za mil.za net.za ngo.za nic.za nis.za nom.za org.za school.za tm.za web.za blogspot.co.za zm ac.zm biz.zm co.zm com.zm edu.zm gov.zm info.zm mil.zm net.zm org.zm sch.zm zw ac.zw co.zw gov.zw mil.zw org.zw aaa aarp abb abbott abbvie abc able abogado abudhabi academy official.academy accenture accountant accountants aco actor ads adult aeg aetna afl africa agakhan agency aig airbus airforce airtel akdn alibaba alipay allfinanz allstate ally alsace alstom amazon americanexpress americanfamily amex amfam amica amsterdam analytics android anquan anz aol apartments app *.beget.app clerk.app clerkstage.app wnext.app cyclic.app platform0.app deta.app ondigitalocean.app easypanel.app encr.app edgecompute.app fireweb.app onflashdrive.app flutterflow.app framer.app *.run.app web.app hasura.app loginline.app messerli.app netlify.app ngrok.app ngrok-free.app *.developer.app noop.app *.northflank.app *.upsun.app snowflake.app privatelink.snowflake.app streamlit.app storipress.app telebit.app typedream.app vercel.app bookonline.app apple aquarelle arab aramco archi army art arte asda associates athleta attorney auction audi audible audio auspost author auto autos avianca aws notebook.af-south-1.sagemaker.aws notebook.ap-east-1.sagemaker.aws notebook.ap-northeast-1.sagemaker.aws notebook.ap-northeast-2.sagemaker.aws notebook.ap-northeast-3.sagemaker.aws notebook.ap-south-1.sagemaker.aws notebook.ap-south-2.sagemaker.aws notebook.ap-southeast-1.sagemaker.aws notebook.ap-southeast-2.sagemaker.aws notebook.ap-southeast-3.sagemaker.aws notebook.ap-southeast-4.sagemaker.aws notebook.ca-central-1.sagemaker.aws notebook-fips.ca-central-1.sagemaker.aws notebook.ca-west-1.sagemaker.aws notebook-fips.ca-west-1.sagemaker.aws notebook.eu-central-1.sagemaker.aws notebook.eu-central-2.sagemaker.aws notebook.eu-north-1.sagemaker.aws notebook.eu-south-1.sagemaker.aws notebook.eu-south-2.sagemaker.aws notebook.eu-west-1.sagemaker.aws notebook.eu-west-2.sagemaker.aws notebook.eu-west-3.sagemaker.aws notebook.il-central-1.sagemaker.aws notebook.me-central-1.sagemaker.aws notebook.me-south-1.sagemaker.aws notebook.sa-east-1.sagemaker.aws notebook.us-east-1.sagemaker.aws notebook-fips.us-east-1.sagemaker.aws notebook.us-east-2.sagemaker.aws notebook-fips.us-east-2.sagemaker.aws notebook.us-gov-east-1.sagemaker.aws notebook-fips.us-gov-east-1.sagemaker.aws notebook.us-gov-west-1.sagemaker.aws notebook-fips.us-gov-west-1.sagemaker.aws notebook.us-west-1.sagemaker.aws notebook.us-west-2.sagemaker.aws notebook-fips.us-west-2.sagemaker.aws studio.af-south-1.sagemaker.aws studio.ap-east-1.sagemaker.aws studio.ap-northeast-1.sagemaker.aws studio.ap-northeast-2.sagemaker.aws studio.ap-northeast-3.sagemaker.aws studio.ap-south-1.sagemaker.aws studio.ap-southeast-1.sagemaker.aws studio.ap-southeast-2.sagemaker.aws studio.ap-southeast-3.sagemaker.aws studio.ca-central-1.sagemaker.aws studio.eu-central-1.sagemaker.aws studio.eu-north-1.sagemaker.aws studio.eu-south-1.sagemaker.aws studio.eu-west-1.sagemaker.aws studio.eu-west-2.sagemaker.aws studio.eu-west-3.sagemaker.aws studio.il-central-1.sagemaker.aws studio.me-central-1.sagemaker.aws studio.me-south-1.sagemaker.aws studio.sa-east-1.sagemaker.aws studio.us-east-1.sagemaker.aws studio.us-east-2.sagemaker.aws studio.us-gov-east-1.sagemaker.aws studio-fips.us-gov-east-1.sagemaker.aws studio.us-gov-west-1.sagemaker.aws studio-fips.us-gov-west-1.sagemaker.aws studio.us-west-1.sagemaker.aws studio.us-west-2.sagemaker.aws *.private.repost.aws axa azure baby baidu banamex band bank bar barcelona barclaycard barclays barefoot bargains baseball basketball aus.basketball nz.basketball bauhaus bayern bbc bbt bbva bcg bcn beats beauty beer bentley berlin best bestbuy bet bharti bible bid bike bing bingo bio black blackfriday blockbuster blog bloomberg blue bms bmw bnpparibas boats boehringer bofa bom bond boo book booking bosch bostik boston bot boutique box bradesco bridgestone broadway broker brother brussels build builders cloudsite.builders business co.business buy buzz bzh cab cafe cal call calvinklein cam camera camp canon capetown capital capitalone car caravan cards care career careers cars casa ui.nabu.casa case cash casino catering catholic cba cbn cbre center ceo cern cfa cfd chanel channel charity chase chat cheap chintai christmas chrome church cipriani circle cisco citadel citi citic city claims cleaning click clinic clinique clothing cloud *.banzai.cloud cyclic.cloud elementor.cloud eu.encoway.cloud *.statics.cloud ravendb.cloud es-1.axarnet.cloud diadem.cloud vip.jelastic.cloud jele.cloud it1.eur.aruba.jenv-aruba.cloud it1.jenv-aruba.cloud keliweb.cloud cs.keliweb.cloud oxa.cloud tn.oxa.cloud uk.oxa.cloud primetel.cloud uk.primetel.cloud ca.reclaim.cloud uk.reclaim.cloud us.reclaim.cloud ch.trendhosting.cloud de.trendhosting.cloud jotelulu.cloud kuleuven.cloud linkyard.cloud *.magentosite.cloud perspecta.cloud vapor.cloud *.on-rancher.cloud fr-par-1.baremetal.scw.cloud fr-par-2.baremetal.scw.cloud nl-ams-1.baremetal.scw.cloud cockpit.fr-par.scw.cloud fnc.fr-par.scw.cloud functions.fnc.fr-par.scw.cloud k8s.fr-par.scw.cloud nodes.k8s.fr-par.scw.cloud s3.fr-par.scw.cloud s3-website.fr-par.scw.cloud whm.fr-par.scw.cloud priv.instances.scw.cloud pub.instances.scw.cloud k8s.scw.cloud cockpit.nl-ams.scw.cloud k8s.nl-ams.scw.cloud nodes.k8s.nl-ams.scw.cloud s3.nl-ams.scw.cloud s3-website.nl-ams.scw.cloud whm.nl-ams.scw.cloud cockpit.pl-waw.scw.cloud k8s.pl-waw.scw.cloud nodes.k8s.pl-waw.scw.cloud s3.pl-waw.scw.cloud s3-website.pl-waw.scw.cloud scalebook.scw.cloud smartlabeling.scw.cloud *.sensiosite.cloud trafficplex.cloud urown.cloud voorloper.cloud zap.cloud club cloudns.club jele.club barsy.club clubmed coach codes *.owo.codes coffee college cologne commbank community nog.community ravendb.community myforum.community company compare computer comsec condos construction consulting contact contractors cooking cool elementor.cool de.cool corsica country coupon coupons courses cpa credit creditcard creditunion cricket crown crs cruise cruises cuisinella cymru cyou dabur dad dance data date dating datsun day dclk dds deal dealer deals degree delivery dell deloitte delta democrat dental dentist desi design bss.design dev 12chars.dev panel.dev autocode.dev *.lcl.dev *.lclstage.dev *.stg.dev *.stgstage.dev pages.dev r2.dev workers.dev curv.dev deno.dev deno-staging.dev deta.dev fly.dev githubpreview.dev *.gateway.dev iserv.dev *.user.localcert.dev loginline.dev mediatech.dev ngrok.dev ngrok-free.dev platter-app.dev shiftcrypto.dev vercel.dev *.webhare.dev dhl diamonds diet digital cloudapps.digital london.cloudapps.digital direct directory discount discover dish diy dnp docs doctor dog domains dot download drive dtv dubai dunlop dupont durban dvag dvr earth *.dapps.earth *.bzz.dapps.earth eat eco edeka education co.education email emerck energy engineer engineering enterprises epson equipment ericsson erni esq estate *.compute.estate eurovision eus user.party.eus events koobin.events co.events exchange expert exposed express extraspace fage fail fairwinds faith ybo.faith family fan fans farm storj.farm farmers fashion fast fedex feedback ferrari ferrero fidelity fido film final finance financial co.financial fire firestone firmdale fish fishing fit fitness flickr flights flir florist flowers fly foo food football ford forex forsale forum foundation fox free fresenius frl frogans frontier ftr fujitsu fun fund furniture futbol fyi gal gallery gallo gallup game games pley.games gap garden gay pages.gay gbiz gdn cnpy.gdn gea gent genting george ggee gift gifts gives giving glass gle global globo gmail gmbh gmo gmx godaddy gold goldpoint golf goo goodyear goog cloud.goog translate.goog *.usercontent.goog google gop got grainger graphics gratis green gripe grocery group discourse.group guardian gucci guge guide guitars guru hair hamburg hangout haus hbo hdfc hdfcbank health hra.health healthcare help helsinki here hermes hiphop hisamitsu hitachi hiv hkt hockey holdings holiday homedepot homegoods homes homesense honda horse hospital host cloudaccess.host freesite.host easypanel.host fastvps.host myfast.host tempurl.host wpmudev.host jele.host mircloud.host pcloud.host half.host hosting opencraft.hosting hot hotels hotmail house how hsbc hughes hyatt hyundai ibm icbc ice icu ieee ifm ikano imamat imdb immo immobilien inc industries infiniti ing ink institute insurance insure international intuit investments ipiranga irish ismaili ist istanbul itau itv jaguar java jcb jeep jetzt jewelry jio jll jmp jnj joburg jot joy jpmorgan jprs juegos juniper kaufen kddi kerryhotels kerrylogistics kerryproperties kfh kia kids kim kindle kitchen kiwi koeln komatsu kosher kpmg kpn krd co.krd edu.krd kred kuokgroup kyoto lacaixa lamborghini lamer lancaster land static.land dev.static.land sites.static.land landrover lanxess lasalle lat latino latrobe law lawyer lds lease leclerc lefrak legal lego lexus lgbt lidl life lifeinsurance lifestyle lighting like lilly limited limo lincoln link cyon.link mypep.link *.dweb.link lipsy live aem.live hlx.live living llc llp loan loans locker locus lol omg.lol london lotte lotto love lpl lplfinancial ltd ltda lundbeck luxe luxury madrid maif maison makeup man management router.management mango map market marketing markets marriott marshalls mattel mba mckinsey med media framer.media meet melbourne meme memorial men menu barsy.menu merckmsd miami microsoft mini mint mit mitsubishi mlb mls mma mobile moda moe moi mom monash money monster mormon mortgage moscow moto motorcycles mov movie msd mtn mtr music nab nagoya natura navy nba nec netbank netflix network *.alces.network co.network arvo.network azimuth.network tlon.network neustar new news noticeable.news next nextdirect nexus nfl ngo nhk nico nike nikon ninja nissan nissay nokia norton now nowruz nowtv nra nrw ntt nyc obi observer office okinawa olayan olayangroup ollo omega one onred.one staging.onred.one *.kin.one service.one homelink.one ong onl online eero.online eero-stage.online barsy.online ooo open oracle orange tech.orange organic origins osaka otsuka ott ovh nerdpol.ovh page aem.page hlx.page hlx3.page translated.page codeberg.page pdns.page plesk.page prvcy.page rocky.page magnet.page panasonic paris pars partners parts party ybo.party pay pccw pet pfizer pharmacy phd philips phone photo photography photos framer.photos physio pics pictet pictures 1337.pictures pid pin ping pink pioneer pizza ngrok.pizza place co.place play playstation plumbing plus pnc pohl poker politie porn indie.porn pramerica praxi press prime prod productions prof progressive promo properties property protection pru prudential pub *.id.pub *.kin.pub barsy.pub pwc qpon quebec quest racing radio read realestate realtor realty recipes red redstone redumbrella rehab reise reisen reit reliance ren rent rentals repair report republican rest restaurant review ybo.review reviews rexroth rich richardli ricoh ril rio rip clan.rip rocks myddns.rocks lima-city.rocks webspace.rocks rodeo rogers room rsvp rugby ruhr run hs.run development.run ravendb.run servers.run *.build.run *.code.run *.database.run *.migration.run onporter.run repl.run wix.run rwe ryukyu saarland safe safety sakura sale salon samsclub samsung sandvik sandvikcoromant sanofi sap sarl sas save saxo sbi sbs scb schaeffler schmidt scholarships school schule schwarz science ybo.science scot edu.scot gov.scot service.gov.scot search seat secure security seek select sener services loginline.services seven sew sex sexy sfr shangrila sharp shaw shell shia shiksha shoes shop base.shop hoplix.shop barsy.shop shopping shouji show silk sina singles site *.cloudera.site cyon.site fnwk.site folionetwork.site fastvps.site jele.site lelux.site loginline.site barsy.site mintere.site omniwe.site opensocial.site *.platformsh.site *.tst.site byen.site srht.site novecore.site ski skin sky skype sling smart smile sncf soccer social softbank software sohu solar solutions *.diher.solutions song sony soy spa space myfast.space uber.space xs4all.space sport spot srl stada staples star statebank statefarm stc stcgroup stockholm storage store sellfy.store shopware.store storebase.store stream studio study style sucks supplies supply support barsy.support surf surgery suzuki swatch swiss sydney systems knightpoint.systems tab taipei talk taobao target tatamotors tatar tattoo tax taxi tci tdk team discourse.team jelastic.team tech technology co.technology temasek tennis teva thd theater theatre tiaa tickets tienda tips tires tirol tjmaxx tjx tkmaxx tmall today prequalifyme.today tokyo tools top now-dns.top ntdll.top toray toshiba total tours town toyota toys trade ybo.trade trading training travel travelers travelersinsurance trust trv tube tui tunes tushu tvs ubank ubs unicom university uno uol ups vacations vana vanguard vegas ventures verisign versicherung vet viajes video vig viking villas vin vip virgin visa vision viva vivo vlaanderen vodka volvo vote voting voto voyage wales walmart walter wang wanggou watch watches weather weatherchannel webcam weber website framer.website wed wedding weibo weir whoswho wien wiki framer.wiki williamhill win windows wine winners wme wolterskluwer woodside work works world wow wtc wtf xbox xerox xihuan xin कॉम セール 佛山 慈善 集团 在线 点看 คอม 八卦 موقع 公益 公司 香格里拉 网站 移动 我爱你 москва католик онлайн сайт 联通 קום 时尚 微博 淡马锡 ファッション орг नेट ストア アマゾン 삼성 商标 商店 商城 дети ポイント 新闻 家電 كوم 中文网 中信 娱乐 谷歌 電訊盈科 购物 クラウド 通販 网店 संगठन 餐厅 网络 ком 亚马逊 食品 飞利浦 手机 ارامكو العليان بازار ابوظبي كاثوليك همراه 닷컴 政府 شبكة بيتك عرب 机构 组织机构 健康 招聘 рус биз.рус ком.рус крым.рус мир.рус мск.рус орг.рус самара.рус сочи.рус спб.рус я.рус 大拿 みんな グーグル 世界 書籍 网址 닷넷 コム 天主教 游戏 vermögensberater vermögensberatung 企业 信息 嘉里大酒店 嘉里 广东 政务 xyz blogsite.xyz localzone.xyz crafting.xyz zapto.xyz *.telebit.xyz yachts yahoo yamaxun yandex yodobashi yoga yokohama you youtube yun zappos zara zero zip zone cloud66.zone hs.zone *.triton.zone lima.zone zuerichpsl-2.1.25/examples/tldextract.rs000064400000000000000000000037371046102023000150650ustar 00000000000000use psl_types::List; pub trait TldExtract { fn extract<'a>(&self, host: &'a str) -> Option>; } impl TldExtract for T { fn extract<'a>(&self, host: &'a str) -> Option> { let host_len = host.len(); let suffix_len = self.suffix(host.as_bytes())?.as_bytes().len(); let suffix = { let offset = host_len - suffix_len; &host[offset..] }; let suffix_plus_dot = suffix_len + 1; let (subdomain, domain) = if host_len > suffix_plus_dot { match host.get(..host_len - suffix_plus_dot) { Some(prefix) => match prefix.rfind('.') { Some(offset) => (prefix.get(..offset), prefix.get(offset + 1..)), None => (None, Some(prefix)), }, None => (None, None), } } else { (None, None) }; Some(Parts { suffix, domain, subdomain, }) } } #[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash)] pub struct Parts<'a> { pub suffix: &'a str, pub domain: Option<&'a str>, pub subdomain: Option<&'a str>, } // This example is inspired by https://github.com/john-kurkowski/tldextract // Unlike that project, we don't try to parse URLs though. That can easily // be done by using the `url` crate and feeding the output of `Url::domain` // to `TldExtract::extract`. fn main() { use psl::List; use std::env; let domain = match env::args().nth(1) { Some(name) => name, None => { eprintln!("Usage: {} ", env::args().nth(0).unwrap()); std::process::exit(1); } }; match List.extract(&domain) { Some(info) => println!( "{} {} {}", info.subdomain.unwrap_or("(None)"), info.domain.unwrap_or("(None)"), info.suffix ), None => eprintln!("`{}` is not domain name", domain), } } psl-2.1.25/src/lib.rs000064400000000000000000000022141046102023000124130ustar 00000000000000//! A native Rust library for Mozilla's Public Suffix List #![no_std] #![forbid(unsafe_code)] mod list; #[cfg(feature = "helpers")] use core::str; pub use psl_types::{Domain, Info, List as Psl, Suffix, Type}; /// A static public suffix list pub struct List; impl Psl for List { #[inline] fn find<'a, T>(&self, labels: T) -> Info where T: Iterator, { list::lookup(labels) } } /// Get the public suffix of the domain #[cfg(feature = "helpers")] #[inline] pub fn suffix(name: &[u8]) -> Option> { List.suffix(name) } /// Get the public suffix of the domain #[cfg(feature = "helpers")] #[inline] pub fn suffix_str(name: &str) -> Option<&str> { let bytes = suffix(name.as_bytes())?.trim().as_bytes(); str::from_utf8(bytes).ok() } /// Get the registrable domain #[cfg(feature = "helpers")] #[inline] pub fn domain(name: &[u8]) -> Option> { List.domain(name) } /// Get the registrable domain #[cfg(feature = "helpers")] #[inline] pub fn domain_str(name: &str) -> Option<&str> { let bytes = domain(name.as_bytes())?.trim().as_bytes(); str::from_utf8(bytes).ok() } psl-2.1.25/src/list.rs000064400000000000000000105551631046102023000126410ustar 00000000000000//! This file is automatically @generated by cargo-make. //! It is not intended for manual editing. #![allow(clippy::all)] // TODO lint this code? use crate::{Info, Type}; #[inline] pub(super) fn lookup<'a, T>(mut labels: T) -> Info where T: Iterator, { let mut info = Info { len: 0, typ: None }; match labels.next() { Some(label) => match label { [97, 97, 97] => lookup_0(), [97, 97, 114, 112] => lookup_1(), [97, 98, 98] => lookup_2(), [97, 98, 98, 111, 116, 116] => lookup_3(), [97, 98, 98, 118, 105, 101] => lookup_4(), [97, 98, 99] => lookup_5(), [97, 98, 108, 101] => lookup_6(), [97, 98, 111, 103, 97, 100, 111] => lookup_7(), [97, 98, 117, 100, 104, 97, 98, 105] => lookup_8(), [97, 99] => lookup_9(labels), [97, 99, 97, 100, 101, 109, 121] => lookup_10(labels), [97, 99, 99, 101, 110, 116, 117, 114, 101] => lookup_11(), [97, 99, 99, 111, 117, 110, 116, 97, 110, 116] => lookup_12(), [97, 99, 99, 111, 117, 110, 116, 97, 110, 116, 115] => lookup_13(), [97, 99, 111] => lookup_14(), [97, 99, 116, 111, 114] => lookup_15(), [97, 100] => lookup_16(labels), [97, 100, 115] => lookup_17(), [97, 100, 117, 108, 116] => lookup_18(), [97, 101] => lookup_19(labels), [97, 101, 103] => lookup_20(), [97, 101, 114, 111] => lookup_21(labels), [97, 101, 116, 110, 97] => lookup_22(), [97, 102] => lookup_23(labels), [97, 102, 108] => lookup_24(), [97, 102, 114, 105, 99, 97] => lookup_25(), [97, 103] => lookup_26(labels), [97, 103, 97, 107, 104, 97, 110] => lookup_27(), [97, 103, 101, 110, 99, 121] => lookup_28(), [97, 105] => lookup_29(labels), [97, 105, 103] => lookup_30(), [97, 105, 114, 98, 117, 115] => lookup_31(), [97, 105, 114, 102, 111, 114, 99, 101] => lookup_32(), [97, 105, 114, 116, 101, 108] => lookup_33(), [97, 107, 100, 110] => lookup_34(), [97, 108] => lookup_35(labels), [97, 108, 105, 98, 97, 98, 97] => lookup_36(), [97, 108, 105, 112, 97, 121] => lookup_37(), [97, 108, 108, 102, 105, 110, 97, 110, 122] => lookup_38(), [97, 108, 108, 115, 116, 97, 116, 101] => lookup_39(), [97, 108, 108, 121] => lookup_40(), [97, 108, 115, 97, 99, 101] => lookup_41(), [97, 108, 115, 116, 111, 109] => lookup_42(), [97, 109] => lookup_43(labels), [97, 109, 97, 122, 111, 110] => lookup_44(), [97, 109, 101, 114, 105, 99, 97, 110, 101, 120, 112, 114, 101, 115, 115] => lookup_45(), [97, 109, 101, 114, 105, 99, 97, 110, 102, 97, 109, 105, 108, 121] => lookup_46(), [97, 109, 101, 120] => lookup_47(), [97, 109, 102, 97, 109] => lookup_48(), [97, 109, 105, 99, 97] => lookup_49(), [97, 109, 115, 116, 101, 114, 100, 97, 109] => lookup_50(), [97, 110, 97, 108, 121, 116, 105, 99, 115] => lookup_51(), [97, 110, 100, 114, 111, 105, 100] => lookup_52(), [97, 110, 113, 117, 97, 110] => lookup_53(), [97, 110, 122] => lookup_54(), [97, 111] => lookup_55(labels), [97, 111, 108] => lookup_56(), [97, 112, 97, 114, 116, 109, 101, 110, 116, 115] => lookup_57(), [97, 112, 112] => lookup_58(labels), [97, 112, 112, 108, 101] => lookup_59(), [97, 113] => lookup_60(), [97, 113, 117, 97, 114, 101, 108, 108, 101] => lookup_61(), [97, 114] => lookup_62(labels), [97, 114, 97, 98] => lookup_63(), [97, 114, 97, 109, 99, 111] => lookup_64(), [97, 114, 99, 104, 105] => lookup_65(), [97, 114, 109, 121] => lookup_66(), [97, 114, 112, 97] => lookup_67(labels), [97, 114, 116] => lookup_68(), [97, 114, 116, 101] => lookup_69(), [97, 115] => lookup_70(labels), [97, 115, 100, 97] => lookup_71(), [97, 115, 105, 97] => lookup_72(labels), [97, 115, 115, 111, 99, 105, 97, 116, 101, 115] => lookup_73(), [97, 116] => lookup_74(labels), [97, 116, 104, 108, 101, 116, 97] => lookup_75(), [97, 116, 116, 111, 114, 110, 101, 121] => lookup_76(), [97, 117] => lookup_77(labels), [97, 117, 99, 116, 105, 111, 110] => lookup_78(), [97, 117, 100, 105] => lookup_79(), [97, 117, 100, 105, 98, 108, 101] => lookup_80(), [97, 117, 100, 105, 111] => lookup_81(), [97, 117, 115, 112, 111, 115, 116] => lookup_82(), [97, 117, 116, 104, 111, 114] => lookup_83(), [97, 117, 116, 111] => lookup_84(), [97, 117, 116, 111, 115] => lookup_85(), [97, 118, 105, 97, 110, 99, 97] => lookup_86(), [97, 119] => lookup_87(labels), [97, 119, 115] => lookup_88(labels), [97, 120] => lookup_89(labels), [97, 120, 97] => lookup_90(), [97, 122] => lookup_91(labels), [97, 122, 117, 114, 101] => lookup_92(), [98, 97] => lookup_93(labels), [98, 97, 98, 121] => lookup_94(), [98, 97, 105, 100, 117] => lookup_95(), [98, 97, 110, 97, 109, 101, 120] => lookup_96(), [98, 97, 110, 100] => lookup_97(), [98, 97, 110, 107] => lookup_98(), [98, 97, 114] => lookup_99(), [98, 97, 114, 99, 101, 108, 111, 110, 97] => lookup_100(), [98, 97, 114, 99, 108, 97, 121, 99, 97, 114, 100] => lookup_101(), [98, 97, 114, 99, 108, 97, 121, 115] => lookup_102(), [98, 97, 114, 101, 102, 111, 111, 116] => lookup_103(), [98, 97, 114, 103, 97, 105, 110, 115] => lookup_104(), [98, 97, 115, 101, 98, 97, 108, 108] => lookup_105(), [98, 97, 115, 107, 101, 116, 98, 97, 108, 108] => lookup_106(labels), [98, 97, 117, 104, 97, 117, 115] => lookup_107(), [98, 97, 121, 101, 114, 110] => lookup_108(), [98, 98] => lookup_109(labels), [98, 98, 99] => lookup_110(), [98, 98, 116] => lookup_111(), [98, 98, 118, 97] => lookup_112(), [98, 99, 103] => lookup_113(), [98, 99, 110] => lookup_114(), [98, 100] => lookup_115(info, labels), [98, 101] => lookup_116(labels), [98, 101, 97, 116, 115] => lookup_117(), [98, 101, 97, 117, 116, 121] => lookup_118(), [98, 101, 101, 114] => lookup_119(), [98, 101, 110, 116, 108, 101, 121] => lookup_120(), [98, 101, 114, 108, 105, 110] => lookup_121(), [98, 101, 115, 116] => lookup_122(), [98, 101, 115, 116, 98, 117, 121] => lookup_123(), [98, 101, 116] => lookup_124(), [98, 102] => lookup_125(labels), [98, 103] => lookup_126(labels), [98, 104] => lookup_127(labels), [98, 104, 97, 114, 116, 105] => lookup_128(), [98, 105] => lookup_129(labels), [98, 105, 98, 108, 101] => lookup_130(), [98, 105, 100] => lookup_131(), [98, 105, 107, 101] => lookup_132(), [98, 105, 110, 103] => lookup_133(), [98, 105, 110, 103, 111] => lookup_134(), [98, 105, 111] => lookup_135(), [98, 105, 122] => lookup_136(labels), [98, 106] => lookup_137(labels), [98, 108, 97, 99, 107] => lookup_138(), [98, 108, 97, 99, 107, 102, 114, 105, 100, 97, 121] => lookup_139(), [98, 108, 111, 99, 107, 98, 117, 115, 116, 101, 114] => lookup_140(), [98, 108, 111, 103] => lookup_141(), [98, 108, 111, 111, 109, 98, 101, 114, 103] => lookup_142(), [98, 108, 117, 101] => lookup_143(), [98, 109] => lookup_144(labels), [98, 109, 115] => lookup_145(), [98, 109, 119] => lookup_146(), [98, 110] => lookup_147(labels), [98, 110, 112, 112, 97, 114, 105, 98, 97, 115] => lookup_148(), [98, 111] => lookup_149(labels), [98, 111, 97, 116, 115] => lookup_150(), [98, 111, 101, 104, 114, 105, 110, 103, 101, 114] => lookup_151(), [98, 111, 102, 97] => lookup_152(), [98, 111, 109] => lookup_153(), [98, 111, 110, 100] => lookup_154(), [98, 111, 111] => lookup_155(), [98, 111, 111, 107] => lookup_156(), [98, 111, 111, 107, 105, 110, 103] => lookup_157(), [98, 111, 115, 99, 104] => lookup_158(), [98, 111, 115, 116, 105, 107] => lookup_159(), [98, 111, 115, 116, 111, 110] => lookup_160(), [98, 111, 116] => lookup_161(), [98, 111, 117, 116, 105, 113, 117, 101] => lookup_162(), [98, 111, 120] => lookup_163(), [98, 114] => lookup_164(labels), [98, 114, 97, 100, 101, 115, 99, 111] => lookup_165(), [98, 114, 105, 100, 103, 101, 115, 116, 111, 110, 101] => lookup_166(), [98, 114, 111, 97, 100, 119, 97, 121] => lookup_167(), [98, 114, 111, 107, 101, 114] => lookup_168(), [98, 114, 111, 116, 104, 101, 114] => lookup_169(), [98, 114, 117, 115, 115, 101, 108, 115] => lookup_170(), [98, 115] => lookup_171(labels), [98, 116] => lookup_172(labels), [98, 117, 105, 108, 100] => lookup_173(), [98, 117, 105, 108, 100, 101, 114, 115] => lookup_174(labels), [98, 117, 115, 105, 110, 101, 115, 115] => lookup_175(labels), [98, 117, 121] => lookup_176(), [98, 117, 122, 122] => lookup_177(), [98, 118] => lookup_178(), [98, 119] => lookup_179(labels), [98, 121] => lookup_180(labels), [98, 122] => lookup_181(labels), [98, 122, 104] => lookup_182(), [99, 97] => lookup_183(labels), [99, 97, 98] => lookup_184(), [99, 97, 102, 101] => lookup_185(), [99, 97, 108] => lookup_186(), [99, 97, 108, 108] => lookup_187(), [99, 97, 108, 118, 105, 110, 107, 108, 101, 105, 110] => lookup_188(), [99, 97, 109] => lookup_189(), [99, 97, 109, 101, 114, 97] => lookup_190(), [99, 97, 109, 112] => lookup_191(), [99, 97, 110, 111, 110] => lookup_192(), [99, 97, 112, 101, 116, 111, 119, 110] => lookup_193(), [99, 97, 112, 105, 116, 97, 108] => lookup_194(), [99, 97, 112, 105, 116, 97, 108, 111, 110, 101] => lookup_195(), [99, 97, 114] => lookup_196(), [99, 97, 114, 97, 118, 97, 110] => lookup_197(), [99, 97, 114, 100, 115] => lookup_198(), [99, 97, 114, 101] => lookup_199(), [99, 97, 114, 101, 101, 114] => lookup_200(), [99, 97, 114, 101, 101, 114, 115] => lookup_201(), [99, 97, 114, 115] => lookup_202(), [99, 97, 115, 97] => lookup_203(labels), [99, 97, 115, 101] => lookup_204(), [99, 97, 115, 104] => lookup_205(), [99, 97, 115, 105, 110, 111] => lookup_206(), [99, 97, 116] => lookup_207(), [99, 97, 116, 101, 114, 105, 110, 103] => lookup_208(), [99, 97, 116, 104, 111, 108, 105, 99] => lookup_209(), [99, 98, 97] => lookup_210(), [99, 98, 110] => lookup_211(), [99, 98, 114, 101] => lookup_212(), [99, 99] => lookup_213(labels), [99, 100] => lookup_214(labels), [99, 101, 110, 116, 101, 114] => lookup_215(), [99, 101, 111] => lookup_216(), [99, 101, 114, 110] => lookup_217(), [99, 102] => lookup_218(labels), [99, 102, 97] => lookup_219(), [99, 102, 100] => lookup_220(), [99, 103] => lookup_221(), [99, 104] => lookup_222(labels), [99, 104, 97, 110, 101, 108] => lookup_223(), [99, 104, 97, 110, 110, 101, 108] => lookup_224(), [99, 104, 97, 114, 105, 116, 121] => lookup_225(), [99, 104, 97, 115, 101] => lookup_226(), [99, 104, 97, 116] => lookup_227(), [99, 104, 101, 97, 112] => lookup_228(), [99, 104, 105, 110, 116, 97, 105] => lookup_229(), [99, 104, 114, 105, 115, 116, 109, 97, 115] => lookup_230(), [99, 104, 114, 111, 109, 101] => lookup_231(), [99, 104, 117, 114, 99, 104] => lookup_232(), [99, 105] => lookup_233(labels), [99, 105, 112, 114, 105, 97, 110, 105] => lookup_234(), [99, 105, 114, 99, 108, 101] => lookup_235(), [99, 105, 115, 99, 111] => lookup_236(), [99, 105, 116, 97, 100, 101, 108] => lookup_237(), [99, 105, 116, 105] => lookup_238(), [99, 105, 116, 105, 99] => lookup_239(), [99, 105, 116, 121] => lookup_240(), [99, 107] => lookup_241(info, labels), [99, 108] => lookup_242(labels), [99, 108, 97, 105, 109, 115] => lookup_243(), [99, 108, 101, 97, 110, 105, 110, 103] => lookup_244(), [99, 108, 105, 99, 107] => lookup_245(), [99, 108, 105, 110, 105, 99] => lookup_246(), [99, 108, 105, 110, 105, 113, 117, 101] => lookup_247(), [99, 108, 111, 116, 104, 105, 110, 103] => lookup_248(), [99, 108, 111, 117, 100] => lookup_249(labels), [99, 108, 117, 98] => lookup_250(labels), [99, 108, 117, 98, 109, 101, 100] => lookup_251(), [99, 109] => lookup_252(labels), [99, 110] => lookup_253(labels), [99, 111] => lookup_254(labels), [99, 111, 97, 99, 104] => lookup_255(), [99, 111, 100, 101, 115] => lookup_256(labels), [99, 111, 102, 102, 101, 101] => lookup_257(), [99, 111, 108, 108, 101, 103, 101] => lookup_258(), [99, 111, 108, 111, 103, 110, 101] => lookup_259(), [99, 111, 109] => lookup_260(labels), [99, 111, 109, 109, 98, 97, 110, 107] => lookup_261(), [99, 111, 109, 109, 117, 110, 105, 116, 121] => lookup_262(labels), [99, 111, 109, 112, 97, 110, 121] => lookup_263(), [99, 111, 109, 112, 97, 114, 101] => lookup_264(), [99, 111, 109, 112, 117, 116, 101, 114] => lookup_265(), [99, 111, 109, 115, 101, 99] => lookup_266(), [99, 111, 110, 100, 111, 115] => lookup_267(), [99, 111, 110, 115, 116, 114, 117, 99, 116, 105, 111, 110] => lookup_268(), [99, 111, 110, 115, 117, 108, 116, 105, 110, 103] => lookup_269(), [99, 111, 110, 116, 97, 99, 116] => lookup_270(), [99, 111, 110, 116, 114, 97, 99, 116, 111, 114, 115] => lookup_271(), [99, 111, 111, 107, 105, 110, 103] => lookup_272(), [99, 111, 111, 108] => lookup_273(labels), [99, 111, 111, 112] => lookup_274(), [99, 111, 114, 115, 105, 99, 97] => lookup_275(), [99, 111, 117, 110, 116, 114, 121] => lookup_276(), [99, 111, 117, 112, 111, 110] => lookup_277(), [99, 111, 117, 112, 111, 110, 115] => lookup_278(), [99, 111, 117, 114, 115, 101, 115] => lookup_279(), [99, 112, 97] => lookup_280(), [99, 114] => lookup_281(labels), [99, 114, 101, 100, 105, 116] => lookup_282(), [99, 114, 101, 100, 105, 116, 99, 97, 114, 100] => lookup_283(), [99, 114, 101, 100, 105, 116, 117, 110, 105, 111, 110] => lookup_284(), [99, 114, 105, 99, 107, 101, 116] => lookup_285(), [99, 114, 111, 119, 110] => lookup_286(), [99, 114, 115] => lookup_287(), [99, 114, 117, 105, 115, 101] => lookup_288(), [99, 114, 117, 105, 115, 101, 115] => lookup_289(), [99, 117] => lookup_290(labels), [99, 117, 105, 115, 105, 110, 101, 108, 108, 97] => lookup_291(), [99, 118] => lookup_292(labels), [99, 119] => lookup_293(labels), [99, 120] => lookup_294(labels), [99, 121] => lookup_295(labels), [99, 121, 109, 114, 117] => lookup_296(), [99, 121, 111, 117] => lookup_297(), [99, 122] => lookup_298(labels), [100, 97, 98, 117, 114] => lookup_299(), [100, 97, 100] => lookup_300(), [100, 97, 110, 99, 101] => lookup_301(), [100, 97, 116, 97] => lookup_302(), [100, 97, 116, 101] => lookup_303(), [100, 97, 116, 105, 110, 103] => lookup_304(), [100, 97, 116, 115, 117, 110] => lookup_305(), [100, 97, 121] => lookup_306(), [100, 99, 108, 107] => lookup_307(), [100, 100, 115] => lookup_308(), [100, 101] => lookup_309(labels), [100, 101, 97, 108] => lookup_310(), [100, 101, 97, 108, 101, 114] => lookup_311(), [100, 101, 97, 108, 115] => lookup_312(), [100, 101, 103, 114, 101, 101] => lookup_313(), [100, 101, 108, 105, 118, 101, 114, 121] => lookup_314(), [100, 101, 108, 108] => lookup_315(), [100, 101, 108, 111, 105, 116, 116, 101] => lookup_316(), [100, 101, 108, 116, 97] => lookup_317(), [100, 101, 109, 111, 99, 114, 97, 116] => lookup_318(), [100, 101, 110, 116, 97, 108] => lookup_319(), [100, 101, 110, 116, 105, 115, 116] => lookup_320(), [100, 101, 115, 105] => lookup_321(), [100, 101, 115, 105, 103, 110] => lookup_322(labels), [100, 101, 118] => lookup_323(labels), [100, 104, 108] => lookup_324(), [100, 105, 97, 109, 111, 110, 100, 115] => lookup_325(), [100, 105, 101, 116] => lookup_326(), [100, 105, 103, 105, 116, 97, 108] => lookup_327(labels), [100, 105, 114, 101, 99, 116] => lookup_328(), [100, 105, 114, 101, 99, 116, 111, 114, 121] => lookup_329(), [100, 105, 115, 99, 111, 117, 110, 116] => lookup_330(), [100, 105, 115, 99, 111, 118, 101, 114] => lookup_331(), [100, 105, 115, 104] => lookup_332(), [100, 105, 121] => lookup_333(), [100, 106] => lookup_334(), [100, 107] => lookup_335(labels), [100, 109] => lookup_336(labels), [100, 110, 112] => lookup_337(), [100, 111] => lookup_338(labels), [100, 111, 99, 115] => lookup_339(), [100, 111, 99, 116, 111, 114] => lookup_340(), [100, 111, 103] => lookup_341(), [100, 111, 109, 97, 105, 110, 115] => lookup_342(), [100, 111, 116] => lookup_343(), [100, 111, 119, 110, 108, 111, 97, 100] => lookup_344(), [100, 114, 105, 118, 101] => lookup_345(), [100, 116, 118] => lookup_346(), [100, 117, 98, 97, 105] => lookup_347(), [100, 117, 110, 108, 111, 112] => lookup_348(), [100, 117, 112, 111, 110, 116] => lookup_349(), [100, 117, 114, 98, 97, 110] => lookup_350(), [100, 118, 97, 103] => lookup_351(), [100, 118, 114] => lookup_352(), [100, 122] => lookup_353(labels), [101, 97, 114, 116, 104] => lookup_354(labels), [101, 97, 116] => lookup_355(), [101, 99] => lookup_356(labels), [101, 99, 111] => lookup_357(), [101, 100, 101, 107, 97] => lookup_358(), [101, 100, 117] => lookup_359(labels), [101, 100, 117, 99, 97, 116, 105, 111, 110] => lookup_360(labels), [101, 101] => lookup_361(labels), [101, 103] => lookup_362(labels), [101, 109, 97, 105, 108] => lookup_363(), [101, 109, 101, 114, 99, 107] => lookup_364(), [101, 110, 101, 114, 103, 121] => lookup_365(), [101, 110, 103, 105, 110, 101, 101, 114] => lookup_366(), [101, 110, 103, 105, 110, 101, 101, 114, 105, 110, 103] => lookup_367(), [101, 110, 116, 101, 114, 112, 114, 105, 115, 101, 115] => lookup_368(), [101, 112, 115, 111, 110] => lookup_369(), [101, 113, 117, 105, 112, 109, 101, 110, 116] => lookup_370(), [101, 114] => lookup_371(info, labels), [101, 114, 105, 99, 115, 115, 111, 110] => lookup_372(), [101, 114, 110, 105] => lookup_373(), [101, 115] => lookup_374(labels), [101, 115, 113] => lookup_375(), [101, 115, 116, 97, 116, 101] => lookup_376(labels), [101, 116] => lookup_377(labels), [101, 117] => lookup_378(labels), [101, 117, 114, 111, 118, 105, 115, 105, 111, 110] => lookup_379(), [101, 117, 115] => lookup_380(labels), [101, 118, 101, 110, 116, 115] => lookup_381(labels), [101, 120, 99, 104, 97, 110, 103, 101] => lookup_382(), [101, 120, 112, 101, 114, 116] => lookup_383(), [101, 120, 112, 111, 115, 101, 100] => lookup_384(), [101, 120, 112, 114, 101, 115, 115] => lookup_385(), [101, 120, 116, 114, 97, 115, 112, 97, 99, 101] => lookup_386(), [102, 97, 103, 101] => lookup_387(), [102, 97, 105, 108] => lookup_388(), [102, 97, 105, 114, 119, 105, 110, 100, 115] => lookup_389(), [102, 97, 105, 116, 104] => lookup_390(labels), [102, 97, 109, 105, 108, 121] => lookup_391(), [102, 97, 110] => lookup_392(), [102, 97, 110, 115] => lookup_393(), [102, 97, 114, 109] => lookup_394(labels), [102, 97, 114, 109, 101, 114, 115] => lookup_395(), [102, 97, 115, 104, 105, 111, 110] => lookup_396(), [102, 97, 115, 116] => lookup_397(), [102, 101, 100, 101, 120] => lookup_398(), [102, 101, 101, 100, 98, 97, 99, 107] => lookup_399(), [102, 101, 114, 114, 97, 114, 105] => lookup_400(), [102, 101, 114, 114, 101, 114, 111] => lookup_401(), [102, 105] => lookup_402(labels), [102, 105, 100, 101, 108, 105, 116, 121] => lookup_403(), [102, 105, 100, 111] => lookup_404(), [102, 105, 108, 109] => lookup_405(), [102, 105, 110, 97, 108] => lookup_406(), [102, 105, 110, 97, 110, 99, 101] => lookup_407(), [102, 105, 110, 97, 110, 99, 105, 97, 108] => lookup_408(labels), [102, 105, 114, 101] => lookup_409(), [102, 105, 114, 101, 115, 116, 111, 110, 101] => lookup_410(), [102, 105, 114, 109, 100, 97, 108, 101] => lookup_411(), [102, 105, 115, 104] => lookup_412(), [102, 105, 115, 104, 105, 110, 103] => lookup_413(), [102, 105, 116] => lookup_414(), [102, 105, 116, 110, 101, 115, 115] => lookup_415(), [102, 106] => lookup_416(labels), [102, 107] => lookup_417(info, labels), [102, 108, 105, 99, 107, 114] => lookup_418(), [102, 108, 105, 103, 104, 116, 115] => lookup_419(), [102, 108, 105, 114] => lookup_420(), [102, 108, 111, 114, 105, 115, 116] => lookup_421(), [102, 108, 111, 119, 101, 114, 115] => lookup_422(), [102, 108, 121] => lookup_423(), [102, 109] => lookup_424(labels), [102, 111] => lookup_425(), [102, 111, 111] => lookup_426(), [102, 111, 111, 100] => lookup_427(), [102, 111, 111, 116, 98, 97, 108, 108] => lookup_428(), [102, 111, 114, 100] => lookup_429(), [102, 111, 114, 101, 120] => lookup_430(), [102, 111, 114, 115, 97, 108, 101] => lookup_431(), [102, 111, 114, 117, 109] => lookup_432(), [102, 111, 117, 110, 100, 97, 116, 105, 111, 110] => lookup_433(), [102, 111, 120] => lookup_434(), [102, 114] => lookup_435(labels), [102, 114, 101, 101] => lookup_436(), [102, 114, 101, 115, 101, 110, 105, 117, 115] => lookup_437(), [102, 114, 108] => lookup_438(), [102, 114, 111, 103, 97, 110, 115] => lookup_439(), [102, 114, 111, 110, 116, 105, 101, 114] => lookup_440(), [102, 116, 114] => lookup_441(), [102, 117, 106, 105, 116, 115, 117] => lookup_442(), [102, 117, 110] => lookup_443(), [102, 117, 110, 100] => lookup_444(), [102, 117, 114, 110, 105, 116, 117, 114, 101] => lookup_445(), [102, 117, 116, 98, 111, 108] => lookup_446(), [102, 121, 105] => lookup_447(), [103, 97] => lookup_448(), [103, 97, 108] => lookup_449(), [103, 97, 108, 108, 101, 114, 121] => lookup_450(), [103, 97, 108, 108, 111] => lookup_451(), [103, 97, 108, 108, 117, 112] => lookup_452(), [103, 97, 109, 101] => lookup_453(), [103, 97, 109, 101, 115] => lookup_454(labels), [103, 97, 112] => lookup_455(), [103, 97, 114, 100, 101, 110] => lookup_456(), [103, 97, 121] => lookup_457(labels), [103, 98] => lookup_458(), [103, 98, 105, 122] => lookup_459(), [103, 100] => lookup_460(labels), [103, 100, 110] => lookup_461(labels), [103, 101] => lookup_462(labels), [103, 101, 97] => lookup_463(), [103, 101, 110, 116] => lookup_464(), [103, 101, 110, 116, 105, 110, 103] => lookup_465(), [103, 101, 111, 114, 103, 101] => lookup_466(), [103, 102] => lookup_467(), [103, 103] => lookup_468(labels), [103, 103, 101, 101] => lookup_469(), [103, 104] => lookup_470(labels), [103, 105] => lookup_471(labels), [103, 105, 102, 116] => lookup_472(), [103, 105, 102, 116, 115] => lookup_473(), [103, 105, 118, 101, 115] => lookup_474(), [103, 105, 118, 105, 110, 103] => lookup_475(), [103, 108] => lookup_476(labels), [103, 108, 97, 115, 115] => lookup_477(), [103, 108, 101] => lookup_478(), [103, 108, 111, 98, 97, 108] => lookup_479(), [103, 108, 111, 98, 111] => lookup_480(), [103, 109] => lookup_481(), [103, 109, 97, 105, 108] => lookup_482(), [103, 109, 98, 104] => lookup_483(), [103, 109, 111] => lookup_484(), [103, 109, 120] => lookup_485(), [103, 110] => lookup_486(labels), [103, 111, 100, 97, 100, 100, 121] => lookup_487(), [103, 111, 108, 100] => lookup_488(), [103, 111, 108, 100, 112, 111, 105, 110, 116] => lookup_489(), [103, 111, 108, 102] => lookup_490(), [103, 111, 111] => lookup_491(), [103, 111, 111, 100, 121, 101, 97, 114] => lookup_492(), [103, 111, 111, 103] => lookup_493(labels), [103, 111, 111, 103, 108, 101] => lookup_494(), [103, 111, 112] => lookup_495(), [103, 111, 116] => lookup_496(), [103, 111, 118] => lookup_497(), [103, 112] => lookup_498(labels), [103, 113] => lookup_499(), [103, 114] => lookup_500(labels), [103, 114, 97, 105, 110, 103, 101, 114] => lookup_501(), [103, 114, 97, 112, 104, 105, 99, 115] => lookup_502(), [103, 114, 97, 116, 105, 115] => lookup_503(), [103, 114, 101, 101, 110] => lookup_504(), [103, 114, 105, 112, 101] => lookup_505(), [103, 114, 111, 99, 101, 114, 121] => lookup_506(), [103, 114, 111, 117, 112] => lookup_507(labels), [103, 115] => lookup_508(), [103, 116] => lookup_509(labels), [103, 117] => lookup_510(labels), [103, 117, 97, 114, 100, 105, 97, 110] => lookup_511(), [103, 117, 99, 99, 105] => lookup_512(), [103, 117, 103, 101] => lookup_513(), [103, 117, 105, 100, 101] => lookup_514(), [103, 117, 105, 116, 97, 114, 115] => lookup_515(), [103, 117, 114, 117] => lookup_516(), [103, 119] => lookup_517(), [103, 121] => lookup_518(labels), [104, 97, 105, 114] => lookup_519(), [104, 97, 109, 98, 117, 114, 103] => lookup_520(), [104, 97, 110, 103, 111, 117, 116] => lookup_521(), [104, 97, 117, 115] => lookup_522(), [104, 98, 111] => lookup_523(), [104, 100, 102, 99] => lookup_524(), [104, 100, 102, 99, 98, 97, 110, 107] => lookup_525(), [104, 101, 97, 108, 116, 104] => lookup_526(labels), [104, 101, 97, 108, 116, 104, 99, 97, 114, 101] => lookup_527(), [104, 101, 108, 112] => lookup_528(), [104, 101, 108, 115, 105, 110, 107, 105] => lookup_529(), [104, 101, 114, 101] => lookup_530(), [104, 101, 114, 109, 101, 115] => lookup_531(), [104, 105, 112, 104, 111, 112] => lookup_532(), [104, 105, 115, 97, 109, 105, 116, 115, 117] => lookup_533(), [104, 105, 116, 97, 99, 104, 105] => lookup_534(), [104, 105, 118] => lookup_535(), [104, 107] => lookup_536(labels), [104, 107, 116] => lookup_537(), [104, 109] => lookup_538(), [104, 110] => lookup_539(labels), [104, 111, 99, 107, 101, 121] => lookup_540(), [104, 111, 108, 100, 105, 110, 103, 115] => lookup_541(), [104, 111, 108, 105, 100, 97, 121] => lookup_542(), [104, 111, 109, 101, 100, 101, 112, 111, 116] => lookup_543(), [104, 111, 109, 101, 103, 111, 111, 100, 115] => lookup_544(), [104, 111, 109, 101, 115] => lookup_545(), [104, 111, 109, 101, 115, 101, 110, 115, 101] => lookup_546(), [104, 111, 110, 100, 97] => lookup_547(), [104, 111, 114, 115, 101] => lookup_548(), [104, 111, 115, 112, 105, 116, 97, 108] => lookup_549(), [104, 111, 115, 116] => lookup_550(labels), [104, 111, 115, 116, 105, 110, 103] => lookup_551(labels), [104, 111, 116] => lookup_552(), [104, 111, 116, 101, 108, 115] => lookup_553(), [104, 111, 116, 109, 97, 105, 108] => lookup_554(), [104, 111, 117, 115, 101] => lookup_555(), [104, 111, 119] => lookup_556(), [104, 114] => lookup_557(labels), [104, 115, 98, 99] => lookup_558(), [104, 116] => lookup_559(labels), [104, 117] => lookup_560(labels), [104, 117, 103, 104, 101, 115] => lookup_561(), [104, 121, 97, 116, 116] => lookup_562(), [104, 121, 117, 110, 100, 97, 105] => lookup_563(), [105, 98, 109] => lookup_564(), [105, 99, 98, 99] => lookup_565(), [105, 99, 101] => lookup_566(), [105, 99, 117] => lookup_567(), [105, 100] => lookup_568(labels), [105, 101] => lookup_569(labels), [105, 101, 101, 101] => lookup_570(), [105, 102, 109] => lookup_571(), [105, 107, 97, 110, 111] => lookup_572(), [105, 108] => lookup_573(labels), [105, 109] => lookup_574(labels), [105, 109, 97, 109, 97, 116] => lookup_575(), [105, 109, 100, 98] => lookup_576(), [105, 109, 109, 111] => lookup_577(), [105, 109, 109, 111, 98, 105, 108, 105, 101, 110] => lookup_578(), [105, 110] => lookup_579(labels), [105, 110, 99] => lookup_580(), [105, 110, 100, 117, 115, 116, 114, 105, 101, 115] => lookup_581(), [105, 110, 102, 105, 110, 105, 116, 105] => lookup_582(), [105, 110, 102, 111] => lookup_583(labels), [105, 110, 103] => lookup_584(), [105, 110, 107] => lookup_585(), [105, 110, 115, 116, 105, 116, 117, 116, 101] => lookup_586(), [105, 110, 115, 117, 114, 97, 110, 99, 101] => lookup_587(), [105, 110, 115, 117, 114, 101] => lookup_588(), [105, 110, 116] => lookup_589(labels), [105, 110, 116, 101, 114, 110, 97, 116, 105, 111, 110, 97, 108] => lookup_590(), [105, 110, 116, 117, 105, 116] => lookup_591(), [105, 110, 118, 101, 115, 116, 109, 101, 110, 116, 115] => lookup_592(), [105, 111] => lookup_593(labels), [105, 112, 105, 114, 97, 110, 103, 97] => lookup_594(), [105, 113] => lookup_595(labels), [105, 114] => lookup_596(labels), [105, 114, 105, 115, 104] => lookup_597(), [105, 115] => lookup_598(labels), [105, 115, 109, 97, 105, 108, 105] => lookup_599(), [105, 115, 116] => lookup_600(), [105, 115, 116, 97, 110, 98, 117, 108] => lookup_601(), [105, 116] => lookup_602(labels), [105, 116, 97, 117] => lookup_603(), [105, 116, 118] => lookup_604(), [106, 97, 103, 117, 97, 114] => lookup_605(), [106, 97, 118, 97] => lookup_606(), [106, 99, 98] => lookup_607(), [106, 101] => lookup_608(labels), [106, 101, 101, 112] => lookup_609(), [106, 101, 116, 122, 116] => lookup_610(), [106, 101, 119, 101, 108, 114, 121] => lookup_611(), [106, 105, 111] => lookup_612(), [106, 108, 108] => lookup_613(), [106, 109] => lookup_614(info, labels), [106, 109, 112] => lookup_615(), [106, 110, 106] => lookup_616(), [106, 111] => lookup_617(labels), [106, 111, 98, 115] => lookup_618(), [106, 111, 98, 117, 114, 103] => lookup_619(), [106, 111, 116] => lookup_620(), [106, 111, 121] => lookup_621(), [106, 112] => lookup_622(labels), [106, 112, 109, 111, 114, 103, 97, 110] => lookup_623(), [106, 112, 114, 115] => lookup_624(), [106, 117, 101, 103, 111, 115] => lookup_625(), [106, 117, 110, 105, 112, 101, 114] => lookup_626(), [107, 97, 117, 102, 101, 110] => lookup_627(), [107, 100, 100, 105] => lookup_628(), [107, 101] => lookup_629(labels), [107, 101, 114, 114, 121, 104, 111, 116, 101, 108, 115] => lookup_630(), [107, 101, 114, 114, 121, 108, 111, 103, 105, 115, 116, 105, 99, 115] => lookup_631(), [107, 101, 114, 114, 121, 112, 114, 111, 112, 101, 114, 116, 105, 101, 115] => { lookup_632() } [107, 102, 104] => lookup_633(), [107, 103] => lookup_634(labels), [107, 104] => lookup_635(info, labels), [107, 105] => lookup_636(labels), [107, 105, 97] => lookup_637(), [107, 105, 100, 115] => lookup_638(), [107, 105, 109] => lookup_639(), [107, 105, 110, 100, 108, 101] => lookup_640(), [107, 105, 116, 99, 104, 101, 110] => lookup_641(), [107, 105, 119, 105] => lookup_642(), [107, 109] => lookup_643(labels), [107, 110] => lookup_644(labels), [107, 111, 101, 108, 110] => lookup_645(), [107, 111, 109, 97, 116, 115, 117] => lookup_646(), [107, 111, 115, 104, 101, 114] => lookup_647(), [107, 112] => lookup_648(labels), [107, 112, 109, 103] => lookup_649(), [107, 112, 110] => lookup_650(), [107, 114] => lookup_651(labels), [107, 114, 100] => lookup_652(labels), [107, 114, 101, 100] => lookup_653(), [107, 117, 111, 107, 103, 114, 111, 117, 112] => lookup_654(), [107, 119] => lookup_655(labels), [107, 121] => lookup_656(labels), [107, 121, 111, 116, 111] => lookup_657(), [107, 122] => lookup_658(labels), [108, 97] => lookup_659(labels), [108, 97, 99, 97, 105, 120, 97] => lookup_660(), [108, 97, 109, 98, 111, 114, 103, 104, 105, 110, 105] => lookup_661(), [108, 97, 109, 101, 114] => lookup_662(), [108, 97, 110, 99, 97, 115, 116, 101, 114] => lookup_663(), [108, 97, 110, 100] => lookup_664(labels), [108, 97, 110, 100, 114, 111, 118, 101, 114] => lookup_665(), [108, 97, 110, 120, 101, 115, 115] => lookup_666(), [108, 97, 115, 97, 108, 108, 101] => lookup_667(), [108, 97, 116] => lookup_668(), [108, 97, 116, 105, 110, 111] => lookup_669(), [108, 97, 116, 114, 111, 98, 101] => lookup_670(), [108, 97, 119] => lookup_671(), [108, 97, 119, 121, 101, 114] => lookup_672(), [108, 98] => lookup_673(labels), [108, 99] => lookup_674(labels), [108, 100, 115] => lookup_675(), [108, 101, 97, 115, 101] => lookup_676(), [108, 101, 99, 108, 101, 114, 99] => lookup_677(), [108, 101, 102, 114, 97, 107] => lookup_678(), [108, 101, 103, 97, 108] => lookup_679(), [108, 101, 103, 111] => lookup_680(), [108, 101, 120, 117, 115] => lookup_681(), [108, 103, 98, 116] => lookup_682(), [108, 105] => lookup_683(labels), [108, 105, 100, 108] => lookup_684(), [108, 105, 102, 101] => lookup_685(), [108, 105, 102, 101, 105, 110, 115, 117, 114, 97, 110, 99, 101] => lookup_686(), [108, 105, 102, 101, 115, 116, 121, 108, 101] => lookup_687(), [108, 105, 103, 104, 116, 105, 110, 103] => lookup_688(), [108, 105, 107, 101] => lookup_689(), [108, 105, 108, 108, 121] => lookup_690(), [108, 105, 109, 105, 116, 101, 100] => lookup_691(), [108, 105, 109, 111] => lookup_692(), [108, 105, 110, 99, 111, 108, 110] => lookup_693(), [108, 105, 110, 107] => lookup_694(labels), [108, 105, 112, 115, 121] => lookup_695(), [108, 105, 118, 101] => lookup_696(labels), [108, 105, 118, 105, 110, 103] => lookup_697(), [108, 107] => lookup_698(labels), [108, 108, 99] => lookup_699(), [108, 108, 112] => lookup_700(), [108, 111, 97, 110] => lookup_701(), [108, 111, 97, 110, 115] => lookup_702(), [108, 111, 99, 107, 101, 114] => lookup_703(), [108, 111, 99, 117, 115] => lookup_704(), [108, 111, 108] => lookup_705(labels), [108, 111, 110, 100, 111, 110] => lookup_706(), [108, 111, 116, 116, 101] => lookup_707(), [108, 111, 116, 116, 111] => lookup_708(), [108, 111, 118, 101] => lookup_709(), [108, 112, 108] => lookup_710(), [108, 112, 108, 102, 105, 110, 97, 110, 99, 105, 97, 108] => lookup_711(), [108, 114] => lookup_712(labels), [108, 115] => lookup_713(labels), [108, 116] => lookup_714(labels), [108, 116, 100] => lookup_715(), [108, 116, 100, 97] => lookup_716(), [108, 117] => lookup_717(labels), [108, 117, 110, 100, 98, 101, 99, 107] => lookup_718(), [108, 117, 120, 101] => lookup_719(), [108, 117, 120, 117, 114, 121] => lookup_720(), [108, 118] => lookup_721(labels), [108, 121] => lookup_722(labels), [109, 97] => lookup_723(labels), [109, 97, 100, 114, 105, 100] => lookup_724(), [109, 97, 105, 102] => lookup_725(), [109, 97, 105, 115, 111, 110] => lookup_726(), [109, 97, 107, 101, 117, 112] => lookup_727(), [109, 97, 110] => lookup_728(), [109, 97, 110, 97, 103, 101, 109, 101, 110, 116] => lookup_729(labels), [109, 97, 110, 103, 111] => lookup_730(), [109, 97, 112] => lookup_731(), [109, 97, 114, 107, 101, 116] => lookup_732(), [109, 97, 114, 107, 101, 116, 105, 110, 103] => lookup_733(), [109, 97, 114, 107, 101, 116, 115] => lookup_734(), [109, 97, 114, 114, 105, 111, 116, 116] => lookup_735(), [109, 97, 114, 115, 104, 97, 108, 108, 115] => lookup_736(), [109, 97, 116, 116, 101, 108] => lookup_737(), [109, 98, 97] => lookup_738(), [109, 99] => lookup_739(labels), [109, 99, 107, 105, 110, 115, 101, 121] => lookup_740(), [109, 100] => lookup_741(labels), [109, 101] => lookup_742(labels), [109, 101, 100] => lookup_743(), [109, 101, 100, 105, 97] => lookup_744(labels), [109, 101, 101, 116] => lookup_745(), [109, 101, 108, 98, 111, 117, 114, 110, 101] => lookup_746(), [109, 101, 109, 101] => lookup_747(), [109, 101, 109, 111, 114, 105, 97, 108] => lookup_748(), [109, 101, 110] => lookup_749(), [109, 101, 110, 117] => lookup_750(labels), [109, 101, 114, 99, 107, 109, 115, 100] => lookup_751(), [109, 103] => lookup_752(labels), [109, 104] => lookup_753(), [109, 105, 97, 109, 105] => lookup_754(), [109, 105, 99, 114, 111, 115, 111, 102, 116] => lookup_755(), [109, 105, 108] => lookup_756(), [109, 105, 110, 105] => lookup_757(), [109, 105, 110, 116] => lookup_758(), [109, 105, 116] => lookup_759(), [109, 105, 116, 115, 117, 98, 105, 115, 104, 105] => lookup_760(), [109, 107] => lookup_761(labels), [109, 108] => lookup_762(labels), [109, 108, 98] => lookup_763(), [109, 108, 115] => lookup_764(), [109, 109] => lookup_765(info, labels), [109, 109, 97] => lookup_766(), [109, 110] => lookup_767(labels), [109, 111] => lookup_768(labels), [109, 111, 98, 105] => lookup_769(labels), [109, 111, 98, 105, 108, 101] => lookup_770(), [109, 111, 100, 97] => lookup_771(), [109, 111, 101] => lookup_772(), [109, 111, 105] => lookup_773(), [109, 111, 109] => lookup_774(), [109, 111, 110, 97, 115, 104] => lookup_775(), [109, 111, 110, 101, 121] => lookup_776(), [109, 111, 110, 115, 116, 101, 114] => lookup_777(), [109, 111, 114, 109, 111, 110] => lookup_778(), [109, 111, 114, 116, 103, 97, 103, 101] => lookup_779(), [109, 111, 115, 99, 111, 119] => lookup_780(), [109, 111, 116, 111] => lookup_781(), [109, 111, 116, 111, 114, 99, 121, 99, 108, 101, 115] => lookup_782(), [109, 111, 118] => lookup_783(), [109, 111, 118, 105, 101] => lookup_784(), [109, 112] => lookup_785(labels), [109, 113] => lookup_786(), [109, 114] => lookup_787(labels), [109, 115] => lookup_788(labels), [109, 115, 100] => lookup_789(), [109, 116] => lookup_790(labels), [109, 116, 110] => lookup_791(), [109, 116, 114] => lookup_792(), [109, 117] => lookup_793(labels), [109, 117, 115, 101, 117, 109] => lookup_794(), [109, 117, 115, 105, 99] => lookup_795(), [109, 118] => lookup_796(labels), [109, 119] => lookup_797(labels), [109, 120] => lookup_798(labels), [109, 121] => lookup_799(labels), [109, 122] => lookup_800(labels), [110, 97] => lookup_801(labels), [110, 97, 98] => lookup_802(), [110, 97, 103, 111, 121, 97] => lookup_803(), [110, 97, 109, 101] => lookup_804(labels), [110, 97, 116, 117, 114, 97] => lookup_805(), [110, 97, 118, 121] => lookup_806(), [110, 98, 97] => lookup_807(), [110, 99] => lookup_808(labels), [110, 101] => lookup_809(), [110, 101, 99] => lookup_810(), [110, 101, 116] => lookup_811(labels), [110, 101, 116, 98, 97, 110, 107] => lookup_812(), [110, 101, 116, 102, 108, 105, 120] => lookup_813(), [110, 101, 116, 119, 111, 114, 107] => lookup_814(labels), [110, 101, 117, 115, 116, 97, 114] => lookup_815(), [110, 101, 119] => lookup_816(), [110, 101, 119, 115] => lookup_817(labels), [110, 101, 120, 116] => lookup_818(), [110, 101, 120, 116, 100, 105, 114, 101, 99, 116] => lookup_819(), [110, 101, 120, 117, 115] => lookup_820(), [110, 102] => lookup_821(labels), [110, 102, 108] => lookup_822(), [110, 103] => lookup_823(labels), [110, 103, 111] => lookup_824(), [110, 104, 107] => lookup_825(), [110, 105] => lookup_826(labels), [110, 105, 99, 111] => lookup_827(), [110, 105, 107, 101] => lookup_828(), [110, 105, 107, 111, 110] => lookup_829(), [110, 105, 110, 106, 97] => lookup_830(), [110, 105, 115, 115, 97, 110] => lookup_831(), [110, 105, 115, 115, 97, 121] => lookup_832(), [110, 108] => lookup_833(labels), [110, 111] => lookup_834(labels), [110, 111, 107, 105, 97] => lookup_835(), [110, 111, 114, 116, 111, 110] => lookup_836(), [110, 111, 119] => lookup_837(), [110, 111, 119, 114, 117, 122] => lookup_838(), [110, 111, 119, 116, 118] => lookup_839(), [110, 112] => lookup_840(info, labels), [110, 114] => lookup_841(labels), [110, 114, 97] => lookup_842(), [110, 114, 119] => lookup_843(), [110, 116, 116] => lookup_844(), [110, 117] => lookup_845(labels), [110, 121, 99] => lookup_846(), [110, 122] => lookup_847(labels), [111, 98, 105] => lookup_848(), [111, 98, 115, 101, 114, 118, 101, 114] => lookup_849(), [111, 102, 102, 105, 99, 101] => lookup_850(), [111, 107, 105, 110, 97, 119, 97] => lookup_851(), [111, 108, 97, 121, 97, 110] => lookup_852(), [111, 108, 97, 121, 97, 110, 103, 114, 111, 117, 112] => lookup_853(), [111, 108, 108, 111] => lookup_854(), [111, 109] => lookup_855(labels), [111, 109, 101, 103, 97] => lookup_856(), [111, 110, 101] => lookup_857(labels), [111, 110, 103] => lookup_858(), [111, 110, 105, 111, 110] => lookup_859(), [111, 110, 108] => lookup_860(), [111, 110, 108, 105, 110, 101] => lookup_861(labels), [111, 111, 111] => lookup_862(), [111, 112, 101, 110] => lookup_863(), [111, 114, 97, 99, 108, 101] => lookup_864(), [111, 114, 97, 110, 103, 101] => lookup_865(labels), [111, 114, 103] => lookup_866(labels), [111, 114, 103, 97, 110, 105, 99] => lookup_867(), [111, 114, 105, 103, 105, 110, 115] => lookup_868(), [111, 115, 97, 107, 97] => lookup_869(), [111, 116, 115, 117, 107, 97] => lookup_870(), [111, 116, 116] => lookup_871(), [111, 118, 104] => lookup_872(labels), [112, 97] => lookup_873(labels), [112, 97, 103, 101] => lookup_874(labels), [112, 97, 110, 97, 115, 111, 110, 105, 99] => lookup_875(), [112, 97, 114, 105, 115] => lookup_876(), [112, 97, 114, 115] => lookup_877(), [112, 97, 114, 116, 110, 101, 114, 115] => lookup_878(), [112, 97, 114, 116, 115] => lookup_879(), [112, 97, 114, 116, 121] => lookup_880(labels), [112, 97, 121] => lookup_881(), [112, 99, 99, 119] => lookup_882(), [112, 101] => lookup_883(labels), [112, 101, 116] => lookup_884(), [112, 102] => lookup_885(labels), [112, 102, 105, 122, 101, 114] => lookup_886(), [112, 103] => lookup_887(info, labels), [112, 104] => lookup_888(labels), [112, 104, 97, 114, 109, 97, 99, 121] => lookup_889(), [112, 104, 100] => lookup_890(), [112, 104, 105, 108, 105, 112, 115] => lookup_891(), [112, 104, 111, 110, 101] => lookup_892(), [112, 104, 111, 116, 111] => lookup_893(), [112, 104, 111, 116, 111, 103, 114, 97, 112, 104, 121] => lookup_894(), [112, 104, 111, 116, 111, 115] => lookup_895(labels), [112, 104, 121, 115, 105, 111] => lookup_896(), [112, 105, 99, 115] => lookup_897(), [112, 105, 99, 116, 101, 116] => lookup_898(), [112, 105, 99, 116, 117, 114, 101, 115] => lookup_899(labels), [112, 105, 100] => lookup_900(), [112, 105, 110] => lookup_901(), [112, 105, 110, 103] => lookup_902(), [112, 105, 110, 107] => lookup_903(), [112, 105, 111, 110, 101, 101, 114] => lookup_904(), [112, 105, 122, 122, 97] => lookup_905(labels), [112, 107] => lookup_906(labels), [112, 108] => lookup_907(labels), [112, 108, 97, 99, 101] => lookup_908(labels), [112, 108, 97, 121] => lookup_909(), [112, 108, 97, 121, 115, 116, 97, 116, 105, 111, 110] => lookup_910(), [112, 108, 117, 109, 98, 105, 110, 103] => lookup_911(), [112, 108, 117, 115] => lookup_912(), [112, 109] => lookup_913(labels), [112, 110] => lookup_914(labels), [112, 110, 99] => lookup_915(), [112, 111, 104, 108] => lookup_916(), [112, 111, 107, 101, 114] => lookup_917(), [112, 111, 108, 105, 116, 105, 101] => lookup_918(), [112, 111, 114, 110] => lookup_919(labels), [112, 111, 115, 116] => lookup_920(), [112, 114] => lookup_921(labels), [112, 114, 97, 109, 101, 114, 105, 99, 97] => lookup_922(), [112, 114, 97, 120, 105] => lookup_923(), [112, 114, 101, 115, 115] => lookup_924(), [112, 114, 105, 109, 101] => lookup_925(), [112, 114, 111] => lookup_926(labels), [112, 114, 111, 100] => lookup_927(), [112, 114, 111, 100, 117, 99, 116, 105, 111, 110, 115] => lookup_928(), [112, 114, 111, 102] => lookup_929(), [112, 114, 111, 103, 114, 101, 115, 115, 105, 118, 101] => lookup_930(), [112, 114, 111, 109, 111] => lookup_931(), [112, 114, 111, 112, 101, 114, 116, 105, 101, 115] => lookup_932(), [112, 114, 111, 112, 101, 114, 116, 121] => lookup_933(), [112, 114, 111, 116, 101, 99, 116, 105, 111, 110] => lookup_934(), [112, 114, 117] => lookup_935(), [112, 114, 117, 100, 101, 110, 116, 105, 97, 108] => lookup_936(), [112, 115] => lookup_937(labels), [112, 116] => lookup_938(labels), [112, 117, 98] => lookup_939(labels), [112, 119] => lookup_940(labels), [112, 119, 99] => lookup_941(), [112, 121] => lookup_942(labels), [113, 97] => lookup_943(labels), [113, 112, 111, 110] => lookup_944(), [113, 117, 101, 98, 101, 99] => lookup_945(), [113, 117, 101, 115, 116] => lookup_946(), [114, 97, 99, 105, 110, 103] => lookup_947(), [114, 97, 100, 105, 111] => lookup_948(), [114, 101] => lookup_949(labels), [114, 101, 97, 100] => lookup_950(), [114, 101, 97, 108, 101, 115, 116, 97, 116, 101] => lookup_951(), [114, 101, 97, 108, 116, 111, 114] => lookup_952(), [114, 101, 97, 108, 116, 121] => lookup_953(), [114, 101, 99, 105, 112, 101, 115] => lookup_954(), [114, 101, 100] => lookup_955(), [114, 101, 100, 115, 116, 111, 110, 101] => lookup_956(), [114, 101, 100, 117, 109, 98, 114, 101, 108, 108, 97] => lookup_957(), [114, 101, 104, 97, 98] => lookup_958(), [114, 101, 105, 115, 101] => lookup_959(), [114, 101, 105, 115, 101, 110] => lookup_960(), [114, 101, 105, 116] => lookup_961(), [114, 101, 108, 105, 97, 110, 99, 101] => lookup_962(), [114, 101, 110] => lookup_963(), [114, 101, 110, 116] => lookup_964(), [114, 101, 110, 116, 97, 108, 115] => lookup_965(), [114, 101, 112, 97, 105, 114] => lookup_966(), [114, 101, 112, 111, 114, 116] => lookup_967(), [114, 101, 112, 117, 98, 108, 105, 99, 97, 110] => lookup_968(), [114, 101, 115, 116] => lookup_969(), [114, 101, 115, 116, 97, 117, 114, 97, 110, 116] => lookup_970(), [114, 101, 118, 105, 101, 119] => lookup_971(labels), [114, 101, 118, 105, 101, 119, 115] => lookup_972(), [114, 101, 120, 114, 111, 116, 104] => lookup_973(), [114, 105, 99, 104] => lookup_974(), [114, 105, 99, 104, 97, 114, 100, 108, 105] => lookup_975(), [114, 105, 99, 111, 104] => lookup_976(), [114, 105, 108] => lookup_977(), [114, 105, 111] => lookup_978(), [114, 105, 112] => lookup_979(labels), [114, 111] => lookup_980(labels), [114, 111, 99, 107, 115] => lookup_981(labels), [114, 111, 100, 101, 111] => lookup_982(), [114, 111, 103, 101, 114, 115] => lookup_983(), [114, 111, 111, 109] => lookup_984(), [114, 115] => lookup_985(labels), [114, 115, 118, 112] => lookup_986(), [114, 117] => lookup_987(labels), [114, 117, 103, 98, 121] => lookup_988(), [114, 117, 104, 114] => lookup_989(), [114, 117, 110] => lookup_990(labels), [114, 119] => lookup_991(labels), [114, 119, 101] => lookup_992(), [114, 121, 117, 107, 121, 117] => lookup_993(), [115, 97] => lookup_994(labels), [115, 97, 97, 114, 108, 97, 110, 100] => lookup_995(), [115, 97, 102, 101] => lookup_996(), [115, 97, 102, 101, 116, 121] => lookup_997(), [115, 97, 107, 117, 114, 97] => lookup_998(), [115, 97, 108, 101] => lookup_999(), [115, 97, 108, 111, 110] => lookup_1000(), [115, 97, 109, 115, 99, 108, 117, 98] => lookup_1001(), [115, 97, 109, 115, 117, 110, 103] => lookup_1002(), [115, 97, 110, 100, 118, 105, 107] => lookup_1003(), [115, 97, 110, 100, 118, 105, 107, 99, 111, 114, 111, 109, 97, 110, 116] => { lookup_1004() } [115, 97, 110, 111, 102, 105] => lookup_1005(), [115, 97, 112] => lookup_1006(), [115, 97, 114, 108] => lookup_1007(), [115, 97, 115] => lookup_1008(), [115, 97, 118, 101] => lookup_1009(), [115, 97, 120, 111] => lookup_1010(), [115, 98] => lookup_1011(labels), [115, 98, 105] => lookup_1012(), [115, 98, 115] => lookup_1013(), [115, 99] => lookup_1014(labels), [115, 99, 98] => lookup_1015(), [115, 99, 104, 97, 101, 102, 102, 108, 101, 114] => lookup_1016(), [115, 99, 104, 109, 105, 100, 116] => lookup_1017(), [115, 99, 104, 111, 108, 97, 114, 115, 104, 105, 112, 115] => lookup_1018(), [115, 99, 104, 111, 111, 108] => lookup_1019(), [115, 99, 104, 117, 108, 101] => lookup_1020(), [115, 99, 104, 119, 97, 114, 122] => lookup_1021(), [115, 99, 105, 101, 110, 99, 101] => lookup_1022(labels), [115, 99, 111, 116] => lookup_1023(labels), [115, 100] => lookup_1024(labels), [115, 101] => lookup_1025(labels), [115, 101, 97, 114, 99, 104] => lookup_1026(), [115, 101, 97, 116] => lookup_1027(), [115, 101, 99, 117, 114, 101] => lookup_1028(), [115, 101, 99, 117, 114, 105, 116, 121] => lookup_1029(), [115, 101, 101, 107] => lookup_1030(), [115, 101, 108, 101, 99, 116] => lookup_1031(), [115, 101, 110, 101, 114] => lookup_1032(), [115, 101, 114, 118, 105, 99, 101, 115] => lookup_1033(labels), [115, 101, 118, 101, 110] => lookup_1034(), [115, 101, 119] => lookup_1035(), [115, 101, 120] => lookup_1036(), [115, 101, 120, 121] => lookup_1037(), [115, 102, 114] => lookup_1038(), [115, 103] => lookup_1039(labels), [115, 104] => lookup_1040(labels), [115, 104, 97, 110, 103, 114, 105, 108, 97] => lookup_1041(), [115, 104, 97, 114, 112] => lookup_1042(), [115, 104, 97, 119] => lookup_1043(), [115, 104, 101, 108, 108] => lookup_1044(), [115, 104, 105, 97] => lookup_1045(), [115, 104, 105, 107, 115, 104, 97] => lookup_1046(), [115, 104, 111, 101, 115] => lookup_1047(), [115, 104, 111, 112] => lookup_1048(labels), [115, 104, 111, 112, 112, 105, 110, 103] => lookup_1049(), [115, 104, 111, 117, 106, 105] => lookup_1050(), [115, 104, 111, 119] => lookup_1051(), [115, 105] => lookup_1052(labels), [115, 105, 108, 107] => lookup_1053(), [115, 105, 110, 97] => lookup_1054(), [115, 105, 110, 103, 108, 101, 115] => lookup_1055(), [115, 105, 116, 101] => lookup_1056(labels), [115, 106] => lookup_1057(), [115, 107] => lookup_1058(labels), [115, 107, 105] => lookup_1059(), [115, 107, 105, 110] => lookup_1060(), [115, 107, 121] => lookup_1061(), [115, 107, 121, 112, 101] => lookup_1062(), [115, 108] => lookup_1063(labels), [115, 108, 105, 110, 103] => lookup_1064(), [115, 109] => lookup_1065(), [115, 109, 97, 114, 116] => lookup_1066(), [115, 109, 105, 108, 101] => lookup_1067(), [115, 110] => lookup_1068(labels), [115, 110, 99, 102] => lookup_1069(), [115, 111] => lookup_1070(labels), [115, 111, 99, 99, 101, 114] => lookup_1071(), [115, 111, 99, 105, 97, 108] => lookup_1072(), [115, 111, 102, 116, 98, 97, 110, 107] => lookup_1073(), [115, 111, 102, 116, 119, 97, 114, 101] => lookup_1074(), [115, 111, 104, 117] => lookup_1075(), [115, 111, 108, 97, 114] => lookup_1076(), [115, 111, 108, 117, 116, 105, 111, 110, 115] => lookup_1077(labels), [115, 111, 110, 103] => lookup_1078(), [115, 111, 110, 121] => lookup_1079(), [115, 111, 121] => lookup_1080(), [115, 112, 97] => lookup_1081(), [115, 112, 97, 99, 101] => lookup_1082(labels), [115, 112, 111, 114, 116] => lookup_1083(), [115, 112, 111, 116] => lookup_1084(), [115, 114] => lookup_1085(), [115, 114, 108] => lookup_1086(), [115, 115] => lookup_1087(labels), [115, 116] => lookup_1088(labels), [115, 116, 97, 100, 97] => lookup_1089(), [115, 116, 97, 112, 108, 101, 115] => lookup_1090(), [115, 116, 97, 114] => lookup_1091(), [115, 116, 97, 116, 101, 98, 97, 110, 107] => lookup_1092(), [115, 116, 97, 116, 101, 102, 97, 114, 109] => lookup_1093(), [115, 116, 99] => lookup_1094(), [115, 116, 99, 103, 114, 111, 117, 112] => lookup_1095(), [115, 116, 111, 99, 107, 104, 111, 108, 109] => lookup_1096(), [115, 116, 111, 114, 97, 103, 101] => lookup_1097(), [115, 116, 111, 114, 101] => lookup_1098(labels), [115, 116, 114, 101, 97, 109] => lookup_1099(), [115, 116, 117, 100, 105, 111] => lookup_1100(), [115, 116, 117, 100, 121] => lookup_1101(), [115, 116, 121, 108, 101] => lookup_1102(), [115, 117] => lookup_1103(labels), [115, 117, 99, 107, 115] => lookup_1104(), [115, 117, 112, 112, 108, 105, 101, 115] => lookup_1105(), [115, 117, 112, 112, 108, 121] => lookup_1106(), [115, 117, 112, 112, 111, 114, 116] => lookup_1107(labels), [115, 117, 114, 102] => lookup_1108(), [115, 117, 114, 103, 101, 114, 121] => lookup_1109(), [115, 117, 122, 117, 107, 105] => lookup_1110(), [115, 118] => lookup_1111(labels), [115, 119, 97, 116, 99, 104] => lookup_1112(), [115, 119, 105, 115, 115] => lookup_1113(), [115, 120] => lookup_1114(labels), [115, 121] => lookup_1115(labels), [115, 121, 100, 110, 101, 121] => lookup_1116(), [115, 121, 115, 116, 101, 109, 115] => lookup_1117(labels), [115, 122] => lookup_1118(labels), [116, 97, 98] => lookup_1119(), [116, 97, 105, 112, 101, 105] => lookup_1120(), [116, 97, 108, 107] => lookup_1121(), [116, 97, 111, 98, 97, 111] => lookup_1122(), [116, 97, 114, 103, 101, 116] => lookup_1123(), [116, 97, 116, 97, 109, 111, 116, 111, 114, 115] => lookup_1124(), [116, 97, 116, 97, 114] => lookup_1125(), [116, 97, 116, 116, 111, 111] => lookup_1126(), [116, 97, 120] => lookup_1127(), [116, 97, 120, 105] => lookup_1128(), [116, 99] => lookup_1129(labels), [116, 99, 105] => lookup_1130(), [116, 100] => lookup_1131(labels), [116, 100, 107] => lookup_1132(), [116, 101, 97, 109] => lookup_1133(labels), [116, 101, 99, 104] => lookup_1134(), [116, 101, 99, 104, 110, 111, 108, 111, 103, 121] => lookup_1135(labels), [116, 101, 108] => lookup_1136(), [116, 101, 109, 97, 115, 101, 107] => lookup_1137(), [116, 101, 110, 110, 105, 115] => lookup_1138(), [116, 101, 118, 97] => lookup_1139(), [116, 102] => lookup_1140(labels), [116, 103] => lookup_1141(), [116, 104] => lookup_1142(labels), [116, 104, 100] => lookup_1143(), [116, 104, 101, 97, 116, 101, 114] => lookup_1144(), [116, 104, 101, 97, 116, 114, 101] => lookup_1145(), [116, 105, 97, 97] => lookup_1146(), [116, 105, 99, 107, 101, 116, 115] => lookup_1147(), [116, 105, 101, 110, 100, 97] => lookup_1148(), [116, 105, 112, 115] => lookup_1149(), [116, 105, 114, 101, 115] => lookup_1150(), [116, 105, 114, 111, 108] => lookup_1151(), [116, 106] => lookup_1152(labels), [116, 106, 109, 97, 120, 120] => lookup_1153(), [116, 106, 120] => lookup_1154(), [116, 107] => lookup_1155(), [116, 107, 109, 97, 120, 120] => lookup_1156(), [116, 108] => lookup_1157(labels), [116, 109] => lookup_1158(labels), [116, 109, 97, 108, 108] => lookup_1159(), [116, 110] => lookup_1160(labels), [116, 111] => lookup_1161(labels), [116, 111, 100, 97, 121] => lookup_1162(labels), [116, 111, 107, 121, 111] => lookup_1163(), [116, 111, 111, 108, 115] => lookup_1164(), [116, 111, 112] => lookup_1165(labels), [116, 111, 114, 97, 121] => lookup_1166(), [116, 111, 115, 104, 105, 98, 97] => lookup_1167(), [116, 111, 116, 97, 108] => lookup_1168(), [116, 111, 117, 114, 115] => lookup_1169(), [116, 111, 119, 110] => lookup_1170(), [116, 111, 121, 111, 116, 97] => lookup_1171(), [116, 111, 121, 115] => lookup_1172(), [116, 114] => lookup_1173(labels), [116, 114, 97, 100, 101] => lookup_1174(labels), [116, 114, 97, 100, 105, 110, 103] => lookup_1175(), [116, 114, 97, 105, 110, 105, 110, 103] => lookup_1176(), [116, 114, 97, 118, 101, 108] => lookup_1177(), [116, 114, 97, 118, 101, 108, 101, 114, 115] => lookup_1178(), [116, 114, 97, 118, 101, 108, 101, 114, 115, 105, 110, 115, 117, 114, 97, 110, 99, 101] => { lookup_1179() } [116, 114, 117, 115, 116] => lookup_1180(), [116, 114, 118] => lookup_1181(), [116, 116] => lookup_1182(labels), [116, 117, 98, 101] => lookup_1183(), [116, 117, 105] => lookup_1184(), [116, 117, 110, 101, 115] => lookup_1185(), [116, 117, 115, 104, 117] => lookup_1186(), [116, 118] => lookup_1187(labels), [116, 118, 115] => lookup_1188(), [116, 119] => lookup_1189(labels), [116, 122] => lookup_1190(labels), [117, 97] => lookup_1191(labels), [117, 98, 97, 110, 107] => lookup_1192(), [117, 98, 115] => lookup_1193(), [117, 103] => lookup_1194(labels), [117, 107] => lookup_1195(labels), [117, 110, 105, 99, 111, 109] => lookup_1196(), [117, 110, 105, 118, 101, 114, 115, 105, 116, 121] => lookup_1197(), [117, 110, 111] => lookup_1198(), [117, 111, 108] => lookup_1199(), [117, 112, 115] => lookup_1200(), [117, 115] => lookup_1201(labels), [117, 121] => lookup_1202(labels), [117, 122] => lookup_1203(labels), [118, 97] => lookup_1204(), [118, 97, 99, 97, 116, 105, 111, 110, 115] => lookup_1205(), [118, 97, 110, 97] => lookup_1206(), [118, 97, 110, 103, 117, 97, 114, 100] => lookup_1207(), [118, 99] => lookup_1208(labels), [118, 101] => lookup_1209(labels), [118, 101, 103, 97, 115] => lookup_1210(), [118, 101, 110, 116, 117, 114, 101, 115] => lookup_1211(), [118, 101, 114, 105, 115, 105, 103, 110] => lookup_1212(), [118, 101, 114, 109, 195, 182, 103, 101, 110, 115, 98, 101, 114, 97, 116, 101, 114] => { lookup_1213() } [118, 101, 114, 109, 195, 182, 103, 101, 110, 115, 98, 101, 114, 97, 116, 117, 110, 103] => { lookup_1214() } [118, 101, 114, 115, 105, 99, 104, 101, 114, 117, 110, 103] => lookup_1215(), [118, 101, 116] => lookup_1216(), [118, 103] => lookup_1217(labels), [118, 105] => lookup_1218(labels), [118, 105, 97, 106, 101, 115] => lookup_1219(), [118, 105, 100, 101, 111] => lookup_1220(), [118, 105, 103] => lookup_1221(), [118, 105, 107, 105, 110, 103] => lookup_1222(), [118, 105, 108, 108, 97, 115] => lookup_1223(), [118, 105, 110] => lookup_1224(), [118, 105, 112] => lookup_1225(), [118, 105, 114, 103, 105, 110] => lookup_1226(), [118, 105, 115, 97] => lookup_1227(), [118, 105, 115, 105, 111, 110] => lookup_1228(), [118, 105, 118, 97] => lookup_1229(), [118, 105, 118, 111] => lookup_1230(), [118, 108, 97, 97, 110, 100, 101, 114, 101, 110] => lookup_1231(), [118, 110] => lookup_1232(labels), [118, 111, 100, 107, 97] => lookup_1233(), [118, 111, 108, 118, 111] => lookup_1234(), [118, 111, 116, 101] => lookup_1235(), [118, 111, 116, 105, 110, 103] => lookup_1236(), [118, 111, 116, 111] => lookup_1237(), [118, 111, 121, 97, 103, 101] => lookup_1238(), [118, 117] => lookup_1239(labels), [119, 97, 108, 101, 115] => lookup_1240(), [119, 97, 108, 109, 97, 114, 116] => lookup_1241(), [119, 97, 108, 116, 101, 114] => lookup_1242(), [119, 97, 110, 103] => lookup_1243(), [119, 97, 110, 103, 103, 111, 117] => lookup_1244(), [119, 97, 116, 99, 104] => lookup_1245(), [119, 97, 116, 99, 104, 101, 115] => lookup_1246(), [119, 101, 97, 116, 104, 101, 114] => lookup_1247(), [119, 101, 97, 116, 104, 101, 114, 99, 104, 97, 110, 110, 101, 108] => lookup_1248(), [119, 101, 98, 99, 97, 109] => lookup_1249(), [119, 101, 98, 101, 114] => lookup_1250(), [119, 101, 98, 115, 105, 116, 101] => lookup_1251(labels), [119, 101, 100] => lookup_1252(), [119, 101, 100, 100, 105, 110, 103] => lookup_1253(), [119, 101, 105, 98, 111] => lookup_1254(), [119, 101, 105, 114] => lookup_1255(), [119, 102] => lookup_1256(labels), [119, 104, 111, 115, 119, 104, 111] => lookup_1257(), [119, 105, 101, 110] => lookup_1258(), [119, 105, 107, 105] => lookup_1259(labels), [119, 105, 108, 108, 105, 97, 109, 104, 105, 108, 108] => lookup_1260(), [119, 105, 110] => lookup_1261(), [119, 105, 110, 100, 111, 119, 115] => lookup_1262(), [119, 105, 110, 101] => lookup_1263(), [119, 105, 110, 110, 101, 114, 115] => lookup_1264(), [119, 109, 101] => lookup_1265(), [119, 111, 108, 116, 101, 114, 115, 107, 108, 117, 119, 101, 114] => lookup_1266(), [119, 111, 111, 100, 115, 105, 100, 101] => lookup_1267(), [119, 111, 114, 107] => lookup_1268(), [119, 111, 114, 107, 115] => lookup_1269(), [119, 111, 114, 108, 100] => lookup_1270(), [119, 111, 119] => lookup_1271(), [119, 115] => lookup_1272(labels), [119, 116, 99] => lookup_1273(), [119, 116, 102] => lookup_1274(), [120, 98, 111, 120] => lookup_1275(), [120, 101, 114, 111, 120] => lookup_1276(), [120, 105, 104, 117, 97, 110] => lookup_1277(), [120, 105, 110] => lookup_1278(), [120, 110, 45, 45, 49, 49, 98, 52, 99, 51, 100] => lookup_1279(), [120, 110, 45, 45, 49, 99, 107, 50, 101, 49, 98] => lookup_1280(), [120, 110, 45, 45, 49, 113, 113, 119, 50, 51, 97] => lookup_1281(), [120, 110, 45, 45, 50, 115, 99, 114, 106, 57, 99] => lookup_1282(), [120, 110, 45, 45, 51, 48, 114, 114, 55, 121] => lookup_1283(), [120, 110, 45, 45, 51, 98, 115, 116, 48, 48, 109] => lookup_1284(), [120, 110, 45, 45, 51, 100, 115, 52, 52, 51, 103] => lookup_1285(), [120, 110, 45, 45, 51, 101, 48, 98, 55, 48, 55, 101] => lookup_1286(), [120, 110, 45, 45, 51, 104, 99, 114, 106, 57, 99] => lookup_1287(), [120, 110, 45, 45, 51, 112, 120, 117, 56, 107] => lookup_1288(), [120, 110, 45, 45, 52, 50, 99, 50, 100, 57, 97] => lookup_1289(), [120, 110, 45, 45, 52, 53, 98, 114, 53, 99, 121, 108] => lookup_1290(), [120, 110, 45, 45, 52, 53, 98, 114, 106, 57, 99] => lookup_1291(), [120, 110, 45, 45, 52, 53, 113, 49, 49, 99] => lookup_1292(), [120, 110, 45, 45, 52, 100, 98, 114, 107, 48, 99, 101] => lookup_1293(labels), [120, 110, 45, 45, 52, 103, 98, 114, 105, 109] => lookup_1294(), [120, 110, 45, 45, 53, 52, 98, 55, 102, 116, 97, 48, 99, 99] => lookup_1295(), [120, 110, 45, 45, 53, 53, 113, 119, 52, 50, 103] => lookup_1296(), [120, 110, 45, 45, 53, 53, 113, 120, 53, 100] => lookup_1297(), [120, 110, 45, 45, 53, 115, 117, 51, 52, 106, 57, 51, 54, 98, 103, 115, 103] => { lookup_1298() } [120, 110, 45, 45, 53, 116, 122, 109, 53, 103] => lookup_1299(), [120, 110, 45, 45, 54, 102, 114, 122, 56, 50, 103] => lookup_1300(), [120, 110, 45, 45, 54, 113, 113, 57, 56, 54, 98, 51, 120, 108] => lookup_1301(), [120, 110, 45, 45, 56, 48, 97, 100, 120, 104, 107, 115] => lookup_1302(), [120, 110, 45, 45, 56, 48, 97, 111, 50, 49, 97] => lookup_1303(), [120, 110, 45, 45, 56, 48, 97, 113, 101, 99, 100, 114, 49, 97] => lookup_1304(), [120, 110, 45, 45, 56, 48, 97, 115, 101, 104, 100, 98] => lookup_1305(), [120, 110, 45, 45, 56, 48, 97, 115, 119, 103] => lookup_1306(), [120, 110, 45, 45, 56, 121, 48, 97, 48, 54, 51, 97] => lookup_1307(), [120, 110, 45, 45, 57, 48, 97, 51, 97, 99] => lookup_1308(labels), [120, 110, 45, 45, 57, 48, 97, 101] => lookup_1309(), [120, 110, 45, 45, 57, 48, 97, 105, 115] => lookup_1310(), [120, 110, 45, 45, 57, 100, 98, 113, 50, 97] => lookup_1311(), [120, 110, 45, 45, 57, 101, 116, 53, 50, 117] => lookup_1312(), [120, 110, 45, 45, 57, 107, 114, 116, 48, 48, 97] => lookup_1313(), [120, 110, 45, 45, 98, 52, 119, 54, 48, 53, 102, 101, 114, 100] => lookup_1314(), [120, 110, 45, 45, 98, 99, 107, 49, 98, 57, 97, 53, 100, 114, 101, 52, 99] => { lookup_1315() } [120, 110, 45, 45, 99, 49, 97, 118, 103] => lookup_1316(), [120, 110, 45, 45, 99, 50, 98, 114, 55, 103] => lookup_1317(), [120, 110, 45, 45, 99, 99, 107, 50, 98, 51, 98] => lookup_1318(), [120, 110, 45, 45, 99, 99, 107, 119, 99, 120, 101, 116, 100] => lookup_1319(), [120, 110, 45, 45, 99, 103, 52, 98, 107, 105] => lookup_1320(), [120, 110, 45, 45, 99, 108, 99, 104, 99, 48, 101, 97, 48, 98, 50, 103, 50, 97, 57, 103, 99, 100] => { lookup_1321() } [120, 110, 45, 45, 99, 122, 114, 54, 57, 52, 98] => lookup_1322(), [120, 110, 45, 45, 99, 122, 114, 115, 48, 116] => lookup_1323(), [120, 110, 45, 45, 99, 122, 114, 117, 50, 100] => lookup_1324(), [120, 110, 45, 45, 100, 49, 97, 99, 106, 51, 98] => lookup_1325(), [120, 110, 45, 45, 100, 49, 97, 108, 102] => lookup_1326(), [120, 110, 45, 45, 101, 49, 97, 52, 99] => lookup_1327(), [120, 110, 45, 45, 101, 99, 107, 118, 100, 116, 99, 57, 100] => lookup_1328(), [120, 110, 45, 45, 101, 102, 118, 121, 56, 56, 104] => lookup_1329(), [120, 110, 45, 45, 102, 99, 116, 52, 50, 57, 107] => lookup_1330(), [120, 110, 45, 45, 102, 104, 98, 101, 105] => lookup_1331(), [120, 110, 45, 45, 102, 105, 113, 50, 50, 56, 99, 53, 104, 115] => lookup_1332(), [120, 110, 45, 45, 102, 105, 113, 54, 52, 98] => lookup_1333(), [120, 110, 45, 45, 102, 105, 113, 115, 56, 115] => lookup_1334(), [120, 110, 45, 45, 102, 105, 113, 122, 57, 115] => lookup_1335(), [120, 110, 45, 45, 102, 106, 113, 55, 50, 48, 97] => lookup_1336(), [120, 110, 45, 45, 102, 108, 119, 51, 53, 49, 101] => lookup_1337(), [120, 110, 45, 45, 102, 112, 99, 114, 106, 57, 99, 51, 100] => lookup_1338(), [120, 110, 45, 45, 102, 122, 99, 50, 99, 57, 101, 50, 99] => lookup_1339(), [120, 110, 45, 45, 102, 122, 121, 115, 56, 100, 54, 57, 117, 118, 103, 109] => { lookup_1340() } [120, 110, 45, 45, 103, 50, 120, 120, 52, 56, 99] => lookup_1341(), [120, 110, 45, 45, 103, 99, 107, 114, 51, 102, 48, 102] => lookup_1342(), [120, 110, 45, 45, 103, 101, 99, 114, 106, 57, 99] => lookup_1343(), [120, 110, 45, 45, 103, 107, 51, 97, 116, 49, 101] => lookup_1344(), [120, 110, 45, 45, 104, 50, 98, 114, 101, 103, 51, 101, 118, 101] => lookup_1345(), [120, 110, 45, 45, 104, 50, 98, 114, 106, 57, 99] => lookup_1346(), [120, 110, 45, 45, 104, 50, 98, 114, 106, 57, 99, 56, 99] => lookup_1347(), [120, 110, 45, 45, 104, 120, 116, 56, 49, 52, 101] => lookup_1348(), [120, 110, 45, 45, 105, 49, 98, 54, 98, 49, 97, 54, 97, 50, 101] => lookup_1349(), [120, 110, 45, 45, 105, 109, 114, 53, 49, 51, 110] => lookup_1350(), [120, 110, 45, 45, 105, 111, 48, 97, 55, 105] => lookup_1351(), [120, 110, 45, 45, 106, 49, 97, 101, 102] => lookup_1352(), [120, 110, 45, 45, 106, 49, 97, 109, 104] => lookup_1353(), [120, 110, 45, 45, 106, 54, 119, 49, 57, 51, 103] => lookup_1354(labels), [120, 110, 45, 45, 106, 108, 113, 52, 56, 48, 110, 50, 114, 103] => lookup_1355(), [120, 110, 45, 45, 106, 118, 114, 49, 56, 57, 109] => lookup_1356(), [120, 110, 45, 45, 107, 99, 114, 120, 55, 55, 100, 49, 120, 52, 97] => lookup_1357(), [120, 110, 45, 45, 107, 112, 114, 119, 49, 51, 100] => lookup_1358(), [120, 110, 45, 45, 107, 112, 114, 121, 53, 55, 100] => lookup_1359(), [120, 110, 45, 45, 107, 112, 117, 116, 51, 105] => lookup_1360(), [120, 110, 45, 45, 108, 49, 97, 99, 99] => lookup_1361(), [120, 110, 45, 45, 108, 103, 98, 98, 97, 116, 49, 97, 100, 56, 106] => lookup_1362(), [120, 110, 45, 45, 109, 103, 98, 50, 100, 100, 101, 115] => lookup_1363(), [120, 110, 45, 45, 109, 103, 98, 57, 97, 119, 98, 102] => lookup_1364(), [120, 110, 45, 45, 109, 103, 98, 97, 51, 97, 51, 101, 106, 116] => lookup_1365(), [120, 110, 45, 45, 109, 103, 98, 97, 51, 97, 52, 102, 49, 54, 97] => lookup_1366(), [120, 110, 45, 45, 109, 103, 98, 97, 51, 97, 52, 102, 114, 97] => lookup_1367(), [120, 110, 45, 45, 109, 103, 98, 97, 55, 99, 48, 98, 98, 110, 48, 97] => lookup_1368(), [120, 110, 45, 45, 109, 103, 98, 97, 97, 109, 55, 97, 56, 104] => lookup_1369(), [120, 110, 45, 45, 109, 103, 98, 97, 98, 50, 98, 100] => lookup_1370(), [120, 110, 45, 45, 109, 103, 98, 97, 104, 49, 97, 51, 104, 106, 107, 114, 100] => { lookup_1371() } [120, 110, 45, 45, 109, 103, 98, 97, 105, 57, 97, 53, 101, 118, 97, 48, 48, 98] => { lookup_1372() } [120, 110, 45, 45, 109, 103, 98, 97, 105, 57, 97, 122, 103, 113, 112, 54, 106] => { lookup_1373() } [120, 110, 45, 45, 109, 103, 98, 97, 121, 104, 55, 103, 112, 97] => lookup_1374(), [120, 110, 45, 45, 109, 103, 98, 98, 104, 49, 97] => lookup_1375(), [120, 110, 45, 45, 109, 103, 98, 98, 104, 49, 97, 55, 49, 101] => lookup_1376(), [120, 110, 45, 45, 109, 103, 98, 99, 48, 97, 57, 97, 122, 99, 103] => lookup_1377(), [120, 110, 45, 45, 109, 103, 98, 99, 97, 55, 100, 122, 100, 111] => lookup_1378(), [120, 110, 45, 45, 109, 103, 98, 99, 112, 113, 54, 103, 112, 97, 49, 97] => { lookup_1379() } [120, 110, 45, 45, 109, 103, 98, 101, 114, 112, 52, 97, 53, 100, 52, 97, 56, 55, 103] => { lookup_1380() } [120, 110, 45, 45, 109, 103, 98, 101, 114, 112, 52, 97, 53, 100, 52, 97, 114] => { lookup_1381() } [120, 110, 45, 45, 109, 103, 98, 103, 117, 56, 50, 97] => lookup_1382(), [120, 110, 45, 45, 109, 103, 98, 105, 52, 101, 99, 101, 120, 112] => lookup_1383(), [120, 110, 45, 45, 109, 103, 98, 112, 108, 50, 102, 104] => lookup_1384(), [120, 110, 45, 45, 109, 103, 98, 113, 108, 121, 55, 99, 48, 97, 54, 55, 102, 98, 99] => { lookup_1385() } [120, 110, 45, 45, 109, 103, 98, 113, 108, 121, 55, 99, 118, 97, 102, 114] => { lookup_1386() } [120, 110, 45, 45, 109, 103, 98, 116, 51, 100, 104, 100] => lookup_1387(), [120, 110, 45, 45, 109, 103, 98, 116, 102, 56, 102, 108] => lookup_1388(), [120, 110, 45, 45, 109, 103, 98, 116, 120, 50, 98] => lookup_1389(), [120, 110, 45, 45, 109, 103, 98, 120, 52, 99, 100, 48, 97, 98] => lookup_1390(), [120, 110, 45, 45, 109, 105, 120, 48, 56, 50, 102] => lookup_1391(), [120, 110, 45, 45, 109, 105, 120, 56, 57, 49, 102] => lookup_1392(), [120, 110, 45, 45, 109, 107, 49, 98, 117, 52, 52, 99] => lookup_1393(), [120, 110, 45, 45, 109, 120, 116, 113, 49, 109] => lookup_1394(), [120, 110, 45, 45, 110, 103, 98, 99, 53, 97, 122, 100] => lookup_1395(), [120, 110, 45, 45, 110, 103, 98, 101, 57, 101, 48, 97] => lookup_1396(), [120, 110, 45, 45, 110, 103, 98, 114, 120] => lookup_1397(), [120, 110, 45, 45, 110, 110, 120, 51, 56, 56, 97] => lookup_1398(), [120, 110, 45, 45, 110, 111, 100, 101] => lookup_1399(), [120, 110, 45, 45, 110, 113, 118, 55, 102] => lookup_1400(), [120, 110, 45, 45, 110, 113, 118, 55, 102, 115, 48, 48, 101, 109, 97] => lookup_1401(), [120, 110, 45, 45, 110, 121, 113, 121, 50, 54, 97] => lookup_1402(), [120, 110, 45, 45, 111, 51, 99, 119, 52, 104] => lookup_1403(labels), [120, 110, 45, 45, 111, 103, 98, 112, 102, 56, 102, 108] => lookup_1404(), [120, 110, 45, 45, 111, 116, 117, 55, 57, 54, 100] => lookup_1405(), [120, 110, 45, 45, 112, 49, 97, 99, 102] => lookup_1406(labels), [120, 110, 45, 45, 112, 49, 97, 105] => lookup_1407(), [120, 110, 45, 45, 112, 103, 98, 115, 48, 100, 104] => lookup_1408(), [120, 110, 45, 45, 112, 115, 115, 121, 50, 117] => lookup_1409(), [120, 110, 45, 45, 113, 55, 99, 101, 54, 97] => lookup_1410(), [120, 110, 45, 45, 113, 57, 106, 121, 98, 52, 99] => lookup_1411(), [120, 110, 45, 45, 113, 99, 107, 97, 49, 112, 109, 99] => lookup_1412(), [120, 110, 45, 45, 113, 120, 97, 54, 97] => lookup_1413(), [120, 110, 45, 45, 113, 120, 97, 109] => lookup_1414(), [120, 110, 45, 45, 114, 104, 113, 118, 57, 54, 103] => lookup_1415(), [120, 110, 45, 45, 114, 111, 118, 117, 56, 56, 98] => lookup_1416(), [120, 110, 45, 45, 114, 118, 99, 49, 101, 48, 97, 109, 51, 101] => lookup_1417(), [120, 110, 45, 45, 115, 57, 98, 114, 106, 57, 99] => lookup_1418(), [120, 110, 45, 45, 115, 101, 115, 53, 53, 52, 103] => lookup_1419(), [120, 110, 45, 45, 116, 54, 48, 98, 53, 54, 97] => lookup_1420(), [120, 110, 45, 45, 116, 99, 107, 119, 101] => lookup_1421(), [120, 110, 45, 45, 116, 105, 113, 52, 57, 120, 113, 121, 106] => lookup_1422(), [120, 110, 45, 45, 117, 110, 117, 112, 52, 121] => lookup_1423(), [120, 110, 45, 45, 118, 101, 114, 109, 103, 101, 110, 115, 98, 101, 114, 97, 116, 101, 114, 45, 99, 116, 98] => { lookup_1424() } [120, 110, 45, 45, 118, 101, 114, 109, 103, 101, 110, 115, 98, 101, 114, 97, 116, 117, 110, 103, 45, 112, 119, 98] => { lookup_1425() } [120, 110, 45, 45, 118, 104, 113, 117, 118] => lookup_1426(), [120, 110, 45, 45, 118, 117, 113, 56, 54, 49, 98] => lookup_1427(), [120, 110, 45, 45, 119, 52, 114, 56, 53, 101, 108, 56, 102, 104, 117, 53, 100, 110, 114, 97] => { lookup_1428() } [120, 110, 45, 45, 119, 52, 114, 115, 52, 48, 108] => lookup_1429(), [120, 110, 45, 45, 119, 103, 98, 104, 49, 99] => lookup_1430(), [120, 110, 45, 45, 119, 103, 98, 108, 54, 97] => lookup_1431(), [120, 110, 45, 45, 120, 104, 113, 53, 50, 49, 98] => lookup_1432(), [120, 110, 45, 45, 120, 107, 99, 50, 97, 108, 51, 104, 121, 101, 50, 97] => { lookup_1433() } [120, 110, 45, 45, 120, 107, 99, 50, 100, 108, 51, 97, 53, 101, 101, 48, 104] => { lookup_1434() } [120, 110, 45, 45, 121, 57, 97, 51, 97, 113] => lookup_1435(), [120, 110, 45, 45, 121, 102, 114, 111, 52, 105, 54, 55, 111] => lookup_1436(), [120, 110, 45, 45, 121, 103, 98, 105, 50, 97, 109, 109, 120] => lookup_1437(), [120, 110, 45, 45, 122, 102, 114, 49, 54, 52, 98] => lookup_1438(), [120, 120, 120] => lookup_1439(), [120, 121, 122] => lookup_1440(labels), [121, 97, 99, 104, 116, 115] => lookup_1441(), [121, 97, 104, 111, 111] => lookup_1442(), [121, 97, 109, 97, 120, 117, 110] => lookup_1443(), [121, 97, 110, 100, 101, 120] => lookup_1444(), [121, 101] => lookup_1445(labels), [121, 111, 100, 111, 98, 97, 115, 104, 105] => lookup_1446(), [121, 111, 103, 97] => lookup_1447(), [121, 111, 107, 111, 104, 97, 109, 97] => lookup_1448(), [121, 111, 117] => lookup_1449(), [121, 111, 117, 116, 117, 98, 101] => lookup_1450(), [121, 116] => lookup_1451(labels), [121, 117, 110] => lookup_1452(), [122, 97] => lookup_1453(info, labels), [122, 97, 112, 112, 111, 115] => lookup_1454(), [122, 97, 114, 97] => lookup_1455(), [122, 101, 114, 111] => lookup_1456(), [122, 105, 112] => lookup_1457(), [122, 109] => lookup_1458(labels), [122, 111, 110, 101] => lookup_1459(labels), [122, 117, 101, 114, 105, 99, 104] => lookup_1460(), [122, 119] => lookup_1461(labels), [206, 181, 206, 187] => lookup_1462(), [206, 181, 207, 133] => lookup_1463(), [208, 177, 208, 179] => lookup_1464(), [208, 177, 208, 181, 208, 187] => lookup_1465(), [208, 180, 208, 181, 209, 130, 208, 184] => lookup_1466(), [208, 181, 209, 142] => lookup_1467(), [208, 186, 208, 176, 209, 130, 208, 190, 208, 187, 208, 184, 208, 186] => lookup_1468(), [208, 186, 208, 190, 208, 188] => lookup_1469(), [208, 188, 208, 186, 208, 180] => lookup_1470(), [208, 188, 208, 190, 208, 189] => lookup_1471(), [208, 188, 208, 190, 209, 129, 208, 186, 208, 178, 208, 176] => lookup_1472(), [208, 190, 208, 189, 208, 187, 208, 176, 208, 185, 208, 189] => lookup_1473(), [208, 190, 209, 128, 208, 179] => lookup_1474(), [209, 128, 209, 131, 209, 129] => lookup_1475(labels), [209, 128, 209, 132] => lookup_1476(), [209, 129, 208, 176, 208, 185, 209, 130] => lookup_1477(), [209, 129, 209, 128, 208, 177] => lookup_1478(labels), [209, 131, 208, 186, 209, 128] => lookup_1479(), [210, 155, 208, 176, 208, 183] => lookup_1480(), [213, 176, 213, 161, 213, 181] => lookup_1481(), [215, 153, 215, 169, 215, 168, 215, 144, 215, 156] => lookup_1482(labels), [215, 167, 215, 149, 215, 157] => lookup_1483(), [216, 167, 216, 168, 217, 136, 216, 184, 216, 168, 217, 138] => lookup_1484(), [216, 167, 216, 177, 216, 167, 217, 133, 217, 131, 217, 136] => lookup_1485(), [216, 167, 217, 132, 216, 167, 216, 177, 216, 175, 217, 134] => lookup_1486(), [216, 167, 217, 132, 216, 168, 216, 173, 216, 177, 217, 138, 217, 134] => lookup_1487(), [216, 167, 217, 132, 216, 172, 216, 178, 216, 167, 216, 166, 216, 177] => lookup_1488(), [216, 167, 217, 132, 216, 179, 216, 185, 217, 136, 216, 175, 217, 138, 216, 169] => { lookup_1489() } [216, 167, 217, 132, 216, 179, 216, 185, 217, 136, 216, 175, 217, 138, 217, 135] => { lookup_1490() } [216, 167, 217, 132, 216, 179, 216, 185, 217, 136, 216, 175, 219, 140, 216, 169] => { lookup_1491() } [216, 167, 217, 132, 216, 179, 216, 185, 217, 136, 216, 175, 219, 140, 219, 131] => { lookup_1492() } [216, 167, 217, 132, 216, 185, 217, 132, 217, 138, 216, 167, 217, 134] => lookup_1493(), [216, 167, 217, 132, 217, 133, 216, 186, 216, 177, 216, 168] => lookup_1494(), [216, 167, 217, 132, 217, 138, 217, 133, 217, 134] => lookup_1495(), [216, 167, 217, 133, 216, 167, 216, 177, 216, 167, 216, 170] => lookup_1496(), [216, 167, 217, 138, 216, 177, 216, 167, 217, 134] => lookup_1497(), [216, 167, 219, 140, 216, 177, 216, 167, 217, 134] => lookup_1498(), [216, 168, 216, 167, 216, 177, 216, 170] => lookup_1499(), [216, 168, 216, 167, 216, 178, 216, 167, 216, 177] => lookup_1500(), [216, 168, 217, 138, 216, 170, 217, 131] => lookup_1501(), [216, 168, 218, 190, 216, 167, 216, 177, 216, 170] => lookup_1502(), [216, 170, 217, 136, 217, 134, 216, 179] => lookup_1503(), [216, 179, 217, 136, 216, 175, 216, 167, 217, 134] => lookup_1504(), [216, 179, 217, 136, 216, 177, 217, 138, 216, 167] => lookup_1505(), [216, 179, 217, 136, 216, 177, 217, 138, 216, 169] => lookup_1506(), [216, 180, 216, 168, 217, 131, 216, 169] => lookup_1507(), [216, 185, 216, 177, 216, 167, 217, 130] => lookup_1508(), [216, 185, 216, 177, 216, 168] => lookup_1509(), [216, 185, 217, 133, 216, 167, 217, 134] => lookup_1510(), [217, 129, 217, 132, 216, 179, 216, 183, 217, 138, 217, 134] => lookup_1511(), [217, 130, 216, 183, 216, 177] => lookup_1512(), [217, 131, 216, 167, 216, 171, 217, 136, 217, 132, 217, 138, 217, 131] => lookup_1513(), [217, 131, 217, 136, 217, 133] => lookup_1514(), [217, 133, 216, 181, 216, 177] => lookup_1515(), [217, 133, 217, 132, 217, 138, 216, 179, 217, 138, 216, 167] => lookup_1516(), [217, 133, 217, 136, 216, 177, 217, 138, 216, 170, 216, 167, 217, 134, 217, 138, 216, 167] => { lookup_1517() } [217, 133, 217, 136, 217, 130, 216, 185] => lookup_1518(), [217, 135, 217, 133, 216, 177, 216, 167, 217, 135] => lookup_1519(), [217, 190, 216, 167, 217, 131, 216, 179, 216, 170, 216, 167, 217, 134] => lookup_1520(), [217, 190, 216, 167, 218, 169, 216, 179, 216, 170, 216, 167, 217, 134] => lookup_1521(), [218, 128, 216, 167, 216, 177, 216, 170] => lookup_1522(), [224, 164, 149, 224, 165, 137, 224, 164, 174] => lookup_1523(), [224, 164, 168, 224, 165, 135, 224, 164, 159] => lookup_1524(), [224, 164, 173, 224, 164, 190, 224, 164, 176, 224, 164, 164] => lookup_1525(), [224, 164, 173, 224, 164, 190, 224, 164, 176, 224, 164, 164, 224, 164, 174, 224, 165, 141] => { lookup_1526() } [224, 164, 173, 224, 164, 190, 224, 164, 176, 224, 165, 139, 224, 164, 164] => { lookup_1527() } [224, 164, 184, 224, 164, 130, 224, 164, 151, 224, 164, 160, 224, 164, 168] => { lookup_1528() } [224, 166, 172, 224, 166, 190, 224, 166, 130, 224, 166, 178, 224, 166, 190] => { lookup_1529() } [224, 166, 173, 224, 166, 190, 224, 166, 176, 224, 166, 164] => lookup_1530(), [224, 166, 173, 224, 166, 190, 224, 167, 176, 224, 166, 164] => lookup_1531(), [224, 168, 173, 224, 168, 190, 224, 168, 176, 224, 168, 164] => lookup_1532(), [224, 170, 173, 224, 170, 190, 224, 170, 176, 224, 170, 164] => lookup_1533(), [224, 172, 173, 224, 172, 190, 224, 172, 176, 224, 172, 164] => lookup_1534(), [224, 174, 135, 224, 174, 168, 224, 175, 141, 224, 174, 164, 224, 174, 191, 224, 174, 175, 224, 174, 190] => { lookup_1535() } [224, 174, 135, 224, 174, 178, 224, 174, 153, 224, 175, 141, 224, 174, 149, 224, 175, 136] => { lookup_1536() } [224, 174, 154, 224, 174, 191, 224, 174, 153, 224, 175, 141, 224, 174, 149, 224, 174, 170, 224, 175, 141, 224, 174, 170, 224, 175, 130, 224, 174, 176, 224, 175, 141] => { lookup_1537() } [224, 176, 173, 224, 176, 190, 224, 176, 176, 224, 176, 164, 224, 177, 141] => { lookup_1538() } [224, 178, 173, 224, 178, 190, 224, 178, 176, 224, 178, 164] => lookup_1539(), [224, 180, 173, 224, 180, 190, 224, 180, 176, 224, 180, 164, 224, 180, 130] => { lookup_1540() } [224, 182, 189, 224, 182, 130, 224, 182, 154, 224, 183, 143] => lookup_1541(), [224, 184, 132, 224, 184, 173, 224, 184, 161] => lookup_1542(), [224, 185, 132, 224, 184, 151, 224, 184, 162] => lookup_1543(labels), [224, 186, 165, 224, 186, 178, 224, 186, 167] => lookup_1544(), [225, 131, 146, 225, 131, 148] => lookup_1545(), [227, 129, 191, 227, 130, 147, 227, 129, 170] => lookup_1546(), [227, 130, 162, 227, 131, 158, 227, 130, 190, 227, 131, 179] => lookup_1547(), [227, 130, 175, 227, 131, 169, 227, 130, 166, 227, 131, 137] => lookup_1548(), [227, 130, 176, 227, 131, 188, 227, 130, 176, 227, 131, 171] => lookup_1549(), [227, 130, 179, 227, 131, 160] => lookup_1550(), [227, 130, 185, 227, 131, 136, 227, 130, 162] => lookup_1551(), [227, 130, 187, 227, 131, 188, 227, 131, 171] => lookup_1552(), [227, 131, 149, 227, 130, 161, 227, 131, 131, 227, 130, 183, 227, 131, 167, 227, 131, 179] => { lookup_1553() } [227, 131, 157, 227, 130, 164, 227, 131, 179, 227, 131, 136] => lookup_1554(), [228, 184, 150, 231, 149, 140] => lookup_1555(), [228, 184, 173, 228, 191, 161] => lookup_1556(), [228, 184, 173, 229, 155, 189] => lookup_1557(), [228, 184, 173, 229, 156, 139] => lookup_1558(), [228, 184, 173, 230, 150, 135, 231, 189, 145] => lookup_1559(), [228, 186, 154, 233, 169, 172, 233, 128, 138] => lookup_1560(), [228, 188, 129, 228, 184, 154] => lookup_1561(), [228, 189, 155, 229, 177, 177] => lookup_1562(), [228, 191, 161, 230, 129, 175] => lookup_1563(), [229, 129, 165, 229, 186, 183] => lookup_1564(), [229, 133, 171, 229, 141, 166] => lookup_1565(), [229, 133, 172, 229, 143, 184] => lookup_1566(), [229, 133, 172, 231, 155, 138] => lookup_1567(), [229, 143, 176, 230, 185, 190] => lookup_1568(), [229, 143, 176, 231, 129, 163] => lookup_1569(), [229, 149, 134, 229, 159, 142] => lookup_1570(), [229, 149, 134, 229, 186, 151] => lookup_1571(), [229, 149, 134, 230, 160, 135] => lookup_1572(), [229, 152, 137, 233, 135, 140] => lookup_1573(), [229, 152, 137, 233, 135, 140, 229, 164, 167, 233, 133, 146, 229, 186, 151] => { lookup_1574() } [229, 156, 168, 231, 186, 191] => lookup_1575(), [229, 164, 167, 230, 139, 191] => lookup_1576(), [229, 164, 169, 228, 184, 187, 230, 149, 153] => lookup_1577(), [229, 168, 177, 228, 185, 144] => lookup_1578(), [229, 174, 182, 233, 155, 187] => lookup_1579(), [229, 185, 191, 228, 184, 156] => lookup_1580(), [229, 190, 174, 229, 141, 154] => lookup_1581(), [230, 133, 136, 229, 150, 132] => lookup_1582(), [230, 136, 145, 231, 136, 177, 228, 189, 160] => lookup_1583(), [230, 137, 139, 230, 156, 186] => lookup_1584(), [230, 139, 155, 232, 129, 152] => lookup_1585(), [230, 148, 191, 229, 138, 161] => lookup_1586(), [230, 148, 191, 229, 186, 156] => lookup_1587(), [230, 150, 176, 229, 138, 160, 229, 157, 161] => lookup_1588(), [230, 150, 176, 233, 151, 187] => lookup_1589(), [230, 151, 182, 229, 176, 154] => lookup_1590(), [230, 155, 184, 231, 177, 141] => lookup_1591(), [230, 156, 186, 230, 158, 132] => lookup_1592(), [230, 183, 161, 233, 169, 172, 233, 148, 161] => lookup_1593(), [230, 184, 184, 230, 136, 143] => lookup_1594(), [230, 190, 179, 233, 150, 128] => lookup_1595(), [230, 190, 179, 233, 151, 168] => lookup_1596(), [231, 130, 185, 231, 156, 139] => lookup_1597(), [231, 167, 187, 229, 138, 168] => lookup_1598(), [231, 187, 132, 231, 187, 135, 230, 156, 186, 230, 158, 132] => lookup_1599(), [231, 189, 145, 229, 157, 128] => lookup_1600(), [231, 189, 145, 229, 186, 151] => lookup_1601(), [231, 189, 145, 231, 171, 153] => lookup_1602(), [231, 189, 145, 231, 187, 156] => lookup_1603(), [232, 129, 148, 233, 128, 154] => lookup_1604(), [232, 135, 186, 231, 129, 163] => lookup_1605(), [232, 176, 183, 230, 173, 140] => lookup_1606(), [232, 180, 173, 231, 137, 169] => lookup_1607(), [233, 128, 154, 232, 178, 169] => lookup_1608(), [233, 155, 134, 229, 155, 162] => lookup_1609(), [233, 155, 187, 232, 168, 138, 231, 155, 136, 231, 167, 145] => lookup_1610(), [233, 163, 158, 229, 136, 169, 230, 181, 166] => lookup_1611(), [233, 163, 159, 229, 147, 129] => lookup_1612(), [233, 164, 144, 229, 142, 133] => lookup_1613(), [233, 166, 153, 230, 160, 188, 233, 135, 140, 230, 139, 137] => lookup_1614(), [233, 166, 153, 230, 184, 175] => lookup_1615(labels), [235, 139, 183, 235, 132, 183] => lookup_1616(), [235, 139, 183, 236, 187, 180] => lookup_1617(), [236, 130, 188, 236, 132, 177] => lookup_1618(), [237, 149, 156, 234, 181, 173] => lookup_1619(), wild => { info.len = wild.len(); info } }, None => info, } } #[inline] fn lookup_0() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_2() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_3() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_4() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_5() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_6() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_7() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_8() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_9_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_9<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_9_0(acc), [100, 114, 114] => lookup_9_1(acc), [101, 100, 117] => lookup_9_2(acc), [103, 111, 118] => lookup_9_3(acc), [109, 105, 108] => lookup_9_4(acc), [110, 101, 116] => lookup_9_5(acc), [111, 114, 103] => lookup_9_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_10_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_10<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [111, 102, 102, 105, 99, 105, 97, 108] => lookup_10_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_11() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_12() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_13() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_14() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_15() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_16_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_16<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 111, 109] => lookup_16_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_17() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_18() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_19_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_19<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_19_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_19_1(acc), [99, 111] => lookup_19_2(acc), [103, 111, 118] => lookup_19_3(acc), [109, 105, 108] => lookup_19_4(acc), [110, 101, 116] => lookup_19_5(acc), [111, 114, 103] => lookup_19_6(acc), [115, 99, 104] => lookup_19_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_20() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_0(acc: usize) -> Info { Info { len: acc + 1 + 22usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_1(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_6(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_7(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_14(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_19(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_21(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_22(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_24(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_25(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_26(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_27(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_28(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_29(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_30(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_31(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_33(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_34(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_35(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_38(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_39(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_40(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_41(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_42(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_43(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_44(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_45(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_46(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_47(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_48(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_49(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_50(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_51(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_52(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_53(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_54(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_55(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_56(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_57(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_58(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_59(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_60(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_61(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_62(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_63(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_64(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_65(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_66(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_67(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_68(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_69(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_70(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_71(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_72(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_73(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_74(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_75(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_76(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_77(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_78(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_79(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_80(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_81(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_82(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_83(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_84(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21_85(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_21<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 99, 105, 100, 101, 110, 116, 45, 105, 110, 118, 101, 115, 116, 105, 103, 97, 116, 105, 111, 110] => { lookup_21_0(acc) } [97, 99, 99, 105, 100, 101, 110, 116, 45, 112, 114, 101, 118, 101, 110, 116, 105, 111, 110] => { lookup_21_1(acc) } [97, 101, 114, 111, 98, 97, 116, 105, 99] => lookup_21_2(acc), [97, 101, 114, 111, 99, 108, 117, 98] => lookup_21_3(acc), [97, 101, 114, 111, 100, 114, 111, 109, 101] => lookup_21_4(acc), [97, 103, 101, 110, 116, 115] => lookup_21_5(acc), [97, 105, 114, 45, 115, 117, 114, 118, 101, 105, 108, 108, 97, 110, 99, 101] => { lookup_21_6(acc) } [97, 105, 114, 45, 116, 114, 97, 102, 102, 105, 99, 45, 99, 111, 110, 116, 114, 111, 108] => { lookup_21_7(acc) } [97, 105, 114, 99, 114, 97, 102, 116] => lookup_21_8(acc), [97, 105, 114, 108, 105, 110, 101] => lookup_21_9(acc), [97, 105, 114, 112, 111, 114, 116] => lookup_21_10(acc), [97, 105, 114, 116, 114, 97, 102, 102, 105, 99] => lookup_21_11(acc), [97, 109, 98, 117, 108, 97, 110, 99, 101] => lookup_21_12(acc), [97, 109, 117, 115, 101, 109, 101, 110, 116] => lookup_21_13(acc), [97, 115, 115, 111, 99, 105, 97, 116, 105, 111, 110] => lookup_21_14(acc), [97, 117, 116, 104, 111, 114] => lookup_21_15(acc), [98, 97, 108, 108, 111, 111, 110, 105, 110, 103] => lookup_21_16(acc), [98, 114, 111, 107, 101, 114] => lookup_21_17(acc), [99, 97, 97] => lookup_21_18(acc), [99, 97, 114, 103, 111] => lookup_21_19(acc), [99, 97, 116, 101, 114, 105, 110, 103] => lookup_21_20(acc), [99, 101, 114, 116, 105, 102, 105, 99, 97, 116, 105, 111, 110] => lookup_21_21(acc), [99, 104, 97, 109, 112, 105, 111, 110, 115, 104, 105, 112] => lookup_21_22(acc), [99, 104, 97, 114, 116, 101, 114] => lookup_21_23(acc), [99, 105, 118, 105, 108, 97, 118, 105, 97, 116, 105, 111, 110] => lookup_21_24(acc), [99, 108, 117, 98] => lookup_21_25(acc), [99, 111, 110, 102, 101, 114, 101, 110, 99, 101] => lookup_21_26(acc), [99, 111, 110, 115, 117, 108, 116, 97, 110, 116] => lookup_21_27(acc), [99, 111, 110, 115, 117, 108, 116, 105, 110, 103] => lookup_21_28(acc), [99, 111, 110, 116, 114, 111, 108] => lookup_21_29(acc), [99, 111, 117, 110, 99, 105, 108] => lookup_21_30(acc), [99, 114, 101, 119] => lookup_21_31(acc), [100, 101, 115, 105, 103, 110] => lookup_21_32(acc), [100, 103, 99, 97] => lookup_21_33(acc), [101, 100, 117, 99, 97, 116, 111, 114] => lookup_21_34(acc), [101, 109, 101, 114, 103, 101, 110, 99, 121] => lookup_21_35(acc), [101, 110, 103, 105, 110, 101] => lookup_21_36(acc), [101, 110, 103, 105, 110, 101, 101, 114] => lookup_21_37(acc), [101, 110, 116, 101, 114, 116, 97, 105, 110, 109, 101, 110, 116] => lookup_21_38(acc), [101, 113, 117, 105, 112, 109, 101, 110, 116] => lookup_21_39(acc), [101, 120, 99, 104, 97, 110, 103, 101] => lookup_21_40(acc), [101, 120, 112, 114, 101, 115, 115] => lookup_21_41(acc), [102, 101, 100, 101, 114, 97, 116, 105, 111, 110] => lookup_21_42(acc), [102, 108, 105, 103, 104, 116] => lookup_21_43(acc), [102, 117, 101, 108] => lookup_21_44(acc), [103, 108, 105, 100, 105, 110, 103] => lookup_21_45(acc), [103, 111, 118, 101, 114, 110, 109, 101, 110, 116] => lookup_21_46(acc), [103, 114, 111, 117, 110, 100, 104, 97, 110, 100, 108, 105, 110, 103] => { lookup_21_47(acc) } [103, 114, 111, 117, 112] => lookup_21_48(acc), [104, 97, 110, 103, 103, 108, 105, 100, 105, 110, 103] => lookup_21_49(acc), [104, 111, 109, 101, 98, 117, 105, 108, 116] => lookup_21_50(acc), [105, 110, 115, 117, 114, 97, 110, 99, 101] => lookup_21_51(acc), [106, 111, 117, 114, 110, 97, 108] => lookup_21_52(acc), [106, 111, 117, 114, 110, 97, 108, 105, 115, 116] => lookup_21_53(acc), [108, 101, 97, 115, 105, 110, 103] => lookup_21_54(acc), [108, 111, 103, 105, 115, 116, 105, 99, 115] => lookup_21_55(acc), [109, 97, 103, 97, 122, 105, 110, 101] => lookup_21_56(acc), [109, 97, 105, 110, 116, 101, 110, 97, 110, 99, 101] => lookup_21_57(acc), [109, 101, 100, 105, 97] => lookup_21_58(acc), [109, 105, 99, 114, 111, 108, 105, 103, 104, 116] => lookup_21_59(acc), [109, 111, 100, 101, 108, 108, 105, 110, 103] => lookup_21_60(acc), [110, 97, 118, 105, 103, 97, 116, 105, 111, 110] => lookup_21_61(acc), [112, 97, 114, 97, 99, 104, 117, 116, 105, 110, 103] => lookup_21_62(acc), [112, 97, 114, 97, 103, 108, 105, 100, 105, 110, 103] => lookup_21_63(acc), [112, 97, 115, 115, 101, 110, 103, 101, 114, 45, 97, 115, 115, 111, 99, 105, 97, 116, 105, 111, 110] => { lookup_21_64(acc) } [112, 105, 108, 111, 116] => lookup_21_65(acc), [112, 114, 101, 115, 115] => lookup_21_66(acc), [112, 114, 111, 100, 117, 99, 116, 105, 111, 110] => lookup_21_67(acc), [114, 101, 99, 114, 101, 97, 116, 105, 111, 110] => lookup_21_68(acc), [114, 101, 112, 98, 111, 100, 121] => lookup_21_69(acc), [114, 101, 115] => lookup_21_70(acc), [114, 101, 115, 101, 97, 114, 99, 104] => lookup_21_71(acc), [114, 111, 116, 111, 114, 99, 114, 97, 102, 116] => lookup_21_72(acc), [115, 97, 102, 101, 116, 121] => lookup_21_73(acc), [115, 99, 105, 101, 110, 116, 105, 115, 116] => lookup_21_74(acc), [115, 101, 114, 118, 105, 99, 101, 115] => lookup_21_75(acc), [115, 104, 111, 119] => lookup_21_76(acc), [115, 107, 121, 100, 105, 118, 105, 110, 103] => lookup_21_77(acc), [115, 111, 102, 116, 119, 97, 114, 101] => lookup_21_78(acc), [115, 116, 117, 100, 101, 110, 116] => lookup_21_79(acc), [116, 114, 97, 100, 101, 114] => lookup_21_80(acc), [116, 114, 97, 100, 105, 110, 103] => lookup_21_81(acc), [116, 114, 97, 105, 110, 101, 114] => lookup_21_82(acc), [117, 110, 105, 111, 110] => lookup_21_83(acc), [119, 111, 114, 107, 105, 110, 103, 103, 114, 111, 117, 112] => lookup_21_84(acc), [119, 111, 114, 107, 115] => lookup_21_85(acc), _ => info, }, None => info, } } #[inline] fn lookup_22() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_23_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_23_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_23_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_23_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_23_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_23<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_23_0(acc), [101, 100, 117] => lookup_23_1(acc), [103, 111, 118] => lookup_23_2(acc), [110, 101, 116] => lookup_23_3(acc), [111, 114, 103] => lookup_23_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_24() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_25() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_26_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_26_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_26_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_26_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_26_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_26<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_26_0(acc), [99, 111, 109] => lookup_26_1(acc), [110, 101, 116] => lookup_26_2(acc), [110, 111, 109] => lookup_26_3(acc), [111, 114, 103] => lookup_26_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_27() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_28() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_29_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_29_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_29_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_29_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_29_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_29<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_29_0(acc), [110, 101, 116] => lookup_29_1(acc), [111, 102, 102] => lookup_29_2(acc), [111, 114, 103] => lookup_29_3(acc), [117, 119, 117] => lookup_29_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_30() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_31() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_32() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_33() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_34() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_35_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_35<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_35_0(acc), [99, 111, 109] => lookup_35_1(acc), [101, 100, 117] => lookup_35_2(acc), [103, 111, 118] => lookup_35_3(acc), [109, 105, 108] => lookup_35_4(acc), [110, 101, 116] => lookup_35_5(acc), [111, 114, 103] => lookup_35_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_36() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_37() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_38() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_39() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_40() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_41() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_42() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_43_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_43_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_43_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_43_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_43_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_43_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_43_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_43_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_43_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_43<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_43_0(acc), [99, 111] => lookup_43_1(acc), [99, 111, 109] => lookup_43_2(acc), [99, 111, 109, 109, 117, 110, 101] => lookup_43_3(acc), [110, 101, 107, 111] => lookup_43_4(acc), [110, 101, 116] => lookup_43_5(acc), [110, 121, 97, 97] => lookup_43_6(acc), [111, 114, 103] => lookup_43_7(acc), [114, 97, 100, 105, 111] => lookup_43_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_44() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_45() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_46() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_47() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_48() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_49() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_50() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_51() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_52() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_53() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_54() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_55<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_55_0(acc), [101, 100] => lookup_55_1(acc), [103, 118] => lookup_55_2(acc), [105, 116] => lookup_55_3(acc), [111, 103] => lookup_55_4(acc), [112, 98] => lookup_55_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_56() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_57() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_58_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_58_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_58_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_58_1(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_6_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_58_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_58_6_0(wild, acc), }, None => info, } } #[inline] fn lookup_58_7(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_8(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_11(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_18(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_19(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_20_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_58_20<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_58_20_0(wild, acc), }, None => info, } } #[inline] fn lookup_58_21(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_22(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_24_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_58_24<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_58_24_0(wild, acc), }, None => info, } } #[inline] fn lookup_58_25_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_25<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [112, 114, 105, 118, 97, 116, 101, 108, 105, 110, 107] => lookup_58_25_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_58_26(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_29(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_30_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_58_30<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_58_30_0(wild, acc), }, None => info, } } #[inline] fn lookup_58_31(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_32(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_58_33(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_58<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101, 103, 101, 116] => lookup_58_0(info, labels, acc), [98, 111, 111, 107, 111, 110, 108, 105, 110, 101] => lookup_58_1(acc), [99, 108, 101, 114, 107] => lookup_58_2(acc), [99, 108, 101, 114, 107, 115, 116, 97, 103, 101] => lookup_58_3(acc), [99, 121, 99, 108, 105, 99] => lookup_58_4(acc), [100, 101, 116, 97] => lookup_58_5(acc), [100, 101, 118, 101, 108, 111, 112, 101, 114] => lookup_58_6(info, labels, acc), [101, 97, 115, 121, 112, 97, 110, 101, 108] => lookup_58_7(acc), [101, 100, 103, 101, 99, 111, 109, 112, 117, 116, 101] => lookup_58_8(acc), [101, 110, 99, 114] => lookup_58_9(acc), [102, 105, 114, 101, 119, 101, 98] => lookup_58_10(acc), [102, 108, 117, 116, 116, 101, 114, 102, 108, 111, 119] => lookup_58_11(acc), [102, 114, 97, 109, 101, 114] => lookup_58_12(acc), [104, 97, 115, 117, 114, 97] => lookup_58_13(acc), [108, 111, 103, 105, 110, 108, 105, 110, 101] => lookup_58_14(acc), [109, 101, 115, 115, 101, 114, 108, 105] => lookup_58_15(acc), [110, 101, 116, 108, 105, 102, 121] => lookup_58_16(acc), [110, 103, 114, 111, 107] => lookup_58_17(acc), [110, 103, 114, 111, 107, 45, 102, 114, 101, 101] => lookup_58_18(acc), [110, 111, 111, 112] => lookup_58_19(acc), [110, 111, 114, 116, 104, 102, 108, 97, 110, 107] => lookup_58_20(info, labels, acc), [111, 110, 100, 105, 103, 105, 116, 97, 108, 111, 99, 101, 97, 110] => { lookup_58_21(acc) } [111, 110, 102, 108, 97, 115, 104, 100, 114, 105, 118, 101] => lookup_58_22(acc), [112, 108, 97, 116, 102, 111, 114, 109, 48] => lookup_58_23(acc), [114, 117, 110] => lookup_58_24(info, labels, acc), [115, 110, 111, 119, 102, 108, 97, 107, 101] => lookup_58_25(labels, acc), [115, 116, 111, 114, 105, 112, 114, 101, 115, 115] => lookup_58_26(acc), [115, 116, 114, 101, 97, 109, 108, 105, 116] => lookup_58_27(acc), [116, 101, 108, 101, 98, 105, 116] => lookup_58_28(acc), [116, 121, 112, 101, 100, 114, 101, 97, 109] => lookup_58_29(acc), [117, 112, 115, 117, 110] => lookup_58_30(info, labels, acc), [118, 101, 114, 99, 101, 108] => lookup_58_31(acc), [119, 101, 98] => lookup_58_32(acc), [119, 110, 101, 120, 116] => lookup_58_33(acc), _ => info, }, None => info, } } #[inline] fn lookup_59() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_60() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_61() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_62_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_62_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_62_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_62<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101, 116] => lookup_62_0(acc), [99, 111, 109] => lookup_62_1(labels, acc), [99, 111, 111, 112] => lookup_62_2(acc), [101, 100, 117] => lookup_62_3(acc), [103, 111, 98] => lookup_62_4(acc), [103, 111, 118] => lookup_62_5(acc), [105, 110, 116] => lookup_62_6(acc), [109, 105, 108] => lookup_62_7(acc), [109, 117, 115, 105, 99, 97] => lookup_62_8(acc), [109, 117, 116, 117, 97, 108] => lookup_62_9(acc), [110, 101, 116] => lookup_62_10(acc), [111, 114, 103] => lookup_62_11(acc), [115, 101, 110, 97, 115, 97] => lookup_62_12(acc), [116, 117, 114] => lookup_62_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_63() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_64() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_65() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_66() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_67<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 49, 54, 52] => lookup_67_0(acc), [105, 110, 45, 97, 100, 100, 114] => lookup_67_1(acc), [105, 112, 54] => lookup_67_2(acc), [105, 114, 105, 115] => lookup_67_3(acc), [117, 114, 105] => lookup_67_4(acc), [117, 114, 110] => lookup_67_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_68() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_69() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_70_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_70<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 111, 118] => lookup_70_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_71() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_72_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_72<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 110, 115] => lookup_72_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_73() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_74_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_4_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_74_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [115, 116, 104] => lookup_74_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_74_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_6_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_6<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_74_6_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_74_7_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [119, 105, 101, 110] => lookup_74_7_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_74_8_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_74_8_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_74_8_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { wild => lookup_74_8_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_74_8_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_74_8_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { wild => lookup_74_8_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_74_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [101, 120] => lookup_74_8_1(info, labels, acc), [105, 110] => lookup_74_8_2(info, labels, acc), wild => lookup_74_8_0(wild, acc), }, None => info, } } #[inline] fn lookup_74_9(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_10(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_74_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_14(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_74_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_74_16_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_74_16_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { wild => lookup_74_16_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_74_16_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_74_16_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_74_16_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_74_16<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [101, 120] => lookup_74_16_0(info, labels, acc), [107, 117, 110, 100, 101, 110] => lookup_74_16_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_74_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_74<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 119, 101, 98, 115, 101, 105, 116, 101] => lookup_74_0(acc), [49, 50, 104, 112] => lookup_74_1(acc), [50, 105, 120] => lookup_74_2(acc), [52, 108, 105, 109, 97] => lookup_74_3(acc), [97, 99] => lookup_74_4(labels, acc), [98, 105, 122] => lookup_74_5(acc), [99, 111] => lookup_74_6(labels, acc), [102, 117, 110, 107, 102, 101, 117, 101, 114] => lookup_74_7(info, labels, acc), [102, 117, 116, 117, 114, 101, 99, 109, 115] => lookup_74_8(info, labels, acc), [102, 117, 116, 117, 114, 101, 104, 111, 115, 116, 105, 110, 103] => lookup_74_9(acc), [102, 117, 116, 117, 114, 101, 109, 97, 105, 108, 105, 110, 103] => lookup_74_10(acc), [103, 118] => lookup_74_11(acc), [105, 110, 102, 111] => lookup_74_12(acc), [108, 105, 109, 97, 45, 99, 105, 116, 121] => lookup_74_13(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_74_14(acc), [111, 114] => lookup_74_15(acc), [111, 114, 116, 115, 105, 110, 102, 111] => lookup_74_16(info, labels, acc), [112, 114, 105, 118] => lookup_74_17(acc), _ => info, }, None => info, } } #[inline] fn lookup_75() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_76() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_2_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_77_2_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_77_2_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [109, 101, 108] => lookup_77_2_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_77_2_2(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_77_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_77_2_0(acc), [99, 108, 111, 117, 100, 108, 101, 116, 115] => lookup_77_2_1(info, labels, acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_77_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_77_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_2_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [115, 99, 104, 111, 111, 108, 115] => lookup_77_4_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_77_4_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 116] => lookup_77_4_0(acc), [99, 97, 116, 104, 111, 108, 105, 99] => lookup_77_4_1(acc), [110, 115, 119] => lookup_77_4_2(labels, acc), [110, 116] => lookup_77_4_3(acc), [113, 108, 100] => lookup_77_4_4(acc), [115, 97] => lookup_77_4_5(acc), [116, 97, 115] => lookup_77_4_6(acc), [118, 105, 99] => lookup_77_4_7(acc), [119, 97] => lookup_77_4_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_77_5_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_5_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_5_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_5_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_5_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_5<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [113, 108, 100] => lookup_77_5_0(acc), [115, 97] => lookup_77_5_1(acc), [116, 97, 115] => lookup_77_5_2(acc), [118, 105, 99] => lookup_77_5_3(acc), [119, 97] => lookup_77_5_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_77_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_77<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 116] => lookup_77_0(acc), [97, 115, 110] => lookup_77_1(acc), [99, 111, 109] => lookup_77_2(labels, acc), [99, 111, 110, 102] => lookup_77_3(acc), [101, 100, 117] => lookup_77_4(labels, acc), [103, 111, 118] => lookup_77_5(labels, acc), [105, 100] => lookup_77_6(acc), [105, 110, 102, 111] => lookup_77_7(acc), [110, 101, 116] => lookup_77_8(acc), [110, 115, 119] => lookup_77_9(acc), [110, 116] => lookup_77_10(acc), [111, 114, 103] => lookup_77_11(acc), [111, 122] => lookup_77_12(acc), [113, 108, 100] => lookup_77_13(acc), [115, 97] => lookup_77_14(acc), [116, 97, 115] => lookup_77_15(acc), [118, 105, 99] => lookup_77_16(acc), [119, 97] => lookup_77_17(acc), _ => info, }, None => info, } } #[inline] fn lookup_78() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_79() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_80() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_81() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_82() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_83() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_84() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_85() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_86() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_87_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_87<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_87_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_0_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_88_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_88_0_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_88_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [112, 114, 105, 118, 97, 116, 101] => lookup_88_0_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_0_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_0_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_0_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_1_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_1_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_1_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_2_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_2_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_2_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_2_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_3_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_3_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_3_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_3_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_4_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_4_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_4_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_4_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_5_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_5_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_5_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_5_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_6_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_6_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_7_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_7_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_7_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_7_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_8_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_8_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_8_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_8_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_9_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_9_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_9_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_9_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_10_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_10<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_10_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_11_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_11_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_11_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_11_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_11_1(acc) } [115, 116, 117, 100, 105, 111] => lookup_88_1_11_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_12_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_12_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_12<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_12_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_12_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_88_1_13_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_13_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_13<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_13_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_13_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_14_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_14_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_15_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_15_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_15<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_15_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_15_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_16_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_16_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_16<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_16_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_16_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_17_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_17<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_17_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_18_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_18_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_18<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_18_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_18_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_19_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_19_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_19<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_19_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_19_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_20_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_20_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_20<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_20_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_20_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_21_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_21_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_21<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_21_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_21_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_22_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_22_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_22<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_22_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_22_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_23_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_23_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_23<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_23_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_23_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_24_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_24_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_24<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_24_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_24_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_25_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_25_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_25_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_25<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_25_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_25_1(acc) } [115, 116, 117, 100, 105, 111] => lookup_88_1_25_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_26_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_26_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_26_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_26<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_26_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_26_1(acc) } [115, 116, 117, 100, 105, 111] => lookup_88_1_26_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_27_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_27_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_27_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_27_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_27<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_27_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_27_1(acc) } [115, 116, 117, 100, 105, 111] => lookup_88_1_27_2(acc), [115, 116, 117, 100, 105, 111, 45, 102, 105, 112, 115] => lookup_88_1_27_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_28_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_28_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_28_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_28_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_28<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_28_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_28_1(acc) } [115, 116, 117, 100, 105, 111] => lookup_88_1_28_2(acc), [115, 116, 117, 100, 105, 111, 45, 102, 105, 112, 115] => lookup_88_1_28_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_29_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_29_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_29<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_29_0(acc), [115, 116, 117, 100, 105, 111] => lookup_88_1_29_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1_30_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_30_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_30_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_88_1_30<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_88_1_30_0(acc), [110, 111, 116, 101, 98, 111, 111, 107, 45, 102, 105, 112, 115] => { lookup_88_1_30_1(acc) } [115, 116, 117, 100, 105, 111] => lookup_88_1_30_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_88_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 102, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_88_1_0(info, labels, acc), [97, 112, 45, 101, 97, 115, 116, 45, 49] => lookup_88_1_1(info, labels, acc), [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_88_1_2(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_88_1_3(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_88_1_4(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_88_1_5(info, labels, acc), [97, 112, 45, 115, 111, 117, 116, 104, 45, 50] => lookup_88_1_6(info, labels, acc), [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_88_1_7(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_88_1_8(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_88_1_9(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 52] => { lookup_88_1_10(info, labels, acc) } [99, 97, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_88_1_11(info, labels, acc) } [99, 97, 45, 119, 101, 115, 116, 45, 49] => lookup_88_1_12(info, labels, acc), [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_88_1_13(info, labels, acc) } [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 50] => { lookup_88_1_14(info, labels, acc) } [101, 117, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_88_1_15(info, labels, acc), [101, 117, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_88_1_16(info, labels, acc), [101, 117, 45, 115, 111, 117, 116, 104, 45, 50] => lookup_88_1_17(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 49] => lookup_88_1_18(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 50] => lookup_88_1_19(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 51] => lookup_88_1_20(info, labels, acc), [105, 108, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_88_1_21(info, labels, acc) } [109, 101, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_88_1_22(info, labels, acc) } [109, 101, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_88_1_23(info, labels, acc), [115, 97, 45, 101, 97, 115, 116, 45, 49] => lookup_88_1_24(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 49] => lookup_88_1_25(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 50] => lookup_88_1_26(info, labels, acc), [117, 115, 45, 103, 111, 118, 45, 101, 97, 115, 116, 45, 49] => { lookup_88_1_27(info, labels, acc) } [117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => { lookup_88_1_28(info, labels, acc) } [117, 115, 45, 119, 101, 115, 116, 45, 49] => lookup_88_1_29(info, labels, acc), [117, 115, 45, 119, 101, 115, 116, 45, 50] => lookup_88_1_30(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_88<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [114, 101, 112, 111, 115, 116] => lookup_88_0(info, labels, acc), [115, 97, 103, 101, 109, 97, 107, 101, 114] => lookup_88_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_89_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_89<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101] => lookup_89_0(acc), [99, 97, 116] => lookup_89_1(acc), [101, 115] => lookup_89_2(acc), [101, 117] => lookup_89_3(acc), [103, 103] => lookup_89_4(acc), [109, 99] => lookup_89_5(acc), [117, 115] => lookup_89_6(acc), [120, 121] => lookup_89_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_90() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_91<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_91_0(acc), [99, 111, 109] => lookup_91_1(acc), [101, 100, 117] => lookup_91_2(acc), [103, 111, 118] => lookup_91_3(acc), [105, 110, 102, 111] => lookup_91_4(acc), [105, 110, 116] => lookup_91_5(acc), [109, 105, 108] => lookup_91_6(acc), [110, 97, 109, 101] => lookup_91_7(acc), [110, 101, 116] => lookup_91_8(acc), [111, 114, 103] => lookup_91_9(acc), [112, 112] => lookup_91_10(acc), [112, 114, 111] => lookup_91_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_92() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_93_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_93_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_93<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_93_0(acc), [99, 111, 109] => lookup_93_1(acc), [101, 100, 117] => lookup_93_2(acc), [103, 111, 118] => lookup_93_3(acc), [109, 105, 108] => lookup_93_4(acc), [110, 101, 116] => lookup_93_5(acc), [111, 114, 103] => lookup_93_6(acc), [114, 115] => lookup_93_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_94() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_95() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_96() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_97() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_98() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_99() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_100() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_101() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_102() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_103() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_104() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_105() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_106_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_106_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_106<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 10usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 117, 115] => lookup_106_0(acc), [110, 122] => lookup_106_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_107() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_108() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_109<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_109_0(acc), [99, 111] => lookup_109_1(acc), [99, 111, 109] => lookup_109_2(acc), [101, 100, 117] => lookup_109_3(acc), [103, 111, 118] => lookup_109_4(acc), [105, 110, 102, 111] => lookup_109_5(acc), [110, 101, 116] => lookup_109_6(acc), [111, 114, 103] => lookup_109_7(acc), [115, 116, 111, 114, 101] => lookup_109_8(acc), [116, 118] => lookup_109_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_110() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_111() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_112() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_113() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_114() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_115_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_115<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_115_0(wild, acc), }, None => info, } } #[inline] fn lookup_116_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_116_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_116_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_116_3_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_116_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 18usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_116_3_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_116_4_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_116_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [101, 122, 112, 114, 111, 120, 121] => lookup_116_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_116_5(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_116_6_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_116_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_116_6_0(wild, acc), }, None => info, } } #[inline] fn lookup_116_7(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_116<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 119, 101, 98, 115, 105, 116, 101] => lookup_116_0(acc), [97, 99] => lookup_116_1(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_116_2(acc), [105, 110, 116, 101, 114, 104, 111, 115, 116, 115, 111, 108, 117, 116, 105, 111, 110, 115] => { lookup_116_3(info, labels, acc) } [107, 117, 108, 101, 117, 118, 101, 110] => lookup_116_4(info, labels, acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_116_5(acc), [116, 114, 97, 110, 115, 117, 114, 108] => lookup_116_6(info, labels, acc), [119, 101, 98, 104, 111, 115, 116, 105, 110, 103] => lookup_116_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_117() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_118() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_119() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_120() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_121() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_122() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_123() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_124() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_125_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_125<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 111, 118] => lookup_125_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_126_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_1(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_2(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_3(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_4(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_5(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_6(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_7(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_8(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_9(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_10(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_11(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_126_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_126_14(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_15(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_16(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_17(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_18(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_19(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_20(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_21(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_22(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_23(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_24(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_25(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_26(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_27(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_28(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_29(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_30(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_31(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_32(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_33(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_34(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_35(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_36(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126_37(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_126<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [48] => lookup_126_0(acc), [49] => lookup_126_1(acc), [50] => lookup_126_2(acc), [51] => lookup_126_3(acc), [52] => lookup_126_4(acc), [53] => lookup_126_5(acc), [54] => lookup_126_6(acc), [55] => lookup_126_7(acc), [56] => lookup_126_8(acc), [57] => lookup_126_9(acc), [97] => lookup_126_10(acc), [98] => lookup_126_11(acc), [98, 97, 114, 115, 121] => lookup_126_12(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_126_13(acc), [99] => lookup_126_14(acc), [100] => lookup_126_15(acc), [101] => lookup_126_16(acc), [102] => lookup_126_17(acc), [103] => lookup_126_18(acc), [104] => lookup_126_19(acc), [105] => lookup_126_20(acc), [106] => lookup_126_21(acc), [107] => lookup_126_22(acc), [108] => lookup_126_23(acc), [109] => lookup_126_24(acc), [110] => lookup_126_25(acc), [111] => lookup_126_26(acc), [112] => lookup_126_27(acc), [113] => lookup_126_28(acc), [114] => lookup_126_29(acc), [115] => lookup_126_30(acc), [116] => lookup_126_31(acc), [117] => lookup_126_32(acc), [118] => lookup_126_33(acc), [119] => lookup_126_34(acc), [120] => lookup_126_35(acc), [121] => lookup_126_36(acc), [122] => lookup_126_37(acc), _ => info, }, None => info, } } #[inline] fn lookup_127_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_127_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_127_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_127_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_127_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_127<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_127_0(acc), [101, 100, 117] => lookup_127_1(acc), [103, 111, 118] => lookup_127_2(acc), [110, 101, 116] => lookup_127_3(acc), [111, 114, 103] => lookup_127_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_128() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_129_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_129_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_129_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_129_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_129_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_129<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_129_0(acc), [99, 111, 109] => lookup_129_1(acc), [101, 100, 117] => lookup_129_2(acc), [111, 114] => lookup_129_3(acc), [111, 114, 103] => lookup_129_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_130() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_131() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_132() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_133() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_134() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_135() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_136_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_10(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_136_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_136<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 116, 105, 118, 101, 116, 114, 97, 105, 108] => lookup_136_0(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_136_1(acc), [100, 115, 99, 108, 111, 117, 100] => lookup_136_2(acc), [100, 121, 110, 100, 110, 115] => lookup_136_3(acc), [102, 111, 114, 45, 98, 101, 116, 116, 101, 114] => lookup_136_4(acc), [102, 111, 114, 45, 109, 111, 114, 101] => lookup_136_5(acc), [102, 111, 114, 45, 115, 111, 109, 101] => lookup_136_6(acc), [102, 111, 114, 45, 116, 104, 101] => lookup_136_7(acc), [106, 111, 122, 105] => lookup_136_8(acc), [109, 109, 97, 102, 97, 110] => lookup_136_9(acc), [109, 121, 102, 116, 112] => lookup_136_10(acc), [110, 111, 45, 105, 112] => lookup_136_11(acc), [111, 114, 120] => lookup_136_12(acc), [115, 101, 108, 102, 105, 112] => lookup_136_13(acc), [119, 101, 98, 104, 111, 112] => lookup_136_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_137_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_2(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_137_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_17(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_137<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 102, 114, 105, 99, 97] => lookup_137_0(acc), [97, 103, 114, 111] => lookup_137_1(acc), [97, 114, 99, 104, 105, 116, 101, 99, 116, 101, 115] => lookup_137_2(acc), [97, 115, 115, 117, 114] => lookup_137_3(acc), [97, 118, 111, 99, 97, 116, 115] => lookup_137_4(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_137_5(acc), [99, 111] => lookup_137_6(acc), [99, 111, 109] => lookup_137_7(acc), [101, 99, 111] => lookup_137_8(acc), [101, 99, 111, 110, 111] => lookup_137_9(acc), [101, 100, 117] => lookup_137_10(acc), [105, 110, 102, 111] => lookup_137_11(acc), [108, 111, 105, 115, 105, 114, 115] => lookup_137_12(acc), [109, 111, 110, 101, 121] => lookup_137_13(acc), [110, 101, 116] => lookup_137_14(acc), [111, 114, 103] => lookup_137_15(acc), [111, 116, 101] => lookup_137_16(acc), [114, 101, 115, 116, 97, 117, 114, 97, 110, 116] => lookup_137_17(acc), [114, 101, 115, 116, 111] => lookup_137_18(acc), [116, 111, 117, 114, 105, 115, 109] => lookup_137_19(acc), [117, 110, 105, 118] => lookup_137_20(acc), _ => info, }, None => info, } } #[inline] fn lookup_138() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_139() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_140() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_141() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_142() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_143() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_144_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_144_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_144_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_144_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_144_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_144<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_144_0(acc), [101, 100, 117] => lookup_144_1(acc), [103, 111, 118] => lookup_144_2(acc), [110, 101, 116] => lookup_144_3(acc), [111, 114, 103] => lookup_144_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_145() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_146() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_147_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_147_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_147_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_147_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_147_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_147_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_147<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_147_0(acc), [99, 111, 109] => lookup_147_1(acc), [101, 100, 117] => lookup_147_2(acc), [103, 111, 118] => lookup_147_3(acc), [110, 101, 116] => lookup_147_4(acc), [111, 114, 103] => lookup_147_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_148() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_16(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_20(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_21(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_24(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_29(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_31(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_33(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_34(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_35(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_36(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_37(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_38(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_39(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149_40(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_149<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 97, 100, 101, 109, 105, 97] => lookup_149_0(acc), [97, 103, 114, 111] => lookup_149_1(acc), [97, 114, 116, 101] => lookup_149_2(acc), [98, 108, 111, 103] => lookup_149_3(acc), [98, 111, 108, 105, 118, 105, 97] => lookup_149_4(acc), [99, 105, 101, 110, 99, 105, 97] => lookup_149_5(acc), [99, 111, 109] => lookup_149_6(acc), [99, 111, 111, 112, 101, 114, 97, 116, 105, 118, 97] => lookup_149_7(acc), [100, 101, 109, 111, 99, 114, 97, 99, 105, 97] => lookup_149_8(acc), [100, 101, 112, 111, 114, 116, 101] => lookup_149_9(acc), [101, 99, 111, 108, 111, 103, 105, 97] => lookup_149_10(acc), [101, 99, 111, 110, 111, 109, 105, 97] => lookup_149_11(acc), [101, 100, 117] => lookup_149_12(acc), [101, 109, 112, 114, 101, 115, 97] => lookup_149_13(acc), [103, 111, 98] => lookup_149_14(acc), [105, 110, 100, 105, 103, 101, 110, 97] => lookup_149_15(acc), [105, 110, 100, 117, 115, 116, 114, 105, 97] => lookup_149_16(acc), [105, 110, 102, 111] => lookup_149_17(acc), [105, 110, 116] => lookup_149_18(acc), [109, 101, 100, 105, 99, 105, 110, 97] => lookup_149_19(acc), [109, 105, 108] => lookup_149_20(acc), [109, 111, 118, 105, 109, 105, 101, 110, 116, 111] => lookup_149_21(acc), [109, 117, 115, 105, 99, 97] => lookup_149_22(acc), [110, 97, 116, 117, 114, 97, 108] => lookup_149_23(acc), [110, 101, 116] => lookup_149_24(acc), [110, 111, 109, 98, 114, 101] => lookup_149_25(acc), [110, 111, 116, 105, 99, 105, 97, 115] => lookup_149_26(acc), [111, 114, 103] => lookup_149_27(acc), [112, 97, 116, 114, 105, 97] => lookup_149_28(acc), [112, 108, 117, 114, 105, 110, 97, 99, 105, 111, 110, 97, 108] => lookup_149_29(acc), [112, 111, 108, 105, 116, 105, 99, 97] => lookup_149_30(acc), [112, 114, 111, 102, 101, 115, 105, 111, 110, 97, 108] => lookup_149_31(acc), [112, 117, 101, 98, 108, 111] => lookup_149_32(acc), [114, 101, 118, 105, 115, 116, 97] => lookup_149_33(acc), [115, 97, 108, 117, 100] => lookup_149_34(acc), [116, 101, 99, 110, 111, 108, 111, 103, 105, 97] => lookup_149_35(acc), [116, 107, 115, 97, 116] => lookup_149_36(acc), [116, 114, 97, 110, 115, 112, 111, 114, 116, 101] => lookup_149_37(acc), [116, 118] => lookup_149_38(acc), [119, 101, 98] => lookup_149_39(acc), [119, 105, 107, 105] => lookup_149_40(acc), _ => info, }, None => info, } } #[inline] fn lookup_150() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_151() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_152() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_153() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_154() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_155() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_156() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_157() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_158() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_159() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_160() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_161() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_162() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_163() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_8(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_13(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_19(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_20(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_22(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_23(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_26(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_28(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_29_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_29_1(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_29<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_164_29_0(acc), [115, 105, 109, 112, 108, 101, 115, 105, 116, 101] => lookup_164_29_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_164_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_31(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_32(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_33(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_35(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_36(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_37(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_38(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_39(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_40(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_41(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_42(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_43(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_44(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_45(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_46(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_47(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_48(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_49(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_50(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_51(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_52(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_53(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_54(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_55(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_56(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_57(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_58(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_59(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_60(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_61(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_62(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_18(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_21(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_22(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_25(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63_26(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_63<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_164_63_0(acc), [97, 108] => lookup_164_63_1(acc), [97, 109] => lookup_164_63_2(acc), [97, 112] => lookup_164_63_3(acc), [98, 97] => lookup_164_63_4(acc), [99, 101] => lookup_164_63_5(acc), [100, 102] => lookup_164_63_6(acc), [101, 115] => lookup_164_63_7(acc), [103, 111] => lookup_164_63_8(acc), [109, 97] => lookup_164_63_9(acc), [109, 103] => lookup_164_63_10(acc), [109, 115] => lookup_164_63_11(acc), [109, 116] => lookup_164_63_12(acc), [112, 97] => lookup_164_63_13(acc), [112, 98] => lookup_164_63_14(acc), [112, 101] => lookup_164_63_15(acc), [112, 105] => lookup_164_63_16(acc), [112, 114] => lookup_164_63_17(acc), [114, 106] => lookup_164_63_18(acc), [114, 110] => lookup_164_63_19(acc), [114, 111] => lookup_164_63_20(acc), [114, 114] => lookup_164_63_21(acc), [114, 115] => lookup_164_63_22(acc), [115, 99] => lookup_164_63_23(acc), [115, 101] => lookup_164_63_24(acc), [115, 112] => lookup_164_63_25(acc), [116, 111] => lookup_164_63_26(acc), _ => info, }, None => info, } } #[inline] fn lookup_164_64(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_65(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_66(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_67(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_68(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_69(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_70(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_71(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_72(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_73(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_74_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_18(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_21(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_22(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_25(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74_26(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_164_74<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_164_74_0(acc), [97, 108] => lookup_164_74_1(acc), [97, 109] => lookup_164_74_2(acc), [97, 112] => lookup_164_74_3(acc), [98, 97] => lookup_164_74_4(acc), [99, 101] => lookup_164_74_5(acc), [100, 102] => lookup_164_74_6(acc), [101, 115] => lookup_164_74_7(acc), [103, 111] => lookup_164_74_8(acc), [109, 97] => lookup_164_74_9(acc), [109, 103] => lookup_164_74_10(acc), [109, 115] => lookup_164_74_11(acc), [109, 116] => lookup_164_74_12(acc), [112, 97] => lookup_164_74_13(acc), [112, 98] => lookup_164_74_14(acc), [112, 101] => lookup_164_74_15(acc), [112, 105] => lookup_164_74_16(acc), [112, 114] => lookup_164_74_17(acc), [114, 106] => lookup_164_74_18(acc), [114, 110] => lookup_164_74_19(acc), [114, 111] => lookup_164_74_20(acc), [114, 114] => lookup_164_74_21(acc), [114, 115] => lookup_164_74_22(acc), [115, 99] => lookup_164_74_23(acc), [115, 101] => lookup_164_74_24(acc), [115, 112] => lookup_164_74_25(acc), [116, 111] => lookup_164_74_26(acc), _ => info, }, None => info, } } #[inline] fn lookup_164_75(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_76(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_77(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_78(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_79(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_80(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_81(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_82(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_83(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_84(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_85(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_86(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_87(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_88(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_89(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_90(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_91_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_164_91<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_164_91_0(wild, acc), }, None => info, } } #[inline] fn lookup_164_92(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_93(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_94(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_95(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_96(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_97(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_98(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_99(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_100(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_101(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_102(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_103(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_104(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_105(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_106(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_107(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_108(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_109(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_110(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_111(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_112(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_113(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_114(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_115(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_116(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_117(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_118(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_119(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_120(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_121(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_122(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_123(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_124(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_125(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_126(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_127(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_128(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_129(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_130(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_131(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_132(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_133(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_134(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_135(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_136(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_137(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_138(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_139(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164_140(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_164<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [57, 103, 117, 97, 99, 117] => lookup_164_0(acc), [97, 98, 99] => lookup_164_1(acc), [97, 100, 109] => lookup_164_2(acc), [97, 100, 118] => lookup_164_3(acc), [97, 103, 114] => lookup_164_4(acc), [97, 106, 117] => lookup_164_5(acc), [97, 109] => lookup_164_6(acc), [97, 110, 97, 110, 105] => lookup_164_7(acc), [97, 112, 97, 114, 101, 99, 105, 100, 97] => lookup_164_8(acc), [97, 112, 112] => lookup_164_9(acc), [97, 114, 113] => lookup_164_10(acc), [97, 114, 116] => lookup_164_11(acc), [97, 116, 111] => lookup_164_12(acc), [98] => lookup_164_13(acc), [98, 97, 114, 117, 101, 114, 105] => lookup_164_14(acc), [98, 101, 108, 101, 109] => lookup_164_15(acc), [98, 104, 122] => lookup_164_16(acc), [98, 105, 98] => lookup_164_17(acc), [98, 105, 111] => lookup_164_18(acc), [98, 108, 111, 103] => lookup_164_19(acc), [98, 109, 100] => lookup_164_20(acc), [98, 111, 97, 118, 105, 115, 116, 97] => lookup_164_21(acc), [98, 115, 98] => lookup_164_22(acc), [99, 97, 109, 112, 105, 110, 97, 103, 114, 97, 110, 100, 101] => lookup_164_23(acc), [99, 97, 109, 112, 105, 110, 97, 115] => lookup_164_24(acc), [99, 97, 120, 105, 97, 115] => lookup_164_25(acc), [99, 105, 109] => lookup_164_26(acc), [99, 110, 103] => lookup_164_27(acc), [99, 110, 116] => lookup_164_28(acc), [99, 111, 109] => lookup_164_29(labels, acc), [99, 111, 110, 116, 97, 103, 101, 109] => lookup_164_30(acc), [99, 111, 111, 112] => lookup_164_31(acc), [99, 111, 122] => lookup_164_32(acc), [99, 114, 105] => lookup_164_33(acc), [99, 117, 105, 97, 98, 97] => lookup_164_34(acc), [99, 117, 114, 105, 116, 105, 98, 97] => lookup_164_35(acc), [100, 101, 102] => lookup_164_36(acc), [100, 101, 115] => lookup_164_37(acc), [100, 101, 116] => lookup_164_38(acc), [100, 101, 118] => lookup_164_39(acc), [101, 99, 110] => lookup_164_40(acc), [101, 99, 111] => lookup_164_41(acc), [101, 100, 117] => lookup_164_42(acc), [101, 109, 112] => lookup_164_43(acc), [101, 110, 102] => lookup_164_44(acc), [101, 110, 103] => lookup_164_45(acc), [101, 115, 112] => lookup_164_46(acc), [101, 116, 99] => lookup_164_47(acc), [101, 116, 105] => lookup_164_48(acc), [102, 97, 114] => lookup_164_49(acc), [102, 101, 105, 114, 97] => lookup_164_50(acc), [102, 108, 111, 103] => lookup_164_51(acc), [102, 108, 111, 114, 105, 112, 97] => lookup_164_52(acc), [102, 109] => lookup_164_53(acc), [102, 110, 100] => lookup_164_54(acc), [102, 111, 114, 116, 97, 108] => lookup_164_55(acc), [102, 111, 116] => lookup_164_56(acc), [102, 111, 122] => lookup_164_57(acc), [102, 115, 116] => lookup_164_58(acc), [103, 49, 50] => lookup_164_59(acc), [103, 101, 111] => lookup_164_60(acc), [103, 103, 102] => lookup_164_61(acc), [103, 111, 105, 97, 110, 105, 97] => lookup_164_62(acc), [103, 111, 118] => lookup_164_63(labels, acc), [103, 114, 117] => lookup_164_64(acc), [105, 109, 98] => lookup_164_65(acc), [105, 110, 100] => lookup_164_66(acc), [105, 110, 102] => lookup_164_67(acc), [106, 97, 98] => lookup_164_68(acc), [106, 97, 109, 112, 97] => lookup_164_69(acc), [106, 100, 102] => lookup_164_70(acc), [106, 111, 105, 110, 118, 105, 108, 108, 101] => lookup_164_71(acc), [106, 111, 114] => lookup_164_72(acc), [106, 117, 115] => lookup_164_73(acc), [108, 101, 103] => lookup_164_74(labels, acc), [108, 101, 108] => lookup_164_75(acc), [108, 111, 103] => lookup_164_76(acc), [108, 111, 110, 100, 114, 105, 110, 97] => lookup_164_77(acc), [109, 97, 99, 97, 112, 97] => lookup_164_78(acc), [109, 97, 99, 101, 105, 111] => lookup_164_79(acc), [109, 97, 110, 97, 117, 115] => lookup_164_80(acc), [109, 97, 114, 105, 110, 103, 97] => lookup_164_81(acc), [109, 97, 116] => lookup_164_82(acc), [109, 101, 100] => lookup_164_83(acc), [109, 105, 108] => lookup_164_84(acc), [109, 111, 114, 101, 110, 97] => lookup_164_85(acc), [109, 112] => lookup_164_86(acc), [109, 117, 115] => lookup_164_87(acc), [110, 97, 116, 97, 108] => lookup_164_88(acc), [110, 101, 116] => lookup_164_89(acc), [110, 105, 116, 101, 114, 111, 105] => lookup_164_90(acc), [110, 111, 109] => lookup_164_91(info, labels, acc), [110, 111, 116] => lookup_164_92(acc), [110, 116, 114] => lookup_164_93(acc), [111, 100, 111] => lookup_164_94(acc), [111, 110, 103] => lookup_164_95(acc), [111, 114, 103] => lookup_164_96(acc), [111, 115, 97, 115, 99, 111] => lookup_164_97(acc), [112, 97, 108, 109, 97, 115] => lookup_164_98(acc), [112, 111, 97] => lookup_164_99(acc), [112, 112, 103] => lookup_164_100(acc), [112, 114, 111] => lookup_164_101(acc), [112, 115, 99] => lookup_164_102(acc), [112, 115, 105] => lookup_164_103(acc), [112, 118, 104] => lookup_164_104(acc), [113, 115, 108] => lookup_164_105(acc), [114, 97, 100, 105, 111] => lookup_164_106(acc), [114, 101, 99] => lookup_164_107(acc), [114, 101, 99, 105, 102, 101] => lookup_164_108(acc), [114, 101, 112] => lookup_164_109(acc), [114, 105, 98, 101, 105, 114, 97, 111] => lookup_164_110(acc), [114, 105, 111] => lookup_164_111(acc), [114, 105, 111, 98, 114, 97, 110, 99, 111] => lookup_164_112(acc), [114, 105, 111, 112, 114, 101, 116, 111] => lookup_164_113(acc), [115, 97, 108, 118, 97, 100, 111, 114] => lookup_164_114(acc), [115, 97, 109, 112, 97] => lookup_164_115(acc), [115, 97, 110, 116, 97, 109, 97, 114, 105, 97] => lookup_164_116(acc), [115, 97, 110, 116, 111, 97, 110, 100, 114, 101] => lookup_164_117(acc), [115, 97, 111, 98, 101, 114, 110, 97, 114, 100, 111] => lookup_164_118(acc), [115, 97, 111, 103, 111, 110, 99, 97] => lookup_164_119(acc), [115, 101, 103] => lookup_164_120(acc), [115, 106, 99] => lookup_164_121(acc), [115, 108, 103] => lookup_164_122(acc), [115, 108, 122] => lookup_164_123(acc), [115, 111, 114, 111, 99, 97, 98, 97] => lookup_164_124(acc), [115, 114, 118] => lookup_164_125(acc), [116, 97, 120, 105] => lookup_164_126(acc), [116, 99] => lookup_164_127(acc), [116, 101, 99] => lookup_164_128(acc), [116, 101, 111] => lookup_164_129(acc), [116, 104, 101] => lookup_164_130(acc), [116, 109, 112] => lookup_164_131(acc), [116, 114, 100] => lookup_164_132(acc), [116, 117, 114] => lookup_164_133(acc), [116, 118] => lookup_164_134(acc), [117, 100, 105] => lookup_164_135(acc), [118, 101, 116] => lookup_164_136(acc), [118, 105, 120] => lookup_164_137(acc), [118, 108, 111, 103] => lookup_164_138(acc), [119, 105, 107, 105] => lookup_164_139(acc), [122, 108, 103] => lookup_164_140(acc), _ => info, }, None => info, } } #[inline] fn lookup_165() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_166() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_167() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_168() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_169() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_170() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_171_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_171_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_171_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_171_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_171_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_171_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_171<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_171_0(acc), [101, 100, 117] => lookup_171_1(acc), [103, 111, 118] => lookup_171_2(acc), [110, 101, 116] => lookup_171_3(acc), [111, 114, 103] => lookup_171_4(acc), [119, 101] => lookup_171_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_172_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_172_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_172_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_172_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_172_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_172<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_172_0(acc), [101, 100, 117] => lookup_172_1(acc), [103, 111, 118] => lookup_172_2(acc), [110, 101, 116] => lookup_172_3(acc), [111, 114, 103] => lookup_172_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_173() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_174_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_174<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 115, 105, 116, 101] => lookup_174_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_175_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_175<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_175_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_176() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_177() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_178() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_179_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_179_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_179<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_179_0(acc), [111, 114, 103] => lookup_179_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_180_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_180_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_180_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_180_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_180_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_180_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_180_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_180_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_180<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_180_0(labels, acc), [103, 111, 118] => lookup_180_1(acc), [109, 101, 100, 105, 97, 116, 101, 99, 104] => lookup_180_2(acc), [109, 105, 108] => lookup_180_3(acc), [109, 121, 99, 108, 111, 117, 100] => lookup_180_4(acc), [111, 102] => lookup_180_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_181_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_181_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_181_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_181_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_181_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_181_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_181_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_181<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_181_0(acc), [101, 100, 117] => lookup_181_1(acc), [103, 111, 118] => lookup_181_2(acc), [103, 115, 106] => lookup_181_3(acc), [110, 101, 116] => lookup_181_4(acc), [111, 114, 103] => lookup_181_5(acc), [122, 97] => lookup_181_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_182() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_183_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_183_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_183_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_183_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_183_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_183_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_8(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_183_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_183_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_18(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_183<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98] => lookup_183_0(acc), [97, 119, 100, 101, 118] => lookup_183_1(info, labels, acc), [98, 97, 114, 115, 121] => lookup_183_2(acc), [98, 99] => lookup_183_3(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_183_4(acc), [99, 111] => lookup_183_5(acc), [103, 99] => lookup_183_6(acc), [109, 98] => lookup_183_7(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_183_8(acc), [110, 98] => lookup_183_9(acc), [110, 102] => lookup_183_10(acc), [110, 108] => lookup_183_11(acc), [110, 111, 45, 105, 112] => lookup_183_12(acc), [110, 115] => lookup_183_13(acc), [110, 116] => lookup_183_14(acc), [110, 117] => lookup_183_15(acc), [111, 110] => lookup_183_16(acc), [112, 101] => lookup_183_17(acc), [113, 99] => lookup_183_18(acc), [115, 107] => lookup_183_19(acc), [121, 107] => lookup_183_20(acc), _ => info, }, None => info, } } #[inline] fn lookup_184() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_185() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_186() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_187() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_188() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_189() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_190() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_191() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_192() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_193() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_194() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_195() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_196() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_197() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_198() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_199() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_200() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_201() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_202() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_203_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_203_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [117, 105] => lookup_203_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_203<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 97, 98, 117] => lookup_203_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_204() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_205() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_206() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_207() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_208() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_209() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_210() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_211() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_212() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_213_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_2(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_7_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_213_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [105, 110, 115, 116, 97, 110, 99, 101, 115] => lookup_213_7_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_213_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_213<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 110, 115] => lookup_213_0(acc), [99, 115, 120] => lookup_213_1(acc), [102, 97, 110, 116, 97, 115, 121, 108, 101, 97, 103, 117, 101] => lookup_213_2(acc), [102, 116, 112, 97, 99, 99, 101, 115, 115] => lookup_213_3(acc), [103, 97, 109, 101, 45, 115, 101, 114, 118, 101, 114] => lookup_213_4(acc), [109, 121, 112, 104, 111, 116, 111, 115] => lookup_213_5(acc), [115, 99, 114, 97, 112, 112, 105, 110, 103] => lookup_213_6(acc), [115, 112, 97, 119, 110] => lookup_213_7(info, labels, acc), [116, 119, 109, 97, 105, 108] => lookup_213_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_214_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_214<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 111, 118] => lookup_214_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_215() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_216() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_217() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_218_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_218<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_218_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_219() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_220() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_221() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_222_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_6_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_222_6_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_222_6_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_222_6_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_222_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [115, 118, 99] => lookup_222_6_1(info, labels, acc), wild => lookup_222_6_0(wild, acc), }, None => info, } } #[inline] fn lookup_222_7_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_7_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { [97, 108, 112, 49] => lookup_222_7_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_222_7_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [97, 101] => lookup_222_7_0(info, labels, acc), [97, 112, 112, 101, 110, 103, 105, 110, 101] => lookup_222_7_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_222_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_9(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_10(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_11(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_222_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_222<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 119, 101, 98, 115, 105, 116, 101] => lookup_222_0(acc), [49, 50, 104, 112] => lookup_222_1(acc), [50, 105, 120] => lookup_222_2(acc), [52, 108, 105, 109, 97] => lookup_222_3(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_222_4(acc), [100, 110, 115, 107, 105, 110, 103] => lookup_222_5(acc), [102, 105, 114, 101, 110, 101, 116] => lookup_222_6(info, labels, acc), [102, 108, 111, 119] => lookup_222_7(info, labels, acc), [103, 111, 116, 100, 110, 115] => lookup_222_8(acc), [108, 105, 109, 97, 45, 99, 105, 116, 121] => lookup_222_9(acc), [108, 105, 110, 107, 121, 97, 114, 100, 45, 99, 108, 111, 117, 100] => { lookup_222_10(acc) } [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_222_11(acc), [115, 113, 117, 97, 114, 101, 55] => lookup_222_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_223() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_224() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_225() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_226() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_227() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_228() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_229() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_230() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_231() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_232() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_233_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_233_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233_17(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_233<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_233_0(acc), [97, 115, 115, 111] => lookup_233_1(acc), [97, 195, 169, 114, 111, 112, 111, 114, 116] => lookup_233_2(acc), [99, 111] => lookup_233_3(acc), [99, 111, 109] => lookup_233_4(acc), [101, 100] => lookup_233_5(acc), [101, 100, 117] => lookup_233_6(acc), [102, 105, 110] => lookup_233_7(acc), [103, 111] => lookup_233_8(acc), [103, 111, 117, 118] => lookup_233_9(acc), [105, 110, 116] => lookup_233_10(acc), [109, 100] => lookup_233_11(acc), [110, 101, 116] => lookup_233_12(acc), [110, 108] => lookup_233_13(acc), [111, 114] => lookup_233_14(acc), [111, 114, 103] => lookup_233_15(acc), [112, 114, 101, 115, 115, 101] => lookup_233_16(acc), [120, 110, 45, 45, 97, 114, 111, 112, 111, 114, 116, 45, 98, 121, 97] => { lookup_233_17(acc) } _ => info, }, None => info, } } #[inline] fn lookup_234() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_235() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_236() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_237() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_238() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_239() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_240() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_241_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_241_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_241<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { [119, 119, 119] => lookup_241_0(acc), wild => lookup_241_1(wild, acc), }, None => info, } } #[inline] fn lookup_242_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_242_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_242_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_242_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_242_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_242<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_242_0(acc), [99, 111] => lookup_242_1(acc), [103, 111, 98] => lookup_242_2(acc), [103, 111, 118] => lookup_242_3(acc), [109, 105, 108] => lookup_242_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_243() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_244() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_245() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_246() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_247() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_248() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_249_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [101, 115, 45, 49] => lookup_249_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_249_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_249_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_249_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_5_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [101, 117] => lookup_249_5_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_6_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [118, 105, 112] => lookup_249_6_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_8_0_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_8_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [105, 116, 49] => lookup_249_8_0_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_8_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [101, 117, 114] => lookup_249_8_0_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_249_8_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 114, 117, 98, 97] => lookup_249_8_0(info, labels, acc), [105, 116, 49] => lookup_249_8_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_10_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_10<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [99, 115] => lookup_249_10_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_13_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_249_13<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { wild => lookup_249_13_0(wild, acc), }, None => info, } } #[inline] fn lookup_249_14_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_249_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_249_14_0(wild, acc), }, None => info, } } #[inline] fn lookup_249_15_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_15_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_15<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [116, 110] => lookup_249_15_0(acc), [117, 107] => lookup_249_15_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_16(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_17_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_17<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [117, 107] => lookup_249_17_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_19_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_19_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_19_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_19<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [99, 97] => lookup_249_19_0(acc), [117, 107] => lookup_249_19_1(acc), [117, 115] => lookup_249_19_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_0_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_0_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [102, 114, 45, 112, 97, 114, 45, 49] => lookup_249_20_0_0(acc), [102, 114, 45, 112, 97, 114, 45, 50] => lookup_249_20_0_1(acc), [110, 108, 45, 97, 109, 115, 45, 49] => lookup_249_20_0_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_1_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_1_1_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_1_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [102, 117, 110, 99, 116, 105, 111, 110, 115] => lookup_249_20_1_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_1_2_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_1_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [110, 111, 100, 101, 115] => lookup_249_20_1_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_1_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_1_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_1_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 111, 99, 107, 112, 105, 116] => lookup_249_20_1_0(acc), [102, 110, 99] => lookup_249_20_1_1(labels, acc), [107, 56, 115] => lookup_249_20_1_2(labels, acc), [115, 51] => lookup_249_20_1_3(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_249_20_1_4(acc), [119, 104, 109] => lookup_249_20_1_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_2_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_2_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [112, 114, 105, 118] => lookup_249_20_2_0(acc), [112, 117, 98] => lookup_249_20_2_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_4_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_4_1_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_4_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [110, 111, 100, 101, 115] => lookup_249_20_4_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_4_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_4_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_4_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 111, 99, 107, 112, 105, 116] => lookup_249_20_4_0(acc), [107, 56, 115] => lookup_249_20_4_1(labels, acc), [115, 51] => lookup_249_20_4_2(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_249_20_4_3(acc), [119, 104, 109] => lookup_249_20_4_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_5_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_5_1_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_5_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [110, 111, 100, 101, 115] => lookup_249_20_5_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_5_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_5_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 111, 99, 107, 112, 105, 116] => lookup_249_20_5_0(acc), [107, 56, 115] => lookup_249_20_5_1(labels, acc), [115, 51] => lookup_249_20_5_2(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_249_20_5_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_20_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20_7(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_20<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [98, 97, 114, 101, 109, 101, 116, 97, 108] => lookup_249_20_0(info, labels, acc), [102, 114, 45, 112, 97, 114] => lookup_249_20_1(info, labels, acc), [105, 110, 115, 116, 97, 110, 99, 101, 115] => lookup_249_20_2(info, labels, acc), [107, 56, 115] => lookup_249_20_3(acc), [110, 108, 45, 97, 109, 115] => lookup_249_20_4(info, labels, acc), [112, 108, 45, 119, 97, 119] => lookup_249_20_5(info, labels, acc), [115, 99, 97, 108, 101, 98, 111, 111, 107] => lookup_249_20_6(acc), [115, 109, 97, 114, 116, 108, 97, 98, 101, 108, 105, 110, 103] => lookup_249_20_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_21_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_249_21<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_249_21_0(wild, acc), }, None => info, } } #[inline] fn lookup_249_22_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_249_22<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_249_22_0(wild, acc), }, None => info, } } #[inline] fn lookup_249_23(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_24_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_24_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_24<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [99, 104] => lookup_249_24_0(acc), [100, 101] => lookup_249_24_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_249_25(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_249_28(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_249<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 120, 97, 114, 110, 101, 116] => lookup_249_0(info, labels, acc), [98, 97, 110, 122, 97, 105] => lookup_249_1(info, labels, acc), [99, 121, 99, 108, 105, 99] => lookup_249_2(acc), [100, 105, 97, 100, 101, 109] => lookup_249_3(acc), [101, 108, 101, 109, 101, 110, 116, 111, 114] => lookup_249_4(acc), [101, 110, 99, 111, 119, 97, 121] => lookup_249_5(info, labels, acc), [106, 101, 108, 97, 115, 116, 105, 99] => lookup_249_6(info, labels, acc), [106, 101, 108, 101] => lookup_249_7(acc), [106, 101, 110, 118, 45, 97, 114, 117, 98, 97] => lookup_249_8(info, labels, acc), [106, 111, 116, 101, 108, 117, 108, 117] => lookup_249_9(acc), [107, 101, 108, 105, 119, 101, 98] => lookup_249_10(labels, acc), [107, 117, 108, 101, 117, 118, 101, 110] => lookup_249_11(acc), [108, 105, 110, 107, 121, 97, 114, 100] => lookup_249_12(acc), [109, 97, 103, 101, 110, 116, 111, 115, 105, 116, 101] => { lookup_249_13(info, labels, acc) } [111, 110, 45, 114, 97, 110, 99, 104, 101, 114] => lookup_249_14(info, labels, acc), [111, 120, 97] => lookup_249_15(labels, acc), [112, 101, 114, 115, 112, 101, 99, 116, 97] => lookup_249_16(acc), [112, 114, 105, 109, 101, 116, 101, 108] => lookup_249_17(labels, acc), [114, 97, 118, 101, 110, 100, 98] => lookup_249_18(acc), [114, 101, 99, 108, 97, 105, 109] => lookup_249_19(info, labels, acc), [115, 99, 119] => lookup_249_20(info, labels, acc), [115, 101, 110, 115, 105, 111, 115, 105, 116, 101] => lookup_249_21(info, labels, acc), [115, 116, 97, 116, 105, 99, 115] => lookup_249_22(info, labels, acc), [116, 114, 97, 102, 102, 105, 99, 112, 108, 101, 120] => lookup_249_23(acc), [116, 114, 101, 110, 100, 104, 111, 115, 116, 105, 110, 103] => { lookup_249_24(info, labels, acc) } [117, 114, 111, 119, 110] => lookup_249_25(acc), [118, 97, 112, 111, 114] => lookup_249_26(acc), [118, 111, 111, 114, 108, 111, 112, 101, 114] => lookup_249_27(acc), [122, 97, 112] => lookup_249_28(acc), _ => info, }, None => info, } } #[inline] fn lookup_250_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_250_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_250_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_250<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_250_0(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_250_1(acc), [106, 101, 108, 101] => lookup_250_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_251() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_252_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_252_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_252_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_252_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_252<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_252_0(acc), [99, 111, 109] => lookup_252_1(acc), [103, 111, 118] => lookup_252_2(acc), [110, 101, 116] => lookup_252_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_0_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_253_4_0_0_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_253_4_0_0_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_0_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { wild => lookup_253_4_0_0_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_253_4_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [99, 110, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_253_4_0_0_0(info, labels, acc), [99, 110, 45, 110, 111, 114, 116, 104, 119, 101, 115, 116, 45, 49] => { lookup_253_4_0_0_1(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_253_4_0_1_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_0_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_253_4_0_1_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_253_4_0_1_0_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_253_4_0_1_0_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_4_0_1_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_2(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_7(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_8(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1_9(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_253_4_0_1_0(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_253_4_0_1_1(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_253_4_0_1_2(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_253_4_0_1_3(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_253_4_0_1_4(acc), [115, 51] => lookup_253_4_0_1_5(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_253_4_0_1_6(acc) } [115, 51, 45, 100, 101, 112, 114, 101, 99, 97, 116, 101, 100] => { lookup_253_4_0_1_7(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_253_4_0_1_8(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_253_4_0_1_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_4_0_2_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_253_4_0_2_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_253_4_0_2_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_253_4_0_2_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_2(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_7(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_253_4_0_2_0(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_253_4_0_2_1(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_253_4_0_2_2(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_253_4_0_2_3(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_253_4_0_2_4(acc), [115, 51] => lookup_253_4_0_2_5(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_253_4_0_2_6(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_253_4_0_2_7(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_253_4_0_2_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_4_0_3_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_253_4_0_3_0(wild, acc), }, None => info, } } #[inline] fn lookup_253_4_0_4_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_4_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { [99, 110, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_253_4_0_4_0(acc), [99, 110, 45, 110, 111, 114, 116, 104, 119, 101, 115, 116, 45, 49] => { lookup_253_4_0_4_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_253_4_0_5_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_253_4_0_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_253_4_0_5_0(wild, acc), }, None => info, } } #[inline] fn lookup_253_4_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 105, 114, 102, 108, 111, 119] => lookup_253_4_0_0(info, labels, acc), [99, 110, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_253_4_0_1(info, labels, acc), [99, 110, 45, 110, 111, 114, 116, 104, 119, 101, 115, 116, 45, 49] => { lookup_253_4_0_2(info, labels, acc) } [99, 111, 109, 112, 117, 116, 101] => lookup_253_4_0_3(info, labels, acc), [101, 98] => lookup_253_4_0_4(info, labels, acc), [101, 108, 98] => lookup_253_4_0_5(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_253_4_1_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_1_0_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_1_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_253_4_1_0_0(acc), [115, 116, 117, 100, 105, 111] => lookup_253_4_1_0_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_4_1_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_1_1_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_4_1_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [110, 111, 116, 101, 98, 111, 111, 107] => lookup_253_4_1_1_0(acc), [115, 116, 117, 100, 105, 111] => lookup_253_4_1_1_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_4_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [99, 110, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_253_4_1_0(info, labels, acc), [99, 110, 45, 110, 111, 114, 116, 104, 119, 101, 115, 116, 45, 49] => { lookup_253_4_1_1(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_253_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 109, 97, 122, 111, 110, 97, 119, 115] => lookup_253_4_0(info, labels, acc), [115, 97, 103, 101, 109, 97, 107, 101, 114] => lookup_253_4_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_253_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_18(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_20(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_21(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_22(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_26(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_28(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_29(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_30(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_31(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_32_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_253_32<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [100, 105, 114, 101, 99, 116] => lookup_253_32_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_253_33(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_34(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_35(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_36(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_37(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_38(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_39(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_40(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_41(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_42(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_43(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_44(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_45(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_46(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_47(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_48(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253_49(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_253<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_253_0(acc), [97, 104] => lookup_253_1(acc), [98, 106] => lookup_253_2(acc), [99, 97, 110, 118, 97, 45, 97, 112, 112, 115] => lookup_253_3(acc), [99, 111, 109] => lookup_253_4(labels, acc), [99, 113] => lookup_253_5(acc), [101, 100, 117] => lookup_253_6(acc), [102, 106] => lookup_253_7(acc), [103, 100] => lookup_253_8(acc), [103, 111, 118] => lookup_253_9(acc), [103, 115] => lookup_253_10(acc), [103, 120] => lookup_253_11(acc), [103, 122] => lookup_253_12(acc), [104, 97] => lookup_253_13(acc), [104, 98] => lookup_253_14(acc), [104, 101] => lookup_253_15(acc), [104, 105] => lookup_253_16(acc), [104, 107] => lookup_253_17(acc), [104, 108] => lookup_253_18(acc), [104, 110] => lookup_253_19(acc), [105, 110, 115, 116, 97, 110, 116, 99, 108, 111, 117, 100] => lookup_253_20(acc), [106, 108] => lookup_253_21(acc), [106, 115] => lookup_253_22(acc), [106, 120] => lookup_253_23(acc), [108, 110] => lookup_253_24(acc), [109, 105, 108] => lookup_253_25(acc), [109, 111] => lookup_253_26(acc), [110, 101, 116] => lookup_253_27(acc), [110, 109] => lookup_253_28(acc), [110, 120] => lookup_253_29(acc), [111, 114, 103] => lookup_253_30(acc), [113, 104] => lookup_253_31(acc), [113, 117, 105, 99, 107, 99, 111, 110, 110, 101, 99, 116] => { lookup_253_32(info, labels, acc) } [115, 99] => lookup_253_33(acc), [115, 100] => lookup_253_34(acc), [115, 104] => lookup_253_35(acc), [115, 110] => lookup_253_36(acc), [115, 120] => lookup_253_37(acc), [116, 106] => lookup_253_38(acc), [116, 119] => lookup_253_39(acc), [120, 106] => lookup_253_40(acc), [120, 110, 45, 45, 53, 53, 113, 120, 53, 100] => lookup_253_41(acc), [120, 110, 45, 45, 105, 111, 48, 97, 55, 105] => lookup_253_42(acc), [120, 110, 45, 45, 111, 100, 48, 97, 108, 103] => lookup_253_43(acc), [120, 122] => lookup_253_44(acc), [121, 110] => lookup_253_45(acc), [122, 106] => lookup_253_46(acc), [229, 133, 172, 229, 143, 184] => lookup_253_47(acc), [231, 182, 178, 231, 181, 161] => lookup_253_48(acc), [231, 189, 145, 231, 187, 156] => lookup_253_49(acc), _ => info, }, None => info, } } #[inline] fn lookup_254_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_2_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_254_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_254_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_5_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_5<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 16usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [105, 100] => lookup_254_5_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_254_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_18_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_254_18<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { wild => lookup_254_18_0(wild, acc), }, None => info, } } #[inline] fn lookup_254_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254_20_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_20<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [105, 100] => lookup_254_20_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_254_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_254_22(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_254<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116, 115] => lookup_254_0(acc), [99, 97, 114, 114, 100] => lookup_254_1(acc), [99, 111, 109] => lookup_254_2(labels, acc), [99, 114, 100] => lookup_254_3(acc), [101, 100, 117] => lookup_254_4(acc), [102, 105, 114, 101, 119, 97, 108, 108, 101, 100, 114, 101, 112, 108, 105, 116] => { lookup_254_5(labels, acc) } [102, 105, 114, 109] => lookup_254_6(acc), [103, 111, 118] => lookup_254_7(acc), [105, 110, 102, 111] => lookup_254_8(acc), [105, 110, 116] => lookup_254_9(acc), [108, 101, 97, 100, 112, 97, 103, 101, 115] => lookup_254_10(acc), [108, 112, 97, 103, 101, 115] => lookup_254_11(acc), [109, 105, 108] => lookup_254_12(acc), [109, 121, 112, 105] => lookup_254_13(acc), [110, 52, 116] => lookup_254_14(acc), [110, 101, 116] => lookup_254_15(acc), [110, 111, 109] => lookup_254_16(acc), [111, 114, 103] => lookup_254_17(acc), [111, 116, 97, 112] => lookup_254_18(info, labels, acc), [114, 101, 99] => lookup_254_19(acc), [114, 101, 112, 108] => lookup_254_20(labels, acc), [115, 117, 112, 97, 98, 97, 115, 101] => lookup_254_21(acc), [119, 101, 98] => lookup_254_22(acc), _ => info, }, None => info, } } #[inline] fn lookup_255() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_256_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_256_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_256_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_256<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [111, 119, 111] => lookup_256_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_257() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_258() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_259() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_260_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { wild => lookup_260_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_7_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_7_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_7_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_7<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [100, 101, 118] => lookup_260_7_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_9(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_10(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_12(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_13(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_0_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_0_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_0_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_0_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_0_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_2_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_0_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_0_2_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_0_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_0_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_0_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_0_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_0_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_0_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_0_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_0_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_0_6(acc), [115, 51] => lookup_260_14_0_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_0_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_0_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_0_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_1_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_3_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_3_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_4_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_4_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_5_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_5_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_6_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_6_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_7_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_7_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_8_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_8_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_9_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_9_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_10_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_10<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_10_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_11_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_11_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_12_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_12<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_12_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_13_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_13<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_13_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1_14_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_1_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_1_14_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_1_0(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_1_1(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_1_2(info, labels, acc), [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_1_3(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_1_4(info, labels, acc) } [99, 97, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_1_5(info, labels, acc) } [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_1_6(info, labels, acc) } [101, 117, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_260_14_1_7(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 49] => lookup_260_14_1_8(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 50] => lookup_260_14_1_9(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 51] => lookup_260_14_1_10(info, labels, acc), [115, 97, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_1_11(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_1_12(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 50] => lookup_260_14_1_13(info, labels, acc), [117, 115, 45, 119, 101, 115, 116, 45, 50] => lookup_260_14_1_14(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_2_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_2_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_2_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_2_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_2_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_2_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_2_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_2_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_2_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_2_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_2_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_2_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_2_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_2_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_2_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_2_6(acc), [115, 51] => lookup_260_14_2_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_2_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_2_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_2_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_3_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_3_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_3_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_3_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_3_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_3_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_3_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_3_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_3_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_3_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_10(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_3_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_3_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_3_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_3_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_3_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_3_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_3_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_3_7(acc), [115, 51] => lookup_260_14_3_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_3_9(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_3_10(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_3_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_4_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_4_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_4_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_4_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_4_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_4_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_4_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_4_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_4_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_4_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_10(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_4_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_4_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_4_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_4_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_4_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_4_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_4_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_4_7(acc), [115, 51] => lookup_260_14_4_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_4_9(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_4_10(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_4_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_5_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_5_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_5_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_5_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_5_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_5_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_2_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_5_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_5_2_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_5_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_5_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_5_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_5_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_5_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_5_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_5_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_5_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_5_6(acc), [115, 51] => lookup_260_14_5_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_5_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_5_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_5_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_6_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_6_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_6_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_6_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_6_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_6_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_6_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_6_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_6_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_6_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_10(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_6_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_6_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_6_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_6_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_6_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_6_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_6_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_6_7(acc), [115, 51] => lookup_260_14_6_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_6_9(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_6_10(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_6_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_7_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_7_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_7_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_7_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7_4(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_7_0(info, labels, acc), [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_7_1(acc), [115, 51] => lookup_260_14_7_2(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_7_3(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_7_4(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_7_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_8_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_8_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_8_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_8_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_8_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_8_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_8_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_8_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_8_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_8_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_10(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_8_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_8_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_8_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_8_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_8_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_8_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_8_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_8_7(acc), [115, 51] => lookup_260_14_8_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_8_9(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_8_10(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_8_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_9_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_9_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_9_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_9_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_9_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_9_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_9_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_9_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_9_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_9_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_10(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_9_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_9_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_9_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_9_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_9_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_9_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_9_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_9_7(acc), [115, 51] => lookup_260_14_9_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_9_9(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_9_10(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_9_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_10_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_10_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_10_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_10_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_2(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_7(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_10<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_10_0(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_10_1(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_10_2(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_10_3(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_10_4(acc), [115, 51] => lookup_260_14_10_5(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_10_6(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_10_7(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_10_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_11_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_11_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_11_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_11_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11_4(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_11_0(info, labels, acc), [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_11_1(acc), [115, 51] => lookup_260_14_11_2(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_11_3(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_11_4(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_11_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_12_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_12_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_12_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_12_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_12_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_12_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_2_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_2_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_2_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_12_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_12_2_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_12_2_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_12_2_3(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_12_2_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_12_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_9(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_11(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12_12(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_12<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_12_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_12_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_12_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_12_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_12_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_12_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_12_6(acc), [115, 51] => lookup_260_14_12_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_12_8(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_12_9(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_12_10(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_12_11(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_12_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_13_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_0_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_0_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_0_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_13_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_13_0_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_13_0_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_13_0_3(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_13_0_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_13_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_4(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_13<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_13_0(info, labels, acc), [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_13_1(acc), [115, 51] => lookup_260_14_13_2(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_13_3(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_13_4(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_13_5(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_13_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_14_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_14_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_15_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_15<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_15_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_16_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_14_16<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_14_16_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_14_17_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_17_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_17_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_17_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_17_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_17_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_17_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_17_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_17_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_17_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_10(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_17<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_17_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_17_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_17_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_17_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_17_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_17_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_17_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_17_7(acc), [115, 51] => lookup_260_14_17_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_17_9(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_17_10(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_17_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_18_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_18_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_18_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_18_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18_4(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_18<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_18_0(info, labels, acc), [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_18_1(acc), [115, 51] => lookup_260_14_18_2(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_18_3(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_18_4(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_18_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_19_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_19_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_19_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_19_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_19_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_19_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_19_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_19_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_19_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_19<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_19_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_19_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_19_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_19_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_19_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_19_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_19_6(acc), [115, 51] => lookup_260_14_19_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_19_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_19_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_19_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_20_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_20_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_20_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_20_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_20_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_20_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_2_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_20_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_20_2_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_20_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_20_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_20<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_20_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_20_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_20_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_20_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_20_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_20_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_20_6(acc), [115, 51] => lookup_260_14_20_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_20_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_20_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_20_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_21_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_21_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_21_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_21_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21_4(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_21<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_21_0(info, labels, acc), [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_21_1(acc), [115, 51] => lookup_260_14_21_2(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_21_3(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_21_4(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_21_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_22_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_22_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_22_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_22_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_22_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_22_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_3_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_22_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_22_3_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_22_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_22_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_10(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_11(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22_12(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_22<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_22_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_22_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_22_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_22_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_22_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_22_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_22_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_22_7(acc), [115, 51] => lookup_260_14_22_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_22_9(acc) } [115, 51, 45, 100, 101, 112, 114, 101, 99, 97, 116, 101, 100] => { lookup_260_14_22_10(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_22_11(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_22_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_23_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_23_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_23_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_23_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_23_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_23_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_23_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_23_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_23_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_23<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_23_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_23_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_23_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_23_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_23_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_23_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_23_6(acc), [115, 51] => lookup_260_14_23_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_23_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_23_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_23_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_24_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_24_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_24_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_24_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_24_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_24_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_2_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_24_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_24_2_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_24_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_24_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_24<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_24_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_24_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_24_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_24_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_24_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_24_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_24_6(acc), [115, 51] => lookup_260_14_24_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_24_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_24_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_24_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_25_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_25_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_25_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_25_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_25_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_25_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_25_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_25_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_6(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25_7(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_25<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_25_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_25_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_25_2(info, labels, acc), [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_25_3(acc), [115, 51] => lookup_260_14_25_4(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_25_5(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_25_6(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_25_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_26_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_26_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_26_0_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_26_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_2(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_7(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_26<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_26_0(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_26_1(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_26_2(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_26_3(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_26_4(acc), [115, 51] => lookup_260_14_26_5(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_26_6(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_26_7(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_26_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_27_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_27_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_27_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_27_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_27_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_27_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_27_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_27_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_27_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_27<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_27_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_27_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_27_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_27_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_27_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_27_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_27_6(acc), [115, 51] => lookup_260_14_27_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_27_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_27_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_27_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_28(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_29(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_30(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_31(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_32(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_33(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_34(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_35(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_36(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_37(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_38(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_39(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_40(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_41(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_42(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_43(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_44(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_45(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_46_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_46_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [109, 114, 97, 112] => lookup_260_14_46_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_46<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_46_0(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_47(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_48(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_49(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_50(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_51(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_52(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_53(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_54(acc: usize) -> Info { Info { len: acc + 1 + 25usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_55(acc: usize) -> Info { Info { len: acc + 1 + 25usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_56(acc: usize) -> Info { Info { len: acc + 1 + 25usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_57(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_58(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_59(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_60(acc: usize) -> Info { Info { len: acc + 1 + 24usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_61(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_62(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_63_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_63_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_63_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_63_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_63_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_2_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_63_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_63_2_1(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_63_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_63_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_63<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_63_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_63_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_63_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_63_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_63_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_63_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_63_6(acc), [115, 51] => lookup_260_14_63_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_63_8(acc) } [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_63_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_63_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_64_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_64_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_64_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_64_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_64_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_64_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_3_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_3_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_3_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_64_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_64_3_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_64_3_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_64_3_3(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_64_3_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_64_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_10(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_11(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_13(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_64<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_64_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_64_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_64_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_64_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_64_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_64_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_64_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_64_7(acc), [115, 51] => lookup_260_14_64_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_64_9(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_64_10(acc) } [115, 51, 45, 100, 101, 112, 114, 101, 99, 97, 116, 101, 100] => { lookup_260_14_64_11(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_64_12(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_64_13(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_64_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_65_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_65_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_65_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_65_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_65_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_65_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_3_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_3_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_65_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_65_3_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_65_3_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_65_3_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_65_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_10(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_11(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_13(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_65<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_65_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_65_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_65_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_65_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_65_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_65_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_65_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_65_7(acc), [115, 51] => lookup_260_14_65_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_65_9(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_65_10(acc) } [115, 51, 45, 100, 101, 112, 114, 101, 99, 97, 116, 101, 100] => { lookup_260_14_65_11(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_65_12(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_65_13(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_65_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_66_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_0_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_0_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_66_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_66_0_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_66_0_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_66_0_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_66_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_2(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_7(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_66<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_66_0(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_66_1(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_66_2(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_66_3(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_66_4(acc), [115, 51] => lookup_260_14_66_5(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_66_6(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_66_7(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_66_8(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_66_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_66_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_67_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_0_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_0_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_0_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_67_0_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_67_0_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_67_0_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_67_0_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_67_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_2(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_7(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_67<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_67_0(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_67_1(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_67_2(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_67_3(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_67_4(acc), [115, 51] => lookup_260_14_67_5(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_67_6(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_67_7(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_67_8(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_67_9(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_67_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_68_0_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_68_0_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_68_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_1_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_68_1_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_68_1_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_68_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_2_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_2_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_2_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_68_2_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_68_2_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_68_2_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_68_2_3(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_68_2_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_68_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_4(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_9(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_11(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68_12(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_68<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_68_0(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_68_1(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_68_2(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_68_3(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_68_4(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_68_5(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_68_6(acc), [115, 51] => lookup_260_14_68_7(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_68_8(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_68_9(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_68_10(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_68_11(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_68_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_69_0(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_1_0(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_69_1_0(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_69_2_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_2_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [118, 102, 115] => lookup_260_14_69_2_0(acc), [119, 101, 98, 118, 105, 101, 119, 45, 97, 115, 115, 101, 116, 115] => { lookup_260_14_69_2_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_14_69_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_3_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_3_2(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_3_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_3_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_260_14_69_3_0(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_69_3_1(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_69_3_2(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_69_3_3(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_69_3_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14_69_4(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_5(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_9(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_10(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_11(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_13(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_14_69<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 110, 97, 108, 121, 116, 105, 99, 115, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_14_69_0(acc) } [97, 119, 115, 45, 99, 108, 111, 117, 100, 57] => lookup_260_14_69_1(info, labels, acc), [99, 108, 111, 117, 100, 57] => lookup_260_14_69_2(info, labels, acc), [100, 117, 97, 108, 115, 116, 97, 99, 107] => lookup_260_14_69_3(info, labels, acc), [101, 109, 114, 97, 112, 112, 117, 105, 45, 112, 114, 111, 100] => { lookup_260_14_69_4(acc) } [101, 109, 114, 110, 111, 116, 101, 98, 111, 111, 107, 115, 45, 112, 114, 111, 100] => { lookup_260_14_69_5(acc) } [101, 109, 114, 115, 116, 117, 100, 105, 111, 45, 112, 114, 111, 100] => { lookup_260_14_69_6(acc) } [101, 120, 101, 99, 117, 116, 101, 45, 97, 112, 105] => lookup_260_14_69_7(acc), [115, 51] => lookup_260_14_69_8(acc), [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116] => { lookup_260_14_69_9(acc) } [115, 51, 45, 97, 99, 99, 101, 115, 115, 112, 111, 105, 110, 116, 45, 102, 105, 112, 115] => { lookup_260_14_69_10(acc) } [115, 51, 45, 100, 101, 112, 114, 101, 99, 97, 116, 101, 100] => { lookup_260_14_69_11(acc) } [115, 51, 45, 102, 105, 112, 115] => lookup_260_14_69_12(acc), [115, 51, 45, 111, 98, 106, 101, 99, 116, 45, 108, 97, 109, 98, 100, 97] => { lookup_260_14_69_13(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101] => lookup_260_14_69_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 102, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_0(info, labels, acc), [97, 105, 114, 102, 108, 111, 119] => lookup_260_14_1(info, labels, acc), [97, 112, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_2(info, labels, acc), [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_3(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_4(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_14_5(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_6(info, labels, acc), [97, 112, 45, 115, 111, 117, 116, 104, 45, 50] => lookup_260_14_7(info, labels, acc), [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_8(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_9(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_14_10(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 52] => { lookup_260_14_11(info, labels, acc) } [99, 97, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_12(info, labels, acc) } [99, 97, 45, 119, 101, 115, 116, 45, 49] => lookup_260_14_13(info, labels, acc), [99, 111, 109, 112, 117, 116, 101] => lookup_260_14_14(info, labels, acc), [99, 111, 109, 112, 117, 116, 101, 45, 49] => lookup_260_14_15(info, labels, acc), [101, 108, 98] => lookup_260_14_16(info, labels, acc), [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_17(info, labels, acc) } [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 50] => { lookup_260_14_18(info, labels, acc) } [101, 117, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_260_14_19(info, labels, acc), [101, 117, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_20(info, labels, acc), [101, 117, 45, 115, 111, 117, 116, 104, 45, 50] => lookup_260_14_21(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 49] => lookup_260_14_22(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 50] => lookup_260_14_23(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 51] => lookup_260_14_24(info, labels, acc), [105, 108, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_25(info, labels, acc) } [109, 101, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_26(info, labels, acc) } [109, 101, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_27(info, labels, acc), [115, 51] => lookup_260_14_28(acc), [115, 51, 45, 49] => lookup_260_14_29(acc), [115, 51, 45, 97, 112, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_30(acc), [115, 51, 45, 97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_31(acc) } [115, 51, 45, 97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_32(acc) } [115, 51, 45, 97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_14_33(acc) } [115, 51, 45, 97, 112, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_34(acc), [115, 51, 45, 97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_35(acc) } [115, 51, 45, 97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_36(acc) } [115, 51, 45, 99, 97, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_37(acc) } [115, 51, 45, 101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_14_38(acc) } [115, 51, 45, 101, 117, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_260_14_39(acc), [115, 51, 45, 101, 117, 45, 119, 101, 115, 116, 45, 49] => lookup_260_14_40(acc), [115, 51, 45, 101, 117, 45, 119, 101, 115, 116, 45, 50] => lookup_260_14_41(acc), [115, 51, 45, 101, 117, 45, 119, 101, 115, 116, 45, 51] => lookup_260_14_42(acc), [115, 51, 45, 101, 120, 116, 101, 114, 110, 97, 108, 45, 49] => lookup_260_14_43(acc), [115, 51, 45, 102, 105, 112, 115, 45, 117, 115, 45, 103, 111, 118, 45, 101, 97, 115, 116, 45, 49] => { lookup_260_14_44(acc) } [115, 51, 45, 102, 105, 112, 115, 45, 117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_14_45(acc) } [115, 51, 45, 103, 108, 111, 98, 97, 108] => lookup_260_14_46(info, labels, acc), [115, 51, 45, 109, 101, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_14_47(acc), [115, 51, 45, 115, 97, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_48(acc), [115, 51, 45, 117, 115, 45, 101, 97, 115, 116, 45, 50] => lookup_260_14_49(acc), [115, 51, 45, 117, 115, 45, 103, 111, 118, 45, 101, 97, 115, 116, 45, 49] => { lookup_260_14_50(acc) } [115, 51, 45, 117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_14_51(acc) } [115, 51, 45, 117, 115, 45, 119, 101, 115, 116, 45, 49] => lookup_260_14_52(acc), [115, 51, 45, 117, 115, 45, 119, 101, 115, 116, 45, 50] => lookup_260_14_53(acc), [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_54(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_14_55(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_14_56(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 101, 117, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_14_57(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 115, 97, 45, 101, 97, 115, 116, 45, 49] => { lookup_260_14_58(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 117, 115, 45, 101, 97, 115, 116, 45, 49] => { lookup_260_14_59(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_14_60(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 117, 115, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_14_61(acc) } [115, 51, 45, 119, 101, 98, 115, 105, 116, 101, 45, 117, 115, 45, 119, 101, 115, 116, 45, 50] => { lookup_260_14_62(acc) } [115, 97, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_63(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 49] => lookup_260_14_64(labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 50] => lookup_260_14_65(info, labels, acc), [117, 115, 45, 103, 111, 118, 45, 101, 97, 115, 116, 45, 49] => { lookup_260_14_66(info, labels, acc) } [117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_14_67(info, labels, acc) } [117, 115, 45, 119, 101, 115, 116, 45, 49] => lookup_260_14_68(info, labels, acc), [117, 115, 45, 119, 101, 115, 116, 45, 50] => lookup_260_14_69(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_1_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_2_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_3_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_3_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_4_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_5_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_5_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_6_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_6<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_6_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_7_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_7_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_8_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_8_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_9_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_9_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_10_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_10<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_10_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_11_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_11_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_12_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_12<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_12_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_13_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_13<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_13_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_14_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_14_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_15_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_15<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_15_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_16_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_16<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_16_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_17_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_17<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_17_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_18_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_18_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_18<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_18_0(acc), [97, 117, 116, 104, 45, 102, 105, 112, 115] => lookup_260_15_18_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_19_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_19_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_19<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_19_0(acc), [97, 117, 116, 104, 45, 102, 105, 112, 115] => lookup_260_15_19_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_20_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_20<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104, 45, 102, 105, 112, 115] => lookup_260_15_20_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_21_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_21_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_21<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_21_0(acc), [97, 117, 116, 104, 45, 102, 105, 112, 115] => lookup_260_15_21_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15_22_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_22_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_15_22<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [97, 117, 116, 104] => lookup_260_15_22_0(acc), [97, 117, 116, 104, 45, 102, 105, 112, 115] => lookup_260_15_22_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_15<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [97, 102, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_15_0(info, labels, acc), [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_15_1(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_15_2(info, labels, acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_15_3(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_15_4(info, labels, acc), [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_15_5(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_15_6(info, labels, acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_15_7(info, labels, acc) } [99, 97, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_15_8(info, labels, acc) } [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_15_9(info, labels, acc) } [101, 117, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_260_15_10(info, labels, acc), [101, 117, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_15_11(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 49] => lookup_260_15_12(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 50] => lookup_260_15_13(info, labels, acc), [101, 117, 45, 119, 101, 115, 116, 45, 51] => lookup_260_15_14(info, labels, acc), [105, 108, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => { lookup_260_15_15(info, labels, acc) } [109, 101, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_15_16(info, labels, acc), [115, 97, 45, 101, 97, 115, 116, 45, 49] => lookup_260_15_17(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 49] => lookup_260_15_18(info, labels, acc), [117, 115, 45, 101, 97, 115, 116, 45, 50] => lookup_260_15_19(info, labels, acc), [117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => { lookup_260_15_20(info, labels, acc) } [117, 115, 45, 119, 101, 115, 116, 45, 49] => lookup_260_15_21(info, labels, acc), [117, 115, 45, 119, 101, 115, 116, 45, 50] => lookup_260_15_22(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_16_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_16<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_260_16_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_17(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_18(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_20(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_21(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_22_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_22_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 1usize; match labels.next() { Some(label) => match label { wild => lookup_260_22_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_22<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [114] => lookup_260_22_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_25(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_26(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_27_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_27<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { wild => lookup_260_27_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_28(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_29(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_30_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_30_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_260_30_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_30<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 97, 112, 112] => lookup_260_30_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_31(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_32(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_33(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_34(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_35(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_36(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_38(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_39_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_39_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_39<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [97, 108, 112, 104, 97] => lookup_260_39_0(acc), [98, 101, 116, 97] => lookup_260_39_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_40(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_41(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_42(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_43(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_44(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_45(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_46(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_48(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_49(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_50(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_51(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_52(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_53(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_54_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_54_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_260_54_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_54_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_54_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { wild => lookup_260_54_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_54_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_54_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { wild => lookup_260_54_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_54<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [98, 117, 105, 108, 100, 101, 114] => lookup_260_54_0(info, labels, acc), [100, 101, 118, 45, 98, 117, 105, 108, 100, 101, 114] => { lookup_260_54_1(info, labels, acc) } [115, 116, 103, 45, 98, 117, 105, 108, 100, 101, 114] => { lookup_260_54_2(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_55(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_56_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_56<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_260_56_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_57(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_58_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_58_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_58_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_58_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_58_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_58_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_58_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_58_3_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_58_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_58_3_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_58<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [111, 99, 105] => lookup_260_58_1(info, labels, acc), [111, 99, 112] => lookup_260_58_2(info, labels, acc), [111, 99, 115] => lookup_260_58_3(info, labels, acc), wild => lookup_260_58_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_59(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_60(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_61_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_61_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_61<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [100, 101, 109, 111] => lookup_260_61_0(acc), [105, 110, 115, 116, 97, 110, 99, 101] => lookup_260_61_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_62(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_63(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_64(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_65(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_66(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_67(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_68(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_69(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_70(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_71(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_72_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_72<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { wild => lookup_260_72_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_73_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_73<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 18usize; match labels.next() { Some(label) => match label { wild => lookup_260_73_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_74(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_75(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_76(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_77(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_78(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_79(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_80(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_81(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_82(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_83(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_84(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_85(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_86(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_87(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_88(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_89(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_90(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_91(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_92(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_93(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_94(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_95(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_96(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_97(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_98(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_99(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_100(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_101(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_102(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_103(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_104(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_2(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_4(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_6(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_7(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_9(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_10(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_12(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_16(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_17(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_18(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_19(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_20(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_21(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_22(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105_24(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_105<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 16usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [97, 102, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_105_0(acc), [97, 112, 45, 101, 97, 115, 116, 45, 49] => lookup_260_105_1(acc), [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_105_2(acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_105_3(acc) } [97, 112, 45, 110, 111, 114, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_105_4(acc) } [97, 112, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_105_5(acc), [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 49] => { lookup_260_105_6(acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 50] => { lookup_260_105_7(acc) } [97, 112, 45, 115, 111, 117, 116, 104, 101, 97, 115, 116, 45, 51] => { lookup_260_105_8(acc) } [99, 97, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => lookup_260_105_9(acc), [101, 117, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => lookup_260_105_10(acc), [101, 117, 45, 110, 111, 114, 116, 104, 45, 49] => lookup_260_105_11(acc), [101, 117, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_105_12(acc), [101, 117, 45, 119, 101, 115, 116, 45, 49] => lookup_260_105_13(acc), [101, 117, 45, 119, 101, 115, 116, 45, 50] => lookup_260_105_14(acc), [101, 117, 45, 119, 101, 115, 116, 45, 51] => lookup_260_105_15(acc), [105, 108, 45, 99, 101, 110, 116, 114, 97, 108, 45, 49] => lookup_260_105_16(acc), [109, 101, 45, 115, 111, 117, 116, 104, 45, 49] => lookup_260_105_17(acc), [115, 97, 45, 101, 97, 115, 116, 45, 49] => lookup_260_105_18(acc), [117, 115, 45, 101, 97, 115, 116, 45, 49] => lookup_260_105_19(acc), [117, 115, 45, 101, 97, 115, 116, 45, 50] => lookup_260_105_20(acc), [117, 115, 45, 103, 111, 118, 45, 101, 97, 115, 116, 45, 49] => lookup_260_105_21(acc), [117, 115, 45, 103, 111, 118, 45, 119, 101, 115, 116, 45, 49] => lookup_260_105_22(acc), [117, 115, 45, 119, 101, 115, 116, 45, 49] => lookup_260_105_23(acc), [117, 115, 45, 119, 101, 115, 116, 45, 50] => lookup_260_105_24(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_106(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_107(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_108(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_109(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_110(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_111(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_112<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [101, 117, 45, 49] => lookup_260_112_0(acc), [101, 117, 45, 50] => lookup_260_112_1(acc), [101, 117, 45, 51] => lookup_260_112_2(acc), [101, 117, 45, 52] => lookup_260_112_3(acc), [117, 115, 45, 49] => lookup_260_112_4(acc), [117, 115, 45, 50] => lookup_260_112_5(acc), [117, 115, 45, 51] => lookup_260_112_6(acc), [117, 115, 45, 52] => lookup_260_112_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_113(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_114(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_115(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_116(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_117_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_117<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [97, 112, 112, 115] => lookup_260_117_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_118(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_119(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_120(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_121(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_122(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_123(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_124(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_125(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_126(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_127(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_128(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_129(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_130(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_131(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_132(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_133(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_134(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_135(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_136(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_137(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_138(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_139(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_140(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_141(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_142(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_143(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_144(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_145(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_146(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_147(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_148(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_149(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_150(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_151(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_152(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_153(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_154(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_155(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_156(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_157(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_158(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_159(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_160(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_161(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_162(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_163(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_164(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_165(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_166(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_167(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_168(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_169(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_170(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_171(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_172(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_173(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_174(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_175(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_176(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_177(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_178(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_179(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_180(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_181(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_182(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_183(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_184(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_185(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_186(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_187(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_188(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_189(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_190(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_191(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_192(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_193(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_194_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_194<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 18usize; match labels.next() { Some(label) => match label { [112, 97, 97, 115] => lookup_260_194_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_195(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_196_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_196_1(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_196<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [114, 97, 103, 45, 99, 108, 111, 117, 100] => lookup_260_196_0(acc), [114, 97, 103, 45, 99, 108, 111, 117, 100, 45, 99, 104] => lookup_260_196_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_197(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_198(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_199(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_200_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_200_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_200<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [106, 99, 108, 111, 117, 100] => lookup_260_200_0(acc), [106, 99, 108, 111, 117, 100, 45, 118, 101, 114, 45, 106, 112, 99] => { lookup_260_200_1(acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_201(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_202(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_203(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_204(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_205(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_206(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_207(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_208(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_209(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_210(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_211(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_212(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_213(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_214(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_215(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_216(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_217(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_218(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_219(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_220(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_221(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_222(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_223(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_224(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_225(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_226(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_227(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_228(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_229(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_230(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_231(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_232(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_233(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_234(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_235(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_236(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_237(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_238(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_239(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_240(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_241(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_242(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_243(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_244(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_245(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_246(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_247(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_248(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_249(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_250(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_251(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_252(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_253(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_254(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_255(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_256(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_257(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_258(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_259(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_260(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_261(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_262(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_263_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_263<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [100, 101, 109, 111] => lookup_260_263_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_264_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_264_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_264_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_264<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 110, 115] => lookup_260_264_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_265(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_266(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_267(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_268(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_269(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_270(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_271(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_272(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_273(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_274_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_274_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_274_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { wild => lookup_260_274_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_274<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [109, 101, 109, 98, 101, 114, 115] => lookup_260_274_0(acc), [110, 111, 100, 101, 98, 97, 108, 97, 110, 99, 101, 114] => { lookup_260_274_1(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_275_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_275<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { wild => lookup_260_275_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_276_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_276<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 17usize; match labels.next() { Some(label) => match label { [105, 112] => lookup_260_276_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_277_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_277<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [97, 112, 112] => lookup_260_277_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_278(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_279(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_280(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_281_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_281<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [112, 97, 97, 115] => lookup_260_281_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_282(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_283(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_284_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_284<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [101, 117] => lookup_260_284_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_285(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_286(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_287(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_288(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_289(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_290(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_291(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_292(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_293(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_294(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_295(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_296(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_297(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_298(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_9(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_299<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [99, 97, 114, 97, 99, 97, 108] => lookup_260_299_0(acc), [99, 117, 115, 116, 111, 109, 101, 114] => lookup_260_299_1(acc), [102, 101, 110, 116, 105, 103, 101, 114] => lookup_260_299_2(acc), [108, 121, 110, 120] => lookup_260_299_3(acc), [111, 99, 101, 108, 111, 116] => lookup_260_299_4(acc), [111, 110, 99, 105, 108, 108, 97] => lookup_260_299_5(acc), [111, 110, 122, 97] => lookup_260_299_6(acc), [115, 112, 104, 105, 110, 120] => lookup_260_299_7(acc), [118, 115] => lookup_260_299_8(acc), [120] => lookup_260_299_9(acc), [121, 97, 108, 105] => lookup_260_299_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_300(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_301(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_302(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_303(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_304(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_305(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_306_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_306<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_260_306_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_307_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_307<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 21usize; match labels.next() { Some(label) => match label { [115, 116, 97, 116, 105, 99] => lookup_260_307_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_308(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_309(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_310(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_311(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_312(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_313(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_314(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_315(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_316(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_317(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_318(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_319(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_320_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_320<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_260_320_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_321(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_322(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_323(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_324(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_325(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_326(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_327(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_328_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_328<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [120, 101, 110] => lookup_260_328_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_329(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_330_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_330<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [101, 117] => lookup_260_330_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_331(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_332(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_333(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_334(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_335(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_336_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_336<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { wild => lookup_260_336_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_337(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_338(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_339_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_339<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [97, 112, 112] => lookup_260_339_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_340(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_341(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_342(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_343(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_344(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_345(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_346(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_347_0_0_0_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_347_0_0_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_260_347_0_0_0_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_347_0_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [48, 48, 49] => lookup_260_347_0_0_0_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_347_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 16usize; match labels.next() { Some(label) => match label { [116, 101, 115, 116] => lookup_260_347_0_0_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_347_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [99, 111, 100, 101, 45, 98, 117, 105, 108, 100, 101, 114, 45, 115, 116, 103] => { lookup_260_347_0_0(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_260_347<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [112, 108, 97, 116, 102, 111, 114, 109] => lookup_260_347_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_260_348(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_349(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_350(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_351(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_352(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_353(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_354(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_355(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_356(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_357(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_358(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_359(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_360(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_361(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_362(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_363(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_364(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_365(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_366(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_367(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_368(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_369(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_370(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_371(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_372(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_373(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_374(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_375(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_376(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_377(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_378_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_378<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [97, 112, 105] => lookup_260_378_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_379(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_380(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_381_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_381<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [115, 105, 116, 101] => lookup_260_381_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_382(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_383(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_384(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_385(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_386(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_387(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_388(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_389(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_390_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_390<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [112, 114, 111] => lookup_260_390_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_391(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_392(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_393(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_394(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_395(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_396(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_397_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_260_397<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { wild => lookup_260_397_0(wild, acc), }, None => info, } } #[inline] fn lookup_260_398_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_398_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_398_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_398<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [106, 101, 100] => lookup_260_398_0(acc), [108, 111, 110] => lookup_260_398_1(acc), [114, 121, 100] => lookup_260_398_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_399(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_400_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_400<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [112, 97, 103, 101, 115] => lookup_260_400_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_401(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_402(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_403(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_404(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_405(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_406(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_407_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_407<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 15usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [106, 115] => lookup_260_407_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_408(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_409(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_410(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_411(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_412_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_412_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_412<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [117, 50] => lookup_260_412_0(acc), [117, 50, 45, 108, 111, 99, 97, 108] => lookup_260_412_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_260_413(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_260_414(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_260<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [48, 48, 49, 119, 119, 119] => lookup_260_0(acc), [48, 101, 109, 109] => lookup_260_1(info, labels, acc), [49, 56, 48, 114] => lookup_260_2(acc), [49, 107, 97, 112, 112] => lookup_260_3(acc), [51, 117, 116, 105, 108, 105, 116, 105, 101, 115] => lookup_260_4(acc), [52, 117] => lookup_260_5(acc), [97, 50, 104, 111, 115, 116, 101, 100] => lookup_260_6(acc), [97, 100, 111, 98, 101, 97, 101, 109, 99, 108, 111, 117, 100] => { lookup_260_7(labels, acc) } [97, 102, 114, 105, 99, 97] => lookup_260_8(acc), [97, 105, 114, 107, 105, 116, 97, 112, 112, 115] => lookup_260_9(acc), [97, 105, 114, 107, 105, 116, 97, 112, 112, 115, 45, 97, 117] => lookup_260_10(acc), [97, 105, 118, 101, 110, 99, 108, 111, 117, 100] => lookup_260_11(acc), [97, 108, 105, 97, 115, 101, 115, 49, 50, 49] => lookup_260_12(acc), [97, 108, 112, 104, 97, 45, 109, 121, 113, 110, 97, 112, 99, 108, 111, 117, 100] => { lookup_260_13(acc) } [97, 109, 97, 122, 111, 110, 97, 119, 115] => lookup_260_14(info, labels, acc), [97, 109, 97, 122, 111, 110, 99, 111, 103, 110, 105, 116, 111] => { lookup_260_15(info, labels, acc) } [97, 109, 112, 108, 105, 102, 121, 97, 112, 112] => lookup_260_16(info, labels, acc), [97, 109, 115, 99, 111, 109, 112, 117, 116, 101] => lookup_260_17(acc), [97, 112, 112, 99, 104, 105, 122, 105] => lookup_260_18(acc), [97, 112, 112, 108, 105, 110, 122, 105] => lookup_260_19(acc), [97, 112, 112, 115, 112, 97, 99, 101, 104, 111, 115, 116, 101, 100] => { lookup_260_20(acc) } [97, 112, 112, 115, 112, 97, 99, 101, 117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => { lookup_260_21(acc) } [97, 112, 112, 115, 112, 111, 116] => lookup_260_22(labels, acc), [97, 114] => lookup_260_23(acc), [97, 116, 109, 101, 116, 97] => lookup_260_24(acc), [97, 117, 116, 104, 103, 101, 97, 114, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_260_25(acc) } [97, 117, 116, 104, 103, 101, 97, 114, 97, 112, 112, 115] => lookup_260_26(acc), [97, 119, 115, 97, 112, 112, 114, 117, 110, 110, 101, 114] => { lookup_260_27(info, labels, acc) } [97, 119, 115, 103, 108, 111, 98, 97, 108, 97, 99, 99, 101, 108, 101, 114, 97, 116, 111, 114] => { lookup_260_28(acc) } [97, 119, 115, 109, 112, 112, 108] => lookup_260_29(acc), [97, 122, 117, 114, 101] => lookup_260_30(info, labels, acc), [98, 97, 108, 101, 110, 97, 45, 100, 101, 118, 105, 99, 101, 115] => lookup_260_31(acc), [98, 97, 114, 115, 121, 99, 101, 110, 116, 101, 114] => lookup_260_32(acc), [98, 97, 114, 115, 121, 111, 110, 108, 105, 110, 101] => lookup_260_33(acc), [98, 101, 116, 97, 105, 110, 97, 98, 111, 120] => lookup_260_34(acc), [98, 108, 111, 103, 100, 110, 115] => lookup_260_35(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_260_36(acc), [98, 108, 111, 103, 115, 121, 116, 101] => lookup_260_37(acc), [98, 108, 111, 120, 99, 109, 115] => lookup_260_38(acc), [98, 111, 117, 110, 116, 121, 45, 102, 117, 108, 108] => lookup_260_39(labels, acc), [98, 111, 117, 116, 105, 114] => lookup_260_40(acc), [98, 112, 108, 97, 99, 101, 100] => lookup_260_41(acc), [98, 114] => lookup_260_42(acc), [98, 117, 105, 108, 116, 119, 105, 116, 104, 100, 97, 114, 107] => lookup_260_43(acc), [99, 97, 102, 106, 115] => lookup_260_44(acc), [99, 97, 110, 118, 97, 45, 97, 112, 112, 115] => lookup_260_45(acc), [99, 101, 99, 104, 105, 114, 101] => lookup_260_46(acc), [99, 102, 45, 105, 112, 102, 115] => lookup_260_47(acc), [99, 105, 115, 99, 111, 102, 114, 101, 97, 107] => lookup_260_48(acc), [99, 108, 111, 117, 100, 99, 111, 110, 116, 114, 111, 108, 97, 112, 112] => { lookup_260_49(acc) } [99, 108, 111, 117, 100, 99, 111, 110, 116, 114, 111, 108, 108, 101, 100] => { lookup_260_50(acc) } [99, 108, 111, 117, 100, 102, 108, 97, 114, 101, 45, 105, 112, 102, 115] => { lookup_260_51(acc) } [99, 110] => lookup_260_52(acc), [99, 111] => lookup_260_53(acc), [99, 111, 100, 101] => lookup_260_54(info, labels, acc), [99, 111, 100, 101, 115, 112, 111, 116] => lookup_260_55(acc), [99, 112, 114, 97, 112, 105, 100] => lookup_260_56(info, labels, acc), [99, 112, 115, 101, 114, 118, 101, 114] => lookup_260_57(acc), [99, 117, 115, 116, 111, 109, 101, 114, 45, 111, 99, 105] => { lookup_260_58(info, labels, acc) } [99, 121, 99, 108, 105, 99, 45, 97, 112, 112] => lookup_260_59(acc), [100, 97, 109, 110, 115, 101, 114, 118, 101, 114] => lookup_260_60(acc), [100, 97, 116, 97, 100, 101, 116, 101, 99, 116] => lookup_260_61(info, labels, acc), [100, 97, 116, 116, 111, 108, 111, 99, 97, 108] => lookup_260_62(acc), [100, 97, 116, 116, 111, 114, 101, 108, 97, 121] => lookup_260_63(acc), [100, 97, 116, 116, 111, 119, 101, 98] => lookup_260_64(acc), [100, 100, 110, 115, 53] => lookup_260_65(acc), [100, 100, 110, 115, 102, 114, 101, 101] => lookup_260_66(acc), [100, 100, 110, 115, 103, 101, 101, 107] => lookup_260_67(acc), [100, 100, 110, 115, 107, 105, 110, 103] => lookup_260_68(acc), [100, 100, 110, 115, 108, 105, 118, 101] => lookup_260_69(acc), [100, 101] => lookup_260_70(acc), [100, 101, 118, 45, 109, 121, 113, 110, 97, 112, 99, 108, 111, 117, 100] => { lookup_260_71(acc) } [100, 101, 118, 99, 100, 110, 97, 99, 99, 101, 115, 115, 111] => { lookup_260_72(info, labels, acc) } [100, 105, 103, 105, 116, 97, 108, 111, 99, 101, 97, 110, 115, 112, 97, 99, 101, 115] => { lookup_260_73(info, labels, acc) } [100, 105, 115, 99, 111, 114, 100, 115, 97, 121, 115] => lookup_260_74(acc), [100, 105, 115, 99, 111, 114, 100, 115, 101, 122] => lookup_260_75(acc), [100, 105, 116, 99, 104, 121, 111, 117, 114, 105, 112] => lookup_260_76(acc), [100, 110, 115, 97, 108, 105, 97, 115] => lookup_260_77(acc), [100, 110, 115, 100, 111, 106, 111] => lookup_260_78(acc), [100, 110, 115, 105, 115, 107, 105, 110, 107, 121] => lookup_260_79(acc), [100, 111, 101, 115, 110, 116, 101, 120, 105, 115, 116] => lookup_260_80(acc), [100, 111, 106, 105, 110] => lookup_260_81(acc), [100, 111, 110, 116, 101, 120, 105, 115, 116] => lookup_260_82(acc), [100, 111, 111, 109, 100, 110, 115] => lookup_260_83(acc), [100, 111, 112, 97, 97, 115] => lookup_260_84(acc), [100, 114, 97, 121, 100, 100, 110, 115] => lookup_260_85(acc), [100, 114, 101, 97, 109, 104, 111, 115, 116, 101, 114, 115] => lookup_260_86(acc), [100, 115, 109, 121, 110, 97, 115] => lookup_260_87(acc), [100, 121, 110, 45, 111, 45, 115, 97, 117, 114] => lookup_260_88(acc), [100, 121, 110, 97, 108, 105, 97, 115] => lookup_260_89(acc), [100, 121, 110, 100, 110, 115, 45, 97, 116, 45, 104, 111, 109, 101] => { lookup_260_90(acc) } [100, 121, 110, 100, 110, 115, 45, 97, 116, 45, 119, 111, 114, 107] => { lookup_260_91(acc) } [100, 121, 110, 100, 110, 115, 45, 98, 108, 111, 103] => lookup_260_92(acc), [100, 121, 110, 100, 110, 115, 45, 102, 114, 101, 101] => lookup_260_93(acc), [100, 121, 110, 100, 110, 115, 45, 104, 111, 109, 101] => lookup_260_94(acc), [100, 121, 110, 100, 110, 115, 45, 105, 112] => lookup_260_95(acc), [100, 121, 110, 100, 110, 115, 45, 109, 97, 105, 108] => lookup_260_96(acc), [100, 121, 110, 100, 110, 115, 45, 111, 102, 102, 105, 99, 101] => lookup_260_97(acc), [100, 121, 110, 100, 110, 115, 45, 112, 105, 99, 115] => lookup_260_98(acc), [100, 121, 110, 100, 110, 115, 45, 114, 101, 109, 111, 116, 101] => lookup_260_99(acc), [100, 121, 110, 100, 110, 115, 45, 115, 101, 114, 118, 101, 114] => lookup_260_100(acc), [100, 121, 110, 100, 110, 115, 45, 119, 101, 98] => lookup_260_101(acc), [100, 121, 110, 100, 110, 115, 45, 119, 105, 107, 105] => lookup_260_102(acc), [100, 121, 110, 100, 110, 115, 45, 119, 111, 114, 107] => lookup_260_103(acc), [100, 121, 110, 110, 115] => lookup_260_104(acc), [101, 108, 97, 115, 116, 105, 99, 98, 101, 97, 110, 115, 116, 97, 108, 107] => { lookup_260_105(labels, acc) } [101, 110, 99, 111, 114, 101, 97, 112, 105] => lookup_260_106(acc), [101, 115, 116, 45, 97, 45, 108, 97, 45, 109, 97, 105, 115, 111, 110] => { lookup_260_107(acc) } [101, 115, 116, 45, 97, 45, 108, 97, 45, 109, 97, 115, 105, 111, 110] => { lookup_260_108(acc) } [101, 115, 116, 45, 108, 101, 45, 112, 97, 116, 114, 111, 110] => lookup_260_109(acc), [101, 115, 116, 45, 109, 111, 110, 45, 98, 108, 111, 103, 117, 101, 117, 114] => { lookup_260_110(acc) } [101, 117] => lookup_260_111(acc), [101, 118, 101, 110, 110, 111, 100, 101] => lookup_260_112(info, labels, acc), [102, 97, 109, 105, 108, 121, 100, 115] => lookup_260_113(acc), [102, 97, 115, 116, 108, 121, 45, 101, 100, 103, 101] => lookup_260_114(acc), [102, 97, 115, 116, 108, 121, 45, 116, 101, 114, 114, 97, 114, 105, 117, 109] => { lookup_260_115(acc) } [102, 97, 115, 116, 118, 112, 115, 45, 115, 101, 114, 118, 101, 114] => { lookup_260_116(acc) } [102, 98, 115, 98, 120] => lookup_260_117(info, labels, acc), [102, 105, 114, 101, 98, 97, 115, 101, 97, 112, 112] => lookup_260_118(acc), [102, 105, 114, 101, 119, 97, 108, 108, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_260_119(acc) } [102, 108, 100, 114, 118] => lookup_260_120(acc), [102, 111, 114, 103, 101, 98, 108, 111, 99, 107, 115] => lookup_260_121(acc), [102, 114, 97, 109, 101, 114, 99, 97, 110, 118, 97, 115] => lookup_260_122(acc), [102, 114, 101, 101, 98, 111, 120, 45, 111, 115] => lookup_260_123(acc), [102, 114, 101, 101, 98, 111, 120, 111, 115] => lookup_260_124(acc), [102, 114, 101, 101, 109, 121, 105, 112] => lookup_260_125(acc), [102, 114, 111, 109, 45, 97, 107] => lookup_260_126(acc), [102, 114, 111, 109, 45, 97, 108] => lookup_260_127(acc), [102, 114, 111, 109, 45, 97, 114] => lookup_260_128(acc), [102, 114, 111, 109, 45, 99, 97] => lookup_260_129(acc), [102, 114, 111, 109, 45, 99, 116] => lookup_260_130(acc), [102, 114, 111, 109, 45, 100, 99] => lookup_260_131(acc), [102, 114, 111, 109, 45, 100, 101] => lookup_260_132(acc), [102, 114, 111, 109, 45, 102, 108] => lookup_260_133(acc), [102, 114, 111, 109, 45, 103, 97] => lookup_260_134(acc), [102, 114, 111, 109, 45, 104, 105] => lookup_260_135(acc), [102, 114, 111, 109, 45, 105, 97] => lookup_260_136(acc), [102, 114, 111, 109, 45, 105, 100] => lookup_260_137(acc), [102, 114, 111, 109, 45, 105, 108] => lookup_260_138(acc), [102, 114, 111, 109, 45, 105, 110] => lookup_260_139(acc), [102, 114, 111, 109, 45, 107, 115] => lookup_260_140(acc), [102, 114, 111, 109, 45, 107, 121] => lookup_260_141(acc), [102, 114, 111, 109, 45, 109, 97] => lookup_260_142(acc), [102, 114, 111, 109, 45, 109, 100] => lookup_260_143(acc), [102, 114, 111, 109, 45, 109, 105] => lookup_260_144(acc), [102, 114, 111, 109, 45, 109, 110] => lookup_260_145(acc), [102, 114, 111, 109, 45, 109, 111] => lookup_260_146(acc), [102, 114, 111, 109, 45, 109, 115] => lookup_260_147(acc), [102, 114, 111, 109, 45, 109, 116] => lookup_260_148(acc), [102, 114, 111, 109, 45, 110, 99] => lookup_260_149(acc), [102, 114, 111, 109, 45, 110, 100] => lookup_260_150(acc), [102, 114, 111, 109, 45, 110, 101] => lookup_260_151(acc), [102, 114, 111, 109, 45, 110, 104] => lookup_260_152(acc), [102, 114, 111, 109, 45, 110, 106] => lookup_260_153(acc), [102, 114, 111, 109, 45, 110, 109] => lookup_260_154(acc), [102, 114, 111, 109, 45, 110, 118] => lookup_260_155(acc), [102, 114, 111, 109, 45, 111, 104] => lookup_260_156(acc), [102, 114, 111, 109, 45, 111, 107] => lookup_260_157(acc), [102, 114, 111, 109, 45, 111, 114] => lookup_260_158(acc), [102, 114, 111, 109, 45, 112, 97] => lookup_260_159(acc), [102, 114, 111, 109, 45, 112, 114] => lookup_260_160(acc), [102, 114, 111, 109, 45, 114, 105] => lookup_260_161(acc), [102, 114, 111, 109, 45, 115, 99] => lookup_260_162(acc), [102, 114, 111, 109, 45, 115, 100] => lookup_260_163(acc), [102, 114, 111, 109, 45, 116, 110] => lookup_260_164(acc), [102, 114, 111, 109, 45, 116, 120] => lookup_260_165(acc), [102, 114, 111, 109, 45, 117, 116] => lookup_260_166(acc), [102, 114, 111, 109, 45, 118, 97] => lookup_260_167(acc), [102, 114, 111, 109, 45, 118, 116] => lookup_260_168(acc), [102, 114, 111, 109, 45, 119, 97] => lookup_260_169(acc), [102, 114, 111, 109, 45, 119, 105] => lookup_260_170(acc), [102, 114, 111, 109, 45, 119, 118] => lookup_260_171(acc), [102, 114, 111, 109, 45, 119, 121] => lookup_260_172(acc), [103, 101, 101, 107, 103, 97, 108, 97, 120, 121] => lookup_260_173(acc), [103, 101, 110, 116, 97, 112, 112, 115] => lookup_260_174(acc), [103, 101, 110, 116, 108, 101, 110, 116, 97, 112, 105, 115] => lookup_260_175(acc), [103, 101, 116, 109, 121, 105, 112] => lookup_260_176(acc), [103, 105, 105, 122, 101] => lookup_260_177(acc), [103, 105, 116, 104, 117, 98, 117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => { lookup_260_178(acc) } [103, 108, 101, 101, 122, 101] => lookup_260_179(acc), [103, 111, 111, 103, 108, 101, 97, 112, 105, 115] => lookup_260_180(acc), [103, 111, 111, 103, 108, 101, 99, 111, 100, 101] => lookup_260_181(acc), [103, 111, 116, 100, 110, 115] => lookup_260_182(acc), [103, 111, 116, 112, 97, 110, 116, 104, 101, 111, 110] => lookup_260_183(acc), [103, 114] => lookup_260_184(acc), [104, 101, 97, 108, 116, 104, 45, 99, 97, 114, 101, 114, 101, 102, 111, 114, 109] => { lookup_260_185(acc) } [104, 101, 114, 111, 107, 117, 97, 112, 112] => lookup_260_186(acc), [104, 101, 114, 111, 107, 117, 115, 115, 108] => lookup_260_187(acc), [104, 107] => lookup_260_188(acc), [104, 111, 98, 98, 121, 45, 115, 105, 116, 101] => lookup_260_189(acc), [104, 111, 109, 101, 108, 105, 110, 117, 120] => lookup_260_190(acc), [104, 111, 109, 101, 115, 101, 99, 117, 114, 105, 116, 121, 109, 97, 99] => { lookup_260_191(acc) } [104, 111, 109, 101, 115, 101, 99, 117, 114, 105, 116, 121, 112, 99] => { lookup_260_192(acc) } [104, 111, 109, 101, 117, 110, 105, 120] => lookup_260_193(acc), [104, 111, 115, 116, 101, 100, 45, 98, 121, 45, 112, 114, 101, 118, 105, 100, 101, 114] => { lookup_260_194(info, labels, acc) } [104, 111, 115, 116, 101, 100, 112, 105] => lookup_260_195(acc), [104, 111, 115, 116, 101, 117, 114] => lookup_260_196(info, labels, acc), [104, 111, 116, 101, 108, 119, 105, 116, 104, 102, 108, 105, 103, 104, 116] => { lookup_260_197(acc) } [104, 117] => lookup_260_198(acc), [105, 97, 109, 97, 108, 108, 97, 109, 97] => lookup_260_199(acc), [105, 107, 45, 115, 101, 114, 118, 101, 114] => lookup_260_200(info, labels, acc), [105, 109, 112, 101, 114, 116, 114, 105, 120] => lookup_260_201(acc), [105, 109, 112, 101, 114, 116, 114, 105, 120, 99, 100, 110] => lookup_260_202(acc), [105, 115, 45, 97, 45, 97, 110, 97, 114, 99, 104, 105, 115, 116] => lookup_260_203(acc), [105, 115, 45, 97, 45, 98, 108, 111, 103, 103, 101, 114] => lookup_260_204(acc), [105, 115, 45, 97, 45, 98, 111, 111, 107, 107, 101, 101, 112, 101, 114] => { lookup_260_205(acc) } [105, 115, 45, 97, 45, 98, 117, 108, 108, 115, 45, 102, 97, 110] => lookup_260_206(acc), [105, 115, 45, 97, 45, 99, 97, 116, 101, 114, 101, 114] => lookup_260_207(acc), [105, 115, 45, 97, 45, 99, 104, 101, 102] => lookup_260_208(acc), [105, 115, 45, 97, 45, 99, 111, 110, 115, 101, 114, 118, 97, 116, 105, 118, 101] => { lookup_260_209(acc) } [105, 115, 45, 97, 45, 99, 112, 97] => lookup_260_210(acc), [105, 115, 45, 97, 45, 99, 117, 98, 105, 99, 108, 101, 45, 115, 108, 97, 118, 101] => { lookup_260_211(acc) } [105, 115, 45, 97, 45, 100, 101, 109, 111, 99, 114, 97, 116] => lookup_260_212(acc), [105, 115, 45, 97, 45, 100, 101, 115, 105, 103, 110, 101, 114] => lookup_260_213(acc), [105, 115, 45, 97, 45, 100, 111, 99, 116, 111, 114] => lookup_260_214(acc), [105, 115, 45, 97, 45, 102, 105, 110, 97, 110, 99, 105, 97, 108, 97, 100, 118, 105, 115, 111, 114] => { lookup_260_215(acc) } [105, 115, 45, 97, 45, 103, 101, 101, 107] => lookup_260_216(acc), [105, 115, 45, 97, 45, 103, 114, 101, 101, 110] => lookup_260_217(acc), [105, 115, 45, 97, 45, 103, 117, 114, 117] => lookup_260_218(acc), [105, 115, 45, 97, 45, 104, 97, 114, 100, 45, 119, 111, 114, 107, 101, 114] => { lookup_260_219(acc) } [105, 115, 45, 97, 45, 104, 117, 110, 116, 101, 114] => lookup_260_220(acc), [105, 115, 45, 97, 45, 108, 97, 110, 100, 115, 99, 97, 112, 101, 114] => { lookup_260_221(acc) } [105, 115, 45, 97, 45, 108, 97, 119, 121, 101, 114] => lookup_260_222(acc), [105, 115, 45, 97, 45, 108, 105, 98, 101, 114, 97, 108] => lookup_260_223(acc), [105, 115, 45, 97, 45, 108, 105, 98, 101, 114, 116, 97, 114, 105, 97, 110] => { lookup_260_224(acc) } [105, 115, 45, 97, 45, 108, 108, 97, 109, 97] => lookup_260_225(acc), [105, 115, 45, 97, 45, 109, 117, 115, 105, 99, 105, 97, 110] => lookup_260_226(acc), [105, 115, 45, 97, 45, 110, 97, 115, 99, 97, 114, 102, 97, 110] => lookup_260_227(acc), [105, 115, 45, 97, 45, 110, 117, 114, 115, 101] => lookup_260_228(acc), [105, 115, 45, 97, 45, 112, 97, 105, 110, 116, 101, 114] => lookup_260_229(acc), [105, 115, 45, 97, 45, 112, 101, 114, 115, 111, 110, 97, 108, 116, 114, 97, 105, 110, 101, 114] => { lookup_260_230(acc) } [105, 115, 45, 97, 45, 112, 104, 111, 116, 111, 103, 114, 97, 112, 104, 101, 114] => { lookup_260_231(acc) } [105, 115, 45, 97, 45, 112, 108, 97, 121, 101, 114] => lookup_260_232(acc), [105, 115, 45, 97, 45, 114, 101, 112, 117, 98, 108, 105, 99, 97, 110] => { lookup_260_233(acc) } [105, 115, 45, 97, 45, 114, 111, 99, 107, 115, 116, 97, 114] => lookup_260_234(acc), [105, 115, 45, 97, 45, 115, 111, 99, 105, 97, 108, 105, 115, 116] => { lookup_260_235(acc) } [105, 115, 45, 97, 45, 115, 116, 117, 100, 101, 110, 116] => lookup_260_236(acc), [105, 115, 45, 97, 45, 116, 101, 97, 99, 104, 101, 114] => lookup_260_237(acc), [105, 115, 45, 97, 45, 116, 101, 99, 104, 105, 101] => lookup_260_238(acc), [105, 115, 45, 97, 45, 116, 104, 101, 114, 97, 112, 105, 115, 116] => { lookup_260_239(acc) } [105, 115, 45, 97, 110, 45, 97, 99, 99, 111, 117, 110, 116, 97, 110, 116] => { lookup_260_240(acc) } [105, 115, 45, 97, 110, 45, 97, 99, 116, 111, 114] => lookup_260_241(acc), [105, 115, 45, 97, 110, 45, 97, 99, 116, 114, 101, 115, 115] => lookup_260_242(acc), [105, 115, 45, 97, 110, 45, 97, 110, 97, 114, 99, 104, 105, 115, 116] => { lookup_260_243(acc) } [105, 115, 45, 97, 110, 45, 97, 114, 116, 105, 115, 116] => lookup_260_244(acc), [105, 115, 45, 97, 110, 45, 101, 110, 103, 105, 110, 101, 101, 114] => { lookup_260_245(acc) } [105, 115, 45, 97, 110, 45, 101, 110, 116, 101, 114, 116, 97, 105, 110, 101, 114] => { lookup_260_246(acc) } [105, 115, 45, 99, 101, 114, 116, 105, 102, 105, 101, 100] => lookup_260_247(acc), [105, 115, 45, 103, 111, 110, 101] => lookup_260_248(acc), [105, 115, 45, 105, 110, 116, 111, 45, 97, 110, 105, 109, 101] => lookup_260_249(acc), [105, 115, 45, 105, 110, 116, 111, 45, 99, 97, 114, 115] => lookup_260_250(acc), [105, 115, 45, 105, 110, 116, 111, 45, 99, 97, 114, 116, 111, 111, 110, 115] => { lookup_260_251(acc) } [105, 115, 45, 105, 110, 116, 111, 45, 103, 97, 109, 101, 115] => lookup_260_252(acc), [105, 115, 45, 108, 101, 101, 116] => lookup_260_253(acc), [105, 115, 45, 110, 111, 116, 45, 99, 101, 114, 116, 105, 102, 105, 101, 100] => { lookup_260_254(acc) } [105, 115, 45, 115, 108, 105, 99, 107] => lookup_260_255(acc), [105, 115, 45, 117, 98, 101, 114, 108, 101, 101, 116] => lookup_260_256(acc), [105, 115, 45, 119, 105, 116, 104, 45, 116, 104, 101, 98, 97, 110, 100] => { lookup_260_257(acc) } [105, 115, 97, 45, 103, 101, 101, 107] => lookup_260_258(acc), [105, 115, 97, 45, 104, 111, 99, 107, 101, 121, 110, 117, 116] => lookup_260_259(acc), [105, 115, 115, 109, 97, 114, 116, 101, 114, 116, 104, 97, 110, 121, 111, 117] => { lookup_260_260(acc) } [105, 116] => lookup_260_261(acc), [106, 100, 101, 118, 99, 108, 111, 117, 100] => lookup_260_262(acc), [106, 101, 108, 97, 115, 116, 105, 99] => lookup_260_263(info, labels, acc), [106, 111, 121, 101, 110, 116] => lookup_260_264(info, labels, acc), [106, 112, 110] => lookup_260_265(acc), [107, 97, 115, 115, 101, 114, 118, 101, 114] => lookup_260_266(acc), [107, 105, 108, 97, 116, 105, 114, 111, 110] => lookup_260_267(acc), [107, 111, 122, 111, 119] => lookup_260_268(acc), [107, 114] => lookup_260_269(acc), [107, 116, 105, 115, 116, 111, 114, 121] => lookup_260_270(acc), [108, 97, 100, 101, 115, 107] => lookup_260_271(acc), [108, 105, 107, 101, 115, 45, 112, 105, 101] => lookup_260_272(acc), [108, 105, 107, 101, 115, 99, 97, 110, 100, 121] => lookup_260_273(acc), [108, 105, 110, 111, 100, 101] => lookup_260_274(info, labels, acc), [108, 105, 110, 111, 100, 101, 111, 98, 106, 101, 99, 116, 115] => { lookup_260_275(info, labels, acc) } [108, 105, 110, 111, 100, 101, 117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => { lookup_260_276(info, labels, acc) } [108, 109, 112, 109] => lookup_260_277(info, labels, acc), [108, 111, 103, 111, 105, 112] => lookup_260_278(acc), [108, 111, 115, 101, 121, 111, 117, 114, 105, 112] => lookup_260_279(acc), [108, 112, 117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => lookup_260_280(acc), [109, 97, 115, 115, 105, 118, 101, 103, 114, 105, 100] => { lookup_260_281(info, labels, acc) } [109, 97, 122, 101, 112, 108, 97, 121] => lookup_260_282(acc), [109, 101, 115, 115, 119, 105, 116, 104, 100, 110, 115] => lookup_260_283(acc), [109, 101, 116, 101, 111, 114, 97, 112, 112] => lookup_260_284(labels, acc), [109, 101, 120] => lookup_260_285(acc), [109, 105, 110, 105, 115, 101, 114, 118, 101, 114] => lookup_260_286(acc), [109, 121, 97, 99, 116, 105, 118, 101, 100, 105, 114, 101, 99, 116, 111, 114, 121] => { lookup_260_287(acc) } [109, 121, 97, 115, 117, 115, 116, 111, 114] => lookup_260_288(acc), [109, 121, 100, 97, 116, 116, 111] => lookup_260_289(acc), [109, 121, 100, 111, 98, 105, 115, 115] => lookup_260_290(acc), [109, 121, 100, 114, 111, 98, 111] => lookup_260_291(acc), [109, 121, 105, 112, 104, 111, 115, 116] => lookup_260_292(acc), [109, 121, 113, 110, 97, 112, 99, 108, 111, 117, 100] => lookup_260_293(acc), [109, 121, 115, 101, 99, 117, 114, 105, 116, 121, 99, 97, 109, 101, 114, 97] => { lookup_260_294(acc) } [109, 121, 115, 104, 111, 112, 98, 108, 111, 99, 107, 115] => lookup_260_295(acc), [109, 121, 115, 104, 111, 112, 105, 102, 121] => lookup_260_296(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_260_297(acc), [109, 121, 116, 97, 98, 105, 116] => lookup_260_298(acc), [109, 121, 116, 104, 105, 99, 45, 98, 101, 97, 115, 116, 115] => { lookup_260_299(info, labels, acc) } [109, 121, 116, 117, 108, 101, 97, 112] => lookup_260_300(acc), [109, 121, 118, 110, 99] => lookup_260_301(acc), [110, 101, 97, 116, 45, 117, 114, 108] => lookup_260_302(acc), [110, 101, 116, 45, 102, 114, 101, 97, 107, 115] => lookup_260_303(acc), [110, 102, 115, 104, 111, 115, 116] => lookup_260_304(acc), [110, 111] => lookup_260_305(acc), [110, 111, 115, 112, 97, 109, 112, 114, 111, 120, 121] => { lookup_260_306(info, labels, acc) } [111, 98, 115, 101, 114, 118, 97, 98, 108, 101, 117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => { lookup_260_307(info, labels, acc) } [111, 110, 45, 97, 112, 116, 105, 98, 108, 101] => lookup_260_308(acc), [111, 110, 102, 97, 98, 114, 105, 99, 97] => lookup_260_309(acc), [111, 110, 114, 101, 110, 100, 101, 114] => lookup_260_310(acc), [111, 110, 116, 104, 101, 119, 105, 102, 105] => lookup_260_311(acc), [111, 111, 103, 117, 121] => lookup_260_312(acc), [111, 112, 101, 114, 97, 117, 110, 105, 116, 101] => lookup_260_313(acc), [111, 114, 115, 105, 116, 101, 115] => lookup_260_314(acc), [111, 117, 116, 115, 121, 115, 116, 101, 109, 115, 99, 108, 111, 117, 100] => { lookup_260_315(acc) } [111, 119, 110, 112, 114, 111, 118, 105, 100, 101, 114] => lookup_260_316(acc), [112, 97, 103, 101, 102, 114, 111, 110, 116, 97, 112, 112] => lookup_260_317(acc), [112, 97, 103, 101, 115, 112, 101, 101, 100, 109, 111, 98, 105, 108, 105, 122, 101, 114] => { lookup_260_318(acc) } [112, 97, 103, 101, 120, 108] => lookup_260_319(acc), [112, 97, 121, 119, 104, 105, 114, 108] => lookup_260_320(info, labels, acc), [112, 103, 102, 111, 103] => lookup_260_321(acc), [112, 105, 120, 111, 108, 105, 110, 111] => lookup_260_322(acc), [112, 108, 97, 116, 116, 101, 114, 45, 97, 112, 112] => lookup_260_323(acc), [112, 108, 97, 121, 115, 116, 97, 116, 105, 111, 110, 45, 99, 108, 111, 117, 100] => { lookup_260_324(acc) } [112, 108, 101, 115, 107, 110, 115] => lookup_260_325(acc), [112, 111, 105, 110, 116, 50, 116, 104, 105, 115] => lookup_260_326(acc), [112, 111, 115, 116, 109, 97, 110, 45, 101, 99, 104, 111] => lookup_260_327(acc), [112, 114, 103, 109, 114] => lookup_260_328(info, labels, acc), [112, 117, 98, 108, 105, 115, 104, 112, 114, 111, 120, 121] => lookup_260_329(acc), [112, 121, 116, 104, 111, 110, 97, 110, 121, 119, 104, 101, 114, 101] => { lookup_260_330(labels, acc) } [113, 97, 50] => lookup_260_331(acc), [113, 98, 117, 115, 101, 114] => lookup_260_332(acc), [113, 99] => lookup_260_333(acc), [113, 117, 97, 108, 105, 102, 105, 111, 97, 112, 112] => lookup_260_334(acc), [113, 117, 105, 99, 107, 115, 121, 116, 101, 115] => lookup_260_335(acc), [113, 117, 105, 112, 101, 108, 101, 109, 101, 110, 116, 115] => { lookup_260_336(info, labels, acc) } [114, 97, 99, 107, 109, 97, 122, 101] => lookup_260_337(acc), [114, 101, 109, 111, 116, 101, 119, 100] => lookup_260_338(acc), [114, 101, 110, 100, 101, 114] => lookup_260_339(info, labels, acc), [114, 101, 115, 101, 114, 118, 100] => lookup_260_340(acc), [114, 101, 115, 101, 114, 118, 101, 45, 111, 110, 108, 105, 110, 101] => { lookup_260_341(acc) } [114, 104, 99, 108, 111, 117, 100] => lookup_260_342(acc), [114, 117] => lookup_260_343(acc), [115, 97] => lookup_260_344(acc), [115, 97, 107, 117, 114, 97, 116, 97, 110] => lookup_260_345(acc), [115, 97, 107, 117, 114, 97, 119, 101, 98] => lookup_260_346(acc), [115, 97, 108, 101, 115, 102, 111, 114, 99, 101] => lookup_260_347(info, labels, acc), [115, 97, 118, 101, 115, 45, 116, 104, 101, 45, 119, 104, 97, 108, 101, 115] => { lookup_260_348(acc) } [115, 99, 114, 121, 115, 101, 99] => lookup_260_349(acc), [115, 101, 99, 117, 114, 105, 116, 121, 116, 97, 99, 116, 105, 99, 115] => { lookup_260_350(acc) } [115, 101, 108, 102, 105, 112] => lookup_260_351(acc), [115, 101, 108, 108, 115, 45, 102, 111, 114, 45, 108, 101, 115, 115] => { lookup_260_352(acc) } [115, 101, 108, 108, 115, 45, 102, 111, 114, 45, 117] => lookup_260_353(acc), [115, 101, 114, 118, 101, 98, 98, 115] => lookup_260_354(acc), [115, 101, 114, 118, 101, 98, 101, 101, 114] => lookup_260_355(acc), [115, 101, 114, 118, 101, 99, 111, 117, 110, 116, 101, 114, 115, 116, 114, 105, 107, 101] => { lookup_260_356(acc) } [115, 101, 114, 118, 101, 101, 120, 99, 104, 97, 110, 103, 101] => lookup_260_357(acc), [115, 101, 114, 118, 101, 102, 116, 112] => lookup_260_358(acc), [115, 101, 114, 118, 101, 103, 97, 109, 101] => lookup_260_359(acc), [115, 101, 114, 118, 101, 104, 97, 108, 102, 108, 105, 102, 101] => lookup_260_360(acc), [115, 101, 114, 118, 101, 104, 116, 116, 112] => lookup_260_361(acc), [115, 101, 114, 118, 101, 104, 117, 109, 111, 117, 114] => lookup_260_362(acc), [115, 101, 114, 118, 101, 105, 114, 99] => lookup_260_363(acc), [115, 101, 114, 118, 101, 109, 112, 51] => lookup_260_364(acc), [115, 101, 114, 118, 101, 112, 50, 112] => lookup_260_365(acc), [115, 101, 114, 118, 101, 112, 105, 99, 115] => lookup_260_366(acc), [115, 101, 114, 118, 101, 113, 117, 97, 107, 101] => lookup_260_367(acc), [115, 101, 114, 118, 101, 115, 97, 114, 99, 97, 115, 109] => lookup_260_368(acc), [115, 104, 111, 112, 105, 116, 115, 105, 116, 101] => lookup_260_369(acc), [115, 105, 105, 105, 116, 101, 115] => lookup_260_370(acc), [115, 105, 109, 112, 108, 101, 45, 117, 114, 108] => lookup_260_371(acc), [115, 105, 109, 112, 108, 101, 115, 105, 116, 101] => lookup_260_372(acc), [115, 105, 110, 97, 97, 112, 112] => lookup_260_373(acc), [115, 107, 121, 103, 101, 97, 114, 97, 112, 112] => lookup_260_374(acc), [115, 109, 117, 115, 104, 99, 100, 110] => lookup_260_375(acc), [115, 112, 97, 99, 101, 45, 116, 111, 45, 114, 101, 110, 116] => lookup_260_376(acc), [115, 116, 97, 99, 107, 104, 101, 114, 111, 45, 110, 101, 116, 119, 111, 114, 107] => { lookup_260_377(acc) } [115, 116, 100, 108, 105, 98] => lookup_260_378(info, labels, acc), [115, 116, 114, 101, 97, 109, 108, 105, 116, 97, 112, 112] => lookup_260_379(acc), [115, 116, 117, 102, 102, 116, 111, 114, 101, 97, 100] => lookup_260_380(acc), [116, 98, 45, 104, 111, 115, 116, 105, 110, 103] => lookup_260_381(info, labels, acc), [116, 101, 97, 99, 104, 101, 115, 45, 121, 111, 103, 97] => lookup_260_382(acc), [116, 101, 109, 112, 45, 100, 110, 115] => lookup_260_383(acc), [116, 104, 101, 119, 111, 114, 107, 112, 99] => lookup_260_384(acc), [116, 104, 105, 110, 103, 100, 117, 115, 116, 100, 97, 116, 97] => lookup_260_385(acc), [116, 111, 119, 110, 110, 101, 119, 115, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_260_386(acc) } [116, 114, 121, 45, 115, 110, 111, 119, 112, 108, 111, 119] => lookup_260_387(acc), [116, 114, 121, 99, 108, 111, 117, 100, 102, 108, 97, 114, 101] => lookup_260_388(acc), [116, 117, 108, 101, 97, 112, 45, 112, 97, 114, 116, 110, 101, 114, 115] => { lookup_260_389(acc) } [116, 121, 112, 101, 102, 111, 114, 109] => lookup_260_390(info, labels, acc), [117, 107] => lookup_260_391(acc), [117, 110, 117, 115, 117, 97, 108, 112, 101, 114, 115, 111, 110] => lookup_260_392(acc), [117, 112, 115, 117, 110, 97, 112, 112] => lookup_260_393(acc), [117, 115] => lookup_260_394(acc), [117, 121] => lookup_260_395(acc), [118, 105, 112, 115, 105, 110, 97, 97, 112, 112] => lookup_260_396(acc), [118, 117, 108, 116, 114, 111, 98, 106, 101, 99, 116, 115] => { lookup_260_397(info, labels, acc) } [119, 97, 102, 97, 105, 99, 108, 111, 117, 100] => lookup_260_398(info, labels, acc), [119, 97, 102, 102, 108, 101, 99, 101, 108, 108] => lookup_260_399(acc), [119, 105, 97, 114, 100, 119, 101, 98] => lookup_260_400(info, labels, acc), [119, 105, 116, 104, 103, 111, 111, 103, 108, 101] => lookup_260_401(acc), [119, 105, 116, 104, 121, 111, 117, 116, 117, 98, 101] => lookup_260_402(acc), [119, 105, 120, 115, 105, 116, 101] => lookup_260_403(acc), [119, 111, 108, 116, 108, 97, 98, 45, 100, 101, 109, 111] => lookup_260_404(acc), [119, 111, 114, 107, 105, 115, 98, 111, 114, 105, 110, 103] => lookup_260_405(acc), [119, 112, 100, 101, 118, 99, 108, 111, 117, 100] => lookup_260_406(acc), [119, 112, 101, 110, 103, 105, 110, 101, 112, 111, 119, 101, 114, 101, 100] => { lookup_260_407(labels, acc) } [119, 112, 104, 111, 115, 116, 101, 100, 109, 97, 105, 108] => lookup_260_408(acc), [119, 112, 109, 117, 99, 100, 110] => lookup_260_409(acc), [119, 114, 105, 116, 101, 115, 116, 104, 105, 115, 98, 108, 111, 103] => { lookup_260_410(acc) } [120, 48] => lookup_260_411(acc), [120, 110, 98, 97, 121] => lookup_260_412(labels, acc), [121, 111, 108, 97, 115, 105, 116, 101] => lookup_260_413(acc), [122, 97] => lookup_260_414(acc), _ => info, }, None => info, } } #[inline] fn lookup_261() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_262_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_262_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_262_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_262<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [109, 121, 102, 111, 114, 117, 109] => lookup_262_0(acc), [110, 111, 103] => lookup_262_1(acc), [114, 97, 118, 101, 110, 100, 98] => lookup_262_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_263() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_264() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_265() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_266() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_267() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_268() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_269() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_270() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_271() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_272() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_273_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_273_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_273<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [100, 101] => lookup_273_0(acc), [101, 108, 101, 109, 101, 110, 116, 111, 114] => lookup_273_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_274() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_275() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_276() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_277() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_278() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_279() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_280() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_281<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_281_0(acc), [99, 111] => lookup_281_1(acc), [101, 100] => lookup_281_2(acc), [102, 105] => lookup_281_3(acc), [103, 111] => lookup_281_4(acc), [111, 114] => lookup_281_5(acc), [115, 97] => lookup_281_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_282() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_283() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_284() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_285() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_286() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_287() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_288() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_289() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_290<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_290_0(acc), [101, 100, 117] => lookup_290_1(acc), [103, 111, 118] => lookup_290_2(acc), [105, 110, 102] => lookup_290_3(acc), [110, 101, 116] => lookup_290_4(acc), [111, 114, 103] => lookup_290_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_291() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_292_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_292_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_292_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_292_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_292_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_292_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_292<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_292_0(acc), [99, 111, 109] => lookup_292_1(acc), [101, 100, 117] => lookup_292_2(acc), [105, 110, 116] => lookup_292_3(acc), [110, 111, 109, 101] => lookup_292_4(acc), [111, 114, 103] => lookup_292_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_293_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_293_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_293_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_293_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_293<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_293_0(acc), [101, 100, 117] => lookup_293_1(acc), [110, 101, 116] => lookup_293_2(acc), [111, 114, 103] => lookup_293_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_294_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_294_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_294_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_294<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 116, 104] => lookup_294_0(acc), [103, 111, 118] => lookup_294_1(acc), [105, 110, 102, 111] => lookup_294_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_295_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_2_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_295_2_1_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_295_2_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [106] => lookup_295_2_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_295_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_295_2_0(acc), [115, 99, 97, 108, 101, 102, 111, 114, 99, 101] => lookup_295_2_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_295_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_295<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_295_0(acc), [98, 105, 122] => lookup_295_1(acc), [99, 111, 109] => lookup_295_2(labels, acc), [101, 107, 108, 111, 103, 101, 115] => lookup_295_3(acc), [103, 111, 118] => lookup_295_4(acc), [108, 116, 100] => lookup_295_5(acc), [109, 105, 108] => lookup_295_6(acc), [110, 101, 116] => lookup_295_7(acc), [111, 114, 103] => lookup_295_8(acc), [112, 114, 101, 115, 115] => lookup_295_9(acc), [112, 114, 111] => lookup_295_10(acc), [116, 109] => lookup_295_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_296() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_297() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_298_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_298_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_298_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_298_3_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_298_3_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_298_3_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_298_3_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_298_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_298_3_0(info, labels, acc), [99, 117, 115, 116, 111, 109] => lookup_298_3_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_298_4_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_298_4_0_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_298_4_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [102, 108, 116] => lookup_298_4_0_0(acc), [117, 115, 114] => lookup_298_4_0_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_298_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_298_4_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_298_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_298<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_298_0(acc), [99, 111] => lookup_298_1(acc), [101, 52] => lookup_298_2(acc), [109, 101, 116, 97, 99, 101, 110, 116, 114, 117, 109] => { lookup_298_3(info, labels, acc) } [109, 117, 110, 105] => lookup_298_4(info, labels, acc), [114, 101, 97, 108, 109] => lookup_298_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_299() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_300() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_301() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_302() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_303() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_304() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_305() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_306() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_307() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_308() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_309_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_8(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_9_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [100, 121, 110] => lookup_309_9_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_309_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_11_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_11_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_11<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [100, 121, 110] => lookup_309_11_0(acc), [100, 121, 110, 100, 110, 115] => lookup_309_11_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_309_12(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_17(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_18(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_20(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_23(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_24_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_309_24<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_309_24_0(wild, acc), }, None => info, } } #[inline] fn lookup_309_25(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_26(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_27(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_28(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_29(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_30_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_30<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [100, 121, 110] => lookup_309_30_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_309_31_0_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_31_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { [112, 97, 103, 101, 115] => lookup_309_31_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_309_31<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [105, 116] => lookup_309_31_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_309_32(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_34(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_37(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_38(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_39(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_40(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_41(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_42(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_43(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_44(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_45(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_46(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_47(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_48(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_49(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_50(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_51(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_52(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_53(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_54(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_55(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_56(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_57(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_58(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_59_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_59<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [99, 117, 115, 116, 111, 109, 101, 114] => lookup_309_59_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_309_60(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_61(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_62(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_63(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_64(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_65(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_66(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_67(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_68_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_309_68<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_309_68_0(wild, acc), }, None => info, } } #[inline] fn lookup_309_69(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_70(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_71(acc: usize) -> Info { Info { len: acc + 1 + 23usize, typ: Some(Type::Private), } } #[inline] fn lookup_309_72(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Private), } } #[inline] fn lookup_309<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 119, 101, 98, 115, 101, 105, 116, 101] => lookup_309_0(acc), [49, 50, 104, 112] => lookup_309_1(acc), [50, 105, 120] => lookup_309_2(acc), [52, 108, 105, 109, 97] => lookup_309_3(acc), [98, 97, 114, 115, 121] => lookup_309_4(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_309_5(acc), [98, 112, 108, 97, 99, 101, 100] => lookup_309_6(acc), [99, 111, 109] => lookup_309_7(acc), [99, 111, 109, 109, 117, 110, 105, 116, 121, 45, 112, 114, 111] => lookup_309_8(acc), [99, 111, 115, 105, 100, 110, 115] => lookup_309_9(info, labels, acc), [100, 100, 45, 100, 110, 115] => lookup_309_10(acc), [100, 100, 110, 115, 115] => lookup_309_11(labels, acc), [100, 105, 115, 107, 117, 115, 115, 105, 111, 110, 115, 98, 101, 114, 101, 105, 99, 104] => { lookup_309_12(acc) } [100, 110, 115, 104, 111, 109, 101] => lookup_309_13(acc), [100, 110, 115, 117, 112, 100, 97, 116, 101, 114] => lookup_309_14(acc), [100, 114, 97, 121, 45, 100, 110, 115] => lookup_309_15(acc), [100, 114, 97, 121, 100, 110, 115] => lookup_309_16(acc), [100, 121, 110, 45, 98, 101, 114, 108, 105, 110] => lookup_309_17(acc), [100, 121, 110, 45, 105, 112, 50, 52] => lookup_309_18(acc), [100, 121, 110, 45, 118, 112, 110] => lookup_309_19(acc), [100, 121, 110, 97, 109, 105, 115, 99, 104, 101, 115, 45, 100, 110, 115] => { lookup_309_20(acc) } [100, 121, 110, 100, 110, 115, 49] => lookup_309_21(acc), [100, 121, 110, 118, 112, 110] => lookup_309_22(acc), [102, 105, 114, 101, 119, 97, 108, 108, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_309_23(acc) } [102, 114, 117, 115, 107, 121] => lookup_309_24(info, labels, acc), [102, 117, 101, 116, 116, 101, 114, 116, 100, 97, 115, 110, 101, 116, 122] => { lookup_309_25(acc) } [103, 105, 116, 45, 114, 101, 112, 111, 115] => lookup_309_26(acc), [103, 111, 105, 112] => lookup_309_27(acc), [103, 195, 188, 110, 115, 116, 105, 103, 98, 101, 115, 116, 101, 108, 108, 101, 110] => { lookup_309_28(acc) } [103, 195, 188, 110, 115, 116, 105, 103, 108, 105, 101, 102, 101, 114, 110] => { lookup_309_29(acc) } [104, 111, 109, 101, 45, 119, 101, 98, 115, 101, 114, 118, 101, 114] => { lookup_309_30(labels, acc) } [104, 115, 45, 104, 101, 105, 108, 98, 114, 111, 110, 110] => { lookup_309_31(info, labels, acc) } [105, 110, 45, 98, 101, 114, 108, 105, 110] => lookup_309_32(acc), [105, 110, 45, 98, 114, 98] => lookup_309_33(acc), [105, 110, 45, 98, 117, 116, 116, 101, 114] => lookup_309_34(acc), [105, 110, 45, 100, 115, 108] => lookup_309_35(acc), [105, 110, 45, 118, 112, 110] => lookup_309_36(acc), [105, 110, 116, 101, 114, 110, 101, 116, 45, 100, 110, 115] => lookup_309_37(acc), [105, 115, 101, 114, 118, 115, 99, 104, 117, 108, 101] => lookup_309_38(acc), [105, 115, 116, 101, 105, 110, 103, 101, 101, 107] => lookup_309_39(acc), [105, 115, 116, 109, 101, 105, 110] => lookup_309_40(acc), [107, 101, 121, 109, 97, 99, 104, 105, 110, 101] => lookup_309_41(acc), [108, 45, 111, 45, 103, 45, 105, 45, 110] => lookup_309_42(acc), [108, 99, 117, 98, 101, 45, 115, 101, 114, 118, 101, 114] => lookup_309_43(acc), [108, 101, 98, 116, 105, 109, 110, 101, 116, 122] => lookup_309_44(acc), [108, 101, 105, 116, 117, 110, 103, 115, 101, 110] => lookup_309_45(acc), [108, 105, 109, 97, 45, 99, 105, 116, 121] => lookup_309_46(acc), [108, 111, 103, 111, 105, 112] => lookup_309_47(acc), [109, 101, 105, 110, 45, 105, 115, 101, 114, 118] => lookup_309_48(acc), [109, 101, 105, 110, 45, 118, 105, 103, 111, 114] => lookup_309_49(acc), [109, 121, 45, 103, 97, 116, 101, 119, 97, 121] => lookup_309_50(acc), [109, 121, 45, 114, 111, 117, 116, 101, 114] => lookup_309_51(acc), [109, 121, 45, 118, 105, 103, 111, 114] => lookup_309_52(acc), [109, 121, 45, 119, 97, 110] => lookup_309_53(acc), [109, 121, 104, 111, 109, 101, 45, 115, 101, 114, 118, 101, 114] => lookup_309_54(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_309_55(acc), [115, 99, 104, 117, 108, 112, 108, 97, 116, 116, 102, 111, 114, 109] => { lookup_309_56(acc) } [115, 99, 104, 117, 108, 115, 101, 114, 118, 101, 114] => lookup_309_57(acc), [115, 112, 100, 110, 115] => lookup_309_58(acc), [115, 112, 101, 101, 100, 112, 97, 114, 116, 110, 101, 114] => { lookup_309_59(info, labels, acc) } [115, 113, 117, 97, 114, 101, 55] => lookup_309_60(acc), [115, 118, 110, 45, 114, 101, 112, 111, 115] => lookup_309_61(acc), [115, 121, 110, 111, 45, 100, 115] => lookup_309_62(acc), [115, 121, 110, 111, 108, 111, 103, 121, 45, 100, 105, 115, 107, 115, 116, 97, 116, 105, 111, 110] => { lookup_309_63(acc) } [115, 121, 110, 111, 108, 111, 103, 121, 45, 100, 115] => lookup_309_64(acc), [116, 97, 105, 102, 117, 110, 45, 100, 110, 115] => lookup_309_65(acc), [116, 101, 115, 116, 45, 105, 115, 101, 114, 118] => lookup_309_66(acc), [116, 114, 97, 101, 117, 109, 116, 103, 101, 114, 97, 100, 101] => lookup_309_67(acc), [117, 98, 101, 114, 115, 112, 97, 99, 101] => lookup_309_68(info, labels, acc), [118, 105, 114, 116, 117, 97, 108, 45, 117, 115, 101, 114] => lookup_309_69(acc), [118, 105, 114, 116, 117, 97, 108, 117, 115, 101, 114] => lookup_309_70(acc), [120, 110, 45, 45, 103, 110, 115, 116, 105, 103, 98, 101, 115, 116, 101, 108, 108, 101, 110, 45, 122, 118, 98] => { lookup_309_71(acc) } [120, 110, 45, 45, 103, 110, 115, 116, 105, 103, 108, 105, 101, 102, 101, 114, 110, 45, 119, 111, 98] => { lookup_309_72(acc) } _ => info, }, None => info, } } #[inline] fn lookup_310() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_311() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_312() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_313() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_314() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_315() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_316() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_317() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_318() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_319() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_320() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_321() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_322_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_322<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 115, 115] => lookup_322_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_323_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_4(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_7_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_323_7_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_8(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_10_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_10<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_323_10_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_11_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_323_11_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_12_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_12_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { wild => lookup_323_12_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_12<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [117, 115, 101, 114] => lookup_323_12_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_323_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_19(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_21(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_22_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_22<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_323_22_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_23_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_23<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_323_23_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_323_25_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_323_25<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_323_25_0(wild, acc), }, None => info, } } #[inline] fn lookup_323_26(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_323<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 99, 104, 97, 114, 115] => lookup_323_0(acc), [97, 117, 116, 111, 99, 111, 100, 101] => lookup_323_1(acc), [99, 117, 114, 118] => lookup_323_2(acc), [100, 101, 110, 111] => lookup_323_3(acc), [100, 101, 110, 111, 45, 115, 116, 97, 103, 105, 110, 103] => lookup_323_4(acc), [100, 101, 116, 97] => lookup_323_5(acc), [102, 108, 121] => lookup_323_6(acc), [103, 97, 116, 101, 119, 97, 121] => lookup_323_7(info, labels, acc), [103, 105, 116, 104, 117, 98, 112, 114, 101, 118, 105, 101, 119] => lookup_323_8(acc), [105, 115, 101, 114, 118] => lookup_323_9(acc), [108, 99, 108] => lookup_323_10(info, labels, acc), [108, 99, 108, 115, 116, 97, 103, 101] => lookup_323_11(info, labels, acc), [108, 111, 99, 97, 108, 99, 101, 114, 116] => lookup_323_12(info, labels, acc), [108, 111, 103, 105, 110, 108, 105, 110, 101] => lookup_323_13(acc), [109, 101, 100, 105, 97, 116, 101, 99, 104] => lookup_323_14(acc), [110, 103, 114, 111, 107] => lookup_323_15(acc), [110, 103, 114, 111, 107, 45, 102, 114, 101, 101] => lookup_323_16(acc), [112, 97, 103, 101, 115] => lookup_323_17(acc), [112, 97, 110, 101, 108] => lookup_323_18(acc), [112, 108, 97, 116, 116, 101, 114, 45, 97, 112, 112] => lookup_323_19(acc), [114, 50] => lookup_323_20(acc), [115, 104, 105, 102, 116, 99, 114, 121, 112, 116, 111] => lookup_323_21(acc), [115, 116, 103] => lookup_323_22(info, labels, acc), [115, 116, 103, 115, 116, 97, 103, 101] => lookup_323_23(info, labels, acc), [118, 101, 114, 99, 101, 108] => lookup_323_24(acc), [119, 101, 98, 104, 97, 114, 101] => lookup_323_25(info, labels, acc), [119, 111, 114, 107, 101, 114, 115] => lookup_323_26(acc), _ => info, }, None => info, } } #[inline] fn lookup_324() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_325() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_326() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_327_0_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_327_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [108, 111, 110, 100, 111, 110] => lookup_327_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_327<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 97, 112, 112, 115] => lookup_327_0(labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_328() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_329() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_330() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_331() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_332() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_333() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_334() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_335_0(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_5(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_335_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_335<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 104, 106, 101, 109, 109, 101, 115, 105, 100, 101] => lookup_335_0(acc), [98, 105, 122] => lookup_335_1(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_335_2(acc), [99, 111] => lookup_335_3(acc), [102, 105, 114, 109] => lookup_335_4(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_335_5(acc), [114, 101, 103] => lookup_335_6(acc), [115, 116, 111, 114, 101] => lookup_335_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_336_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_336_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_336_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_336_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_336_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_336<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_336_0(acc), [101, 100, 117] => lookup_336_1(acc), [103, 111, 118] => lookup_336_2(acc), [110, 101, 116] => lookup_336_3(acc), [111, 114, 103] => lookup_336_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_337() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_338<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116] => lookup_338_0(acc), [99, 111, 109] => lookup_338_1(acc), [101, 100, 117] => lookup_338_2(acc), [103, 111, 98] => lookup_338_3(acc), [103, 111, 118] => lookup_338_4(acc), [109, 105, 108] => lookup_338_5(acc), [110, 101, 116] => lookup_338_6(acc), [111, 114, 103] => lookup_338_7(acc), [115, 108, 100] => lookup_338_8(acc), [119, 101, 98] => lookup_338_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_339() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_340() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_341() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_342() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_343() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_344() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_345() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_346() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_347() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_348() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_349() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_350() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_351() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_352() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_353<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116] => lookup_353_0(acc), [97, 115, 115, 111] => lookup_353_1(acc), [99, 111, 109] => lookup_353_2(acc), [101, 100, 117] => lookup_353_3(acc), [103, 111, 118] => lookup_353_4(acc), [110, 101, 116] => lookup_353_5(acc), [111, 114, 103] => lookup_353_6(acc), [112, 111, 108] => lookup_353_7(acc), [115, 111, 99] => lookup_353_8(acc), [116, 109] => lookup_353_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_354_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_354_0_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_354_0_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_354_0_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_354_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [98, 122, 122] => lookup_354_0_1(info, labels, acc), wild => lookup_354_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_354<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [100, 97, 112, 112, 115] => lookup_354_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_355() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_356_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_356_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_356<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 115, 101] => lookup_356_0(acc), [99, 111, 109] => lookup_356_1(acc), [101, 100, 117] => lookup_356_2(acc), [102, 105, 110] => lookup_356_3(acc), [103, 111, 98] => lookup_356_4(acc), [103, 111, 118] => lookup_356_5(acc), [105, 110, 102, 111] => lookup_356_6(acc), [107, 49, 50] => lookup_356_7(acc), [109, 101, 100] => lookup_356_8(acc), [109, 105, 108] => lookup_356_9(acc), [110, 101, 116] => lookup_356_10(acc), [111, 102, 102, 105, 99, 105, 97, 108] => lookup_356_11(acc), [111, 114, 103] => lookup_356_12(acc), [112, 114, 111] => lookup_356_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_357() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_358() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_359_0_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_359_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [103, 105, 116, 45, 112, 97, 103, 101, 115] => lookup_359_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_359<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [114, 105, 116] => lookup_359_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_360_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_360<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_360_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_361_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_361_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_361_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_361_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_361<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 112] => lookup_361_0(acc), [99, 111, 109] => lookup_361_1(labels, acc), [101, 100, 117] => lookup_361_2(acc), [102, 105, 101] => lookup_361_3(acc), [103, 111, 118] => lookup_361_4(acc), [108, 105, 98] => lookup_361_5(acc), [109, 101, 100] => lookup_361_6(acc), [111, 114, 103] => lookup_361_7(acc), [112, 114, 105] => lookup_361_8(acc), [114, 105, 105, 107] => lookup_361_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_362_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_362_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_362_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_362_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_362<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_362_0(labels, acc), [101, 100, 117] => lookup_362_1(acc), [101, 117, 110] => lookup_362_2(acc), [103, 111, 118] => lookup_362_3(acc), [109, 105, 108] => lookup_362_4(acc), [110, 97, 109, 101] => lookup_362_5(acc), [110, 101, 116] => lookup_362_6(acc), [111, 114, 103] => lookup_362_7(acc), [115, 99, 105] => lookup_362_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_363() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_364() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_365() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_366() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_367() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_368() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_369() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_370() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_371_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_371<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_371_0(wild, acc), }, None => info, } } #[inline] fn lookup_372() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_373() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_374_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_374_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_374_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_374_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_374_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_374_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_374_4(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_374_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_374_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_374<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 109, 105, 119, 101, 98] => lookup_374_0(acc), [99, 111, 109] => lookup_374_1(labels, acc), [101, 100, 117] => lookup_374_2(acc), [103, 111, 98] => lookup_374_3(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_374_4(acc), [110, 111, 109] => lookup_374_5(acc), [111, 114, 103] => lookup_374_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_375() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_376_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_376_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_376_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_376<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109, 112, 117, 116, 101] => lookup_376_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_377_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_377<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_377_0(acc), [99, 111, 109] => lookup_377_1(acc), [101, 100, 117] => lookup_377_2(acc), [103, 111, 118] => lookup_377_3(acc), [105, 110, 102, 111] => lookup_377_4(acc), [110, 97, 109, 101] => lookup_377_5(acc), [110, 101, 116] => lookup_377_6(acc), [111, 114, 103] => lookup_377_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_378_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_4_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [106, 101, 108, 97, 115, 116, 105, 99] => lookup_378_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_378_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_378_7_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_378_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_378_7_0(wild, acc), }, None => info, } } #[inline] fn lookup_378_8(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_378<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 114, 107, 105, 116, 97, 112, 112, 115] => lookup_378_0(acc), [98, 97, 114, 115, 121] => lookup_378_1(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_378_2(acc), [100, 105, 115, 107, 115, 116, 97, 116, 105, 111, 110] => lookup_378_3(acc), [100, 111, 103, 97, 100, 111] => lookup_378_4(info, labels, acc), [109, 121, 99, 100] => lookup_378_5(acc), [115, 112, 100, 110, 115] => lookup_378_6(acc), [116, 114, 97, 110, 115, 117, 114, 108] => lookup_378_7(info, labels, acc), [119, 101, 108, 108, 98, 101, 105, 110, 103, 122, 111, 110, 101] => lookup_378_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_379() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_380_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_380_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [117, 115, 101, 114] => lookup_380_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_380<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [112, 97, 114, 116, 121] => lookup_380_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_381_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_381_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_381<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_381_0(acc), [107, 111, 111, 98, 105, 110] => lookup_381_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_382() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_383() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_384() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_385() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_386() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_387() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_388() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_389() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_390_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_390<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [121, 98, 111] => lookup_390_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_391() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_392() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_393() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_394_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_394<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [115, 116, 111, 114, 106] => lookup_394_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_395() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_396() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_397() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_398() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_399() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_400() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_401() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_402_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_402_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [102, 105] => lookup_402_3_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_402_4_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_4_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [100, 101, 109, 111] => lookup_402_4_0(acc), [112, 97, 97, 115] => lookup_402_4_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_402_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_9(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_402_10(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_402<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 107, 111, 116, 105, 115, 105, 118, 117] => lookup_402_0(acc), [97, 108, 97, 110, 100] => lookup_402_1(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_402_2(acc), [99, 108, 111, 117, 100, 112, 108, 97, 116, 102, 111, 114, 109] => { lookup_402_3(info, labels, acc) } [100, 97, 116, 97, 99, 101, 110, 116, 101, 114] => lookup_402_4(info, labels, acc), [100, 121] => lookup_402_5(acc), [104, 195, 164, 107, 107, 105, 110, 101, 110] => lookup_402_6(acc), [105, 107, 105] => lookup_402_7(acc), [107, 97, 112, 115, 105] => lookup_402_8(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_402_9(acc), [120, 110, 45, 45, 104, 107, 107, 105, 110, 101, 110, 45, 53, 119, 97] => { lookup_402_10(acc) } _ => info, }, None => info, } } #[inline] fn lookup_403() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_404() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_405() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_406() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_407() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_408_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_408<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_408_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_409() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_410() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_411() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_412() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_413() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_414() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_415() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_416<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_416_0(acc), [98, 105, 122] => lookup_416_1(acc), [99, 111, 109] => lookup_416_2(acc), [103, 111, 118] => lookup_416_3(acc), [105, 110, 102, 111] => lookup_416_4(acc), [109, 105, 108] => lookup_416_5(acc), [110, 97, 109, 101] => lookup_416_6(acc), [110, 101, 116] => lookup_416_7(acc), [111, 114, 103] => lookup_416_8(acc), [112, 114, 111] => lookup_416_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_417_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_417<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_417_0(wild, acc), }, None => info, } } #[inline] fn lookup_418() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_419() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_420() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_421() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_422() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_423() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_424_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_424_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_424_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_424_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_424_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_424_5_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_424_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { wild => lookup_424_5_0(wild, acc), }, None => info, } } #[inline] fn lookup_424<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_424_0(acc), [101, 100, 117] => lookup_424_1(acc), [110, 101, 116] => lookup_424_2(acc), [111, 114, 103] => lookup_424_3(acc), [114, 97, 100, 105, 111] => lookup_424_4(acc), [117, 115, 101, 114] => lookup_424_5(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_425() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_426() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_427() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_428() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_429() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_430() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_431() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_432() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_433() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_434() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_7(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_8(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_9(acc: usize) -> Info { Info { len: acc + 1 + 31usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_13(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_17(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_19(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_21(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_22(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_23(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_24(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_27(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_29(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_30(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_435_31(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_435_32(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_435<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 115, 105, 116, 101, 119, 101, 98] => lookup_435_0(acc), [97, 101, 114, 111, 112, 111, 114, 116] => lookup_435_1(acc), [97, 115, 115, 111] => lookup_435_2(acc), [97, 118, 111, 99, 97, 116] => lookup_435_3(acc), [97, 118, 111, 117, 101, 115] => lookup_435_4(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_435_5(acc), [99, 99, 105] => lookup_435_6(acc), [99, 104, 97, 109, 98, 97, 103, 114, 105] => lookup_435_7(acc), [99, 104, 105, 114, 117, 114, 103, 105, 101, 110, 115, 45, 100, 101, 110, 116, 105, 115, 116, 101, 115] => { lookup_435_8(acc) } [99, 104, 105, 114, 117, 114, 103, 105, 101, 110, 115, 45, 100, 101, 110, 116, 105, 115, 116, 101, 115, 45, 101, 110, 45, 102, 114, 97, 110, 99, 101] => { lookup_435_9(acc) } [99, 111, 109] => lookup_435_10(acc), [100, 101, 100, 105, 98, 111, 120] => lookup_435_11(acc), [101, 110, 45, 114, 111, 111, 116] => lookup_435_12(acc), [101, 120, 112, 101, 114, 116, 115, 45, 99, 111, 109, 112, 116, 97, 98, 108, 101, 115] => { lookup_435_13(acc) } [102, 98, 120, 45, 111, 115] => lookup_435_14(acc), [102, 98, 120, 111, 115] => lookup_435_15(acc), [102, 114, 101, 101, 98, 111, 120, 45, 111, 115] => lookup_435_16(acc), [102, 114, 101, 101, 98, 111, 120, 111, 115] => lookup_435_17(acc), [103, 111, 117, 112, 105, 108, 101] => lookup_435_18(acc), [103, 111, 117, 118] => lookup_435_19(acc), [103, 114, 101, 116, 97] => lookup_435_20(acc), [104, 117, 105, 115, 115, 105, 101, 114, 45, 106, 117, 115, 116, 105, 99, 101] => { lookup_435_21(acc) } [109, 101, 100, 101, 99, 105, 110] => lookup_435_22(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_435_23(acc), [110, 111, 109] => lookup_435_24(acc), [110, 111, 116, 97, 105, 114, 101, 115] => lookup_435_25(acc), [111, 110, 45, 119, 101, 98] => lookup_435_26(acc), [112, 104, 97, 114, 109, 97, 99, 105, 101, 110] => lookup_435_27(acc), [112, 111, 114, 116] => lookup_435_28(acc), [112, 114, 100] => lookup_435_29(acc), [116, 109] => lookup_435_30(acc), [118, 101, 116, 101, 114, 105, 110, 97, 105, 114, 101] => lookup_435_31(acc), [121, 110, 104] => lookup_435_32(acc), _ => info, }, None => info, } } #[inline] fn lookup_436() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_437() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_438() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_439() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_440() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_441() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_442() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_443() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_444() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_445() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_446() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_447() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_448() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_449() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_450() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_451() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_452() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_453() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_454_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_454<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [112, 108, 101, 121] => lookup_454_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_455() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_456() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_457_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_457<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [112, 97, 103, 101, 115] => lookup_457_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_458() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_459() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_460_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_460_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_460<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 100, 117] => lookup_460_0(acc), [103, 111, 118] => lookup_460_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_461_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_461<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 110, 112, 121] => lookup_461_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_462_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_462<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_462_0(acc), [101, 100, 117] => lookup_462_1(acc), [103, 111, 118] => lookup_462_2(acc), [109, 105, 108] => lookup_462_3(acc), [110, 101, 116] => lookup_462_4(acc), [111, 114, 103] => lookup_462_5(acc), [112, 118, 116] => lookup_462_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_463() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_464() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_465() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_466() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_467() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_468_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_468_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_468_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_468_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_468_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_468_5_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_468_5<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [100, 97, 101, 109, 111, 110] => lookup_468_5_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_468<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_468_0(acc), [99, 121, 97] => lookup_468_1(acc), [107, 97, 97, 115] => lookup_468_2(acc), [110, 101, 116] => lookup_468_3(acc), [111, 114, 103] => lookup_468_4(acc), [112, 97, 110, 101, 108] => lookup_468_5(labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_469() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_470_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_470_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_470_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_470_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_470_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_470<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_470_0(acc), [101, 100, 117] => lookup_470_1(acc), [103, 111, 118] => lookup_470_2(acc), [109, 105, 108] => lookup_470_3(acc), [111, 114, 103] => lookup_470_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_471_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_471_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_471_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_471_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_471_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_471_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_471<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_471_0(acc), [101, 100, 117] => lookup_471_1(acc), [103, 111, 118] => lookup_471_2(acc), [108, 116, 100] => lookup_471_3(acc), [109, 111, 100] => lookup_471_4(acc), [111, 114, 103] => lookup_471_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_472() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_473() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_474() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_475() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_476_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_476_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_476_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_476_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_476_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_476_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_476_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_476<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_476_0(acc), [99, 111] => lookup_476_1(acc), [99, 111, 109] => lookup_476_2(acc), [101, 100, 117] => lookup_476_3(acc), [110, 101, 116] => lookup_476_4(acc), [111, 114, 103] => lookup_476_5(acc), [120, 120] => lookup_476_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_477() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_478() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_479() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_480() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_481() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_482() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_483() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_484() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_485() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_486<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_486_0(acc), [99, 111, 109] => lookup_486_1(acc), [101, 100, 117] => lookup_486_2(acc), [103, 111, 118] => lookup_486_3(acc), [110, 101, 116] => lookup_486_4(acc), [111, 114, 103] => lookup_486_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_487() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_488() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_489() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_490() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_491() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_492() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_493_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_493_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_493_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_493_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { wild => lookup_493_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_493<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_493_0(acc), [116, 114, 97, 110, 115, 108, 97, 116, 101] => lookup_493_1(acc), [117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => { lookup_493_2(info, labels, acc) } _ => info, }, None => info, } } #[inline] fn lookup_494() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_495() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_496() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_497() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_498_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_498<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 112, 112] => lookup_498_0(acc), [97, 115, 115, 111] => lookup_498_1(acc), [99, 111, 109] => lookup_498_2(acc), [101, 100, 117] => lookup_498_3(acc), [109, 111, 98, 105] => lookup_498_4(acc), [110, 101, 116] => lookup_498_5(acc), [111, 114, 103] => lookup_498_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_499() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_500_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_500_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_500_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_500_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_500_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_500_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_500_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_500<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_500_0(acc), [99, 111, 109] => lookup_500_1(acc), [101, 100, 117] => lookup_500_2(acc), [103, 111, 118] => lookup_500_3(acc), [110, 101, 116] => lookup_500_4(acc), [111, 114, 103] => lookup_500_5(acc), [115, 105, 109, 112, 108, 101, 115, 105, 116, 101] => lookup_500_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_501() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_502() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_503() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_504() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_505() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_506() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_507_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_507<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [100, 105, 115, 99, 111, 117, 114, 115, 101] => lookup_507_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_508() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_509_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_509_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_509_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_509<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103] => lookup_509_0(acc), [99, 111, 109] => lookup_509_1(acc), [100, 101] => lookup_509_2(acc), [101, 100, 117] => lookup_509_3(acc), [103, 111, 98] => lookup_509_4(acc), [105, 110, 100] => lookup_509_5(acc), [109, 105, 108] => lookup_509_6(acc), [110, 101, 116] => lookup_509_7(acc), [111, 114, 103] => lookup_509_8(acc), [116, 111] => lookup_509_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_510_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_510<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_510_0(acc), [101, 100, 117] => lookup_510_1(acc), [103, 111, 118] => lookup_510_2(acc), [103, 117, 97, 109] => lookup_510_3(acc), [105, 110, 102, 111] => lookup_510_4(acc), [110, 101, 116] => lookup_510_5(acc), [111, 114, 103] => lookup_510_6(acc), [119, 101, 98] => lookup_510_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_511() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_512() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_513() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_514() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_515() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_516() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_517() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_518_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_518<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101] => lookup_518_0(acc), [99, 111] => lookup_518_1(acc), [99, 111, 109] => lookup_518_2(acc), [101, 100, 117] => lookup_518_3(acc), [103, 111, 118] => lookup_518_4(acc), [110, 101, 116] => lookup_518_5(acc), [111, 114, 103] => lookup_518_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_519() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_520() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_521() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_522() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_523() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_524() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_525() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_526_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_526<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [104, 114, 97] => lookup_526_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_527() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_528() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_529() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_530() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_531() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_532() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_533() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_534() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_535() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_536_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_536_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_536_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_536_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_11(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_12(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_13(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_15(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_17(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_18(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_19(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_20(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_21(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_22(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_23(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_24(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_31(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_37(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_38(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536_39(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_536<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_536_0(acc), [99, 111, 109] => lookup_536_1(acc), [101, 100, 117] => lookup_536_2(acc), [103, 111, 118] => lookup_536_3(acc), [105, 100, 118] => lookup_536_4(acc), [105, 110, 99] => lookup_536_5(acc), [108, 116, 100] => lookup_536_6(acc), [110, 101, 116] => lookup_536_7(acc), [111, 114, 103] => lookup_536_8(acc), [115, 101, 99, 97, 97, 115] => lookup_536_9(acc), [120, 110, 45, 45, 53, 53, 113, 120, 53, 100] => lookup_536_10(acc), [120, 110, 45, 45, 99, 105, 113, 112, 110] => lookup_536_11(acc), [120, 110, 45, 45, 103, 109, 113, 48, 53, 48, 105] => lookup_536_12(acc), [120, 110, 45, 45, 103, 109, 113, 119, 53, 97] => lookup_536_13(acc), [120, 110, 45, 45, 105, 111, 48, 97, 55, 105] => lookup_536_14(acc), [120, 110, 45, 45, 108, 99, 118, 114, 51, 50, 100] => lookup_536_15(acc), [120, 110, 45, 45, 109, 107, 48, 97, 120, 105] => lookup_536_16(acc), [120, 110, 45, 45, 109, 120, 116, 113, 49, 109] => lookup_536_17(acc), [120, 110, 45, 45, 111, 100, 48, 97, 108, 103] => lookup_536_18(acc), [120, 110, 45, 45, 111, 100, 48, 97, 113, 51, 98] => lookup_536_19(acc), [120, 110, 45, 45, 116, 110, 48, 97, 103] => lookup_536_20(acc), [120, 110, 45, 45, 117, 99, 48, 97, 116, 118] => lookup_536_21(acc), [120, 110, 45, 45, 117, 99, 48, 97, 121, 52, 97] => lookup_536_22(acc), [120, 110, 45, 45, 119, 99, 118, 115, 50, 50, 100] => lookup_536_23(acc), [120, 110, 45, 45, 122, 102, 48, 97, 118, 120] => lookup_536_24(acc), [228, 184, 170, 228, 186, 186] => lookup_536_25(acc), [229, 128, 139, 228, 186, 186] => lookup_536_26(acc), [229, 133, 172, 229, 143, 184] => lookup_536_27(acc), [230, 148, 191, 229, 186, 156] => lookup_536_28(acc), [230, 149, 142, 232, 130, 178] => lookup_536_29(acc), [230, 149, 153, 232, 130, 178] => lookup_536_30(acc), [231, 174, 135, 228, 186, 186] => lookup_536_31(acc), [231, 181, 132, 231, 185, 148] => lookup_536_32(acc), [231, 181, 132, 231, 187, 135] => lookup_536_33(acc), [231, 182, 178, 231, 181, 161] => lookup_536_34(acc), [231, 182, 178, 231, 187, 156] => lookup_536_35(acc), [231, 187, 132, 231, 185, 148] => lookup_536_36(acc), [231, 187, 132, 231, 187, 135] => lookup_536_37(acc), [231, 189, 145, 231, 181, 161] => lookup_536_38(acc), [231, 189, 145, 231, 187, 156] => lookup_536_39(acc), _ => info, }, None => info, } } #[inline] fn lookup_537() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_538() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_539_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_539<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_539_0(acc), [99, 111, 109] => lookup_539_1(acc), [101, 100, 117] => lookup_539_2(acc), [103, 111, 98] => lookup_539_3(acc), [109, 105, 108] => lookup_539_4(acc), [110, 101, 116] => lookup_539_5(acc), [111, 114, 103] => lookup_539_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_540() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_541() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_542() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_543() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_544() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_545() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_546() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_547() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_548() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_549() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_550_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_550_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_550<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 97, 99, 99, 101, 115, 115] => lookup_550_0(acc), [101, 97, 115, 121, 112, 97, 110, 101, 108] => lookup_550_1(acc), [102, 97, 115, 116, 118, 112, 115] => lookup_550_2(acc), [102, 114, 101, 101, 115, 105, 116, 101] => lookup_550_3(acc), [104, 97, 108, 102] => lookup_550_4(acc), [106, 101, 108, 101] => lookup_550_5(acc), [109, 105, 114, 99, 108, 111, 117, 100] => lookup_550_6(acc), [109, 121, 102, 97, 115, 116] => lookup_550_7(acc), [112, 99, 108, 111, 117, 100] => lookup_550_8(acc), [116, 101, 109, 112, 117, 114, 108] => lookup_550_9(acc), [119, 112, 109, 117, 100, 101, 118] => lookup_550_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_551_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_551<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [111, 112, 101, 110, 99, 114, 97, 102, 116] => lookup_551_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_552() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_553() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_554() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_555() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_556() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_557_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_557_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_557_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_557_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_557_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_557_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_557<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_557_0(acc), [99, 111, 109] => lookup_557_1(acc), [102, 114, 101, 101] => lookup_557_2(acc), [102, 114, 111, 109] => lookup_557_3(acc), [105, 122] => lookup_557_4(acc), [110, 97, 109, 101] => lookup_557_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_558() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559_16(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_559<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 100, 117, 108, 116] => lookup_559_0(acc), [97, 114, 116] => lookup_559_1(acc), [97, 115, 115, 111] => lookup_559_2(acc), [99, 111, 109] => lookup_559_3(acc), [99, 111, 111, 112] => lookup_559_4(acc), [101, 100, 117] => lookup_559_5(acc), [102, 105, 114, 109] => lookup_559_6(acc), [103, 111, 117, 118] => lookup_559_7(acc), [105, 110, 102, 111] => lookup_559_8(acc), [109, 101, 100] => lookup_559_9(acc), [110, 101, 116] => lookup_559_10(acc), [111, 114, 103] => lookup_559_11(acc), [112, 101, 114, 115, 111] => lookup_559_12(acc), [112, 111, 108] => lookup_559_13(acc), [112, 114, 111] => lookup_559_14(acc), [114, 101, 108] => lookup_559_15(acc), [115, 104, 111, 112] => lookup_559_16(acc), _ => info, }, None => info, } } #[inline] fn lookup_560_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_560_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_10(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_19(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_20(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_23(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_25(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_27(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_28(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560_31(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_560<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [50, 48, 48, 48] => lookup_560_0(acc), [97, 103, 114, 97, 114] => lookup_560_1(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_560_2(acc), [98, 111, 108, 116] => lookup_560_3(acc), [99, 97, 115, 105, 110, 111] => lookup_560_4(acc), [99, 105, 116, 121] => lookup_560_5(acc), [99, 111] => lookup_560_6(acc), [101, 114, 111, 116, 105, 99, 97] => lookup_560_7(acc), [101, 114, 111, 116, 105, 107, 97] => lookup_560_8(acc), [102, 105, 108, 109] => lookup_560_9(acc), [102, 111, 114, 117, 109] => lookup_560_10(acc), [103, 97, 109, 101, 115] => lookup_560_11(acc), [104, 111, 116, 101, 108] => lookup_560_12(acc), [105, 110, 102, 111] => lookup_560_13(acc), [105, 110, 103, 97, 116, 108, 97, 110] => lookup_560_14(acc), [106, 111, 103, 97, 115, 122] => lookup_560_15(acc), [107, 111, 110, 121, 118, 101, 108, 111] => lookup_560_16(acc), [108, 97, 107, 97, 115] => lookup_560_17(acc), [109, 101, 100, 105, 97] => lookup_560_18(acc), [110, 101, 119, 115] => lookup_560_19(acc), [111, 114, 103] => lookup_560_20(acc), [112, 114, 105, 118] => lookup_560_21(acc), [114, 101, 107, 108, 97, 109] => lookup_560_22(acc), [115, 101, 120] => lookup_560_23(acc), [115, 104, 111, 112] => lookup_560_24(acc), [115, 112, 111, 114, 116] => lookup_560_25(acc), [115, 117, 108, 105] => lookup_560_26(acc), [115, 122, 101, 120] => lookup_560_27(acc), [116, 109] => lookup_560_28(acc), [116, 111, 122, 115, 100, 101] => lookup_560_29(acc), [117, 116, 97, 122, 97, 115] => lookup_560_30(acc), [118, 105, 100, 101, 111] => lookup_560_31(acc), _ => info, }, None => info, } } #[inline] fn lookup_561() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_562() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_563() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_564() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_565() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_566() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_567() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_2_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_568_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_568_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_568_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_568_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_568_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_8_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_568_8_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_568_8_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_568_8<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [114, 115, 115] => lookup_568_8_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_568_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_568<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_568_0(acc), [98, 105, 122] => lookup_568_1(acc), [99, 111] => lookup_568_2(labels, acc), [100, 101, 115, 97] => lookup_568_3(acc), [102, 108, 97, 112] => lookup_568_4(acc), [102, 111, 114, 116, 101] => lookup_568_5(acc), [103, 111] => lookup_568_6(acc), [109, 105, 108] => lookup_568_7(acc), [109, 121] => lookup_568_8(labels, acc), [110, 101, 116] => lookup_568_9(acc), [111, 114] => lookup_568_10(acc), [112, 111, 110, 112, 101, 115] => lookup_568_11(acc), [115, 99, 104] => lookup_568_12(acc), [119, 101, 98] => lookup_568_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_569_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_569_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_569_2(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_569<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_569_0(acc), [103, 111, 118] => lookup_569_1(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_569_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_570() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_571() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_572() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_573_1_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_573_1_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_573_1_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_573_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_573_1_0(acc), [109, 121, 116, 97, 98, 105, 116] => lookup_573_1_1(acc), [114, 97, 118, 112, 97, 103, 101] => lookup_573_1_2(acc), [116, 97, 98, 105, 116, 111, 114, 100, 101, 114] => lookup_573_1_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_573_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_573<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_573_0(acc), [99, 111] => lookup_573_1(labels, acc), [103, 111, 118] => lookup_573_2(acc), [105, 100, 102] => lookup_573_3(acc), [107, 49, 50] => lookup_573_4(acc), [109, 117, 110, 105] => lookup_573_5(acc), [110, 101, 116] => lookup_573_6(acc), [111, 114, 103] => lookup_573_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_574_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_1_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [108, 116, 100] => lookup_574_1_0(acc), [112, 108, 99] => lookup_574_1_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_574_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_574_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_574<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_574_0(acc), [99, 111] => lookup_574_1(labels, acc), [99, 111, 109] => lookup_574_2(acc), [110, 101, 116] => lookup_574_3(acc), [111, 114, 103] => lookup_574_4(acc), [114, 111] => lookup_574_5(acc), [116, 116] => lookup_574_6(acc), [116, 118] => lookup_574_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_575() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_576() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_577() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_578() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_579_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_579_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_579_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_13_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_579_13<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 121, 99, 108, 105, 99] => lookup_579_13_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_579_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_18(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_22(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_23(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_28(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_29(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_30(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_31(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_32(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_33(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_34(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_35(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_36(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_37(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_38(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_39(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_579_40(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_41(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_42(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_43(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_44(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_579_45(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_579<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [53, 103] => lookup_579_0(acc), [54, 103] => lookup_579_1(acc), [97, 99] => lookup_579_2(acc), [97, 105] => lookup_579_3(acc), [97, 109] => lookup_579_4(acc), [98, 97, 114, 115, 121] => lookup_579_5(acc), [98, 105, 104, 97, 114] => lookup_579_6(acc), [98, 105, 122] => lookup_579_7(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_579_8(acc), [98, 117, 115, 105, 110, 101, 115, 115] => lookup_579_9(acc), [99, 97] => lookup_579_10(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_579_11(acc), [99, 110] => lookup_579_12(acc), [99, 111] => lookup_579_13(labels, acc), [99, 111, 109] => lookup_579_14(acc), [99, 111, 111, 112] => lookup_579_15(acc), [99, 115] => lookup_579_16(acc), [100, 101, 108, 104, 105] => lookup_579_17(acc), [100, 114] => lookup_579_18(acc), [101, 100, 117] => lookup_579_19(acc), [101, 114] => lookup_579_20(acc), [102, 105, 114, 109] => lookup_579_21(acc), [103, 101, 110] => lookup_579_22(acc), [103, 111, 118] => lookup_579_23(acc), [103, 117, 106, 97, 114, 97, 116] => lookup_579_24(acc), [105, 110, 100] => lookup_579_25(acc), [105, 110, 102, 111] => lookup_579_26(acc), [105, 110, 116] => lookup_579_27(acc), [105, 110, 116, 101, 114, 110, 101, 116] => lookup_579_28(acc), [105, 111] => lookup_579_29(acc), [109, 101] => lookup_579_30(acc), [109, 105, 108] => lookup_579_31(acc), [110, 101, 116] => lookup_579_32(acc), [110, 105, 99] => lookup_579_33(acc), [111, 114, 103] => lookup_579_34(acc), [112, 103] => lookup_579_35(acc), [112, 111, 115, 116] => lookup_579_36(acc), [112, 114, 111] => lookup_579_37(acc), [114, 101, 115] => lookup_579_38(acc), [115, 117, 112, 97, 98, 97, 115, 101] => lookup_579_39(acc), [116, 114, 97, 118, 101, 108] => lookup_579_40(acc), [116, 118] => lookup_579_41(acc), [117, 107] => lookup_579_42(acc), [117, 112] => lookup_579_43(acc), [117, 115] => lookup_579_44(acc), [119, 101, 98] => lookup_579_45(acc), _ => info, }, None => info, } } #[inline] fn lookup_580() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_581() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_582() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_583_0(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_1(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_6(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_12(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_13(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_583_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_583<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 114, 101, 108, 45, 111, 102, 45, 107, 110, 111, 119, 108, 101, 100, 103, 101] => { lookup_583_0(acc) } [98, 97, 114, 114, 101, 108, 108, 45, 111, 102, 45, 107, 110, 111, 119, 108, 101, 100, 103, 101] => { lookup_583_1(acc) } [98, 97, 114, 115, 121] => lookup_583_2(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_583_3(acc), [100, 110, 115, 117, 112, 100, 97, 116, 101] => lookup_583_4(acc), [100, 118, 114, 99, 97, 109] => lookup_583_5(acc), [100, 121, 110, 97, 109, 105, 99, 45, 100, 110, 115] => lookup_583_6(acc), [100, 121, 110, 100, 110, 115] => lookup_583_7(acc), [102, 111, 114, 45, 111, 117, 114] => lookup_583_8(acc), [102, 111, 114, 117, 109, 122] => lookup_583_9(acc), [103, 114, 111, 107, 115, 45, 116, 104, 101] => lookup_583_10(acc), [103, 114, 111, 107, 115, 45, 116, 104, 105, 115] => lookup_583_11(acc), [104, 101, 114, 101, 45, 102, 111, 114, 45, 109, 111, 114, 101] => lookup_583_12(acc), [105, 108, 111, 118, 101, 99, 111, 108, 108, 101, 103, 101] => lookup_583_13(acc), [107, 110, 111, 119, 115, 105, 116, 97, 108, 108] => lookup_583_14(acc), [109, 97, 121, 102, 105, 114, 115, 116] => lookup_583_15(acc), [110, 111, 45, 105, 112] => lookup_583_16(acc), [110, 115, 117, 112, 100, 97, 116, 101] => lookup_583_17(acc), [115, 101, 108, 102, 105, 112] => lookup_583_18(acc), [118, 45, 105, 110, 102, 111] => lookup_583_19(acc), [119, 101, 98, 104, 111, 112] => lookup_583_20(acc), _ => info, }, None => info, } } #[inline] fn lookup_584() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_585() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_586() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_587() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_588() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_589_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_589<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 117] => lookup_589_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_590() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_591() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_592() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_593_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { wild => lookup_593_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_4(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_5_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_5_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_5_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_593_5_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [97, 112, 112] => lookup_593_5_0(acc), [98, 97, 99, 107, 121, 97, 114, 100, 115] => lookup_593_5_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_593_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_8(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_9_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [112, 97, 97, 115] => lookup_593_9_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_10_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_10<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [115, 101, 107, 100, 49] => lookup_593_10_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_11_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [117, 107, 48] => lookup_593_11_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_15_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_15_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 1usize; match labels.next() { Some(label) => match label { wild => lookup_593_15_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_15<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [115] => lookup_593_15_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_593_16(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_17(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_593_19_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_19<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [100, 121, 110, 100, 110, 115] => lookup_593_19_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_26(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_27_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_27<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [105, 100] => lookup_593_27_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_31(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_32(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_33(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_34(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_35_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_35<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [97, 112, 112, 115] => lookup_593_35_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_36(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_38(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_39_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_39<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_593_39_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_40(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_41<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [97, 112] => lookup_593_41_0(acc), [97, 117] => lookup_593_41_1(acc), [101, 117] => lookup_593_41_2(acc), [105, 110] => lookup_593_41_3(acc), [106, 112] => lookup_593_41_4(acc), [115, 97] => lookup_593_41_5(acc), [117, 115] => lookup_593_41_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_42(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_43_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_43<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [115, 116, 97, 103, 101] => lookup_593_43_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_44_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_44<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_593_44_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_45_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_45<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_593_45_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_46_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_46<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_593_46_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_47(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_48(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_49_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_49<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [109, 111, 99, 107] => lookup_593_49_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_50_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_50_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_593_50_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_50<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [115, 121, 115] => lookup_593_50_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_593_51(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_52(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_53(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_54_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_54<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [100, 101, 118, 105, 99, 101, 115] => lookup_593_54_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_55_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_55<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_593_55_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_56(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_57(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_58(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_59(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_60(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_61_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_593_61<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_593_61_0(wild, acc), }, None => info, } } #[inline] fn lookup_593_62(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_0_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [99, 117, 115, 116] => lookup_593_63_0_0(acc), [114, 101, 115, 101, 114, 118, 100] => lookup_593_63_0_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_63_1_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_1_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 117, 115, 116] => lookup_593_63_1_0(acc), [114, 101, 115, 101, 114, 118, 100] => lookup_593_63_1_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_63_2_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [99, 117, 115, 116] => lookup_593_63_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_63_3_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_3_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_63_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [99, 117, 115, 116] => lookup_593_63_3_0(acc), [114, 101, 115, 101, 114, 118, 100] => lookup_593_63_3_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_63<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [100, 101, 118] => lookup_593_63_0(info, labels, acc), [100, 105, 115, 114, 101, 99] => lookup_593_63_1(info, labels, acc), [112, 114, 111, 100] => lookup_593_63_2(info, labels, acc), [116, 101, 115, 116, 105, 110, 103] => lookup_593_63_3(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_593_64(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_65_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_65<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 45, 102, 114, 49] => lookup_593_65_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_66(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_67(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_68(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_69_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_69<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [103] => lookup_593_69_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_593_70(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_71(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_72(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_593_73(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_593<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [50, 48, 51, 56] => lookup_593_0(acc), [97, 112, 105, 103, 101, 101] => lookup_593_1(acc), [97, 122, 117, 114, 101, 99, 111, 110, 116, 97, 105, 110, 101, 114] => { lookup_593_2(info, labels, acc) } [98, 45, 100, 97, 116, 97] => lookup_593_3(acc), [98, 97, 99, 107, 112, 108, 97, 110, 101, 97, 112, 112] => lookup_593_4(acc), [98, 97, 110, 122, 97, 105, 99, 108, 111, 117, 100] => lookup_593_5(info, labels, acc), [98, 97, 114, 115, 121] => lookup_593_6(acc), [98, 97, 115, 105, 99, 115, 101, 114, 118, 101, 114] => lookup_593_7(acc), [98, 101, 97, 103, 108, 101, 98, 111, 97, 114, 100] => lookup_593_8(acc), [98, 101, 101, 98, 121, 116, 101] => lookup_593_9(info, labels, acc), [98, 101, 101, 98, 121, 116, 101, 97, 112, 112] => lookup_593_10(info, labels, acc), [98, 105, 103, 118] => lookup_593_11(info, labels, acc), [98, 105, 116, 98, 117, 99, 107, 101, 116] => lookup_593_12(acc), [98, 108, 117, 101, 98, 105, 116, 101] => lookup_593_13(acc), [98, 111, 120, 102, 117, 115, 101] => lookup_593_14(acc), [98, 114, 97, 118, 101] => lookup_593_15(info, labels, acc), [98, 114, 111, 119, 115, 101, 114, 115, 97, 102, 101, 116, 121, 109, 97, 114, 107] => { lookup_593_16(acc) } [99, 108, 101, 118, 101, 114, 97, 112, 112, 115] => lookup_593_17(acc), [99, 111, 109] => lookup_593_18(acc), [100, 97, 112, 112, 110, 111, 100, 101] => lookup_593_19(info, labels, acc), [100, 101, 100, 121, 110] => lookup_593_20(acc), [100, 101, 102, 105, 110, 105, 109, 97] => lookup_593_21(acc), [100, 114, 117, 100] => lookup_593_22(acc), [100, 121, 110, 53, 51] => lookup_593_23(acc), [101, 100, 105, 116, 111, 114, 120] => lookup_593_24(acc), [101, 100, 117, 103, 105, 116] => lookup_593_25(acc), [102, 104, 45, 109, 117, 101, 110, 115, 116, 101, 114] => lookup_593_26(acc), [102, 111, 114, 103, 101, 114, 111, 99, 107] => lookup_593_27(info, labels, acc), [103, 104, 111, 115, 116] => lookup_593_28(acc), [103, 105, 116, 104, 117, 98] => lookup_593_29(acc), [103, 105, 116, 108, 97, 98] => lookup_593_30(acc), [104, 97, 115, 117, 114, 97, 45, 97, 112, 112] => lookup_593_31(acc), [104, 111, 115, 116, 121, 104, 111, 115, 116, 105, 110, 103] => lookup_593_32(acc), [104, 122, 99] => lookup_593_33(acc), [106, 101, 108, 101] => lookup_593_34(acc), [108, 97, 105, 114] => lookup_593_35(info, labels, acc), [108, 111, 103, 105, 110, 108, 105, 110, 101] => lookup_593_36(acc), [108, 111, 108, 105, 112, 111, 112] => lookup_593_37(acc), [109, 111, 45, 115, 105, 101, 109, 101, 110, 115] => lookup_593_38(acc), [109, 111, 111, 110, 115, 99, 97, 108, 101] => lookup_593_39(info, labels, acc), [109, 117, 115, 105, 99, 105, 97, 110] => lookup_593_40(acc), [110, 103, 114, 111, 107] => lookup_593_41(labels, acc), [110, 105, 100] => lookup_593_42(acc), [110, 111, 100, 101, 97, 114, 116] => lookup_593_43(info, labels, acc), [111, 110, 45, 97, 99, 111, 114, 110] => lookup_593_44(info, labels, acc), [111, 110, 45, 107, 51, 115] => lookup_593_45(info, labels, acc), [111, 110, 45, 114, 105, 111] => lookup_593_46(info, labels, acc), [112, 97, 110, 116, 104, 101, 111, 110, 115, 105, 116, 101] => lookup_593_47(acc), [112, 114, 111, 116, 111, 110, 101, 116] => lookup_593_48(acc), [112, 115, 116, 109, 110] => lookup_593_49(labels, acc), [113, 99, 120] => lookup_593_50(labels, acc), [113, 111, 116, 111] => lookup_593_51(acc), [114, 101, 97, 100, 116, 104, 101, 100, 111, 99, 115] => lookup_593_52(acc), [114, 101, 115, 105, 110, 100, 101, 118, 105, 99, 101] => lookup_593_53(acc), [114, 101, 115, 105, 110, 115, 116, 97, 103, 105, 110, 103] => { lookup_593_54(info, labels, acc) } [115, 53, 121] => lookup_593_55(info, labels, acc), [115, 97, 110, 100, 99, 97, 116, 115] => lookup_593_56(acc), [115, 104, 105, 102, 116, 99, 114, 121, 112, 116, 111] => lookup_593_57(acc), [115, 104, 105, 102, 116, 101, 100, 105, 116] => lookup_593_58(acc), [115, 104, 119] => lookup_593_59(acc), [115, 112, 97, 99, 101, 107, 105, 116] => lookup_593_60(acc), [115, 116, 111, 108, 111, 115] => lookup_593_61(info, labels, acc), [116, 101, 108, 101, 98, 105, 116] => lookup_593_62(acc), [116, 104, 105, 110, 103, 100, 117, 115, 116] => lookup_593_63(info, labels, acc), [116, 105, 99, 107, 101, 116, 115] => lookup_593_64(acc), [117, 110, 105, 115, 112, 97, 99, 101] => lookup_593_65(info, labels, acc), [117, 112, 108, 105] => lookup_593_66(acc), [117, 116, 119, 101, 110, 116, 101] => lookup_593_67(acc), [118, 97, 112, 111, 114, 99, 108, 111, 117, 100] => lookup_593_68(acc), [118, 98, 114, 112, 108, 115, 98, 120] => lookup_593_69(info, labels, acc), [118, 105, 114, 116, 117, 97, 108, 115, 101, 114, 118, 101, 114] => lookup_593_70(acc), [119, 101, 98, 116, 104, 105, 110, 103, 115] => lookup_593_71(acc), [119, 101, 100, 101, 112, 108, 111, 121] => lookup_593_72(acc), [119, 105, 120, 115, 116, 117, 100, 105, 111] => lookup_593_73(acc), _ => info, }, None => info, } } #[inline] fn lookup_594() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_595<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_595_0(acc), [101, 100, 117] => lookup_595_1(acc), [103, 111, 118] => lookup_595_2(acc), [109, 105, 108] => lookup_595_3(acc), [110, 101, 116] => lookup_595_4(acc), [111, 114, 103] => lookup_595_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_596_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_7(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_9(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_596<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_596_0(acc), [99, 111] => lookup_596_1(acc), [103, 111, 118] => lookup_596_2(acc), [105, 100] => lookup_596_3(acc), [110, 101, 116] => lookup_596_4(acc), [111, 114, 103] => lookup_596_5(acc), [115, 99, 104] => lookup_596_6(acc), [120, 110, 45, 45, 109, 103, 98, 97, 51, 97, 52, 102, 49, 54, 97] => lookup_596_7(acc), [120, 110, 45, 45, 109, 103, 98, 97, 51, 97, 52, 102, 114, 97] => lookup_596_8(acc), [216, 167, 217, 138, 216, 177, 216, 167, 217, 134] => lookup_596_9(acc), [216, 167, 219, 140, 216, 177, 216, 167, 217, 134] => lookup_596_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_597() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_598_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_598_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_598<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_598_0(acc), [99, 111, 109] => lookup_598_1(acc), [99, 117, 112, 99, 97, 107, 101] => lookup_598_2(acc), [101, 100, 117] => lookup_598_3(acc), [103, 111, 118] => lookup_598_4(acc), [105, 110, 116] => lookup_598_5(acc), [110, 101, 116] => lookup_598_6(acc), [111, 114, 103] => lookup_598_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_599() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_600() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_601() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_8(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_10(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_15(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_16(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_17(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_18(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_21(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_22(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_25(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_27(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_29(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_30(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_31(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_32(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_33(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_34(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_35(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_37(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_38(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_39(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_40(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_41(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_42(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_43(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_44(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_45(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_46(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_48(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_49(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_50(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_51(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_52(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_53(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_54(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_55(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_56(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_57(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_58(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_59(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_60(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_61(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_62(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_63(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_64(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_65(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_66(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_67(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_68(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_69(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_70(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_71(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_72(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_73(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_74(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_75(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_76(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_77(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_78(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_79(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_80(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_81(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_82(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_83(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_84(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_85(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_86(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_87(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_88(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_89(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_90(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_91(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_92(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_93(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_94(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_95(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_96(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_97(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_98(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_99(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_100(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_101(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_102(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_103(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_104(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_105(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_106(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_107(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_108(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_109(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_110(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_111(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_112(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_113(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_114(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_115(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_116(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_117(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_118(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_119(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_120(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_121(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_122(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_123(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_124(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_125(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_126(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_127(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_128(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_129(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_130(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_131(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_132(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_133(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_134(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_135(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_136(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_137(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_138(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_139(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_140(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_141(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_142(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_143(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_144(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_145(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_146(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_147(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_148(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_149(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_150(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_151(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_152(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_153(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_154(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_155(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_156(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_157(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_158(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_159(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_160(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_161(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_162(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_163(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_164(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_165(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_166(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_167(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_168(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_169(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_170(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_171(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_172(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_173(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_174(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_175(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_176(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_177(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_178(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_179(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_180(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_181(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_182(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_183(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_184(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_185(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_186(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_187(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_188(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_189(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_190(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_191(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_192(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_193(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_194(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_195(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_196(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_197(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_198(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_199(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_200(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_201(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_202(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_203(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_204(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_205(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_206(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_207(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_208(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_209(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_210(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_211(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_212(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_213(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_214(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_215(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_216(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_217(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_218(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_219(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_220_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_220<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [106, 99] => lookup_602_220_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_602_221(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_222(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_223(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_224(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_225(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_226(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_227(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_228(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_229(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_230(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_231(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_232(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_233(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_234(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_235(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_236(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_237(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_238(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_239(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_240(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_241(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_242(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_243(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_244(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_245(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_246(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_247(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_248(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_249(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_250(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_251(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_252(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_253(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_254(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_255(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_256(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_257(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_258(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_259(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_260(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_261(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_262(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_263(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_264(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_265(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_266(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_267(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_268(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_269(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_270(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_271(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_272(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_273(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_274(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_275(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_276(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_277(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_278(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_279(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_280(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_281(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_282(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_283(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_284(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_285(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_286(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_287(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_288(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_289(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_290(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_291(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_292(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_293(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_294(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_295(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_296(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_297(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_298(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_299(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_300(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_301(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_302(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_303(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_304(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_305(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_306(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_307(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_308(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_309(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_310(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_311(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_312(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_313(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_314_0_0_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_602_314_0_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_602_314_0_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_602_314_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [106, 101, 108, 97, 115, 116, 105, 99] => lookup_602_314_0_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_602_314<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [111, 112, 101, 110] => lookup_602_314_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_602_315(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_316(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_317(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_318(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_319(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_320(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_321(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_322(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_323(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_324(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_325(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_326(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_327(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_328(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_329(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_330(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_331(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_332(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_333(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_334(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_335(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_336(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_337(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_338(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_339(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_340(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_341(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_342(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_343(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_344(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_345(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_346(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_347(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_348(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_349(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_350(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_351(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_352(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_353(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_354(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_355(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_356(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_357(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_358(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_359(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_360(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_361(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_362(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_363(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_364(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_365(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_366(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_367(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_368(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_369(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_370(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_371(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_372(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_373(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_374(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_375(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_376(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_377(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_378(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_379(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_380(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_381(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_382(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_383(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_384(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_385(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_386(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_387(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_388(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_389(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_390(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_391(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_392(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_393(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_394(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_395(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_396(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_397(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_398(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_399(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_400(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_401(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_402(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_403(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_404(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_405(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_406(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_407(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_408(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_409(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_410(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_411(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_412(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_413(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_414(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_415(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_416(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_417(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_418(acc: usize) -> Info { Info { len: acc + 1 + 22usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_419(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_420(acc: usize) -> Info { Info { len: acc + 1 + 22usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_421(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_422(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_423(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_424(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_425(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_426(acc: usize) -> Info { Info { len: acc + 1 + 24usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_427(acc: usize) -> Info { Info { len: acc + 1 + 23usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_428(acc: usize) -> Info { Info { len: acc + 1 + 25usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_429(acc: usize) -> Info { Info { len: acc + 1 + 24usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_430(acc: usize) -> Info { Info { len: acc + 1 + 24usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_431(acc: usize) -> Info { Info { len: acc + 1 + 23usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_432(acc: usize) -> Info { Info { len: acc + 1 + 23usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_433(acc: usize) -> Info { Info { len: acc + 1 + 22usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_434(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_435(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_436(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602_437(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_602<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 104, 111, 109, 101, 112, 97, 103, 101] => lookup_602_0(acc), [49, 50, 99, 104, 97, 114, 115] => lookup_602_1(acc), [49, 54, 45, 98] => lookup_602_2(acc), [51, 50, 45, 98] => lookup_602_3(acc), [54, 52, 45, 98] => lookup_602_4(acc), [97, 98, 114] => lookup_602_5(acc), [97, 98, 114, 117, 122, 122, 111] => lookup_602_6(acc), [97, 103] => lookup_602_7(acc), [97, 103, 114, 105, 103, 101, 110, 116, 111] => lookup_602_8(acc), [97, 108] => lookup_602_9(acc), [97, 108, 101, 115, 115, 97, 110, 100, 114, 105, 97] => lookup_602_10(acc), [97, 108, 116, 111, 45, 97, 100, 105, 103, 101] => lookup_602_11(acc), [97, 108, 116, 111, 97, 100, 105, 103, 101] => lookup_602_12(acc), [97, 110] => lookup_602_13(acc), [97, 110, 99, 111, 110, 97] => lookup_602_14(acc), [97, 110, 100, 114, 105, 97, 45, 98, 97, 114, 108, 101, 116, 116, 97, 45, 116, 114, 97, 110, 105] => { lookup_602_15(acc) } [97, 110, 100, 114, 105, 97, 45, 116, 114, 97, 110, 105, 45, 98, 97, 114, 108, 101, 116, 116, 97] => { lookup_602_16(acc) } [97, 110, 100, 114, 105, 97, 98, 97, 114, 108, 101, 116, 116, 97, 116, 114, 97, 110, 105] => { lookup_602_17(acc) } [97, 110, 100, 114, 105, 97, 116, 114, 97, 110, 105, 98, 97, 114, 108, 101, 116, 116, 97] => { lookup_602_18(acc) } [97, 111] => lookup_602_19(acc), [97, 111, 115, 116, 97] => lookup_602_20(acc), [97, 111, 115, 116, 97, 45, 118, 97, 108, 108, 101, 121] => lookup_602_21(acc), [97, 111, 115, 116, 97, 118, 97, 108, 108, 101, 121] => lookup_602_22(acc), [97, 111, 115, 116, 101] => lookup_602_23(acc), [97, 112] => lookup_602_24(acc), [97, 113] => lookup_602_25(acc), [97, 113, 117, 105, 108, 97] => lookup_602_26(acc), [97, 114] => lookup_602_27(acc), [97, 114, 101, 122, 122, 111] => lookup_602_28(acc), [97, 115, 99, 111, 108, 105, 45, 112, 105, 99, 101, 110, 111] => lookup_602_29(acc), [97, 115, 99, 111, 108, 105, 112, 105, 99, 101, 110, 111] => lookup_602_30(acc), [97, 115, 116, 105] => lookup_602_31(acc), [97, 116] => lookup_602_32(acc), [97, 118] => lookup_602_33(acc), [97, 118, 101, 108, 108, 105, 110, 111] => lookup_602_34(acc), [98, 97] => lookup_602_35(acc), [98, 97, 108, 115, 97, 110] => lookup_602_36(acc), [98, 97, 108, 115, 97, 110, 45, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_37(acc) } [98, 97, 108, 115, 97, 110, 45, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_38(acc) } [98, 97, 108, 115, 97, 110, 45, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_39(acc) } [98, 97, 114, 105] => lookup_602_40(acc), [98, 97, 114, 108, 101, 116, 116, 97, 45, 116, 114, 97, 110, 105, 45, 97, 110, 100, 114, 105, 97] => { lookup_602_41(acc) } [98, 97, 114, 108, 101, 116, 116, 97, 116, 114, 97, 110, 105, 97, 110, 100, 114, 105, 97] => { lookup_602_42(acc) } [98, 97, 115] => lookup_602_43(acc), [98, 97, 115, 105, 108, 105, 99, 97, 116, 97] => lookup_602_44(acc), [98, 101, 108, 108, 117, 110, 111] => lookup_602_45(acc), [98, 101, 110, 101, 118, 101, 110, 116, 111] => lookup_602_46(acc), [98, 101, 114, 103, 97, 109, 111] => lookup_602_47(acc), [98, 103] => lookup_602_48(acc), [98, 105] => lookup_602_49(acc), [98, 105, 101, 108, 108, 97] => lookup_602_50(acc), [98, 108] => lookup_602_51(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_602_52(acc), [98, 110] => lookup_602_53(acc), [98, 111] => lookup_602_54(acc), [98, 111, 108, 111, 103, 110, 97] => lookup_602_55(acc), [98, 111, 108, 122, 97, 110, 111] => lookup_602_56(acc), [98, 111, 108, 122, 97, 110, 111, 45, 97, 108, 116, 111, 97, 100, 105, 103, 101] => { lookup_602_57(acc) } [98, 111, 122, 101, 110] => lookup_602_58(acc), [98, 111, 122, 101, 110, 45, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_59(acc) } [98, 111, 122, 101, 110, 45, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_60(acc) } [98, 111, 122, 101, 110, 45, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_61(acc) } [98, 114] => lookup_602_62(acc), [98, 114, 101, 115, 99, 105, 97] => lookup_602_63(acc), [98, 114, 105, 110, 100, 105, 115, 105] => lookup_602_64(acc), [98, 115] => lookup_602_65(acc), [98, 116] => lookup_602_66(acc), [98, 117, 108, 115, 97, 110] => lookup_602_67(acc), [98, 117, 108, 115, 97, 110, 45, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_68(acc) } [98, 117, 108, 115, 97, 110, 45, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_69(acc) } [98, 117, 108, 115, 97, 110, 45, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_70(acc) } [98, 122] => lookup_602_71(acc), [99, 97] => lookup_602_72(acc), [99, 97, 103, 108, 105, 97, 114, 105] => lookup_602_73(acc), [99, 97, 108] => lookup_602_74(acc), [99, 97, 108, 97, 98, 114, 105, 97] => lookup_602_75(acc), [99, 97, 108, 116, 97, 110, 105, 115, 115, 101, 116, 116, 97] => lookup_602_76(acc), [99, 97, 109] => lookup_602_77(acc), [99, 97, 109, 112, 97, 110, 105, 97] => lookup_602_78(acc), [99, 97, 109, 112, 105, 100, 97, 110, 111, 45, 109, 101, 100, 105, 111] => { lookup_602_79(acc) } [99, 97, 109, 112, 105, 100, 97, 110, 111, 109, 101, 100, 105, 111] => { lookup_602_80(acc) } [99, 97, 109, 112, 111, 98, 97, 115, 115, 111] => lookup_602_81(acc), [99, 97, 114, 98, 111, 110, 105, 97, 45, 105, 103, 108, 101, 115, 105, 97, 115] => { lookup_602_82(acc) } [99, 97, 114, 98, 111, 110, 105, 97, 105, 103, 108, 101, 115, 105, 97, 115] => { lookup_602_83(acc) } [99, 97, 114, 114, 97, 114, 97, 45, 109, 97, 115, 115, 97] => lookup_602_84(acc), [99, 97, 114, 114, 97, 114, 97, 109, 97, 115, 115, 97] => lookup_602_85(acc), [99, 97, 115, 101, 114, 116, 97] => lookup_602_86(acc), [99, 97, 116, 97, 110, 105, 97] => lookup_602_87(acc), [99, 97, 116, 97, 110, 122, 97, 114, 111] => lookup_602_88(acc), [99, 98] => lookup_602_89(acc), [99, 101] => lookup_602_90(acc), [99, 101, 115, 101, 110, 97, 45, 102, 111, 114, 108, 105] => lookup_602_91(acc), [99, 101, 115, 101, 110, 97, 45, 102, 111, 114, 108, 195, 172] => lookup_602_92(acc), [99, 101, 115, 101, 110, 97, 102, 111, 114, 108, 105] => lookup_602_93(acc), [99, 101, 115, 101, 110, 97, 102, 111, 114, 108, 195, 172] => lookup_602_94(acc), [99, 104] => lookup_602_95(acc), [99, 104, 105, 101, 116, 105] => lookup_602_96(acc), [99, 105] => lookup_602_97(acc), [99, 108] => lookup_602_98(acc), [99, 110] => lookup_602_99(acc), [99, 111] => lookup_602_100(acc), [99, 111, 109, 111] => lookup_602_101(acc), [99, 111, 115, 101, 110, 122, 97] => lookup_602_102(acc), [99, 114] => lookup_602_103(acc), [99, 114, 101, 109, 111, 110, 97] => lookup_602_104(acc), [99, 114, 111, 116, 111, 110, 101] => lookup_602_105(acc), [99, 115] => lookup_602_106(acc), [99, 116] => lookup_602_107(acc), [99, 117, 110, 101, 111] => lookup_602_108(acc), [99, 122] => lookup_602_109(acc), [100, 101, 108, 108, 45, 111, 103, 108, 105, 97, 115, 116, 114, 97] => { lookup_602_110(acc) } [100, 101, 108, 108, 111, 103, 108, 105, 97, 115, 116, 114, 97] => lookup_602_111(acc), [101, 100, 117] => lookup_602_112(acc), [101, 109, 105, 108, 105, 97, 45, 114, 111, 109, 97, 103, 110, 97] => { lookup_602_113(acc) } [101, 109, 105, 108, 105, 97, 114, 111, 109, 97, 103, 110, 97] => lookup_602_114(acc), [101, 109, 114] => lookup_602_115(acc), [101, 110] => lookup_602_116(acc), [101, 110, 110, 97] => lookup_602_117(acc), [102, 99] => lookup_602_118(acc), [102, 101] => lookup_602_119(acc), [102, 101, 114, 109, 111] => lookup_602_120(acc), [102, 101, 114, 114, 97, 114, 97] => lookup_602_121(acc), [102, 103] => lookup_602_122(acc), [102, 105] => lookup_602_123(acc), [102, 105, 114, 101, 110, 122, 101] => lookup_602_124(acc), [102, 108, 111, 114, 101, 110, 99, 101] => lookup_602_125(acc), [102, 109] => lookup_602_126(acc), [102, 111, 103, 103, 105, 97] => lookup_602_127(acc), [102, 111, 114, 108, 105, 45, 99, 101, 115, 101, 110, 97] => lookup_602_128(acc), [102, 111, 114, 108, 105, 99, 101, 115, 101, 110, 97] => lookup_602_129(acc), [102, 111, 114, 108, 195, 172, 45, 99, 101, 115, 101, 110, 97] => lookup_602_130(acc), [102, 111, 114, 108, 195, 172, 99, 101, 115, 101, 110, 97] => lookup_602_131(acc), [102, 114] => lookup_602_132(acc), [102, 114, 105, 117, 108, 105, 45, 118, 45, 103, 105, 117, 108, 105, 97] => { lookup_602_133(acc) } [102, 114, 105, 117, 108, 105, 45, 118, 101, 45, 103, 105, 117, 108, 105, 97] => { lookup_602_134(acc) } [102, 114, 105, 117, 108, 105, 45, 118, 101, 103, 105, 117, 108, 105, 97] => { lookup_602_135(acc) } [102, 114, 105, 117, 108, 105, 45, 118, 101, 110, 101, 122, 105, 97, 45, 103, 105, 117, 108, 105, 97] => { lookup_602_136(acc) } [102, 114, 105, 117, 108, 105, 45, 118, 101, 110, 101, 122, 105, 97, 103, 105, 117, 108, 105, 97] => { lookup_602_137(acc) } [102, 114, 105, 117, 108, 105, 45, 118, 103, 105, 117, 108, 105, 97] => { lookup_602_138(acc) } [102, 114, 105, 117, 108, 105, 118, 45, 103, 105, 117, 108, 105, 97] => { lookup_602_139(acc) } [102, 114, 105, 117, 108, 105, 118, 101, 45, 103, 105, 117, 108, 105, 97] => { lookup_602_140(acc) } [102, 114, 105, 117, 108, 105, 118, 101, 103, 105, 117, 108, 105, 97] => { lookup_602_141(acc) } [102, 114, 105, 117, 108, 105, 118, 101, 110, 101, 122, 105, 97, 45, 103, 105, 117, 108, 105, 97] => { lookup_602_142(acc) } [102, 114, 105, 117, 108, 105, 118, 101, 110, 101, 122, 105, 97, 103, 105, 117, 108, 105, 97] => { lookup_602_143(acc) } [102, 114, 105, 117, 108, 105, 118, 103, 105, 117, 108, 105, 97] => lookup_602_144(acc), [102, 114, 111, 115, 105, 110, 111, 110, 101] => lookup_602_145(acc), [102, 118, 103] => lookup_602_146(acc), [103, 101] => lookup_602_147(acc), [103, 101, 110, 111, 97] => lookup_602_148(acc), [103, 101, 110, 111, 118, 97] => lookup_602_149(acc), [103, 111] => lookup_602_150(acc), [103, 111, 114, 105, 122, 105, 97] => lookup_602_151(acc), [103, 111, 118] => lookup_602_152(acc), [103, 114] => lookup_602_153(acc), [103, 114, 111, 115, 115, 101, 116, 111] => lookup_602_154(acc), [105, 98, 120, 111, 115] => lookup_602_155(acc), [105, 103, 108, 101, 115, 105, 97, 115, 45, 99, 97, 114, 98, 111, 110, 105, 97] => { lookup_602_156(acc) } [105, 103, 108, 101, 115, 105, 97, 115, 99, 97, 114, 98, 111, 110, 105, 97] => { lookup_602_157(acc) } [105, 108, 105, 97, 100, 98, 111, 120, 111, 115] => lookup_602_158(acc), [105, 109] => lookup_602_159(acc), [105, 109, 112, 101, 114, 105, 97] => lookup_602_160(acc), [105, 115] => lookup_602_161(acc), [105, 115, 101, 114, 110, 105, 97] => lookup_602_162(acc), [107, 114] => lookup_602_163(acc), [108, 97, 45, 115, 112, 101, 122, 105, 97] => lookup_602_164(acc), [108, 97, 113, 117, 105, 108, 97] => lookup_602_165(acc), [108, 97, 115, 112, 101, 122, 105, 97] => lookup_602_166(acc), [108, 97, 116, 105, 110, 97] => lookup_602_167(acc), [108, 97, 122] => lookup_602_168(acc), [108, 97, 122, 105, 111] => lookup_602_169(acc), [108, 99] => lookup_602_170(acc), [108, 101] => lookup_602_171(acc), [108, 101, 99, 99, 101] => lookup_602_172(acc), [108, 101, 99, 99, 111] => lookup_602_173(acc), [108, 105] => lookup_602_174(acc), [108, 105, 103] => lookup_602_175(acc), [108, 105, 103, 117, 114, 105, 97] => lookup_602_176(acc), [108, 105, 118, 111, 114, 110, 111] => lookup_602_177(acc), [108, 111] => lookup_602_178(acc), [108, 111, 100, 105] => lookup_602_179(acc), [108, 111, 109] => lookup_602_180(acc), [108, 111, 109, 98, 97, 114, 100, 105, 97] => lookup_602_181(acc), [108, 111, 109, 98, 97, 114, 100, 121] => lookup_602_182(acc), [108, 116] => lookup_602_183(acc), [108, 117] => lookup_602_184(acc), [108, 117, 99, 97, 110, 105, 97] => lookup_602_185(acc), [108, 117, 99, 99, 97] => lookup_602_186(acc), [109, 97, 99, 101, 114, 97, 116, 97] => lookup_602_187(acc), [109, 97, 110, 116, 111, 118, 97] => lookup_602_188(acc), [109, 97, 114] => lookup_602_189(acc), [109, 97, 114, 99, 104, 101] => lookup_602_190(acc), [109, 97, 115, 115, 97, 45, 99, 97, 114, 114, 97, 114, 97] => lookup_602_191(acc), [109, 97, 115, 115, 97, 99, 97, 114, 114, 97, 114, 97] => lookup_602_192(acc), [109, 97, 116, 101, 114, 97] => lookup_602_193(acc), [109, 98] => lookup_602_194(acc), [109, 99] => lookup_602_195(acc), [109, 101] => lookup_602_196(acc), [109, 101, 100, 105, 111, 45, 99, 97, 109, 112, 105, 100, 97, 110, 111] => { lookup_602_197(acc) } [109, 101, 100, 105, 111, 99, 97, 109, 112, 105, 100, 97, 110, 111] => { lookup_602_198(acc) } [109, 101, 115, 115, 105, 110, 97] => lookup_602_199(acc), [109, 105] => lookup_602_200(acc), [109, 105, 108, 97, 110] => lookup_602_201(acc), [109, 105, 108, 97, 110, 111] => lookup_602_202(acc), [109, 110] => lookup_602_203(acc), [109, 111] => lookup_602_204(acc), [109, 111, 100, 101, 110, 97] => lookup_602_205(acc), [109, 111, 108] => lookup_602_206(acc), [109, 111, 108, 105, 115, 101] => lookup_602_207(acc), [109, 111, 110, 122, 97] => lookup_602_208(acc), [109, 111, 110, 122, 97, 45, 98, 114, 105, 97, 110, 122, 97] => lookup_602_209(acc), [109, 111, 110, 122, 97, 45, 101, 45, 100, 101, 108, 108, 97, 45, 98, 114, 105, 97, 110, 122, 97] => { lookup_602_210(acc) } [109, 111, 110, 122, 97, 98, 114, 105, 97, 110, 122, 97] => lookup_602_211(acc), [109, 111, 110, 122, 97, 101, 98, 114, 105, 97, 110, 122, 97] => lookup_602_212(acc), [109, 111, 110, 122, 97, 101, 100, 101, 108, 108, 97, 98, 114, 105, 97, 110, 122, 97] => { lookup_602_213(acc) } [109, 115] => lookup_602_214(acc), [109, 116] => lookup_602_215(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_602_216(acc), [110, 97] => lookup_602_217(acc), [110, 97, 112, 108, 101, 115] => lookup_602_218(acc), [110, 97, 112, 111, 108, 105] => lookup_602_219(acc), [110, 101, 101, 110] => lookup_602_220(info, labels, acc), [110, 111] => lookup_602_221(acc), [110, 111, 118, 97, 114, 97] => lookup_602_222(acc), [110, 117] => lookup_602_223(acc), [110, 117, 111, 114, 111] => lookup_602_224(acc), [111, 103] => lookup_602_225(acc), [111, 103, 108, 105, 97, 115, 116, 114, 97] => lookup_602_226(acc), [111, 108, 98, 105, 97, 45, 116, 101, 109, 112, 105, 111] => lookup_602_227(acc), [111, 108, 98, 105, 97, 116, 101, 109, 112, 105, 111] => lookup_602_228(acc), [111, 114] => lookup_602_229(acc), [111, 114, 105, 115, 116, 97, 110, 111] => lookup_602_230(acc), [111, 116] => lookup_602_231(acc), [112, 97] => lookup_602_232(acc), [112, 97, 100, 111, 118, 97] => lookup_602_233(acc), [112, 97, 100, 117, 97] => lookup_602_234(acc), [112, 97, 108, 101, 114, 109, 111] => lookup_602_235(acc), [112, 97, 114, 109, 97] => lookup_602_236(acc), [112, 97, 118, 105, 97] => lookup_602_237(acc), [112, 99] => lookup_602_238(acc), [112, 100] => lookup_602_239(acc), [112, 101] => lookup_602_240(acc), [112, 101, 114, 117, 103, 105, 97] => lookup_602_241(acc), [112, 101, 115, 97, 114, 111, 45, 117, 114, 98, 105, 110, 111] => lookup_602_242(acc), [112, 101, 115, 97, 114, 111, 117, 114, 98, 105, 110, 111] => lookup_602_243(acc), [112, 101, 115, 99, 97, 114, 97] => lookup_602_244(acc), [112, 103] => lookup_602_245(acc), [112, 105] => lookup_602_246(acc), [112, 105, 97, 99, 101, 110, 122, 97] => lookup_602_247(acc), [112, 105, 101, 100, 109, 111, 110, 116] => lookup_602_248(acc), [112, 105, 101, 109, 111, 110, 116, 101] => lookup_602_249(acc), [112, 105, 115, 97] => lookup_602_250(acc), [112, 105, 115, 116, 111, 105, 97] => lookup_602_251(acc), [112, 109, 110] => lookup_602_252(acc), [112, 110] => lookup_602_253(acc), [112, 111] => lookup_602_254(acc), [112, 111, 114, 100, 101, 110, 111, 110, 101] => lookup_602_255(acc), [112, 111, 116, 101, 110, 122, 97] => lookup_602_256(acc), [112, 114] => lookup_602_257(acc), [112, 114, 97, 116, 111] => lookup_602_258(acc), [112, 116] => lookup_602_259(acc), [112, 117] => lookup_602_260(acc), [112, 117, 103] => lookup_602_261(acc), [112, 117, 103, 108, 105, 97] => lookup_602_262(acc), [112, 118] => lookup_602_263(acc), [112, 122] => lookup_602_264(acc), [114, 97] => lookup_602_265(acc), [114, 97, 103, 117, 115, 97] => lookup_602_266(acc), [114, 97, 118, 101, 110, 110, 97] => lookup_602_267(acc), [114, 99] => lookup_602_268(acc), [114, 101] => lookup_602_269(acc), [114, 101, 103, 103, 105, 111, 45, 99, 97, 108, 97, 98, 114, 105, 97] => { lookup_602_270(acc) } [114, 101, 103, 103, 105, 111, 45, 101, 109, 105, 108, 105, 97] => lookup_602_271(acc), [114, 101, 103, 103, 105, 111, 99, 97, 108, 97, 98, 114, 105, 97] => { lookup_602_272(acc) } [114, 101, 103, 103, 105, 111, 101, 109, 105, 108, 105, 97] => lookup_602_273(acc), [114, 103] => lookup_602_274(acc), [114, 105] => lookup_602_275(acc), [114, 105, 101, 116, 105] => lookup_602_276(acc), [114, 105, 109, 105, 110, 105] => lookup_602_277(acc), [114, 109] => lookup_602_278(acc), [114, 110] => lookup_602_279(acc), [114, 111] => lookup_602_280(acc), [114, 111, 109, 97] => lookup_602_281(acc), [114, 111, 109, 101] => lookup_602_282(acc), [114, 111, 118, 105, 103, 111] => lookup_602_283(acc), [115, 97] => lookup_602_284(acc), [115, 97, 108, 101, 114, 110, 111] => lookup_602_285(acc), [115, 97, 114] => lookup_602_286(acc), [115, 97, 114, 100, 101, 103, 110, 97] => lookup_602_287(acc), [115, 97, 114, 100, 105, 110, 105, 97] => lookup_602_288(acc), [115, 97, 115, 115, 97, 114, 105] => lookup_602_289(acc), [115, 97, 118, 111, 110, 97] => lookup_602_290(acc), [115, 105] => lookup_602_291(acc), [115, 105, 99] => lookup_602_292(acc), [115, 105, 99, 105, 108, 105, 97] => lookup_602_293(acc), [115, 105, 99, 105, 108, 121] => lookup_602_294(acc), [115, 105, 101, 110, 97] => lookup_602_295(acc), [115, 105, 114, 97, 99, 117, 115, 97] => lookup_602_296(acc), [115, 111] => lookup_602_297(acc), [115, 111, 110, 100, 114, 105, 111] => lookup_602_298(acc), [115, 112] => lookup_602_299(acc), [115, 114] => lookup_602_300(acc), [115, 115] => lookup_602_301(acc), [115, 117, 101, 100, 116, 105, 114, 111, 108] => lookup_602_302(acc), [115, 118] => lookup_602_303(acc), [115, 121, 110, 99, 108, 111, 117, 100] => lookup_602_304(acc), [115, 195, 188, 100, 116, 105, 114, 111, 108] => lookup_602_305(acc), [116, 97] => lookup_602_306(acc), [116, 97, 97] => lookup_602_307(acc), [116, 97, 114, 97, 110, 116, 111] => lookup_602_308(acc), [116, 101] => lookup_602_309(acc), [116, 101, 109, 112, 105, 111, 45, 111, 108, 98, 105, 97] => lookup_602_310(acc), [116, 101, 109, 112, 105, 111, 111, 108, 98, 105, 97] => lookup_602_311(acc), [116, 101, 114, 97, 109, 111] => lookup_602_312(acc), [116, 101, 114, 110, 105] => lookup_602_313(acc), [116, 105, 109] => lookup_602_314(info, labels, acc), [116, 110] => lookup_602_315(acc), [116, 111] => lookup_602_316(acc), [116, 111, 114, 105, 110, 111] => lookup_602_317(acc), [116, 111, 115] => lookup_602_318(acc), [116, 111, 115, 99, 97, 110, 97] => lookup_602_319(acc), [116, 112] => lookup_602_320(acc), [116, 114] => lookup_602_321(acc), [116, 114, 97, 110, 105, 45, 97, 110, 100, 114, 105, 97, 45, 98, 97, 114, 108, 101, 116, 116, 97] => { lookup_602_322(acc) } [116, 114, 97, 110, 105, 45, 98, 97, 114, 108, 101, 116, 116, 97, 45, 97, 110, 100, 114, 105, 97] => { lookup_602_323(acc) } [116, 114, 97, 110, 105, 97, 110, 100, 114, 105, 97, 98, 97, 114, 108, 101, 116, 116, 97] => { lookup_602_324(acc) } [116, 114, 97, 110, 105, 98, 97, 114, 108, 101, 116, 116, 97, 97, 110, 100, 114, 105, 97] => { lookup_602_325(acc) } [116, 114, 97, 112, 97, 110, 105] => lookup_602_326(acc), [116, 114, 101, 110, 116, 105, 110, 45, 115, 117, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_327(acc) } [116, 114, 101, 110, 116, 105, 110, 45, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_328(acc) } [116, 114, 101, 110, 116, 105, 110, 45, 115, 117, 101, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_329(acc) } [116, 114, 101, 110, 116, 105, 110, 45, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_330(acc) } [116, 114, 101, 110, 116, 105, 110, 45, 115, 195, 188, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_331(acc) } [116, 114, 101, 110, 116, 105, 110, 45, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_332(acc) } [116, 114, 101, 110, 116, 105, 110, 111] => lookup_602_333(acc), [116, 114, 101, 110, 116, 105, 110, 111, 45, 97, 45, 97, 100, 105, 103, 101] => { lookup_602_334(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 97, 97, 100, 105, 103, 101] => { lookup_602_335(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 97, 108, 116, 111, 45, 97, 100, 105, 103, 101] => { lookup_602_336(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 97, 108, 116, 111, 97, 100, 105, 103, 101] => { lookup_602_337(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 45, 116, 105, 114, 111, 108] => { lookup_602_338(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 116, 105, 114, 111, 108] => { lookup_602_339(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 117, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_340(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_341(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 117, 101, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_342(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_343(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 195, 188, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_344(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_345(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 97, 45, 97, 100, 105, 103, 101] => { lookup_602_346(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 97, 97, 100, 105, 103, 101] => { lookup_602_347(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 97, 108, 116, 111, 45, 97, 100, 105, 103, 101] => { lookup_602_348(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 97, 108, 116, 111, 97, 100, 105, 103, 101] => { lookup_602_349(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 45, 116, 105, 114, 111, 108] => { lookup_602_350(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 116, 105, 114, 111, 108] => { lookup_602_351(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 117, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_352(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_353(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 117, 101, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_354(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_355(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 195, 188, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_356(acc) } [116, 114, 101, 110, 116, 105, 110, 111, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_357(acc) } [116, 114, 101, 110, 116, 105, 110, 115, 117, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_358(acc) } [116, 114, 101, 110, 116, 105, 110, 115, 117, 100, 116, 105, 114, 111, 108] => { lookup_602_359(acc) } [116, 114, 101, 110, 116, 105, 110, 115, 117, 101, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_360(acc) } [116, 114, 101, 110, 116, 105, 110, 115, 117, 101, 100, 116, 105, 114, 111, 108] => { lookup_602_361(acc) } [116, 114, 101, 110, 116, 105, 110, 115, 195, 188, 100, 45, 116, 105, 114, 111, 108] => { lookup_602_362(acc) } [116, 114, 101, 110, 116, 105, 110, 115, 195, 188, 100, 116, 105, 114, 111, 108] => { lookup_602_363(acc) } [116, 114, 101, 110, 116, 111] => lookup_602_364(acc), [116, 114, 101, 118, 105, 115, 111] => lookup_602_365(acc), [116, 114, 105, 101, 115, 116, 101] => lookup_602_366(acc), [116, 115] => lookup_602_367(acc), [116, 117, 114, 105, 110] => lookup_602_368(acc), [116, 117, 115, 99, 97, 110, 121] => lookup_602_369(acc), [116, 118] => lookup_602_370(acc), [117, 100] => lookup_602_371(acc), [117, 100, 105, 110, 101] => lookup_602_372(acc), [117, 109, 98] => lookup_602_373(acc), [117, 109, 98, 114, 105, 97] => lookup_602_374(acc), [117, 114, 98, 105, 110, 111, 45, 112, 101, 115, 97, 114, 111] => lookup_602_375(acc), [117, 114, 98, 105, 110, 111, 112, 101, 115, 97, 114, 111] => lookup_602_376(acc), [118, 97] => lookup_602_377(acc), [118, 97, 108, 45, 100, 45, 97, 111, 115, 116, 97] => lookup_602_378(acc), [118, 97, 108, 45, 100, 97, 111, 115, 116, 97] => lookup_602_379(acc), [118, 97, 108, 100, 45, 97, 111, 115, 116, 97] => lookup_602_380(acc), [118, 97, 108, 100, 97, 111, 115, 116, 97] => lookup_602_381(acc), [118, 97, 108, 108, 101, 45, 97, 111, 115, 116, 97] => lookup_602_382(acc), [118, 97, 108, 108, 101, 45, 100, 45, 97, 111, 115, 116, 97] => lookup_602_383(acc), [118, 97, 108, 108, 101, 45, 100, 97, 111, 115, 116, 97] => lookup_602_384(acc), [118, 97, 108, 108, 101, 97, 111, 115, 116, 97] => lookup_602_385(acc), [118, 97, 108, 108, 101, 100, 45, 97, 111, 115, 116, 97] => lookup_602_386(acc), [118, 97, 108, 108, 101, 100, 97, 111, 115, 116, 97] => lookup_602_387(acc), [118, 97, 108, 108, 101, 101, 45, 97, 111, 115, 116, 101] => lookup_602_388(acc), [118, 97, 108, 108, 101, 101, 45, 100, 45, 97, 111, 115, 116, 101] => { lookup_602_389(acc) } [118, 97, 108, 108, 101, 101, 97, 111, 115, 116, 101] => lookup_602_390(acc), [118, 97, 108, 108, 101, 101, 100, 97, 111, 115, 116, 101] => lookup_602_391(acc), [118, 97, 108, 108, 195, 169, 101, 45, 97, 111, 115, 116, 101] => lookup_602_392(acc), [118, 97, 108, 108, 195, 169, 101, 45, 100, 45, 97, 111, 115, 116, 101] => { lookup_602_393(acc) } [118, 97, 108, 108, 195, 169, 101, 97, 111, 115, 116, 101] => lookup_602_394(acc), [118, 97, 108, 108, 195, 169, 101, 100, 97, 111, 115, 116, 101] => lookup_602_395(acc), [118, 97, 111] => lookup_602_396(acc), [118, 97, 114, 101, 115, 101] => lookup_602_397(acc), [118, 98] => lookup_602_398(acc), [118, 99] => lookup_602_399(acc), [118, 100, 97] => lookup_602_400(acc), [118, 101] => lookup_602_401(acc), [118, 101, 110] => lookup_602_402(acc), [118, 101, 110, 101, 116, 111] => lookup_602_403(acc), [118, 101, 110, 101, 122, 105, 97] => lookup_602_404(acc), [118, 101, 110, 105, 99, 101] => lookup_602_405(acc), [118, 101, 114, 98, 97, 110, 105, 97] => lookup_602_406(acc), [118, 101, 114, 99, 101, 108, 108, 105] => lookup_602_407(acc), [118, 101, 114, 111, 110, 97] => lookup_602_408(acc), [118, 105] => lookup_602_409(acc), [118, 105, 98, 111, 45, 118, 97, 108, 101, 110, 116, 105, 97] => lookup_602_410(acc), [118, 105, 98, 111, 118, 97, 108, 101, 110, 116, 105, 97] => lookup_602_411(acc), [118, 105, 99, 101, 110, 122, 97] => lookup_602_412(acc), [118, 105, 116, 101, 114, 98, 111] => lookup_602_413(acc), [118, 114] => lookup_602_414(acc), [118, 115] => lookup_602_415(acc), [118, 116] => lookup_602_416(acc), [118, 118] => lookup_602_417(acc), [120, 110, 45, 45, 98, 97, 108, 115, 97, 110, 45, 115, 100, 116, 105, 114, 111, 108, 45, 110, 115, 98] => { lookup_602_418(acc) } [120, 110, 45, 45, 98, 111, 122, 101, 110, 45, 115, 100, 116, 105, 114, 111, 108, 45, 50, 111, 98] => { lookup_602_419(acc) } [120, 110, 45, 45, 98, 117, 108, 115, 97, 110, 45, 115, 100, 116, 105, 114, 111, 108, 45, 110, 115, 98] => { lookup_602_420(acc) } [120, 110, 45, 45, 99, 101, 115, 101, 110, 97, 45, 102, 111, 114, 108, 45, 109, 99, 98] => { lookup_602_421(acc) } [120, 110, 45, 45, 99, 101, 115, 101, 110, 97, 102, 111, 114, 108, 45, 105, 56, 97] => { lookup_602_422(acc) } [120, 110, 45, 45, 102, 111, 114, 108, 45, 99, 101, 115, 101, 110, 97, 45, 102, 99, 98] => { lookup_602_423(acc) } [120, 110, 45, 45, 102, 111, 114, 108, 99, 101, 115, 101, 110, 97, 45, 99, 56, 97] => { lookup_602_424(acc) } [120, 110, 45, 45, 115, 100, 116, 105, 114, 111, 108, 45, 110, 50, 97] => { lookup_602_425(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 45, 115, 100, 45, 116, 105, 114, 111, 108, 45, 114, 122, 98] => { lookup_602_426(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 45, 115, 100, 116, 105, 114, 111, 108, 45, 55, 118, 98] => { lookup_602_427(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 100, 45, 116, 105, 114, 111, 108, 45, 99, 51, 98] => { lookup_602_428(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 111, 45, 115, 100, 116, 105, 114, 111, 108, 45, 115, 122, 98] => { lookup_602_429(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 111, 115, 100, 45, 116, 105, 114, 111, 108, 45, 114, 122, 98] => { lookup_602_430(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 111, 115, 100, 116, 105, 114, 111, 108, 45, 55, 118, 98] => { lookup_602_431(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 115, 100, 45, 116, 105, 114, 111, 108, 45, 54, 118, 98] => { lookup_602_432(acc) } [120, 110, 45, 45, 116, 114, 101, 110, 116, 105, 110, 115, 100, 116, 105, 114, 111, 108, 45, 110, 115, 98] => { lookup_602_433(acc) } [120, 110, 45, 45, 118, 97, 108, 108, 101, 45, 97, 111, 115, 116, 101, 45, 101, 98, 98] => { lookup_602_434(acc) } [120, 110, 45, 45, 118, 97, 108, 108, 101, 45, 100, 45, 97, 111, 115, 116, 101, 45, 101, 104, 98] => { lookup_602_435(acc) } [120, 110, 45, 45, 118, 97, 108, 108, 101, 97, 111, 115, 116, 101, 45, 101, 55, 97] => { lookup_602_436(acc) } [120, 110, 45, 45, 118, 97, 108, 108, 101, 100, 97, 111, 115, 116, 101, 45, 101, 98, 98] => { lookup_602_437(acc) } _ => info, }, None => info, } } #[inline] fn lookup_603() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_604() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_605() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_606() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_607() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_608_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_608_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_608_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_608_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_608<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_608_0(acc), [110, 101, 116] => lookup_608_1(acc), [111, 102] => lookup_608_2(acc), [111, 114, 103] => lookup_608_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_609() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_610() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_611() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_612() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_613() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_614_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_614<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_614_0(wild, acc), }, None => info, } } #[inline] fn lookup_615() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_616() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_617<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_617_0(acc), [101, 100, 117] => lookup_617_1(acc), [103, 111, 118] => lookup_617_2(acc), [109, 105, 108] => lookup_617_3(acc), [110, 97, 109, 101] => lookup_617_4(acc), [110, 101, 116] => lookup_617_5(acc), [111, 114, 103] => lookup_617_6(acc), [115, 99, 104] => lookup_617_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_618() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_619() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_620() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_621() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_12(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_26(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_29(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_31(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_32(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_33(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_34(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_35(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_36(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_38(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_39(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_40(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_41(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_42(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_43(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_44(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_45(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_46(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_47(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_48(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_49(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_50(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3_51(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_3<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 115, 97, 105] => lookup_622_3_0(acc), [97, 109, 97] => lookup_622_3_1(acc), [97, 110, 106, 111] => lookup_622_3_2(acc), [97, 115, 117, 107, 101] => lookup_622_3_3(acc), [99, 104, 105, 114, 121, 117] => lookup_622_3_4(acc), [99, 104, 105, 116, 97] => lookup_622_3_5(acc), [102, 117, 115, 111] => lookup_622_3_6(acc), [103, 97, 109, 97, 103, 111, 114, 105] => lookup_622_3_7(acc), [104, 97, 110, 100, 97] => lookup_622_3_8(acc), [104, 97, 122, 117] => lookup_622_3_9(acc), [104, 101, 107, 105, 110, 97, 110] => lookup_622_3_10(acc), [104, 105, 103, 97, 115, 104, 105, 117, 114, 97] => lookup_622_3_11(acc), [105, 99, 104, 105, 110, 111, 109, 105, 121, 97] => lookup_622_3_12(acc), [105, 110, 97, 122, 97, 119, 97] => lookup_622_3_13(acc), [105, 110, 117, 121, 97, 109, 97] => lookup_622_3_14(acc), [105, 115, 115, 104, 105, 107, 105] => lookup_622_3_15(acc), [105, 119, 97, 107, 117, 114, 97] => lookup_622_3_16(acc), [107, 97, 110, 105, 101] => lookup_622_3_17(acc), [107, 97, 114, 105, 121, 97] => lookup_622_3_18(acc), [107, 97, 115, 117, 103, 97, 105] => lookup_622_3_19(acc), [107, 105, 114, 97] => lookup_622_3_20(acc), [107, 105, 121, 111, 115, 117] => lookup_622_3_21(acc), [107, 111, 109, 97, 107, 105] => lookup_622_3_22(acc), [107, 111, 110, 97, 110] => lookup_622_3_23(acc), [107, 111, 116, 97] => lookup_622_3_24(acc), [109, 105, 104, 97, 109, 97] => lookup_622_3_25(acc), [109, 105, 121, 111, 115, 104, 105] => lookup_622_3_26(acc), [110, 105, 115, 104, 105, 111] => lookup_622_3_27(acc), [110, 105, 115, 115, 104, 105, 110] => lookup_622_3_28(acc), [111, 98, 117] => lookup_622_3_29(acc), [111, 103, 117, 99, 104, 105] => lookup_622_3_30(acc), [111, 104, 97, 114, 117] => lookup_622_3_31(acc), [111, 107, 97, 122, 97, 107, 105] => lookup_622_3_32(acc), [111, 119, 97, 114, 105, 97, 115, 97, 104, 105] => lookup_622_3_33(acc), [115, 101, 116, 111] => lookup_622_3_34(acc), [115, 104, 105, 107, 97, 116, 115, 117] => lookup_622_3_35(acc), [115, 104, 105, 110, 115, 104, 105, 114, 111] => lookup_622_3_36(acc), [115, 104, 105, 116, 97, 114, 97] => lookup_622_3_37(acc), [116, 97, 104, 97, 114, 97] => lookup_622_3_38(acc), [116, 97, 107, 97, 104, 97, 109, 97] => lookup_622_3_39(acc), [116, 111, 98, 105, 115, 104, 105, 109, 97] => lookup_622_3_40(acc), [116, 111, 101, 105] => lookup_622_3_41(acc), [116, 111, 103, 111] => lookup_622_3_42(acc), [116, 111, 107, 97, 105] => lookup_622_3_43(acc), [116, 111, 107, 111, 110, 97, 109, 101] => lookup_622_3_44(acc), [116, 111, 121, 111, 97, 107, 101] => lookup_622_3_45(acc), [116, 111, 121, 111, 104, 97, 115, 104, 105] => lookup_622_3_46(acc), [116, 111, 121, 111, 107, 97, 119, 97] => lookup_622_3_47(acc), [116, 111, 121, 111, 110, 101] => lookup_622_3_48(acc), [116, 111, 121, 111, 116, 97] => lookup_622_3_49(acc), [116, 115, 117, 115, 104, 105, 109, 97] => lookup_622_3_50(acc), [121, 97, 116, 111, 109, 105] => lookup_622_3_51(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_4_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_6(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_19(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_22(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_23(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_25(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 107, 105, 116, 97] => lookup_622_4_0(acc), [100, 97, 105, 115, 101, 110] => lookup_622_4_1(acc), [102, 117, 106, 105, 115, 97, 116, 111] => lookup_622_4_2(acc), [103, 111, 106, 111, 109, 101] => lookup_622_4_3(acc), [104, 97, 99, 104, 105, 114, 111, 103, 97, 116, 97] => lookup_622_4_4(acc), [104, 97, 112, 112, 111, 117] => lookup_622_4_5(acc), [104, 105, 103, 97, 115, 104, 105, 110, 97, 114, 117, 115, 101] => lookup_622_4_6(acc), [104, 111, 110, 106, 111] => lookup_622_4_7(acc), [104, 111, 110, 106, 121, 111] => lookup_622_4_8(acc), [105, 107, 97, 119, 97] => lookup_622_4_9(acc), [107, 97, 109, 105, 107, 111, 97, 110, 105] => lookup_622_4_10(acc), [107, 97, 109, 105, 111, 107, 97] => lookup_622_4_11(acc), [107, 97, 116, 97, 103, 97, 109, 105] => lookup_622_4_12(acc), [107, 97, 122, 117, 110, 111] => lookup_622_4_13(acc), [107, 105, 116, 97, 97, 107, 105, 116, 97] => lookup_622_4_14(acc), [107, 111, 115, 97, 107, 97] => lookup_622_4_15(acc), [107, 121, 111, 119, 97] => lookup_622_4_16(acc), [109, 105, 115, 97, 116, 111] => lookup_622_4_17(acc), [109, 105, 116, 97, 110, 101] => lookup_622_4_18(acc), [109, 111, 114, 105, 121, 111, 115, 104, 105] => lookup_622_4_19(acc), [110, 105, 107, 97, 104, 111] => lookup_622_4_20(acc), [110, 111, 115, 104, 105, 114, 111] => lookup_622_4_21(acc), [111, 100, 97, 116, 101] => lookup_622_4_22(acc), [111, 103, 97] => lookup_622_4_23(acc), [111, 103, 97, 116, 97] => lookup_622_4_24(acc), [115, 101, 109, 98, 111, 107, 117] => lookup_622_4_25(acc), [121, 111, 107, 111, 116, 101] => lookup_622_4_26(acc), [121, 117, 114, 105, 104, 111, 110, 106, 111] => lookup_622_4_27(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_6_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_20(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_6<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 111, 109, 111, 114, 105] => lookup_622_6_0(acc), [103, 111, 110, 111, 104, 101] => lookup_622_6_1(acc), [104, 97, 99, 104, 105, 110, 111, 104, 101] => lookup_622_6_2(acc), [104, 97, 115, 104, 105, 107, 97, 109, 105] => lookup_622_6_3(acc), [104, 105, 114, 97, 110, 97, 105] => lookup_622_6_4(acc), [104, 105, 114, 111, 115, 97, 107, 105] => lookup_622_6_5(acc), [105, 116, 97, 121, 97, 110, 97, 103, 105] => lookup_622_6_6(acc), [107, 117, 114, 111, 105, 115, 104, 105] => lookup_622_6_7(acc), [109, 105, 115, 97, 119, 97] => lookup_622_6_8(acc), [109, 117, 116, 115, 117] => lookup_622_6_9(acc), [110, 97, 107, 97, 100, 111, 109, 97, 114, 105] => lookup_622_6_10(acc), [110, 111, 104, 101, 106, 105] => lookup_622_6_11(acc), [111, 105, 114, 97, 115, 101] => lookup_622_6_12(acc), [111, 119, 97, 110, 105] => lookup_622_6_13(acc), [114, 111, 107, 117, 110, 111, 104, 101] => lookup_622_6_14(acc), [115, 97, 110, 110, 111, 104, 101] => lookup_622_6_15(acc), [115, 104, 105, 99, 104, 105, 110, 111, 104, 101] => lookup_622_6_16(acc), [115, 104, 105, 110, 103, 111] => lookup_622_6_17(acc), [116, 97, 107, 107, 111] => lookup_622_6_18(acc), [116, 111, 119, 97, 100, 97] => lookup_622_6_19(acc), [116, 115, 117, 103, 97, 114, 117] => lookup_622_6_20(acc), [116, 115, 117, 114, 117, 116, 97] => lookup_622_6_21(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_14(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_17(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_22(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_24_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_18(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_27(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_29(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_31(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_32(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_34(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_35(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_36(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_37(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_38(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_39(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_40(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_41(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_42(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_43(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_44(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_45(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_46(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_47(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_48(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_49(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_50(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_51(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_52(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_53(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_54(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_55(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_56(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24_57(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_24<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98, 105, 107, 111] => lookup_622_24_0(acc), [97, 115, 97, 104, 105] => lookup_622_24_1(acc), [99, 104, 111, 110, 97, 110] => lookup_622_24_2(acc), [99, 104, 111, 115, 101, 105] => lookup_622_24_3(acc), [99, 104, 111, 115, 104, 105] => lookup_622_24_4(acc), [99, 104, 117, 111] => lookup_622_24_5(acc), [102, 117, 110, 97, 98, 97, 115, 104, 105] => lookup_622_24_6(acc), [102, 117, 116, 116, 115, 117] => lookup_622_24_7(acc), [104, 97, 110, 97, 109, 105, 103, 97, 119, 97] => lookup_622_24_8(acc), [105, 99, 104, 105, 104, 97, 114, 97] => lookup_622_24_9(acc), [105, 99, 104, 105, 107, 97, 119, 97] => lookup_622_24_10(acc), [105, 99, 104, 105, 110, 111, 109, 105, 121, 97] => lookup_622_24_11(acc), [105, 110, 122, 97, 105] => lookup_622_24_12(acc), [105, 115, 117, 109, 105] => lookup_622_24_13(acc), [107, 97, 109, 97, 103, 97, 121, 97] => lookup_622_24_14(acc), [107, 97, 109, 111, 103, 97, 119, 97] => lookup_622_24_15(acc), [107, 97, 115, 104, 105, 119, 97] => lookup_622_24_16(acc), [107, 97, 116, 111, 114, 105] => lookup_622_24_17(acc), [107, 97, 116, 115, 117, 117, 114, 97] => lookup_622_24_18(acc), [107, 105, 109, 105, 116, 115, 117] => lookup_622_24_19(acc), [107, 105, 115, 97, 114, 97, 122, 117] => lookup_622_24_20(acc), [107, 111, 122, 97, 107, 105] => lookup_622_24_21(acc), [107, 117, 106, 117, 107, 117, 114, 105] => lookup_622_24_22(acc), [107, 121, 111, 110, 97, 110] => lookup_622_24_23(acc), [109, 97, 116, 115, 117, 100, 111] => lookup_622_24_24(acc), [109, 105, 100, 111, 114, 105] => lookup_622_24_25(acc), [109, 105, 104, 97, 109, 97] => lookup_622_24_26(acc), [109, 105, 110, 97, 109, 105, 98, 111, 115, 111] => lookup_622_24_27(acc), [109, 111, 98, 97, 114, 97] => lookup_622_24_28(acc), [109, 117, 116, 115, 117, 122, 97, 119, 97] => lookup_622_24_29(acc), [110, 97, 103, 97, 114, 97] => lookup_622_24_30(acc), [110, 97, 103, 97, 114, 101, 121, 97, 109, 97] => lookup_622_24_31(acc), [110, 97, 114, 97, 115, 104, 105, 110, 111] => lookup_622_24_32(acc), [110, 97, 114, 105, 116, 97] => lookup_622_24_33(acc), [110, 111, 100, 97] => lookup_622_24_34(acc), [111, 97, 109, 105, 115, 104, 105, 114, 97, 115, 97, 116, 111] => lookup_622_24_35(acc), [111, 109, 105, 103, 97, 119, 97] => lookup_622_24_36(acc), [111, 110, 106, 117, 107, 117] => lookup_622_24_37(acc), [111, 116, 97, 107, 105] => lookup_622_24_38(acc), [115, 97, 107, 97, 101] => lookup_622_24_39(acc), [115, 97, 107, 117, 114, 97] => lookup_622_24_40(acc), [115, 104, 105, 109, 111, 102, 117, 115, 97] => lookup_622_24_41(acc), [115, 104, 105, 114, 97, 107, 111] => lookup_622_24_42(acc), [115, 104, 105, 114, 111, 105] => lookup_622_24_43(acc), [115, 104, 105, 115, 117, 105] => lookup_622_24_44(acc), [115, 111, 100, 101, 103, 97, 117, 114, 97] => lookup_622_24_45(acc), [115, 111, 115, 97] => lookup_622_24_46(acc), [116, 97, 107, 111] => lookup_622_24_47(acc), [116, 97, 116, 101, 121, 97, 109, 97] => lookup_622_24_48(acc), [116, 111, 103, 97, 110, 101] => lookup_622_24_49(acc), [116, 111, 104, 110, 111, 115, 104, 111] => lookup_622_24_50(acc), [116, 111, 109, 105, 115, 97, 116, 111] => lookup_622_24_51(acc), [117, 114, 97, 121, 97, 115, 117] => lookup_622_24_52(acc), [121, 97, 99, 104, 105, 109, 97, 116, 97] => lookup_622_24_53(acc), [121, 97, 99, 104, 105, 121, 111] => lookup_622_24_54(acc), [121, 111, 107, 97, 105, 99, 104, 105, 98, 97] => lookup_622_24_55(acc), [121, 111, 107, 111, 115, 104, 105, 98, 97, 104, 105, 107, 97, 114, 105] => { lookup_622_24_56(acc) } [121, 111, 116, 115, 117, 107, 97, 105, 100, 111] => lookup_622_24_57(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_29(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_30(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_31(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_32(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_33(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_35(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_36(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_37(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_38(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_39(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_40(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_41(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_42(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_43(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_44(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_45_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_7(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_16(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_20(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45_21(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_45<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 110, 97, 110] => lookup_622_45_0(acc), [104, 111, 110, 97, 105] => lookup_622_45_1(acc), [105, 107, 97, 116, 97] => lookup_622_45_2(acc), [105, 109, 97, 98, 97, 114, 105] => lookup_622_45_3(acc), [105, 121, 111] => lookup_622_45_4(acc), [107, 97, 109, 105, 106, 105, 109, 97] => lookup_622_45_5(acc), [107, 105, 104, 111, 107, 117] => lookup_622_45_6(acc), [107, 117, 109, 97, 107, 111, 103, 101, 110] => lookup_622_45_7(acc), [109, 97, 115, 97, 107, 105] => lookup_622_45_8(acc), [109, 97, 116, 115, 117, 110, 111] => lookup_622_45_9(acc), [109, 97, 116, 115, 117, 121, 97, 109, 97] => lookup_622_45_10(acc), [110, 97, 109, 105, 107, 97, 116, 97] => lookup_622_45_11(acc), [110, 105, 105, 104, 97, 109, 97] => lookup_622_45_12(acc), [111, 122, 117] => lookup_622_45_13(acc), [115, 97, 105, 106, 111] => lookup_622_45_14(acc), [115, 101, 105, 121, 111] => lookup_622_45_15(acc), [115, 104, 105, 107, 111, 107, 117, 99, 104, 117, 111] => lookup_622_45_16(acc), [116, 111, 98, 101] => lookup_622_45_17(acc), [116, 111, 111, 110] => lookup_622_45_18(acc), [117, 99, 104, 105, 107, 111] => lookup_622_45_19(acc), [117, 119, 97, 106, 105, 109, 97] => lookup_622_45_20(acc), [121, 97, 119, 97, 116, 97, 104, 97, 109, 97] => lookup_622_45_21(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_46(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_47(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_48(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_49(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_50(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_51(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_52(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_53(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_54_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_6(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_10(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_54<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 99, 104, 105, 122, 101, 110] => lookup_622_54_0(acc), [101, 105, 104, 101, 105, 106, 105] => lookup_622_54_1(acc), [102, 117, 107, 117, 105] => lookup_622_54_2(acc), [105, 107, 101, 100, 97] => lookup_622_54_3(acc), [107, 97, 116, 115, 117, 121, 97, 109, 97] => lookup_622_54_4(acc), [109, 105, 104, 97, 109, 97] => lookup_622_54_5(acc), [109, 105, 110, 97, 109, 105, 101, 99, 104, 105, 122, 101, 110] => lookup_622_54_6(acc), [111, 98, 97, 109, 97] => lookup_622_54_7(acc), [111, 104, 105] => lookup_622_54_8(acc), [111, 110, 111] => lookup_622_54_9(acc), [115, 97, 98, 97, 101] => lookup_622_54_10(acc), [115, 97, 107, 97, 105] => lookup_622_54_11(acc), [116, 97, 107, 97, 104, 97, 109, 97] => lookup_622_54_12(acc), [116, 115, 117, 114, 117, 103, 97] => lookup_622_54_13(acc), [119, 97, 107, 97, 115, 97] => lookup_622_54_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_55_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_16(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_28(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_29(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_31(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_33(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_35(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_36(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_37(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_38(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_39(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_40(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_41(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_42(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_43(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_44(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_45(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_46(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_47(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_48(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_49(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_50(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_51(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_52(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_53(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_54(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_55(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_56(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_57(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_58(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_59(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_60(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_61(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55_62(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_55<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 104, 105, 121, 97] => lookup_622_55_0(acc), [98, 117, 122, 101, 110] => lookup_622_55_1(acc), [99, 104, 105, 107, 117, 103, 111] => lookup_622_55_2(acc), [99, 104, 105, 107, 117, 104, 111] => lookup_622_55_3(acc), [99, 104, 105, 107, 117, 106, 111] => lookup_622_55_4(acc), [99, 104, 105, 107, 117, 115, 104, 105, 110, 111] => lookup_622_55_5(acc), [99, 104, 105, 107, 117, 122, 101, 110] => lookup_622_55_6(acc), [99, 104, 117, 111] => lookup_622_55_7(acc), [100, 97, 122, 97, 105, 102, 117] => lookup_622_55_8(acc), [102, 117, 107, 117, 99, 104, 105] => lookup_622_55_9(acc), [104, 97, 107, 97, 116, 97] => lookup_622_55_10(acc), [104, 105, 103, 97, 115, 104, 105] => lookup_622_55_11(acc), [104, 105, 114, 111, 107, 97, 119, 97] => lookup_622_55_12(acc), [104, 105, 115, 97, 121, 97, 109, 97] => lookup_622_55_13(acc), [105, 105, 122, 117, 107, 97] => lookup_622_55_14(acc), [105, 110, 97, 116, 115, 117, 107, 105] => lookup_622_55_15(acc), [107, 97, 104, 111] => lookup_622_55_16(acc), [107, 97, 115, 117, 103, 97] => lookup_622_55_17(acc), [107, 97, 115, 117, 121, 97] => lookup_622_55_18(acc), [107, 97, 119, 97, 114, 97] => lookup_622_55_19(acc), [107, 101, 105, 115, 101, 110] => lookup_622_55_20(acc), [107, 111, 103, 97] => lookup_622_55_21(acc), [107, 117, 114, 97, 116, 101] => lookup_622_55_22(acc), [107, 117, 114, 111, 103, 105] => lookup_622_55_23(acc), [107, 117, 114, 117, 109, 101] => lookup_622_55_24(acc), [109, 105, 110, 97, 109, 105] => lookup_622_55_25(acc), [109, 105, 121, 97, 107, 111] => lookup_622_55_26(acc), [109, 105, 121, 97, 109, 97] => lookup_622_55_27(acc), [109, 105, 121, 97, 119, 97, 107, 97] => lookup_622_55_28(acc), [109, 105, 122, 117, 109, 97, 107, 105] => lookup_622_55_29(acc), [109, 117, 110, 97, 107, 97, 116, 97] => lookup_622_55_30(acc), [110, 97, 107, 97, 103, 97, 119, 97] => lookup_622_55_31(acc), [110, 97, 107, 97, 109, 97] => lookup_622_55_32(acc), [110, 105, 115, 104, 105] => lookup_622_55_33(acc), [110, 111, 103, 97, 116, 97] => lookup_622_55_34(acc), [111, 103, 111, 114, 105] => lookup_622_55_35(acc), [111, 107, 97, 103, 97, 107, 105] => lookup_622_55_36(acc), [111, 107, 97, 119, 97] => lookup_622_55_37(acc), [111, 107, 105] => lookup_622_55_38(acc), [111, 109, 117, 116, 97] => lookup_622_55_39(acc), [111, 110, 103, 97] => lookup_622_55_40(acc), [111, 110, 111, 106, 111] => lookup_622_55_41(acc), [111, 116, 111] => lookup_622_55_42(acc), [115, 97, 105, 103, 97, 119, 97] => lookup_622_55_43(acc), [115, 97, 115, 97, 103, 117, 114, 105] => lookup_622_55_44(acc), [115, 104, 105, 110, 103, 117] => lookup_622_55_45(acc), [115, 104, 105, 110, 121, 111, 115, 104, 105, 116, 111, 109, 105] => { lookup_622_55_46(acc) } [115, 104, 111, 110, 97, 105] => lookup_622_55_47(acc), [115, 111, 101, 100, 97] => lookup_622_55_48(acc), [115, 117, 101] => lookup_622_55_49(acc), [116, 97, 99, 104, 105, 97, 114, 97, 105] => lookup_622_55_50(acc), [116, 97, 103, 97, 119, 97] => lookup_622_55_51(acc), [116, 97, 107, 97, 116, 97] => lookup_622_55_52(acc), [116, 111, 104, 111] => lookup_622_55_53(acc), [116, 111, 121, 111, 116, 115, 117] => lookup_622_55_54(acc), [116, 115, 117, 105, 107, 105] => lookup_622_55_55(acc), [117, 107, 105, 104, 97] => lookup_622_55_56(acc), [117, 109, 105] => lookup_622_55_57(acc), [117, 115, 117, 105] => lookup_622_55_58(acc), [121, 97, 109, 97, 100, 97] => lookup_622_55_59(acc), [121, 97, 109, 101] => lookup_622_55_60(acc), [121, 97, 110, 97, 103, 97, 119, 97] => lookup_622_55_61(acc), [121, 117, 107, 117, 104, 97, 115, 104, 105] => lookup_622_55_62(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_56_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_1(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_2(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_17(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_18(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_22(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_27(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_29(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_30(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_32(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_33(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_34(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_35(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_36(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_38(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_39(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_40(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_41(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_42(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_43(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_44(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_45(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_46(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_47(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_48(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_49(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56_50(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_56<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 122, 117, 98, 97, 110, 103, 101] => lookup_622_56_0(acc), [97, 105, 122, 117, 109, 105, 115, 97, 116, 111] => lookup_622_56_1(acc), [97, 105, 122, 117, 119, 97, 107, 97, 109, 97, 116, 115, 117] => lookup_622_56_2(acc), [97, 115, 97, 107, 97, 119, 97] => lookup_622_56_3(acc), [98, 97, 110, 100, 97, 105] => lookup_622_56_4(acc), [100, 97, 116, 101] => lookup_622_56_5(acc), [102, 117, 107, 117, 115, 104, 105, 109, 97] => lookup_622_56_6(acc), [102, 117, 114, 117, 100, 111, 110, 111] => lookup_622_56_7(acc), [102, 117, 116, 97, 98, 97] => lookup_622_56_8(acc), [104, 97, 110, 97, 119, 97] => lookup_622_56_9(acc), [104, 105, 103, 97, 115, 104, 105] => lookup_622_56_10(acc), [104, 105, 114, 97, 116, 97] => lookup_622_56_11(acc), [104, 105, 114, 111, 110, 111] => lookup_622_56_12(acc), [105, 105, 116, 97, 116, 101] => lookup_622_56_13(acc), [105, 110, 97, 119, 97, 115, 104, 105, 114, 111] => lookup_622_56_14(acc), [105, 115, 104, 105, 107, 97, 119, 97] => lookup_622_56_15(acc), [105, 119, 97, 107, 105] => lookup_622_56_16(acc), [105, 122, 117, 109, 105, 122, 97, 107, 105] => lookup_622_56_17(acc), [107, 97, 103, 97, 109, 105, 105, 115, 104, 105] => lookup_622_56_18(acc), [107, 97, 110, 101, 121, 97, 109, 97] => lookup_622_56_19(acc), [107, 97, 119, 97, 109, 97, 116, 97] => lookup_622_56_20(acc), [107, 105, 116, 97, 107, 97, 116, 97] => lookup_622_56_21(acc), [107, 105, 116, 97, 115, 104, 105, 111, 98, 97, 114, 97] => lookup_622_56_22(acc), [107, 111, 111, 114, 105] => lookup_622_56_23(acc), [107, 111, 114, 105, 121, 97, 109, 97] => lookup_622_56_24(acc), [107, 117, 110, 105, 109, 105] => lookup_622_56_25(acc), [109, 105, 104, 97, 114, 117] => lookup_622_56_26(acc), [109, 105, 115, 104, 105, 109, 97] => lookup_622_56_27(acc), [110, 97, 109, 105, 101] => lookup_622_56_28(acc), [110, 97, 110, 103, 111] => lookup_622_56_29(acc), [110, 105, 115, 104, 105, 97, 105, 122, 117] => lookup_622_56_30(acc), [110, 105, 115, 104, 105, 103, 111] => lookup_622_56_31(acc), [111, 107, 117, 109, 97] => lookup_622_56_32(acc), [111, 109, 111, 116, 101, 103, 111] => lookup_622_56_33(acc), [111, 110, 111] => lookup_622_56_34(acc), [111, 116, 97, 109, 97] => lookup_622_56_35(acc), [115, 97, 109, 101, 103, 97, 119, 97] => lookup_622_56_36(acc), [115, 104, 105, 109, 111, 103, 111] => lookup_622_56_37(acc), [115, 104, 105, 114, 97, 107, 97, 119, 97] => lookup_622_56_38(acc), [115, 104, 111, 119, 97] => lookup_622_56_39(acc), [115, 111, 109, 97] => lookup_622_56_40(acc), [115, 117, 107, 97, 103, 97, 119, 97] => lookup_622_56_41(acc), [116, 97, 105, 115, 104, 105, 110] => lookup_622_56_42(acc), [116, 97, 109, 97, 107, 97, 119, 97] => lookup_622_56_43(acc), [116, 97, 110, 97, 103, 117, 114, 97] => lookup_622_56_44(acc), [116, 101, 110, 101, 105] => lookup_622_56_45(acc), [121, 97, 98, 117, 107, 105] => lookup_622_56_46(acc), [121, 97, 109, 97, 116, 111] => lookup_622_56_47(acc), [121, 97, 109, 97, 116, 115, 117, 114, 105] => lookup_622_56_48(acc), [121, 97, 110, 97, 105, 122, 117] => lookup_622_56_49(acc), [121, 117, 103, 97, 119, 97] => lookup_622_56_50(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_57_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_12(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_23(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_27(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_28(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_31(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_32(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_34(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_35(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57_37(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_57<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 110, 112, 97, 99, 104, 105] => lookup_622_57_0(acc), [101, 110, 97] => lookup_622_57_1(acc), [103, 105, 102, 117] => lookup_622_57_2(acc), [103, 105, 110, 97, 110] => lookup_622_57_3(acc), [103, 111, 100, 111] => lookup_622_57_4(acc), [103, 117, 106, 111] => lookup_622_57_5(acc), [104, 97, 115, 104, 105, 109, 97] => lookup_622_57_6(acc), [104, 105, 99, 104, 105, 115, 111] => lookup_622_57_7(acc), [104, 105, 100, 97] => lookup_622_57_8(acc), [104, 105, 103, 97, 115, 104, 105, 115, 104, 105, 114, 97, 107, 97, 119, 97] => { lookup_622_57_9(acc) } [105, 98, 105, 103, 97, 119, 97] => lookup_622_57_10(acc), [105, 107, 101, 100, 97] => lookup_622_57_11(acc), [107, 97, 107, 97, 109, 105, 103, 97, 104, 97, 114, 97] => lookup_622_57_12(acc), [107, 97, 110, 105] => lookup_622_57_13(acc), [107, 97, 115, 97, 104, 97, 114, 97] => lookup_622_57_14(acc), [107, 97, 115, 97, 109, 97, 116, 115, 117] => lookup_622_57_15(acc), [107, 97, 119, 97, 117, 101] => lookup_622_57_16(acc), [107, 105, 116, 97, 103, 97, 116, 97] => lookup_622_57_17(acc), [109, 105, 110, 111] => lookup_622_57_18(acc), [109, 105, 110, 111, 107, 97, 109, 111] => lookup_622_57_19(acc), [109, 105, 116, 97, 107, 101] => lookup_622_57_20(acc), [109, 105, 122, 117, 110, 97, 109, 105] => lookup_622_57_21(acc), [109, 111, 116, 111, 115, 117] => lookup_622_57_22(acc), [110, 97, 107, 97, 116, 115, 117, 103, 97, 119, 97] => lookup_622_57_23(acc), [111, 103, 97, 107, 105] => lookup_622_57_24(acc), [115, 97, 107, 97, 104, 111, 103, 105] => lookup_622_57_25(acc), [115, 101, 107, 105] => lookup_622_57_26(acc), [115, 101, 107, 105, 103, 97, 104, 97, 114, 97] => lookup_622_57_27(acc), [115, 104, 105, 114, 97, 107, 97, 119, 97] => lookup_622_57_28(acc), [116, 97, 106, 105, 109, 105] => lookup_622_57_29(acc), [116, 97, 107, 97, 121, 97, 109, 97] => lookup_622_57_30(acc), [116, 97, 114, 117, 105] => lookup_622_57_31(acc), [116, 111, 107, 105] => lookup_622_57_32(acc), [116, 111, 109, 105, 107, 97] => lookup_622_57_33(acc), [119, 97, 110, 111, 117, 99, 104, 105] => lookup_622_57_34(acc), [121, 97, 109, 97, 103, 97, 116, 97] => lookup_622_57_35(acc), [121, 97, 111, 116, 115, 117] => lookup_622_57_36(acc), [121, 111, 114, 111] => lookup_622_57_37(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_58(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_59(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_60(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_61(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_62(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_63(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_64(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_65_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_3(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_8(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_10(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_21(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_22(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_24(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_27(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_28(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_29(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_30(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_32(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_33(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_34(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65_35(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_65<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 110, 110, 97, 107, 97] => lookup_622_65_0(acc), [99, 104, 105, 121, 111, 100, 97] => lookup_622_65_1(acc), [102, 117, 106, 105, 111, 107, 97] => lookup_622_65_2(acc), [104, 105, 103, 97, 115, 104, 105, 97, 103, 97, 116, 115, 117, 109, 97] => { lookup_622_65_3(acc) } [105, 115, 101, 115, 97, 107, 105] => lookup_622_65_4(acc), [105, 116, 97, 107, 117, 114, 97] => lookup_622_65_5(acc), [107, 97, 110, 110, 97] => lookup_622_65_6(acc), [107, 97, 110, 114, 97] => lookup_622_65_7(acc), [107, 97, 116, 97, 115, 104, 105, 110, 97] => lookup_622_65_8(acc), [107, 97, 119, 97, 98, 97] => lookup_622_65_9(acc), [107, 105, 114, 121, 117] => lookup_622_65_10(acc), [107, 117, 115, 97, 116, 115, 117] => lookup_622_65_11(acc), [109, 97, 101, 98, 97, 115, 104, 105] => lookup_622_65_12(acc), [109, 101, 105, 119, 97] => lookup_622_65_13(acc), [109, 105, 100, 111, 114, 105] => lookup_622_65_14(acc), [109, 105, 110, 97, 107, 97, 109, 105] => lookup_622_65_15(acc), [110, 97, 103, 97, 110, 111, 104, 97, 114, 97] => lookup_622_65_16(acc), [110, 97, 107, 97, 110, 111, 106, 111] => lookup_622_65_17(acc), [110, 97, 110, 109, 111, 107, 117] => lookup_622_65_18(acc), [110, 117, 109, 97, 116, 97] => lookup_622_65_19(acc), [111, 105, 122, 117, 109, 105] => lookup_622_65_20(acc), [111, 114, 97] => lookup_622_65_21(acc), [111, 116, 97] => lookup_622_65_22(acc), [115, 104, 105, 98, 117, 107, 97, 119, 97] => lookup_622_65_23(acc), [115, 104, 105, 109, 111, 110, 105, 116, 97] => lookup_622_65_24(acc), [115, 104, 105, 110, 116, 111] => lookup_622_65_25(acc), [115, 104, 111, 119, 97] => lookup_622_65_26(acc), [116, 97, 107, 97, 115, 97, 107, 105] => lookup_622_65_27(acc), [116, 97, 107, 97, 121, 97, 109, 97] => lookup_622_65_28(acc), [116, 97, 109, 97, 109, 117, 114, 97] => lookup_622_65_29(acc), [116, 97, 116, 101, 98, 97, 121, 97, 115, 104, 105] => lookup_622_65_30(acc), [116, 111, 109, 105, 111, 107, 97] => lookup_622_65_31(acc), [116, 115, 117, 107, 105, 121, 111, 110, 111] => lookup_622_65_32(acc), [116, 115, 117, 109, 97, 103, 111, 105] => lookup_622_65_33(acc), [117, 101, 110, 111] => lookup_622_65_34(acc), [121, 111, 115, 104, 105, 111, 107, 97] => lookup_622_65_35(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_66(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_67(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_68(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_69(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_70(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_71(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_72(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_73_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_5(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_6(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_8(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_17(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_19(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_21(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_73<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 97, 109, 105, 110, 97, 109, 105] => lookup_622_73_0(acc), [100, 97, 105, 119, 97] => lookup_622_73_1(acc), [101, 116, 97, 106, 105, 109, 97] => lookup_622_73_2(acc), [102, 117, 99, 104, 117] => lookup_622_73_3(acc), [102, 117, 107, 117, 121, 97, 109, 97] => lookup_622_73_4(acc), [104, 97, 116, 115, 117, 107, 97, 105, 99, 104, 105] => lookup_622_73_5(acc), [104, 105, 103, 97, 115, 104, 105, 104, 105, 114, 111, 115, 104, 105, 109, 97] => { lookup_622_73_6(acc) } [104, 111, 110, 103, 111] => lookup_622_73_7(acc), [106, 105, 110, 115, 101, 107, 105, 107, 111, 103, 101, 110] => lookup_622_73_8(acc), [107, 97, 105, 116, 97] => lookup_622_73_9(acc), [107, 117, 105] => lookup_622_73_10(acc), [107, 117, 109, 97, 110, 111] => lookup_622_73_11(acc), [107, 117, 114, 101] => lookup_622_73_12(acc), [109, 105, 104, 97, 114, 97] => lookup_622_73_13(acc), [109, 105, 121, 111, 115, 104, 105] => lookup_622_73_14(acc), [110, 97, 107, 97] => lookup_622_73_15(acc), [111, 110, 111, 109, 105, 99, 104, 105] => lookup_622_73_16(acc), [111, 115, 97, 107, 105, 107, 97, 109, 105, 106, 105, 109, 97] => lookup_622_73_17(acc), [111, 116, 97, 107, 101] => lookup_622_73_18(acc), [115, 97, 107, 97] => lookup_622_73_19(acc), [115, 101, 114, 97] => lookup_622_73_20(acc), [115, 101, 114, 97, 110, 105, 115, 104, 105] => lookup_622_73_21(acc), [115, 104, 105, 110, 105, 99, 104, 105] => lookup_622_73_22(acc), [115, 104, 111, 98, 97, 114, 97] => lookup_622_73_23(acc), [116, 97, 107, 101, 104, 97, 114, 97] => lookup_622_73_24(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_74_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_10(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_15(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_25(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_27(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_29(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_30(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_31(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_32(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_33(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_34(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_35(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_38(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_39(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_40(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_41(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_42(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_43(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_44(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_45(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_46(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_47(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_48(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_49(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_50(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_51(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_52(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_53(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_54(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_55(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_56(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_57(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_58(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_59(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_60(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_61(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_62(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_63(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_64(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_65(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_66(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_67(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_68(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_69(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_70(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_71(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_72(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_73(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_74(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_75(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_76(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_77(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_78(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_79(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_80(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_81(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_82(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_83(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_84(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_85(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_86(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_87(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_88(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_89(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_90(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_91(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_92(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_93(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_94(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_95(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_96(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_97(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_98(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_99(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_100(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_101(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_102(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_103(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_104(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_105(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_106(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_107(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_108(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_109(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_110(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_111(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_112(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_113(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_114(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_115(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_116(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_117(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_118(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_119(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_120(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_121(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_122(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_123(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_124(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_125(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_126(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_127(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_128(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_129(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_130(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_131(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_132(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_133(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_134(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_135(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_136(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_137(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_138(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_139(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_140(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74_141(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_74<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98, 97, 115, 104, 105, 114, 105] => lookup_622_74_0(acc), [97, 98, 105, 114, 97] => lookup_622_74_1(acc), [97, 105, 98, 101, 116, 115, 117] => lookup_622_74_2(acc), [97, 107, 97, 98, 105, 114, 97] => lookup_622_74_3(acc), [97, 107, 107, 101, 115, 104, 105] => lookup_622_74_4(acc), [97, 115, 97, 104, 105, 107, 97, 119, 97] => lookup_622_74_5(acc), [97, 115, 104, 105, 98, 101, 116, 115, 117] => lookup_622_74_6(acc), [97, 115, 104, 111, 114, 111] => lookup_622_74_7(acc), [97, 115, 115, 97, 98, 117] => lookup_622_74_8(acc), [97, 116, 115, 117, 109, 97] => lookup_622_74_9(acc), [98, 105, 98, 97, 105] => lookup_622_74_10(acc), [98, 105, 101, 105] => lookup_622_74_11(acc), [98, 105, 102, 117, 107, 97] => lookup_622_74_12(acc), [98, 105, 104, 111, 114, 111] => lookup_622_74_13(acc), [98, 105, 114, 97, 116, 111, 114, 105] => lookup_622_74_14(acc), [99, 104, 105, 112, 112, 117, 98, 101, 116, 115, 117] => lookup_622_74_15(acc), [99, 104, 105, 116, 111, 115, 101] => lookup_622_74_16(acc), [100, 97, 116, 101] => lookup_622_74_17(acc), [101, 98, 101, 116, 115, 117] => lookup_622_74_18(acc), [101, 109, 98, 101, 116, 115, 117] => lookup_622_74_19(acc), [101, 110, 105, 119, 97] => lookup_622_74_20(acc), [101, 114, 105, 109, 111] => lookup_622_74_21(acc), [101, 115, 97, 110] => lookup_622_74_22(acc), [101, 115, 97, 115, 104, 105] => lookup_622_74_23(acc), [102, 117, 107, 97, 103, 97, 119, 97] => lookup_622_74_24(acc), [102, 117, 107, 117, 115, 104, 105, 109, 97] => lookup_622_74_25(acc), [102, 117, 114, 97, 110, 111] => lookup_622_74_26(acc), [102, 117, 114, 117, 98, 105, 114, 97] => lookup_622_74_27(acc), [104, 97, 98, 111, 114, 111] => lookup_622_74_28(acc), [104, 97, 107, 111, 100, 97, 116, 101] => lookup_622_74_29(acc), [104, 97, 109, 97, 116, 111, 110, 98, 101, 116, 115, 117] => lookup_622_74_30(acc), [104, 105, 100, 97, 107, 97] => lookup_622_74_31(acc), [104, 105, 103, 97, 115, 104, 105, 107, 97, 103, 117, 114, 97] => lookup_622_74_32(acc), [104, 105, 103, 97, 115, 104, 105, 107, 97, 119, 97] => lookup_622_74_33(acc), [104, 105, 114, 111, 111] => lookup_622_74_34(acc), [104, 111, 107, 117, 114, 121, 117] => lookup_622_74_35(acc), [104, 111, 107, 117, 116, 111] => lookup_622_74_36(acc), [104, 111, 110, 98, 101, 116, 115, 117] => lookup_622_74_37(acc), [104, 111, 114, 111, 107, 97, 110, 97, 105] => lookup_622_74_38(acc), [104, 111, 114, 111, 110, 111, 98, 101] => lookup_622_74_39(acc), [105, 107, 101, 100, 97] => lookup_622_74_40(acc), [105, 109, 97, 107, 97, 110, 101] => lookup_622_74_41(acc), [105, 115, 104, 105, 107, 97, 114, 105] => lookup_622_74_42(acc), [105, 119, 97, 109, 105, 122, 97, 119, 97] => lookup_622_74_43(acc), [105, 119, 97, 110, 97, 105] => lookup_622_74_44(acc), [107, 97, 109, 105, 102, 117, 114, 97, 110, 111] => lookup_622_74_45(acc), [107, 97, 109, 105, 107, 97, 119, 97] => lookup_622_74_46(acc), [107, 97, 109, 105, 115, 104, 105, 104, 111, 114, 111] => lookup_622_74_47(acc), [107, 97, 109, 105, 115, 117, 110, 97, 103, 97, 119, 97] => lookup_622_74_48(acc), [107, 97, 109, 111, 101, 110, 97, 105] => lookup_622_74_49(acc), [107, 97, 121, 97, 98, 101] => lookup_622_74_50(acc), [107, 101, 109, 98, 117, 99, 104, 105] => lookup_622_74_51(acc), [107, 105, 107, 111, 110, 97, 105] => lookup_622_74_52(acc), [107, 105, 109, 111, 98, 101, 116, 115, 117] => lookup_622_74_53(acc), [107, 105, 116, 97, 104, 105, 114, 111, 115, 104, 105, 109, 97] => { lookup_622_74_54(acc) } [107, 105, 116, 97, 109, 105] => lookup_622_74_55(acc), [107, 105, 121, 111, 115, 97, 116, 111] => lookup_622_74_56(acc), [107, 111, 115, 104, 105, 109, 105, 122, 117] => lookup_622_74_57(acc), [107, 117, 110, 110, 101, 112, 112, 117] => lookup_622_74_58(acc), [107, 117, 114, 105, 121, 97, 109, 97] => lookup_622_74_59(acc), [107, 117, 114, 111, 109, 97, 116, 115, 117, 110, 97, 105] => lookup_622_74_60(acc), [107, 117, 115, 104, 105, 114, 111] => lookup_622_74_61(acc), [107, 117, 116, 99, 104, 97, 110] => lookup_622_74_62(acc), [107, 121, 111, 119, 97] => lookup_622_74_63(acc), [109, 97, 115, 104, 105, 107, 101] => lookup_622_74_64(acc), [109, 97, 116, 115, 117, 109, 97, 101] => lookup_622_74_65(acc), [109, 105, 107, 97, 115, 97] => lookup_622_74_66(acc), [109, 105, 110, 97, 109, 105, 102, 117, 114, 97, 110, 111] => lookup_622_74_67(acc), [109, 111, 109, 98, 101, 116, 115, 117] => lookup_622_74_68(acc), [109, 111, 115, 101, 117, 115, 104, 105] => lookup_622_74_69(acc), [109, 117, 107, 97, 119, 97] => lookup_622_74_70(acc), [109, 117, 114, 111, 114, 97, 110] => lookup_622_74_71(acc), [110, 97, 105, 101] => lookup_622_74_72(acc), [110, 97, 107, 97, 103, 97, 119, 97] => lookup_622_74_73(acc), [110, 97, 107, 97, 115, 97, 116, 115, 117, 110, 97, 105] => lookup_622_74_74(acc), [110, 97, 107, 97, 116, 111, 109, 98, 101, 116, 115, 117] => lookup_622_74_75(acc), [110, 97, 110, 97, 101] => lookup_622_74_76(acc), [110, 97, 110, 112, 111, 114, 111] => lookup_622_74_77(acc), [110, 97, 121, 111, 114, 111] => lookup_622_74_78(acc), [110, 101, 109, 117, 114, 111] => lookup_622_74_79(acc), [110, 105, 105, 107, 97, 112, 112, 117] => lookup_622_74_80(acc), [110, 105, 107, 105] => lookup_622_74_81(acc), [110, 105, 115, 104, 105, 111, 107, 111, 112, 112, 101] => lookup_622_74_82(acc), [110, 111, 98, 111, 114, 105, 98, 101, 116, 115, 117] => lookup_622_74_83(acc), [110, 117, 109, 97, 116, 97] => lookup_622_74_84(acc), [111, 98, 105, 104, 105, 114, 111] => lookup_622_74_85(acc), [111, 98, 105, 114, 97] => lookup_622_74_86(acc), [111, 107, 101, 116, 111] => lookup_622_74_87(acc), [111, 107, 111, 112, 112, 101] => lookup_622_74_88(acc), [111, 116, 97, 114, 117] => lookup_622_74_89(acc), [111, 116, 111, 98, 101] => lookup_622_74_90(acc), [111, 116, 111, 102, 117, 107, 101] => lookup_622_74_91(acc), [111, 116, 111, 105, 110, 101, 112, 112, 117] => lookup_622_74_92(acc), [111, 117, 109, 117] => lookup_622_74_93(acc), [111, 122, 111, 114, 97] => lookup_622_74_94(acc), [112, 105, 112, 112, 117] => lookup_622_74_95(acc), [114, 97, 110, 107, 111, 115, 104, 105] => lookup_622_74_96(acc), [114, 101, 98, 117, 110] => lookup_622_74_97(acc), [114, 105, 107, 117, 98, 101, 116, 115, 117] => lookup_622_74_98(acc), [114, 105, 115, 104, 105, 114, 105] => lookup_622_74_99(acc), [114, 105, 115, 104, 105, 114, 105, 102, 117, 106, 105] => lookup_622_74_100(acc), [115, 97, 114, 111, 109, 97] => lookup_622_74_101(acc), [115, 97, 114, 117, 102, 117, 116, 115, 117] => lookup_622_74_102(acc), [115, 104, 97, 107, 111, 116, 97, 110] => lookup_622_74_103(acc), [115, 104, 97, 114, 105] => lookup_622_74_104(acc), [115, 104, 105, 98, 101, 99, 104, 97] => lookup_622_74_105(acc), [115, 104, 105, 98, 101, 116, 115, 117] => lookup_622_74_106(acc), [115, 104, 105, 107, 97, 98, 101] => lookup_622_74_107(acc), [115, 104, 105, 107, 97, 111, 105] => lookup_622_74_108(acc), [115, 104, 105, 109, 97, 109, 97, 107, 105] => lookup_622_74_109(acc), [115, 104, 105, 109, 105, 122, 117] => lookup_622_74_110(acc), [115, 104, 105, 109, 111, 107, 97, 119, 97] => lookup_622_74_111(acc), [115, 104, 105, 110, 115, 104, 105, 110, 111, 116, 115, 117] => lookup_622_74_112(acc), [115, 104, 105, 110, 116, 111, 107, 117] => lookup_622_74_113(acc), [115, 104, 105, 114, 97, 110, 117, 107, 97] => lookup_622_74_114(acc), [115, 104, 105, 114, 97, 111, 105] => lookup_622_74_115(acc), [115, 104, 105, 114, 105, 117, 99, 104, 105] => lookup_622_74_116(acc), [115, 111, 98, 101, 116, 115, 117] => lookup_622_74_117(acc), [115, 117, 110, 97, 103, 97, 119, 97] => lookup_622_74_118(acc), [116, 97, 105, 107, 105] => lookup_622_74_119(acc), [116, 97, 107, 97, 115, 117] => lookup_622_74_120(acc), [116, 97, 107, 105, 107, 97, 119, 97] => lookup_622_74_121(acc), [116, 97, 107, 105, 110, 111, 117, 101] => lookup_622_74_122(acc), [116, 101, 115, 104, 105, 107, 97, 103, 97] => lookup_622_74_123(acc), [116, 111, 98, 101, 116, 115, 117] => lookup_622_74_124(acc), [116, 111, 104, 109, 97] => lookup_622_74_125(acc), [116, 111, 109, 97, 107, 111, 109, 97, 105] => lookup_622_74_126(acc), [116, 111, 109, 97, 114, 105] => lookup_622_74_127(acc), [116, 111, 121, 97] => lookup_622_74_128(acc), [116, 111, 121, 97, 107, 111] => lookup_622_74_129(acc), [116, 111, 121, 111, 116, 111, 109, 105] => lookup_622_74_130(acc), [116, 111, 121, 111, 117, 114, 97] => lookup_622_74_131(acc), [116, 115, 117, 98, 101, 116, 115, 117] => lookup_622_74_132(acc), [116, 115, 117, 107, 105, 103, 97, 116, 97] => lookup_622_74_133(acc), [117, 114, 97, 107, 97, 119, 97] => lookup_622_74_134(acc), [117, 114, 97, 117, 115, 117] => lookup_622_74_135(acc), [117, 114, 121, 117] => lookup_622_74_136(acc), [117, 116, 97, 115, 104, 105, 110, 97, 105] => lookup_622_74_137(acc), [119, 97, 107, 107, 97, 110, 97, 105] => lookup_622_74_138(acc), [119, 97, 115, 115, 97, 109, 117] => lookup_622_74_139(acc), [121, 97, 107, 117, 109, 111] => lookup_622_74_140(acc), [121, 111, 105, 99, 104, 105] => lookup_622_74_141(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_75(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_76(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_77_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_20(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_22(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_23(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_24(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_28(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_29(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_31(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_32(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_35(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_36(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_38(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_39(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_40(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_41(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_42(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_43(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_44(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77_45(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_77<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 111, 105] => lookup_622_77_0(acc), [97, 107, 97, 115, 104, 105] => lookup_622_77_1(acc), [97, 107, 111] => lookup_622_77_2(acc), [97, 109, 97, 103, 97, 115, 97, 107, 105] => lookup_622_77_3(acc), [97, 111, 103, 97, 107, 105] => lookup_622_77_4(acc), [97, 115, 97, 103, 111] => lookup_622_77_5(acc), [97, 115, 104, 105, 121, 97] => lookup_622_77_6(acc), [97, 119, 97, 106, 105] => lookup_622_77_7(acc), [102, 117, 107, 117, 115, 97, 107, 105] => lookup_622_77_8(acc), [103, 111, 115, 104, 105, 107, 105] => lookup_622_77_9(acc), [104, 97, 114, 105, 109, 97] => lookup_622_77_10(acc), [104, 105, 109, 101, 106, 105] => lookup_622_77_11(acc), [105, 99, 104, 105, 107, 97, 119, 97] => lookup_622_77_12(acc), [105, 110, 97, 103, 97, 119, 97] => lookup_622_77_13(acc), [105, 116, 97, 109, 105] => lookup_622_77_14(acc), [107, 97, 107, 111, 103, 97, 119, 97] => lookup_622_77_15(acc), [107, 97, 109, 105, 103, 111, 114, 105] => lookup_622_77_16(acc), [107, 97, 109, 105, 107, 97, 119, 97] => lookup_622_77_17(acc), [107, 97, 115, 97, 105] => lookup_622_77_18(acc), [107, 97, 115, 117, 103, 97] => lookup_622_77_19(acc), [107, 97, 119, 97, 110, 105, 115, 104, 105] => lookup_622_77_20(acc), [109, 105, 107, 105] => lookup_622_77_21(acc), [109, 105, 110, 97, 109, 105, 97, 119, 97, 106, 105] => lookup_622_77_22(acc), [110, 105, 115, 104, 105, 110, 111, 109, 105, 121, 97] => lookup_622_77_23(acc), [110, 105, 115, 104, 105, 119, 97, 107, 105] => lookup_622_77_24(acc), [111, 110, 111] => lookup_622_77_25(acc), [115, 97, 110, 100, 97] => lookup_622_77_26(acc), [115, 97, 110, 110, 97, 110] => lookup_622_77_27(acc), [115, 97, 115, 97, 121, 97, 109, 97] => lookup_622_77_28(acc), [115, 97, 121, 111] => lookup_622_77_29(acc), [115, 104, 105, 110, 103, 117] => lookup_622_77_30(acc), [115, 104, 105, 110, 111, 110, 115, 101, 110] => lookup_622_77_31(acc), [115, 104, 105, 115, 111] => lookup_622_77_32(acc), [115, 117, 109, 111, 116, 111] => lookup_622_77_33(acc), [116, 97, 105, 115, 104, 105] => lookup_622_77_34(acc), [116, 97, 107, 97] => lookup_622_77_35(acc), [116, 97, 107, 97, 114, 97, 122, 117, 107, 97] => lookup_622_77_36(acc), [116, 97, 107, 97, 115, 97, 103, 111] => lookup_622_77_37(acc), [116, 97, 107, 105, 110, 111] => lookup_622_77_38(acc), [116, 97, 109, 98, 97] => lookup_622_77_39(acc), [116, 97, 116, 115, 117, 110, 111] => lookup_622_77_40(acc), [116, 111, 121, 111, 111, 107, 97] => lookup_622_77_41(acc), [121, 97, 98, 117] => lookup_622_77_42(acc), [121, 97, 115, 104, 105, 114, 111] => lookup_622_77_43(acc), [121, 111, 107, 97] => lookup_622_77_44(acc), [121, 111, 107, 97, 119, 97] => lookup_622_77_45(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_78_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_8(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_9(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_19(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_29(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_30(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_31(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_32(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_33(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_34(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_35(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_36(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_38(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_39(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_40(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_41(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_42(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_43(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_44(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_45(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_46(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_48(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_49(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78_50(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_78<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 109, 105] => lookup_622_78_0(acc), [97, 115, 97, 104, 105] => lookup_622_78_1(acc), [98, 97, 110, 100, 111] => lookup_622_78_2(acc), [99, 104, 105, 107, 117, 115, 101, 105] => lookup_622_78_3(acc), [100, 97, 105, 103, 111] => lookup_622_78_4(acc), [102, 117, 106, 105, 115, 104, 105, 114, 111] => lookup_622_78_5(acc), [104, 105, 116, 97, 99, 104, 105] => lookup_622_78_6(acc), [104, 105, 116, 97, 99, 104, 105, 110, 97, 107, 97] => lookup_622_78_7(acc), [104, 105, 116, 97, 99, 104, 105, 111, 109, 105, 121, 97] => lookup_622_78_8(acc), [104, 105, 116, 97, 99, 104, 105, 111, 116, 97] => lookup_622_78_9(acc), [105, 98, 97, 114, 97, 107, 105] => lookup_622_78_10(acc), [105, 110, 97] => lookup_622_78_11(acc), [105, 110, 97, 115, 104, 105, 107, 105] => lookup_622_78_12(acc), [105, 116, 97, 107, 111] => lookup_622_78_13(acc), [105, 119, 97, 109, 97] => lookup_622_78_14(acc), [106, 111, 115, 111] => lookup_622_78_15(acc), [107, 97, 109, 105, 115, 117] => lookup_622_78_16(acc), [107, 97, 115, 97, 109, 97] => lookup_622_78_17(acc), [107, 97, 115, 104, 105, 109, 97] => lookup_622_78_18(acc), [107, 97, 115, 117, 109, 105, 103, 97, 117, 114, 97] => lookup_622_78_19(acc), [107, 111, 103, 97] => lookup_622_78_20(acc), [109, 105, 104, 111] => lookup_622_78_21(acc), [109, 105, 116, 111] => lookup_622_78_22(acc), [109, 111, 114, 105, 121, 97] => lookup_622_78_23(acc), [110, 97, 107, 97] => lookup_622_78_24(acc), [110, 97, 109, 101, 103, 97, 116, 97] => lookup_622_78_25(acc), [111, 97, 114, 97, 105] => lookup_622_78_26(acc), [111, 103, 97, 119, 97] => lookup_622_78_27(acc), [111, 109, 105, 116, 97, 109, 97] => lookup_622_78_28(acc), [114, 121, 117, 103, 97, 115, 97, 107, 105] => lookup_622_78_29(acc), [115, 97, 107, 97, 105] => lookup_622_78_30(acc), [115, 97, 107, 117, 114, 97, 103, 97, 119, 97] => lookup_622_78_31(acc), [115, 104, 105, 109, 111, 100, 97, 116, 101] => lookup_622_78_32(acc), [115, 104, 105, 109, 111, 116, 115, 117, 109, 97] => lookup_622_78_33(acc), [115, 104, 105, 114, 111, 115, 97, 116, 111] => lookup_622_78_34(acc), [115, 111, 119, 97] => lookup_622_78_35(acc), [115, 117, 105, 102, 117] => lookup_622_78_36(acc), [116, 97, 107, 97, 104, 97, 103, 105] => lookup_622_78_37(acc), [116, 97, 109, 97, 116, 115, 117, 107, 117, 114, 105] => lookup_622_78_38(acc), [116, 111, 107, 97, 105] => lookup_622_78_39(acc), [116, 111, 109, 111, 98, 101] => lookup_622_78_40(acc), [116, 111, 110, 101] => lookup_622_78_41(acc), [116, 111, 114, 105, 100, 101] => lookup_622_78_42(acc), [116, 115, 117, 99, 104, 105, 117, 114, 97] => lookup_622_78_43(acc), [116, 115, 117, 107, 117, 98, 97] => lookup_622_78_44(acc), [117, 99, 104, 105, 104, 97, 114, 97] => lookup_622_78_45(acc), [117, 115, 104, 105, 107, 117] => lookup_622_78_46(acc), [121, 97, 99, 104, 105, 121, 111] => lookup_622_78_47(acc), [121, 97, 109, 97, 103, 97, 116, 97] => lookup_622_78_48(acc), [121, 97, 119, 97, 114, 97] => lookup_622_78_49(acc), [121, 117, 107, 105] => lookup_622_78_50(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_79(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_80_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_14(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_80<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 110, 97, 109, 105, 122, 117] => lookup_622_80_0(acc), [104, 97, 107, 117, 105] => lookup_622_80_1(acc), [104, 97, 107, 117, 115, 97, 110] => lookup_622_80_2(acc), [107, 97, 103, 97] => lookup_622_80_3(acc), [107, 97, 104, 111, 107, 117] => lookup_622_80_4(acc), [107, 97, 110, 97, 122, 97, 119, 97] => lookup_622_80_5(acc), [107, 97, 119, 97, 107, 105, 116, 97] => lookup_622_80_6(acc), [107, 111, 109, 97, 116, 115, 117] => lookup_622_80_7(acc), [110, 97, 107, 97, 110, 111, 116, 111] => lookup_622_80_8(acc), [110, 97, 110, 97, 111] => lookup_622_80_9(acc), [110, 111, 109, 105] => lookup_622_80_10(acc), [110, 111, 110, 111, 105, 99, 104, 105] => lookup_622_80_11(acc), [110, 111, 116, 111] => lookup_622_80_12(acc), [115, 104, 105, 107, 97] => lookup_622_80_13(acc), [115, 117, 122, 117] => lookup_622_80_14(acc), [116, 115, 117, 98, 97, 116, 97] => lookup_622_80_15(acc), [116, 115, 117, 114, 117, 103, 105] => lookup_622_80_16(acc), [117, 99, 104, 105, 110, 97, 100, 97] => lookup_622_80_17(acc), [119, 97, 106, 105, 109, 97] => lookup_622_80_18(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_81(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_82_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_20(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_25(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_26(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_28(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_31(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_82<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [102, 117, 100, 97, 105] => lookup_622_82_0(acc), [102, 117, 106, 105, 115, 97, 119, 97] => lookup_622_82_1(acc), [104, 97, 110, 97, 109, 97, 107, 105] => lookup_622_82_2(acc), [104, 105, 114, 97, 105, 122, 117, 109, 105] => lookup_622_82_3(acc), [104, 105, 114, 111, 110, 111] => lookup_622_82_4(acc), [105, 99, 104, 105, 110, 111, 104, 101] => lookup_622_82_5(acc), [105, 99, 104, 105, 110, 111, 115, 101, 107, 105] => lookup_622_82_6(acc), [105, 119, 97, 105, 122, 117, 109, 105] => lookup_622_82_7(acc), [105, 119, 97, 116, 101] => lookup_622_82_8(acc), [106, 111, 98, 111, 106, 105] => lookup_622_82_9(acc), [107, 97, 109, 97, 105, 115, 104, 105] => lookup_622_82_10(acc), [107, 97, 110, 101, 103, 97, 115, 97, 107, 105] => lookup_622_82_11(acc), [107, 97, 114, 117, 109, 97, 105] => lookup_622_82_12(acc), [107, 97, 119, 97, 105] => lookup_622_82_13(acc), [107, 105, 116, 97, 107, 97, 109, 105] => lookup_622_82_14(acc), [107, 117, 106, 105] => lookup_622_82_15(acc), [107, 117, 110, 111, 104, 101] => lookup_622_82_16(acc), [107, 117, 122, 117, 109, 97, 107, 105] => lookup_622_82_17(acc), [109, 105, 121, 97, 107, 111] => lookup_622_82_18(acc), [109, 105, 122, 117, 115, 97, 119, 97] => lookup_622_82_19(acc), [109, 111, 114, 105, 111, 107, 97] => lookup_622_82_20(acc), [110, 105, 110, 111, 104, 101] => lookup_622_82_21(acc), [110, 111, 100, 97] => lookup_622_82_22(acc), [111, 102, 117, 110, 97, 116, 111] => lookup_622_82_23(acc), [111, 115, 104, 117] => lookup_622_82_24(acc), [111, 116, 115, 117, 99, 104, 105] => lookup_622_82_25(acc), [114, 105, 107, 117, 122, 101, 110, 116, 97, 107, 97, 116, 97] => lookup_622_82_26(acc), [115, 104, 105, 119, 97] => lookup_622_82_27(acc), [115, 104, 105, 122, 117, 107, 117, 105, 115, 104, 105] => lookup_622_82_28(acc), [115, 117, 109, 105, 116, 97] => lookup_622_82_29(acc), [116, 97, 110, 111, 104, 97, 116, 97] => lookup_622_82_30(acc), [116, 111, 110, 111] => lookup_622_82_31(acc), [121, 97, 104, 97, 98, 97] => lookup_622_82_32(acc), [121, 97, 109, 97, 100, 97] => lookup_622_82_33(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_83(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_84(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_85_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_1(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_85<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 121, 97, 103, 97, 119, 97] => lookup_622_85_0(acc), [104, 105, 103, 97, 115, 104, 105, 107, 97, 103, 97, 119, 97] => lookup_622_85_1(acc), [107, 97, 110, 111, 110, 106, 105] => lookup_622_85_2(acc), [107, 111, 116, 111, 104, 105, 114, 97] => lookup_622_85_3(acc), [109, 97, 110, 110, 111] => lookup_622_85_4(acc), [109, 97, 114, 117, 103, 97, 109, 101] => lookup_622_85_5(acc), [109, 105, 116, 111, 121, 111] => lookup_622_85_6(acc), [110, 97, 111, 115, 104, 105, 109, 97] => lookup_622_85_7(acc), [115, 97, 110, 117, 107, 105] => lookup_622_85_8(acc), [116, 97, 100, 111, 116, 115, 117] => lookup_622_85_9(acc), [116, 97, 107, 97, 109, 97, 116, 115, 117] => lookup_622_85_10(acc), [116, 111, 110, 111, 115, 104, 111] => lookup_622_85_11(acc), [117, 99, 104, 105, 110, 111, 109, 105] => lookup_622_85_12(acc), [117, 116, 97, 122, 117] => lookup_622_85_13(acc), [122, 101, 110, 116, 115, 117, 106, 105] => lookup_622_85_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_86_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_13(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_15(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_16(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_18(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86_19(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_86<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 107, 117, 110, 101] => lookup_622_86_0(acc), [97, 109, 97, 109, 105] => lookup_622_86_1(acc), [104, 105, 111, 107, 105] => lookup_622_86_2(acc), [105, 115, 97] => lookup_622_86_3(acc), [105, 115, 101, 110] => lookup_622_86_4(acc), [105, 122, 117, 109, 105] => lookup_622_86_5(acc), [107, 97, 103, 111, 115, 104, 105, 109, 97] => lookup_622_86_6(acc), [107, 97, 110, 111, 121, 97] => lookup_622_86_7(acc), [107, 97, 119, 97, 110, 97, 98, 101] => lookup_622_86_8(acc), [107, 105, 110, 107, 111] => lookup_622_86_9(acc), [107, 111, 117, 121, 97, 109, 97] => lookup_622_86_10(acc), [109, 97, 107, 117, 114, 97, 122, 97, 107, 105] => lookup_622_86_11(acc), [109, 97, 116, 115, 117, 109, 111, 116, 111] => lookup_622_86_12(acc), [109, 105, 110, 97, 109, 105, 116, 97, 110, 101] => lookup_622_86_13(acc), [110, 97, 107, 97, 116, 97, 110, 101] => lookup_622_86_14(acc), [110, 105, 115, 104, 105, 110, 111, 111, 109, 111, 116, 101] => lookup_622_86_15(acc), [115, 97, 116, 115, 117, 109, 97, 115, 101, 110, 100, 97, 105] => lookup_622_86_16(acc), [115, 111, 111] => lookup_622_86_17(acc), [116, 97, 114, 117, 109, 105, 122, 117] => lookup_622_86_18(acc), [121, 117, 115, 117, 105] => lookup_622_86_19(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_87_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_8(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_14(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_21(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_27(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87_29(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_87<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 107, 97, 119, 97] => lookup_622_87_0(acc), [97, 116, 115, 117, 103, 105] => lookup_622_87_1(acc), [97, 121, 97, 115, 101] => lookup_622_87_2(acc), [99, 104, 105, 103, 97, 115, 97, 107, 105] => lookup_622_87_3(acc), [101, 98, 105, 110, 97] => lookup_622_87_4(acc), [102, 117, 106, 105, 115, 97, 119, 97] => lookup_622_87_5(acc), [104, 97, 100, 97, 110, 111] => lookup_622_87_6(acc), [104, 97, 107, 111, 110, 101] => lookup_622_87_7(acc), [104, 105, 114, 97, 116, 115, 117, 107, 97] => lookup_622_87_8(acc), [105, 115, 101, 104, 97, 114, 97] => lookup_622_87_9(acc), [107, 97, 105, 115, 101, 105] => lookup_622_87_10(acc), [107, 97, 109, 97, 107, 117, 114, 97] => lookup_622_87_11(acc), [107, 105, 121, 111, 107, 97, 119, 97] => lookup_622_87_12(acc), [109, 97, 116, 115, 117, 100, 97] => lookup_622_87_13(acc), [109, 105, 110, 97, 109, 105, 97, 115, 104, 105, 103, 97, 114, 97] => { lookup_622_87_14(acc) } [109, 105, 117, 114, 97] => lookup_622_87_15(acc), [110, 97, 107, 97, 105] => lookup_622_87_16(acc), [110, 105, 110, 111, 109, 105, 121, 97] => lookup_622_87_17(acc), [111, 100, 97, 119, 97, 114, 97] => lookup_622_87_18(acc), [111, 105] => lookup_622_87_19(acc), [111, 105, 115, 111] => lookup_622_87_20(acc), [115, 97, 103, 97, 109, 105, 104, 97, 114, 97] => lookup_622_87_21(acc), [115, 97, 109, 117, 107, 97, 119, 97] => lookup_622_87_22(acc), [116, 115, 117, 107, 117, 105] => lookup_622_87_23(acc), [121, 97, 109, 97, 107, 105, 116, 97] => lookup_622_87_24(acc), [121, 97, 109, 97, 116, 111] => lookup_622_87_25(acc), [121, 111, 107, 111, 115, 117, 107, 97] => lookup_622_87_26(acc), [121, 117, 103, 97, 119, 97, 114, 97] => lookup_622_87_27(acc), [122, 97, 109, 97] => lookup_622_87_28(acc), [122, 117, 115, 104, 105] => lookup_622_87_29(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_88(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_89_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_89_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_89<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_89_0(acc), wild => lookup_622_89_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_90(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_91(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_92(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_93_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_93_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_93<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_93_0(acc), wild => lookup_622_93_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_94_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_94_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_94<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_94_0(acc), wild => lookup_622_94_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_95_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_3(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_19(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_25(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_95<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 107, 105] => lookup_622_95_0(acc), [103, 101, 105, 115, 101, 105] => lookup_622_95_1(acc), [104, 105, 100, 97, 107, 97] => lookup_622_95_2(acc), [104, 105, 103, 97, 115, 104, 105, 116, 115, 117, 110, 111] => lookup_622_95_3(acc), [105, 110, 111] => lookup_622_95_4(acc), [107, 97, 103, 97, 109, 105] => lookup_622_95_5(acc), [107, 97, 109, 105] => lookup_622_95_6(acc), [107, 105, 116, 97, 103, 97, 119, 97] => lookup_622_95_7(acc), [107, 111, 99, 104, 105] => lookup_622_95_8(acc), [109, 105, 104, 97, 114, 97] => lookup_622_95_9(acc), [109, 111, 116, 111, 121, 97, 109, 97] => lookup_622_95_10(acc), [109, 117, 114, 111, 116, 111] => lookup_622_95_11(acc), [110, 97, 104, 97, 114, 105] => lookup_622_95_12(acc), [110, 97, 107, 97, 109, 117, 114, 97] => lookup_622_95_13(acc), [110, 97, 110, 107, 111, 107, 117] => lookup_622_95_14(acc), [110, 105, 115, 104, 105, 116, 111, 115, 97] => lookup_622_95_15(acc), [110, 105, 121, 111, 100, 111, 103, 97, 119, 97] => lookup_622_95_16(acc), [111, 99, 104, 105] => lookup_622_95_17(acc), [111, 107, 97, 119, 97] => lookup_622_95_18(acc), [111, 116, 111, 121, 111] => lookup_622_95_19(acc), [111, 116, 115, 117, 107, 105] => lookup_622_95_20(acc), [115, 97, 107, 97, 119, 97] => lookup_622_95_21(acc), [115, 117, 107, 117, 109, 111] => lookup_622_95_22(acc), [115, 117, 115, 97, 107, 105] => lookup_622_95_23(acc), [116, 111, 115, 97] => lookup_622_95_24(acc), [116, 111, 115, 97, 115, 104, 105, 109, 105, 122, 117] => lookup_622_95_25(acc), [116, 111, 121, 111] => lookup_622_95_26(acc), [116, 115, 117, 110, 111] => lookup_622_95_27(acc), [117, 109, 97, 106, 105] => lookup_622_95_28(acc), [121, 97, 115, 117, 100, 97] => lookup_622_95_29(acc), [121, 117, 115, 117, 104, 97, 114, 97] => lookup_622_95_30(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_96_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_5(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_11(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96_22(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_96<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 109, 97, 107, 117, 115, 97] => lookup_622_96_0(acc), [97, 114, 97, 111] => lookup_622_96_1(acc), [97, 115, 111] => lookup_622_96_2(acc), [99, 104, 111, 121, 111] => lookup_622_96_3(acc), [103, 121, 111, 107, 117, 116, 111] => lookup_622_96_4(acc), [107, 97, 109, 105, 97, 109, 97, 107, 117, 115, 97] => lookup_622_96_5(acc), [107, 105, 107, 117, 99, 104, 105] => lookup_622_96_6(acc), [107, 117, 109, 97, 109, 111, 116, 111] => lookup_622_96_7(acc), [109, 97, 115, 104, 105, 107, 105] => lookup_622_96_8(acc), [109, 105, 102, 117, 110, 101] => lookup_622_96_9(acc), [109, 105, 110, 97, 109, 97, 116, 97] => lookup_622_96_10(acc), [109, 105, 110, 97, 109, 105, 111, 103, 117, 110, 105] => lookup_622_96_11(acc), [110, 97, 103, 97, 115, 117] => lookup_622_96_12(acc), [110, 105, 115, 104, 105, 104, 97, 114, 97] => lookup_622_96_13(acc), [111, 103, 117, 110, 105] => lookup_622_96_14(acc), [111, 122, 117] => lookup_622_96_15(acc), [115, 117, 109, 111, 116, 111] => lookup_622_96_16(acc), [116, 97, 107, 97, 109, 111, 114, 105] => lookup_622_96_17(acc), [117, 107, 105] => lookup_622_96_18(acc), [117, 116, 111] => lookup_622_96_19(acc), [121, 97, 109, 97, 103, 97] => lookup_622_96_20(acc), [121, 97, 109, 97, 116, 111] => lookup_622_96_21(acc), [121, 97, 116, 115, 117, 115, 104, 105, 114, 111] => lookup_622_96_22(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_97(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_98_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_2(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_16(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_19(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_20(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_22(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_26(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_29(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_98<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 121, 97, 98, 101] => lookup_622_98_0(acc), [102, 117, 107, 117, 99, 104, 105, 121, 97, 109, 97] => lookup_622_98_1(acc), [104, 105, 103, 97, 115, 104, 105, 121, 97, 109, 97] => lookup_622_98_2(acc), [105, 100, 101] => lookup_622_98_3(acc), [105, 110, 101] => lookup_622_98_4(acc), [106, 111, 121, 111] => lookup_622_98_5(acc), [107, 97, 109, 101, 111, 107, 97] => lookup_622_98_6(acc), [107, 97, 109, 111] => lookup_622_98_7(acc), [107, 105, 116, 97] => lookup_622_98_8(acc), [107, 105, 122, 117] => lookup_622_98_9(acc), [107, 117, 109, 105, 121, 97, 109, 97] => lookup_622_98_10(acc), [107, 121, 111, 116, 97, 109, 98, 97] => lookup_622_98_11(acc), [107, 121, 111, 116, 97, 110, 97, 98, 101] => lookup_622_98_12(acc), [107, 121, 111, 116, 97, 110, 103, 111] => lookup_622_98_13(acc), [109, 97, 105, 122, 117, 114, 117] => lookup_622_98_14(acc), [109, 105, 110, 97, 109, 105] => lookup_622_98_15(acc), [109, 105, 110, 97, 109, 105, 121, 97, 109, 97, 115, 104, 105, 114, 111] => { lookup_622_98_16(acc) } [109, 105, 121, 97, 122, 117] => lookup_622_98_17(acc), [109, 117, 107, 111] => lookup_622_98_18(acc), [110, 97, 103, 97, 111, 107, 97, 107, 121, 111] => lookup_622_98_19(acc), [110, 97, 107, 97, 103, 121, 111] => lookup_622_98_20(acc), [110, 97, 110, 116, 97, 110] => lookup_622_98_21(acc), [111, 121, 97, 109, 97, 122, 97, 107, 105] => lookup_622_98_22(acc), [115, 97, 107, 121, 111] => lookup_622_98_23(acc), [115, 101, 105, 107, 97] => lookup_622_98_24(acc), [116, 97, 110, 97, 98, 101] => lookup_622_98_25(acc), [117, 106, 105] => lookup_622_98_26(acc), [117, 106, 105, 116, 97, 119, 97, 114, 97] => lookup_622_98_27(acc), [119, 97, 122, 117, 107, 97] => lookup_622_98_28(acc), [121, 97, 109, 97, 115, 104, 105, 110, 97] => lookup_622_98_29(acc), [121, 97, 119, 97, 116, 97] => lookup_622_98_30(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_99(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_100(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_101(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_102(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_103(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_104(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_105(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_106(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_107(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_108_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_11(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_27(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108_29(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_108<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 97, 104, 105] => lookup_622_108_0(acc), [105, 110, 97, 98, 101] => lookup_622_108_1(acc), [105, 115, 101] => lookup_622_108_2(acc), [107, 97, 109, 101, 121, 97, 109, 97] => lookup_622_108_3(acc), [107, 97, 119, 97, 103, 111, 101] => lookup_622_108_4(acc), [107, 105, 104, 111] => lookup_622_108_5(acc), [107, 105, 115, 111, 115, 97, 107, 105] => lookup_622_108_6(acc), [107, 105, 119, 97] => lookup_622_108_7(acc), [107, 111, 109, 111, 110, 111] => lookup_622_108_8(acc), [107, 117, 109, 97, 110, 111] => lookup_622_108_9(acc), [107, 117, 119, 97, 110, 97] => lookup_622_108_10(acc), [109, 97, 116, 115, 117, 115, 97, 107, 97] => lookup_622_108_11(acc), [109, 101, 105, 119, 97] => lookup_622_108_12(acc), [109, 105, 104, 97, 109, 97] => lookup_622_108_13(acc), [109, 105, 110, 97, 109, 105, 105, 115, 101] => lookup_622_108_14(acc), [109, 105, 115, 117, 103, 105] => lookup_622_108_15(acc), [109, 105, 121, 97, 109, 97] => lookup_622_108_16(acc), [110, 97, 98, 97, 114, 105] => lookup_622_108_17(acc), [115, 104, 105, 109, 97] => lookup_622_108_18(acc), [115, 117, 122, 117, 107, 97] => lookup_622_108_19(acc), [116, 97, 100, 111] => lookup_622_108_20(acc), [116, 97, 105, 107, 105] => lookup_622_108_21(acc), [116, 97, 107, 105] => lookup_622_108_22(acc), [116, 97, 109, 97, 107, 105] => lookup_622_108_23(acc), [116, 111, 98, 97] => lookup_622_108_24(acc), [116, 115, 117] => lookup_622_108_25(acc), [117, 100, 111, 110, 111] => lookup_622_108_26(acc), [117, 114, 101, 115, 104, 105, 110, 111] => lookup_622_108_27(acc), [119, 97, 116, 97, 114, 97, 105] => lookup_622_108_28(acc), [121, 111, 107, 107, 97, 105, 99, 104, 105] => lookup_622_108_29(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_109(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_110_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_1(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_9(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_20(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_25(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110_31(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_110<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [102, 117, 114, 117, 107, 97, 119, 97] => lookup_622_110_0(acc), [104, 105, 103, 97, 115, 104, 105, 109, 97, 116, 115, 117, 115, 104, 105, 109, 97] => { lookup_622_110_1(acc) } [105, 115, 104, 105, 110, 111, 109, 97, 107, 105] => lookup_622_110_2(acc), [105, 119, 97, 110, 117, 109, 97] => lookup_622_110_3(acc), [107, 97, 107, 117, 100, 97] => lookup_622_110_4(acc), [107, 97, 109, 105] => lookup_622_110_5(acc), [107, 97, 119, 97, 115, 97, 107, 105] => lookup_622_110_6(acc), [109, 97, 114, 117, 109, 111, 114, 105] => lookup_622_110_7(acc), [109, 97, 116, 115, 117, 115, 104, 105, 109, 97] => lookup_622_110_8(acc), [109, 105, 110, 97, 109, 105, 115, 97, 110, 114, 105, 107, 117] => { lookup_622_110_9(acc) } [109, 105, 115, 97, 116, 111] => lookup_622_110_10(acc), [109, 117, 114, 97, 116, 97] => lookup_622_110_11(acc), [110, 97, 116, 111, 114, 105] => lookup_622_110_12(acc), [111, 103, 97, 119, 97, 114, 97] => lookup_622_110_13(acc), [111, 104, 105, 114, 97] => lookup_622_110_14(acc), [111, 110, 97, 103, 97, 119, 97] => lookup_622_110_15(acc), [111, 115, 97, 107, 105] => lookup_622_110_16(acc), [114, 105, 102, 117] => lookup_622_110_17(acc), [115, 101, 109, 105, 110, 101] => lookup_622_110_18(acc), [115, 104, 105, 98, 97, 116, 97] => lookup_622_110_19(acc), [115, 104, 105, 99, 104, 105, 107, 97, 115, 104, 117, 107, 117] => { lookup_622_110_20(acc) } [115, 104, 105, 107, 97, 109, 97] => lookup_622_110_21(acc), [115, 104, 105, 111, 103, 97, 109, 97] => lookup_622_110_22(acc), [115, 104, 105, 114, 111, 105, 115, 104, 105] => lookup_622_110_23(acc), [116, 97, 103, 97, 106, 111] => lookup_622_110_24(acc), [116, 97, 105, 119, 97] => lookup_622_110_25(acc), [116, 111, 109, 101] => lookup_622_110_26(acc), [116, 111, 109, 105, 121, 97] => lookup_622_110_27(acc), [119, 97, 107, 117, 121, 97] => lookup_622_110_28(acc), [119, 97, 116, 97, 114, 105] => lookup_622_110_29(acc), [121, 97, 109, 97, 109, 111, 116, 111] => lookup_622_110_30(acc), [122, 97, 111] => lookup_622_110_31(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_111_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_16(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_18(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_23(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_111<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 121, 97] => lookup_622_111_0(acc), [101, 98, 105, 110, 111] => lookup_622_111_1(acc), [103, 111, 107, 97, 115, 101] => lookup_622_111_2(acc), [104, 121, 117, 103, 97] => lookup_622_111_3(acc), [107, 97, 100, 111, 103, 97, 119, 97] => lookup_622_111_4(acc), [107, 97, 119, 97, 109, 105, 110, 97, 109, 105] => lookup_622_111_5(acc), [107, 105, 106, 111] => lookup_622_111_6(acc), [107, 105, 116, 97, 103, 97, 119, 97] => lookup_622_111_7(acc), [107, 105, 116, 97, 107, 97, 116, 97] => lookup_622_111_8(acc), [107, 105, 116, 97, 117, 114, 97] => lookup_622_111_9(acc), [107, 111, 98, 97, 121, 97, 115, 104, 105] => lookup_622_111_10(acc), [107, 117, 110, 105, 116, 111, 109, 105] => lookup_622_111_11(acc), [107, 117, 115, 104, 105, 109, 97] => lookup_622_111_12(acc), [109, 105, 109, 97, 116, 97] => lookup_622_111_13(acc), [109, 105, 121, 97, 107, 111, 110, 111, 106, 111] => lookup_622_111_14(acc), [109, 105, 121, 97, 122, 97, 107, 105] => lookup_622_111_15(acc), [109, 111, 114, 111, 116, 115, 117, 107, 97] => lookup_622_111_16(acc), [110, 105, 99, 104, 105, 110, 97, 110] => lookup_622_111_17(acc), [110, 105, 115, 104, 105, 109, 101, 114, 97] => lookup_622_111_18(acc), [110, 111, 98, 101, 111, 107, 97] => lookup_622_111_19(acc), [115, 97, 105, 116, 111] => lookup_622_111_20(acc), [115, 104, 105, 105, 98, 97] => lookup_622_111_21(acc), [115, 104, 105, 110, 116, 111, 109, 105] => lookup_622_111_22(acc), [116, 97, 107, 97, 104, 97, 114, 117] => lookup_622_111_23(acc), [116, 97, 107, 97, 110, 97, 98, 101] => lookup_622_111_24(acc), [116, 97, 107, 97, 122, 97, 107, 105] => lookup_622_111_25(acc), [116, 115, 117, 110, 111] => lookup_622_111_26(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_112(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_113(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_114(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_115(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_116_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_6(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_20(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_23(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_28(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_29(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_30(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_31(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_32(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_36(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_37(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_38(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_39(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_40(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_41(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_42(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_43(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_44(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_45(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_46(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_47(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_48(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_49(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_50(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_51(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_52(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_53(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_54(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_55(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_56(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_57(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_58(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_59(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_60(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_61(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_62(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_63(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_64(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_65(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_66(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_67(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_68(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_69(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_70(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_71(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_72(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_73(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116_74(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_116<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 104, 105] => lookup_622_116_0(acc), [97, 103, 101, 109, 97, 116, 115, 117] => lookup_622_116_1(acc), [97, 110, 97, 110] => lookup_622_116_2(acc), [97, 111, 107, 105] => lookup_622_116_3(acc), [97, 115, 97, 104, 105] => lookup_622_116_4(acc), [97, 122, 117, 109, 105, 110, 111] => lookup_622_116_5(acc), [99, 104, 105, 107, 117, 104, 111, 107, 117] => lookup_622_116_6(acc), [99, 104, 105, 107, 117, 109, 97] => lookup_622_116_7(acc), [99, 104, 105, 110, 111] => lookup_622_116_8(acc), [102, 117, 106, 105, 109, 105] => lookup_622_116_9(acc), [104, 97, 107, 117, 98, 97] => lookup_622_116_10(acc), [104, 97, 114, 97] => lookup_622_116_11(acc), [104, 105, 114, 97, 121, 97] => lookup_622_116_12(acc), [105, 105, 100, 97] => lookup_622_116_13(acc), [105, 105, 106, 105, 109, 97] => lookup_622_116_14(acc), [105, 105, 121, 97, 109, 97] => lookup_622_116_15(acc), [105, 105, 122, 117, 110, 97] => lookup_622_116_16(acc), [105, 107, 101, 100, 97] => lookup_622_116_17(acc), [105, 107, 117, 115, 97, 107, 97] => lookup_622_116_18(acc), [105, 110, 97] => lookup_622_116_19(acc), [107, 97, 114, 117, 105, 122, 97, 119, 97] => lookup_622_116_20(acc), [107, 97, 119, 97, 107, 97, 109, 105] => lookup_622_116_21(acc), [107, 105, 115, 111] => lookup_622_116_22(acc), [107, 105, 115, 111, 102, 117, 107, 117, 115, 104, 105, 109, 97] => { lookup_622_116_23(acc) } [107, 105, 116, 97, 97, 105, 107, 105] => lookup_622_116_24(acc), [107, 111, 109, 97, 103, 97, 110, 101] => lookup_622_116_25(acc), [107, 111, 109, 111, 114, 111] => lookup_622_116_26(acc), [109, 97, 116, 115, 117, 107, 97, 119, 97] => lookup_622_116_27(acc), [109, 97, 116, 115, 117, 109, 111, 116, 111] => lookup_622_116_28(acc), [109, 105, 97, 115, 97] => lookup_622_116_29(acc), [109, 105, 110, 97, 109, 105, 97, 105, 107, 105] => lookup_622_116_30(acc), [109, 105, 110, 97, 109, 105, 109, 97, 107, 105] => lookup_622_116_31(acc), [109, 105, 110, 97, 109, 105, 109, 105, 110, 111, 119, 97] => lookup_622_116_32(acc), [109, 105, 110, 111, 119, 97] => lookup_622_116_33(acc), [109, 105, 121, 97, 100, 97] => lookup_622_116_34(acc), [109, 105, 121, 111, 116, 97] => lookup_622_116_35(acc), [109, 111, 99, 104, 105, 122, 117, 107, 105] => lookup_622_116_36(acc), [110, 97, 103, 97, 110, 111] => lookup_622_116_37(acc), [110, 97, 103, 97, 119, 97] => lookup_622_116_38(acc), [110, 97, 103, 105, 115, 111] => lookup_622_116_39(acc), [110, 97, 107, 97, 103, 97, 119, 97] => lookup_622_116_40(acc), [110, 97, 107, 97, 110, 111] => lookup_622_116_41(acc), [110, 111, 122, 97, 119, 97, 111, 110, 115, 101, 110] => lookup_622_116_42(acc), [111, 98, 117, 115, 101] => lookup_622_116_43(acc), [111, 103, 97, 119, 97] => lookup_622_116_44(acc), [111, 107, 97, 121, 97] => lookup_622_116_45(acc), [111, 109, 97, 99, 104, 105] => lookup_622_116_46(acc), [111, 109, 105] => lookup_622_116_47(acc), [111, 111, 107, 117, 119, 97] => lookup_622_116_48(acc), [111, 111, 115, 104, 105, 107, 97] => lookup_622_116_49(acc), [111, 116, 97, 107, 105] => lookup_622_116_50(acc), [111, 116, 97, 114, 105] => lookup_622_116_51(acc), [115, 97, 107, 97, 101] => lookup_622_116_52(acc), [115, 97, 107, 97, 107, 105] => lookup_622_116_53(acc), [115, 97, 107, 117] => lookup_622_116_54(acc), [115, 97, 107, 117, 104, 111] => lookup_622_116_55(acc), [115, 104, 105, 109, 111, 115, 117, 119, 97] => lookup_622_116_56(acc), [115, 104, 105, 110, 97, 110, 111, 109, 97, 99, 104, 105] => lookup_622_116_57(acc), [115, 104, 105, 111, 106, 105, 114, 105] => lookup_622_116_58(acc), [115, 117, 119, 97] => lookup_622_116_59(acc), [115, 117, 122, 97, 107, 97] => lookup_622_116_60(acc), [116, 97, 107, 97, 103, 105] => lookup_622_116_61(acc), [116, 97, 107, 97, 109, 111, 114, 105] => lookup_622_116_62(acc), [116, 97, 107, 97, 121, 97, 109, 97] => lookup_622_116_63(acc), [116, 97, 116, 101, 115, 104, 105, 110, 97] => lookup_622_116_64(acc), [116, 97, 116, 115, 117, 110, 111] => lookup_622_116_65(acc), [116, 111, 103, 97, 107, 117, 115, 104, 105] => lookup_622_116_66(acc), [116, 111, 103, 117, 114, 97] => lookup_622_116_67(acc), [116, 111, 109, 105] => lookup_622_116_68(acc), [117, 101, 100, 97] => lookup_622_116_69(acc), [119, 97, 100, 97] => lookup_622_116_70(acc), [121, 97, 109, 97, 103, 97, 116, 97] => lookup_622_116_71(acc), [121, 97, 109, 97, 110, 111, 117, 99, 104, 105] => lookup_622_116_72(acc), [121, 97, 115, 97, 107, 97] => lookup_622_116_73(acc), [121, 97, 115, 117, 111, 107, 97] => lookup_622_116_74(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_117_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_17(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_18(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_117<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 104, 105, 106, 105, 119, 97] => lookup_622_117_0(acc), [102, 117, 116, 115, 117] => lookup_622_117_1(acc), [103, 111, 116, 111] => lookup_622_117_2(acc), [104, 97, 115, 97, 109, 105] => lookup_622_117_3(acc), [104, 105, 114, 97, 100, 111] => lookup_622_117_4(acc), [105, 107, 105] => lookup_622_117_5(acc), [105, 115, 97, 104, 97, 121, 97] => lookup_622_117_6(acc), [107, 97, 119, 97, 116, 97, 110, 97] => lookup_622_117_7(acc), [107, 117, 99, 104, 105, 110, 111, 116, 115, 117] => lookup_622_117_8(acc), [109, 97, 116, 115, 117, 117, 114, 97] => lookup_622_117_9(acc), [110, 97, 103, 97, 115, 97, 107, 105] => lookup_622_117_10(acc), [111, 98, 97, 109, 97] => lookup_622_117_11(acc), [111, 109, 117, 114, 97] => lookup_622_117_12(acc), [111, 115, 101, 116, 111] => lookup_622_117_13(acc), [115, 97, 105, 107, 97, 105] => lookup_622_117_14(acc), [115, 97, 115, 101, 98, 111] => lookup_622_117_15(acc), [115, 101, 105, 104, 105] => lookup_622_117_16(acc), [115, 104, 105, 109, 97, 98, 97, 114, 97] => lookup_622_117_17(acc), [115, 104, 105, 110, 107, 97, 109, 105, 103, 111, 116, 111] => lookup_622_117_18(acc), [116, 111, 103, 105, 116, 115, 117] => lookup_622_117_19(acc), [116, 115, 117, 115, 104, 105, 109, 97] => lookup_622_117_20(acc), [117, 110, 122, 101, 110] => lookup_622_117_21(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_118_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_118_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_118<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_118_0(acc), wild => lookup_622_118_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_119(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_120_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_3(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_6(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_9(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_20(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_22(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_25(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_26(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_29(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_30(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_32(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_33(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_34(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_35(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_36(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_120<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 110, 100, 111] => lookup_622_120_0(acc), [103, 111, 115, 101] => lookup_622_120_1(acc), [104, 101, 103, 117, 114, 105] => lookup_622_120_2(acc), [104, 105, 103, 97, 115, 104, 105, 121, 111, 115, 104, 105, 110, 111] => { lookup_622_120_3(acc) } [105, 107, 97, 114, 117, 103, 97] => lookup_622_120_4(acc), [105, 107, 111, 109, 97] => lookup_622_120_5(acc), [107, 97, 109, 105, 107, 105, 116, 97, 121, 97, 109, 97] => lookup_622_120_6(acc), [107, 97, 110, 109, 97, 107, 105] => lookup_622_120_7(acc), [107, 97, 115, 104, 105, 98, 97] => lookup_622_120_8(acc), [107, 97, 115, 104, 105, 104, 97, 114, 97] => lookup_622_120_9(acc), [107, 97, 116, 115, 117, 114, 97, 103, 105] => lookup_622_120_10(acc), [107, 97, 119, 97, 105] => lookup_622_120_11(acc), [107, 97, 119, 97, 107, 97, 109, 105] => lookup_622_120_12(acc), [107, 97, 119, 97, 110, 105, 115, 104, 105] => lookup_622_120_13(acc), [107, 111, 114, 121, 111] => lookup_622_120_14(acc), [107, 117, 114, 111, 116, 97, 107, 105] => lookup_622_120_15(acc), [109, 105, 116, 115, 117, 101] => lookup_622_120_16(acc), [109, 105, 121, 97, 107, 101] => lookup_622_120_17(acc), [110, 97, 114, 97] => lookup_622_120_18(acc), [110, 111, 115, 101, 103, 97, 119, 97] => lookup_622_120_19(acc), [111, 106, 105] => lookup_622_120_20(acc), [111, 117, 100, 97] => lookup_622_120_21(acc), [111, 121, 111, 100, 111] => lookup_622_120_22(acc), [115, 97, 107, 117, 114, 97, 105] => lookup_622_120_23(acc), [115, 97, 110, 103, 111] => lookup_622_120_24(acc), [115, 104, 105, 109, 111, 105, 99, 104, 105] => lookup_622_120_25(acc), [115, 104, 105, 109, 111, 107, 105, 116, 97, 121, 97, 109, 97] => { lookup_622_120_26(acc) } [115, 104, 105, 110, 106, 111] => lookup_622_120_27(acc), [115, 111, 110, 105] => lookup_622_120_28(acc), [116, 97, 107, 97, 116, 111, 114, 105] => lookup_622_120_29(acc), [116, 97, 119, 97, 114, 97, 109, 111, 116, 111] => lookup_622_120_30(acc), [116, 101, 110, 107, 97, 119, 97] => lookup_622_120_31(acc), [116, 101, 110, 114, 105] => lookup_622_120_32(acc), [117, 100, 97] => lookup_622_120_33(acc), [121, 97, 109, 97, 116, 111, 107, 111, 114, 105, 121, 97, 109, 97] => { lookup_622_120_34(acc) } [121, 97, 109, 97, 116, 111, 116, 97, 107, 97, 100, 97] => lookup_622_120_35(acc), [121, 97, 109, 97, 122, 111, 101] => lookup_622_120_36(acc), [121, 111, 115, 104, 105, 110, 111] => lookup_622_120_37(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_121_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [117, 115, 101, 114] => lookup_622_121_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_121_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_121<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 101, 105, 110, 101, 116] => lookup_622_121_0(info, labels, acc), [103, 101, 104, 105, 114, 110] => lookup_622_121_1(acc), [105, 118, 111, 114, 121] => lookup_622_121_2(acc), [109, 97, 105, 108, 45, 98, 111, 120] => lookup_622_121_3(acc), [109, 105, 110, 116, 115] => lookup_622_121_4(acc), [109, 111, 107, 117, 114, 101, 110] => lookup_622_121_5(acc), [111, 112, 97, 108] => lookup_622_121_6(acc), [115, 97, 107, 117, 114, 97] => lookup_622_121_7(acc), [115, 117, 109, 111, 109, 111] => lookup_622_121_8(acc), [116, 111, 112, 97, 122] => lookup_622_121_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_122(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_123_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_8(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_9(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_19(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_31(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_32(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_123<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 103, 97] => lookup_622_123_0(acc), [97, 103, 97, 110, 111] => lookup_622_123_1(acc), [103, 111, 115, 101, 110] => lookup_622_123_2(acc), [105, 116, 111, 105, 103, 97, 119, 97] => lookup_622_123_3(acc), [105, 122, 117, 109, 111, 122, 97, 107, 105] => lookup_622_123_4(acc), [106, 111, 101, 116, 115, 117] => lookup_622_123_5(acc), [107, 97, 109, 111] => lookup_622_123_6(acc), [107, 97, 114, 105, 119, 97] => lookup_622_123_7(acc), [107, 97, 115, 104, 105, 119, 97, 122, 97, 107, 105] => lookup_622_123_8(acc), [109, 105, 110, 97, 109, 105, 117, 111, 110, 117, 109, 97] => lookup_622_123_9(acc), [109, 105, 116, 115, 117, 107, 101] => lookup_622_123_10(acc), [109, 117, 105, 107, 97] => lookup_622_123_11(acc), [109, 117, 114, 97, 107, 97, 109, 105] => lookup_622_123_12(acc), [109, 121, 111, 107, 111] => lookup_622_123_13(acc), [110, 97, 103, 97, 111, 107, 97] => lookup_622_123_14(acc), [110, 105, 105, 103, 97, 116, 97] => lookup_622_123_15(acc), [111, 106, 105, 121, 97] => lookup_622_123_16(acc), [111, 109, 105] => lookup_622_123_17(acc), [115, 97, 100, 111] => lookup_622_123_18(acc), [115, 97, 110, 106, 111] => lookup_622_123_19(acc), [115, 101, 105, 114, 111] => lookup_622_123_20(acc), [115, 101, 105, 114, 111, 117] => lookup_622_123_21(acc), [115, 101, 107, 105, 107, 97, 119, 97] => lookup_622_123_22(acc), [115, 104, 105, 98, 97, 116, 97] => lookup_622_123_23(acc), [116, 97, 103, 97, 109, 105] => lookup_622_123_24(acc), [116, 97, 105, 110, 97, 105] => lookup_622_123_25(acc), [116, 111, 99, 104, 105, 111] => lookup_622_123_26(acc), [116, 111, 107, 97, 109, 97, 99, 104, 105] => lookup_622_123_27(acc), [116, 115, 117, 98, 97, 109, 101] => lookup_622_123_28(acc), [116, 115, 117, 110, 97, 110] => lookup_622_123_29(acc), [117, 111, 110, 117, 109, 97] => lookup_622_123_30(acc), [121, 97, 104, 105, 107, 111] => lookup_622_123_31(acc), [121, 111, 105, 116, 97] => lookup_622_123_32(acc), [121, 117, 122, 97, 119, 97] => lookup_622_123_33(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_124(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_125(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_126(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_127(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_128(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_129_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_2(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_129<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101, 112, 112, 117] => lookup_622_129_0(acc), [98, 117, 110, 103, 111, 111, 110, 111] => lookup_622_129_1(acc), [98, 117, 110, 103, 111, 116, 97, 107, 97, 100, 97] => lookup_622_129_2(acc), [104, 97, 115, 97, 109, 97] => lookup_622_129_3(acc), [104, 105, 106, 105] => lookup_622_129_4(acc), [104, 105, 109, 101, 115, 104, 105, 109, 97] => lookup_622_129_5(acc), [104, 105, 116, 97] => lookup_622_129_6(acc), [107, 97, 109, 105, 116, 115, 117, 101] => lookup_622_129_7(acc), [107, 111, 107, 111, 110, 111, 101] => lookup_622_129_8(acc), [107, 117, 106, 117] => lookup_622_129_9(acc), [107, 117, 110, 105, 115, 97, 107, 105] => lookup_622_129_10(acc), [107, 117, 115, 117] => lookup_622_129_11(acc), [111, 105, 116, 97] => lookup_622_129_12(acc), [115, 97, 105, 107, 105] => lookup_622_129_13(acc), [116, 97, 107, 101, 116, 97] => lookup_622_129_14(acc), [116, 115, 117, 107, 117, 109, 105] => lookup_622_129_15(acc), [117, 115, 97] => lookup_622_129_16(acc), [117, 115, 117, 107, 105] => lookup_622_129_17(acc), [121, 117, 102, 117] => lookup_622_129_18(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_130_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_9(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_14(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_19(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_21(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_130<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 107, 97, 105, 119, 97] => lookup_622_130_0(acc), [97, 115, 97, 107, 117, 99, 104, 105] => lookup_622_130_1(acc), [98, 105, 122, 101, 110] => lookup_622_130_2(acc), [104, 97, 121, 97, 115, 104, 105, 109, 97] => lookup_622_130_3(acc), [105, 98, 97, 114, 97] => lookup_622_130_4(acc), [107, 97, 103, 97, 109, 105, 110, 111] => lookup_622_130_5(acc), [107, 97, 115, 97, 111, 107, 97] => lookup_622_130_6(acc), [107, 105, 98, 105, 99, 104, 117, 111] => lookup_622_130_7(acc), [107, 117, 109, 101, 110, 97, 110] => lookup_622_130_8(acc), [107, 117, 114, 97, 115, 104, 105, 107, 105] => lookup_622_130_9(acc), [109, 97, 110, 105, 119, 97] => lookup_622_130_10(acc), [109, 105, 115, 97, 107, 105] => lookup_622_130_11(acc), [110, 97, 103, 105] => lookup_622_130_12(acc), [110, 105, 105, 109, 105] => lookup_622_130_13(acc), [110, 105, 115, 104, 105, 97, 119, 97, 107, 117, 114, 97] => lookup_622_130_14(acc), [111, 107, 97, 121, 97, 109, 97] => lookup_622_130_15(acc), [115, 97, 116, 111, 115, 104, 111] => lookup_622_130_16(acc), [115, 101, 116, 111, 117, 99, 104, 105] => lookup_622_130_17(acc), [115, 104, 105, 110, 106, 111] => lookup_622_130_18(acc), [115, 104, 111, 111] => lookup_622_130_19(acc), [115, 111, 106, 97] => lookup_622_130_20(acc), [116, 97, 107, 97, 104, 97, 115, 104, 105] => lookup_622_130_21(acc), [116, 97, 109, 97, 110, 111] => lookup_622_130_22(acc), [116, 115, 117, 121, 97, 109, 97] => lookup_622_130_23(acc), [119, 97, 107, 101] => lookup_622_130_24(acc), [121, 97, 107, 97, 103, 101] => lookup_622_130_25(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_131_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_15(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_18(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_21(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_22(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_25(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_27(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_29(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_31(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_32(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_33(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_36(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_37(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_38(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_39(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_40(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131_41(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_131<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 103, 117, 110, 105] => lookup_622_131_0(acc), [103, 105, 110, 111, 119, 97, 110] => lookup_622_131_1(acc), [103, 105, 110, 111, 122, 97] => lookup_622_131_2(acc), [103, 117, 115, 104, 105, 107, 97, 109, 105] => lookup_622_131_3(acc), [104, 97, 101, 98, 97, 114, 117] => lookup_622_131_4(acc), [104, 105, 103, 97, 115, 104, 105] => lookup_622_131_5(acc), [104, 105, 114, 97, 114, 97] => lookup_622_131_6(acc), [105, 104, 101, 121, 97] => lookup_622_131_7(acc), [105, 115, 104, 105, 103, 97, 107, 105] => lookup_622_131_8(acc), [105, 115, 104, 105, 107, 97, 119, 97] => lookup_622_131_9(acc), [105, 116, 111, 109, 97, 110] => lookup_622_131_10(acc), [105, 122, 101, 110, 97] => lookup_622_131_11(acc), [107, 97, 100, 101, 110, 97] => lookup_622_131_12(acc), [107, 105, 110] => lookup_622_131_13(acc), [107, 105, 116, 97, 100, 97, 105, 116, 111] => lookup_622_131_14(acc), [107, 105, 116, 97, 110, 97, 107, 97, 103, 117, 115, 117, 107, 117] => { lookup_622_131_15(acc) } [107, 117, 109, 101, 106, 105, 109, 97] => lookup_622_131_16(acc), [107, 117, 110, 105, 103, 97, 109, 105] => lookup_622_131_17(acc), [109, 105, 110, 97, 109, 105, 100, 97, 105, 116, 111] => lookup_622_131_18(acc), [109, 111, 116, 111, 98, 117] => lookup_622_131_19(acc), [110, 97, 103, 111] => lookup_622_131_20(acc), [110, 97, 104, 97] => lookup_622_131_21(acc), [110, 97, 107, 97, 103, 117, 115, 117, 107, 117] => lookup_622_131_22(acc), [110, 97, 107, 105, 106, 105, 110] => lookup_622_131_23(acc), [110, 97, 110, 106, 111] => lookup_622_131_24(acc), [110, 105, 115, 104, 105, 104, 97, 114, 97] => lookup_622_131_25(acc), [111, 103, 105, 109, 105] => lookup_622_131_26(acc), [111, 107, 105, 110, 97, 119, 97] => lookup_622_131_27(acc), [111, 110, 110, 97] => lookup_622_131_28(acc), [115, 104, 105, 109, 111, 106, 105] => lookup_622_131_29(acc), [116, 97, 107, 101, 116, 111, 109, 105] => lookup_622_131_30(acc), [116, 97, 114, 97, 109, 97] => lookup_622_131_31(acc), [116, 111, 107, 97, 115, 104, 105, 107, 105] => lookup_622_131_32(acc), [116, 111, 109, 105, 103, 117, 115, 117, 107, 117] => lookup_622_131_33(acc), [116, 111, 110, 97, 107, 105] => lookup_622_131_34(acc), [117, 114, 97, 115, 111, 101] => lookup_622_131_35(acc), [117, 114, 117, 109, 97] => lookup_622_131_36(acc), [121, 97, 101, 115, 101] => lookup_622_131_37(acc), [121, 111, 109, 105, 116, 97, 110] => lookup_622_131_38(acc), [121, 111, 110, 97, 98, 97, 114, 117] => lookup_622_131_39(acc), [121, 111, 110, 97, 103, 117, 110, 105] => lookup_622_131_40(acc), [122, 97, 109, 97, 109, 105] => lookup_622_131_41(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_132(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_133(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_7(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_8(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_9(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_17(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_19(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_21(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_22(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_23(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_25(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_29(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_31(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_32(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_33(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_34(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_37(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_38(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_39(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_40(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_41(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_42(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_43(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_44(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_45(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_46(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_47(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_48(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134_49(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_134<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98, 101, 110, 111] => lookup_622_134_0(acc), [99, 104, 105, 104, 97, 121, 97, 97, 107, 97, 115, 97, 107, 97] => { lookup_622_134_1(acc) } [99, 104, 117, 111] => lookup_622_134_2(acc), [100, 97, 105, 116, 111] => lookup_622_134_3(acc), [102, 117, 106, 105, 105, 100, 101, 114, 97] => lookup_622_134_4(acc), [104, 97, 98, 105, 107, 105, 110, 111] => lookup_622_134_5(acc), [104, 97, 110, 110, 97, 110] => lookup_622_134_6(acc), [104, 105, 103, 97, 115, 104, 105, 111, 115, 97, 107, 97] => lookup_622_134_7(acc), [104, 105, 103, 97, 115, 104, 105, 115, 117, 109, 105, 121, 111, 115, 104, 105] => { lookup_622_134_8(acc) } [104, 105, 103, 97, 115, 104, 105, 121, 111, 100, 111, 103, 97, 119, 97] => { lookup_622_134_9(acc) } [104, 105, 114, 97, 107, 97, 116, 97] => lookup_622_134_10(acc), [105, 98, 97, 114, 97, 107, 105] => lookup_622_134_11(acc), [105, 107, 101, 100, 97] => lookup_622_134_12(acc), [105, 122, 117, 109, 105] => lookup_622_134_13(acc), [105, 122, 117, 109, 105, 111, 116, 115, 117] => lookup_622_134_14(acc), [105, 122, 117, 109, 105, 115, 97, 110, 111] => lookup_622_134_15(acc), [107, 97, 100, 111, 109, 97] => lookup_622_134_16(acc), [107, 97, 105, 122, 117, 107, 97] => lookup_622_134_17(acc), [107, 97, 110, 97, 110] => lookup_622_134_18(acc), [107, 97, 115, 104, 105, 119, 97, 114, 97] => lookup_622_134_19(acc), [107, 97, 116, 97, 110, 111] => lookup_622_134_20(acc), [107, 97, 119, 97, 99, 104, 105, 110, 97, 103, 97, 110, 111] => lookup_622_134_21(acc), [107, 105, 115, 104, 105, 119, 97, 100, 97] => lookup_622_134_22(acc), [107, 105, 116, 97] => lookup_622_134_23(acc), [107, 117, 109, 97, 116, 111, 114, 105] => lookup_622_134_24(acc), [109, 97, 116, 115, 117, 98, 97, 114, 97] => lookup_622_134_25(acc), [109, 105, 110, 97, 116, 111] => lookup_622_134_26(acc), [109, 105, 110, 111, 104] => lookup_622_134_27(acc), [109, 105, 115, 97, 107, 105] => lookup_622_134_28(acc), [109, 111, 114, 105, 103, 117, 99, 104, 105] => lookup_622_134_29(acc), [110, 101, 121, 97, 103, 97, 119, 97] => lookup_622_134_30(acc), [110, 105, 115, 104, 105] => lookup_622_134_31(acc), [110, 111, 115, 101] => lookup_622_134_32(acc), [111, 115, 97, 107, 97, 115, 97, 121, 97, 109, 97] => lookup_622_134_33(acc), [115, 97, 107, 97, 105] => lookup_622_134_34(acc), [115, 97, 121, 97, 109, 97] => lookup_622_134_35(acc), [115, 101, 110, 110, 97, 110] => lookup_622_134_36(acc), [115, 101, 116, 116, 115, 117] => lookup_622_134_37(acc), [115, 104, 105, 106, 111, 110, 97, 119, 97, 116, 101] => lookup_622_134_38(acc), [115, 104, 105, 109, 97, 109, 111, 116, 111] => lookup_622_134_39(acc), [115, 117, 105, 116, 97] => lookup_622_134_40(acc), [116, 97, 100, 97, 111, 107, 97] => lookup_622_134_41(acc), [116, 97, 105, 115, 104, 105] => lookup_622_134_42(acc), [116, 97, 106, 105, 114, 105] => lookup_622_134_43(acc), [116, 97, 107, 97, 105, 115, 104, 105] => lookup_622_134_44(acc), [116, 97, 107, 97, 116, 115, 117, 107, 105] => lookup_622_134_45(acc), [116, 111, 110, 100, 97, 98, 97, 121, 97, 115, 104, 105] => lookup_622_134_46(acc), [116, 111, 121, 111, 110, 97, 107, 97] => lookup_622_134_47(acc), [116, 111, 121, 111, 110, 111] => lookup_622_134_48(acc), [121, 97, 111] => lookup_622_134_49(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_135(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_136(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_137(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_138(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_139(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_140(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_141(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_142(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_143(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_144(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_145(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_146(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_147(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_148(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_149(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_150(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_151(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_152(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_153(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_154_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_16(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_19(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_20(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_21(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_23(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154_25(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_154<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 105, 97, 107, 101] => lookup_622_154_0(acc), [97, 114, 105, 116, 97] => lookup_622_154_1(acc), [102, 117, 107, 117, 100, 111, 109, 105] => lookup_622_154_2(acc), [103, 101, 110, 107, 97, 105] => lookup_622_154_3(acc), [104, 97, 109, 97, 116, 97, 109, 97] => lookup_622_154_4(acc), [104, 105, 122, 101, 110] => lookup_622_154_5(acc), [105, 109, 97, 114, 105] => lookup_622_154_6(acc), [107, 97, 109, 105, 109, 105, 110, 101] => lookup_622_154_7(acc), [107, 97, 110, 122, 97, 107, 105] => lookup_622_154_8(acc), [107, 97, 114, 97, 116, 115, 117] => lookup_622_154_9(acc), [107, 97, 115, 104, 105, 109, 97] => lookup_622_154_10(acc), [107, 105, 116, 97, 103, 97, 116, 97] => lookup_622_154_11(acc), [107, 105, 116, 97, 104, 97, 116, 97] => lookup_622_154_12(acc), [107, 105, 121, 97, 109, 97] => lookup_622_154_13(acc), [107, 111, 117, 104, 111, 107, 117] => lookup_622_154_14(acc), [107, 121, 117, 114, 97, 103, 105] => lookup_622_154_15(acc), [110, 105, 115, 104, 105, 97, 114, 105, 116, 97] => lookup_622_154_16(acc), [111, 103, 105] => lookup_622_154_17(acc), [111, 109, 97, 99, 104, 105] => lookup_622_154_18(acc), [111, 117, 99, 104, 105] => lookup_622_154_19(acc), [115, 97, 103, 97] => lookup_622_154_20(acc), [115, 104, 105, 114, 111, 105, 115, 104, 105] => lookup_622_154_21(acc), [116, 97, 107, 117] => lookup_622_154_22(acc), [116, 97, 114, 97] => lookup_622_154_23(acc), [116, 111, 115, 117] => lookup_622_154_24(acc), [121, 111, 115, 104, 105, 110, 111, 103, 97, 114, 105] => lookup_622_154_25(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_155_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_12(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_13(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_18(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_22(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_25(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_29(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_31(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_34(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_35(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_36(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_38(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_39(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_40(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_41(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_42(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_43(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_44(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_45(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_46(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_48(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_49(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_50(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_51(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_52(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_53(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_54(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_55(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_56(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_57(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_58(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_59(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_60(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_61(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_62(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_63(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_64(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_65(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_66(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_67(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155_68(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_155<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 97, 107, 97, 119, 97] => lookup_622_155_0(acc), [97, 115, 97, 107, 97] => lookup_622_155_1(acc), [99, 104, 105, 99, 104, 105, 98, 117] => lookup_622_155_2(acc), [102, 117, 106, 105, 109, 105] => lookup_622_155_3(acc), [102, 117, 106, 105, 109, 105, 110, 111] => lookup_622_155_4(acc), [102, 117, 107, 97, 121, 97] => lookup_622_155_5(acc), [104, 97, 110, 110, 111] => lookup_622_155_6(acc), [104, 97, 110, 121, 117] => lookup_622_155_7(acc), [104, 97, 115, 117, 100, 97] => lookup_622_155_8(acc), [104, 97, 116, 111, 103, 97, 121, 97] => lookup_622_155_9(acc), [104, 97, 116, 111, 121, 97, 109, 97] => lookup_622_155_10(acc), [104, 105, 100, 97, 107, 97] => lookup_622_155_11(acc), [104, 105, 103, 97, 115, 104, 105, 99, 104, 105, 99, 104, 105, 98, 117] => { lookup_622_155_12(acc) } [104, 105, 103, 97, 115, 104, 105, 109, 97, 116, 115, 117, 121, 97, 109, 97] => { lookup_622_155_13(acc) } [104, 111, 110, 106, 111] => lookup_622_155_14(acc), [105, 110, 97] => lookup_622_155_15(acc), [105, 114, 117, 109, 97] => lookup_622_155_16(acc), [105, 119, 97, 116, 115, 117, 107, 105] => lookup_622_155_17(acc), [107, 97, 109, 105, 105, 122, 117, 109, 105] => lookup_622_155_18(acc), [107, 97, 109, 105, 107, 97, 119, 97] => lookup_622_155_19(acc), [107, 97, 109, 105, 115, 97, 116, 111] => lookup_622_155_20(acc), [107, 97, 115, 117, 107, 97, 98, 101] => lookup_622_155_21(acc), [107, 97, 119, 97, 103, 111, 101] => lookup_622_155_22(acc), [107, 97, 119, 97, 103, 117, 99, 104, 105] => lookup_622_155_23(acc), [107, 97, 119, 97, 106, 105, 109, 97] => lookup_622_155_24(acc), [107, 97, 122, 111] => lookup_622_155_25(acc), [107, 105, 116, 97, 109, 111, 116, 111] => lookup_622_155_26(acc), [107, 111, 115, 104, 105, 103, 97, 121, 97] => lookup_622_155_27(acc), [107, 111, 117, 110, 111, 115, 117] => lookup_622_155_28(acc), [107, 117, 107, 105] => lookup_622_155_29(acc), [107, 117, 109, 97, 103, 97, 121, 97] => lookup_622_155_30(acc), [109, 97, 116, 115, 117, 98, 117, 115, 104, 105] => lookup_622_155_31(acc), [109, 105, 110, 97, 110, 111] => lookup_622_155_32(acc), [109, 105, 115, 97, 116, 111] => lookup_622_155_33(acc), [109, 105, 121, 97, 115, 104, 105, 114, 111] => lookup_622_155_34(acc), [109, 105, 121, 111, 115, 104, 105] => lookup_622_155_35(acc), [109, 111, 114, 111, 121, 97, 109, 97] => lookup_622_155_36(acc), [110, 97, 103, 97, 116, 111, 114, 111] => lookup_622_155_37(acc), [110, 97, 109, 101, 103, 97, 119, 97] => lookup_622_155_38(acc), [110, 105, 105, 122, 97] => lookup_622_155_39(acc), [111, 103, 97, 110, 111] => lookup_622_155_40(acc), [111, 103, 97, 119, 97] => lookup_622_155_41(acc), [111, 103, 111, 115, 101] => lookup_622_155_42(acc), [111, 107, 101, 103, 97, 119, 97] => lookup_622_155_43(acc), [111, 109, 105, 121, 97] => lookup_622_155_44(acc), [111, 116, 97, 107, 105] => lookup_622_155_45(acc), [114, 97, 110, 122, 97, 110] => lookup_622_155_46(acc), [114, 121, 111, 107, 97, 109, 105] => lookup_622_155_47(acc), [115, 97, 105, 116, 97, 109, 97] => lookup_622_155_48(acc), [115, 97, 107, 97, 100, 111] => lookup_622_155_49(acc), [115, 97, 116, 116, 101] => lookup_622_155_50(acc), [115, 97, 121, 97, 109, 97] => lookup_622_155_51(acc), [115, 104, 105, 107, 105] => lookup_622_155_52(acc), [115, 104, 105, 114, 97, 111, 107, 97] => lookup_622_155_53(acc), [115, 111, 107, 97] => lookup_622_155_54(acc), [115, 117, 103, 105, 116, 111] => lookup_622_155_55(acc), [116, 111, 100, 97] => lookup_622_155_56(acc), [116, 111, 107, 105, 103, 97, 119, 97] => lookup_622_155_57(acc), [116, 111, 107, 111, 114, 111, 122, 97, 119, 97] => lookup_622_155_58(acc), [116, 115, 117, 114, 117, 103, 97, 115, 104, 105, 109, 97] => lookup_622_155_59(acc), [117, 114, 97, 119, 97] => lookup_622_155_60(acc), [119, 97, 114, 97, 98, 105] => lookup_622_155_61(acc), [121, 97, 115, 104, 105, 111] => lookup_622_155_62(acc), [121, 111, 107, 111, 122, 101] => lookup_622_155_63(acc), [121, 111, 110, 111] => lookup_622_155_64(acc), [121, 111, 114, 105, 105] => lookup_622_155_65(acc), [121, 111, 115, 104, 105, 100, 97] => lookup_622_155_66(acc), [121, 111, 115, 104, 105, 107, 97, 119, 97] => lookup_622_155_67(acc), [121, 111, 115, 104, 105, 109, 105] => lookup_622_155_68(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_156_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_156_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_622_156_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_156_1_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_156_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_622_156_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_156<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [105, 115, 107, 48, 49] => lookup_622_156_0(info, labels, acc), [105, 115, 107, 48, 50] => lookup_622_156_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_622_157(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_158_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_158_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_158<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_158_0(acc), wild => lookup_622_158_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_159(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_160(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_161(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_162_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_162_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_162<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_162_0(acc), wild => lookup_622_162_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_163_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_14(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_18(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_19(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_21(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_163<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 115, 104, 111] => lookup_622_163_0(acc), [103, 97, 109, 111] => lookup_622_163_1(acc), [104, 105, 103, 97, 115, 104, 105, 111, 109, 105] => lookup_622_163_2(acc), [104, 105, 107, 111, 110, 101] => lookup_622_163_3(acc), [107, 111, 107, 97] => lookup_622_163_4(acc), [107, 111, 110, 97, 110] => lookup_622_163_5(acc), [107, 111, 115, 101, 105] => lookup_622_163_6(acc), [107, 111, 116, 111] => lookup_622_163_7(acc), [107, 117, 115, 97, 116, 115, 117] => lookup_622_163_8(acc), [109, 97, 105, 98, 97, 114, 97] => lookup_622_163_9(acc), [109, 111, 114, 105, 121, 97, 109, 97] => lookup_622_163_10(acc), [110, 97, 103, 97, 104, 97, 109, 97] => lookup_622_163_11(acc), [110, 105, 115, 104, 105, 97, 122, 97, 105] => lookup_622_163_12(acc), [110, 111, 116, 111, 103, 97, 119, 97] => lookup_622_163_13(acc), [111, 109, 105, 104, 97, 99, 104, 105, 109, 97, 110] => lookup_622_163_14(acc), [111, 116, 115, 117] => lookup_622_163_15(acc), [114, 105, 116, 116, 111] => lookup_622_163_16(acc), [114, 121, 117, 111, 104] => lookup_622_163_17(acc), [116, 97, 107, 97, 115, 104, 105, 109, 97] => lookup_622_163_18(acc), [116, 97, 107, 97, 116, 115, 117, 107, 105] => lookup_622_163_19(acc), [116, 111, 114, 97, 104, 105, 109, 101] => lookup_622_163_20(acc), [116, 111, 121, 111, 115, 97, 116, 111] => lookup_622_163_21(acc), [121, 97, 115, 117] => lookup_622_163_22(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_164_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_4(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_12(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_19(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164_22(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_164<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 107, 97, 103, 105] => lookup_622_164_0(acc), [97, 109, 97] => lookup_622_164_1(acc), [103, 111, 116, 115, 117] => lookup_622_164_2(acc), [104, 97, 109, 97, 100, 97] => lookup_622_164_3(acc), [104, 105, 103, 97, 115, 104, 105, 105, 122, 117, 109, 111] => lookup_622_164_4(acc), [104, 105, 107, 97, 119, 97] => lookup_622_164_5(acc), [104, 105, 107, 105, 109, 105] => lookup_622_164_6(acc), [105, 122, 117, 109, 111] => lookup_622_164_7(acc), [107, 97, 107, 105, 110, 111, 107, 105] => lookup_622_164_8(acc), [109, 97, 115, 117, 100, 97] => lookup_622_164_9(acc), [109, 97, 116, 115, 117, 101] => lookup_622_164_10(acc), [109, 105, 115, 97, 116, 111] => lookup_622_164_11(acc), [110, 105, 115, 104, 105, 110, 111, 115, 104, 105, 109, 97] => lookup_622_164_12(acc), [111, 104, 100, 97] => lookup_622_164_13(acc), [111, 107, 105, 110, 111, 115, 104, 105, 109, 97] => lookup_622_164_14(acc), [111, 107, 117, 105, 122, 117, 109, 111] => lookup_622_164_15(acc), [115, 104, 105, 109, 97, 110, 101] => lookup_622_164_16(acc), [116, 97, 109, 97, 121, 117] => lookup_622_164_17(acc), [116, 115, 117, 119, 97, 110, 111] => lookup_622_164_18(acc), [117, 110, 110, 97, 110] => lookup_622_164_19(acc), [121, 97, 107, 117, 109, 111] => lookup_622_164_20(acc), [121, 97, 115, 117, 103, 105] => lookup_622_164_21(acc), [121, 97, 116, 115, 117, 107, 97] => lookup_622_164_22(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_165_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_9(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_17(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_21(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_22(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_25(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_28(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_29(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_30(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_32(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_34(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165_35(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_165<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 97, 105] => lookup_622_165_0(acc), [97, 116, 97, 109, 105] => lookup_622_165_1(acc), [102, 117, 106, 105] => lookup_622_165_2(acc), [102, 117, 106, 105, 101, 100, 97] => lookup_622_165_3(acc), [102, 117, 106, 105, 107, 97, 119, 97] => lookup_622_165_4(acc), [102, 117, 106, 105, 110, 111, 109, 105, 121, 97] => lookup_622_165_5(acc), [102, 117, 107, 117, 114, 111, 105] => lookup_622_165_6(acc), [103, 111, 116, 101, 109, 98, 97] => lookup_622_165_7(acc), [104, 97, 105, 98, 97, 114, 97] => lookup_622_165_8(acc), [104, 97, 109, 97, 109, 97, 116, 115, 117] => lookup_622_165_9(acc), [104, 105, 103, 97, 115, 104, 105, 105, 122, 117] => lookup_622_165_10(acc), [105, 116, 111] => lookup_622_165_11(acc), [105, 119, 97, 116, 97] => lookup_622_165_12(acc), [105, 122, 117] => lookup_622_165_13(acc), [105, 122, 117, 110, 111, 107, 117, 110, 105] => lookup_622_165_14(acc), [107, 97, 107, 101, 103, 97, 119, 97] => lookup_622_165_15(acc), [107, 97, 110, 110, 97, 109, 105] => lookup_622_165_16(acc), [107, 97, 119, 97, 110, 101, 104, 111, 110] => lookup_622_165_17(acc), [107, 97, 119, 97, 122, 117] => lookup_622_165_18(acc), [107, 105, 107, 117, 103, 97, 119, 97] => lookup_622_165_19(acc), [107, 111, 115, 97, 105] => lookup_622_165_20(acc), [109, 97, 107, 105, 110, 111, 104, 97, 114, 97] => lookup_622_165_21(acc), [109, 97, 116, 115, 117, 122, 97, 107, 105] => lookup_622_165_22(acc), [109, 105, 110, 97, 109, 105, 105, 122, 117] => lookup_622_165_23(acc), [109, 105, 115, 104, 105, 109, 97] => lookup_622_165_24(acc), [109, 111, 114, 105, 109, 97, 99, 104, 105] => lookup_622_165_25(acc), [110, 105, 115, 104, 105, 105, 122, 117] => lookup_622_165_26(acc), [110, 117, 109, 97, 122, 117] => lookup_622_165_27(acc), [111, 109, 97, 101, 122, 97, 107, 105] => lookup_622_165_28(acc), [115, 104, 105, 109, 97, 100, 97] => lookup_622_165_29(acc), [115, 104, 105, 109, 105, 122, 117] => lookup_622_165_30(acc), [115, 104, 105, 109, 111, 100, 97] => lookup_622_165_31(acc), [115, 104, 105, 122, 117, 111, 107, 97] => lookup_622_165_32(acc), [115, 117, 115, 111, 110, 111] => lookup_622_165_33(acc), [121, 97, 105, 122, 117] => lookup_622_165_34(acc), [121, 111, 115, 104, 105, 100, 97] => lookup_622_165_35(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_166(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_167(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_168(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_169(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_170(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_171(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_172(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_173(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_174(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_175_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_7(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_8(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_14(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_16(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_18(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_23(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_25(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_26(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_29(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175_30(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_175<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 104, 105, 107, 97, 103, 97] => lookup_622_175_0(acc), [98, 97, 116, 111] => lookup_622_175_1(acc), [104, 97, 103, 97] => lookup_622_175_2(acc), [105, 99, 104, 105, 107, 97, 105] => lookup_622_175_3(acc), [105, 119, 97, 102, 117, 110, 101] => lookup_622_175_4(acc), [107, 97, 109, 105, 110, 111, 107, 97, 119, 97] => lookup_622_175_5(acc), [107, 97, 110, 117, 109, 97] => lookup_622_175_6(acc), [107, 97, 114, 97, 115, 117, 121, 97, 109, 97] => lookup_622_175_7(acc), [107, 117, 114, 111, 105, 115, 111] => lookup_622_175_8(acc), [109, 97, 115, 104, 105, 107, 111] => lookup_622_175_9(acc), [109, 105, 98, 117] => lookup_622_175_10(acc), [109, 111, 107, 97] => lookup_622_175_11(acc), [109, 111, 116, 101, 103, 105] => lookup_622_175_12(acc), [110, 97, 115, 117] => lookup_622_175_13(acc), [110, 97, 115, 117, 115, 104, 105, 111, 98, 97, 114, 97] => lookup_622_175_14(acc), [110, 105, 107, 107, 111] => lookup_622_175_15(acc), [110, 105, 115, 104, 105, 107, 97, 116, 97] => lookup_622_175_16(acc), [110, 111, 103, 105] => lookup_622_175_17(acc), [111, 104, 105, 114, 97] => lookup_622_175_18(acc), [111, 104, 116, 97, 119, 97, 114, 97] => lookup_622_175_19(acc), [111, 121, 97, 109, 97] => lookup_622_175_20(acc), [115, 97, 107, 117, 114, 97] => lookup_622_175_21(acc), [115, 97, 110, 111] => lookup_622_175_22(acc), [115, 104, 105, 109, 111, 116, 115, 117, 107, 101] => lookup_622_175_23(acc), [115, 104, 105, 111, 121, 97] => lookup_622_175_24(acc), [116, 97, 107, 97, 110, 101, 122, 97, 119, 97] => lookup_622_175_25(acc), [116, 111, 99, 104, 105, 103, 105] => lookup_622_175_26(acc), [116, 115, 117, 103, 97] => lookup_622_175_27(acc), [117, 106, 105, 105, 101] => lookup_622_175_28(acc), [117, 116, 115, 117, 110, 111, 109, 105, 121, 97] => lookup_622_175_29(acc), [121, 97, 105, 116, 97] => lookup_622_175_30(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_176_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_5(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_13(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_176<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 105, 122, 117, 109, 105] => lookup_622_176_0(acc), [97, 110, 97, 110] => lookup_622_176_1(acc), [105, 99, 104, 105, 98, 97] => lookup_622_176_2(acc), [105, 116, 97, 110, 111] => lookup_622_176_3(acc), [107, 97, 105, 110, 97, 110] => lookup_622_176_4(acc), [107, 111, 109, 97, 116, 115, 117, 115, 104, 105, 109, 97] => lookup_622_176_5(acc), [109, 97, 116, 115, 117, 115, 104, 105, 103, 101] => lookup_622_176_6(acc), [109, 105, 109, 97] => lookup_622_176_7(acc), [109, 105, 110, 97, 109, 105] => lookup_622_176_8(acc), [109, 105, 121, 111, 115, 104, 105] => lookup_622_176_9(acc), [109, 117, 103, 105] => lookup_622_176_10(acc), [110, 97, 107, 97, 103, 97, 119, 97] => lookup_622_176_11(acc), [110, 97, 114, 117, 116, 111] => lookup_622_176_12(acc), [115, 97, 110, 97, 103, 111, 99, 104, 105] => lookup_622_176_13(acc), [115, 104, 105, 115, 104, 105, 107, 117, 105] => lookup_622_176_14(acc), [116, 111, 107, 117, 115, 104, 105, 109, 97] => lookup_622_176_15(acc), [119, 97, 106, 105, 107, 105] => lookup_622_176_16(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_177_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_10(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_15(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_16(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_17(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_20(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_23(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_26(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_27(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_28(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_29(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_30(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_31(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_32(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_33(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_34(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_36(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_37(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_38(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_39(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_40(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_41(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_42(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_43(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_44(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_45(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_46(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_47(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_48(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_49(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_50(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_51(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_52(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_53(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_54(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_55(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177_56(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_177<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 100, 97, 99, 104, 105] => lookup_622_177_0(acc), [97, 107, 105, 114, 117, 110, 111] => lookup_622_177_1(acc), [97, 107, 105, 115, 104, 105, 109, 97] => lookup_622_177_2(acc), [97, 111, 103, 97, 115, 104, 105, 109, 97] => lookup_622_177_3(acc), [97, 114, 97, 107, 97, 119, 97] => lookup_622_177_4(acc), [98, 117, 110, 107, 121, 111] => lookup_622_177_5(acc), [99, 104, 105, 121, 111, 100, 97] => lookup_622_177_6(acc), [99, 104, 111, 102, 117] => lookup_622_177_7(acc), [99, 104, 117, 111] => lookup_622_177_8(acc), [101, 100, 111, 103, 97, 119, 97] => lookup_622_177_9(acc), [102, 117, 99, 104, 117] => lookup_622_177_10(acc), [102, 117, 115, 115, 97] => lookup_622_177_11(acc), [104, 97, 99, 104, 105, 106, 111] => lookup_622_177_12(acc), [104, 97, 99, 104, 105, 111, 106, 105] => lookup_622_177_13(acc), [104, 97, 109, 117, 114, 97] => lookup_622_177_14(acc), [104, 105, 103, 97, 115, 104, 105, 107, 117, 114, 117, 109, 101] => { lookup_622_177_15(acc) } [104, 105, 103, 97, 115, 104, 105, 109, 117, 114, 97, 121, 97, 109, 97] => { lookup_622_177_16(acc) } [104, 105, 103, 97, 115, 104, 105, 121, 97, 109, 97, 116, 111] => { lookup_622_177_17(acc) } [104, 105, 110, 111] => lookup_622_177_18(acc), [104, 105, 110, 111, 100, 101] => lookup_622_177_19(acc), [104, 105, 110, 111, 104, 97, 114, 97] => lookup_622_177_20(acc), [105, 110, 97, 103, 105] => lookup_622_177_21(acc), [105, 116, 97, 98, 97, 115, 104, 105] => lookup_622_177_22(acc), [107, 97, 116, 115, 117, 115, 104, 105, 107, 97] => lookup_622_177_23(acc), [107, 105, 116, 97] => lookup_622_177_24(acc), [107, 105, 121, 111, 115, 101] => lookup_622_177_25(acc), [107, 111, 100, 97, 105, 114, 97] => lookup_622_177_26(acc), [107, 111, 103, 97, 110, 101, 105] => lookup_622_177_27(acc), [107, 111, 107, 117, 98, 117, 110, 106, 105] => lookup_622_177_28(acc), [107, 111, 109, 97, 101] => lookup_622_177_29(acc), [107, 111, 116, 111] => lookup_622_177_30(acc), [107, 111, 117, 122, 117, 115, 104, 105, 109, 97] => lookup_622_177_31(acc), [107, 117, 110, 105, 116, 97, 99, 104, 105] => lookup_622_177_32(acc), [109, 97, 99, 104, 105, 100, 97] => lookup_622_177_33(acc), [109, 101, 103, 117, 114, 111] => lookup_622_177_34(acc), [109, 105, 110, 97, 116, 111] => lookup_622_177_35(acc), [109, 105, 116, 97, 107, 97] => lookup_622_177_36(acc), [109, 105, 122, 117, 104, 111] => lookup_622_177_37(acc), [109, 117, 115, 97, 115, 104, 105, 109, 117, 114, 97, 121, 97, 109, 97] => { lookup_622_177_38(acc) } [109, 117, 115, 97, 115, 104, 105, 110, 111] => lookup_622_177_39(acc), [110, 97, 107, 97, 110, 111] => lookup_622_177_40(acc), [110, 101, 114, 105, 109, 97] => lookup_622_177_41(acc), [111, 103, 97, 115, 97, 119, 97, 114, 97] => lookup_622_177_42(acc), [111, 107, 117, 116, 97, 109, 97] => lookup_622_177_43(acc), [111, 109, 101] => lookup_622_177_44(acc), [111, 115, 104, 105, 109, 97] => lookup_622_177_45(acc), [111, 116, 97] => lookup_622_177_46(acc), [115, 101, 116, 97, 103, 97, 121, 97] => lookup_622_177_47(acc), [115, 104, 105, 98, 117, 121, 97] => lookup_622_177_48(acc), [115, 104, 105, 110, 97, 103, 97, 119, 97] => lookup_622_177_49(acc), [115, 104, 105, 110, 106, 117, 107, 117] => lookup_622_177_50(acc), [115, 117, 103, 105, 110, 97, 109, 105] => lookup_622_177_51(acc), [115, 117, 109, 105, 100, 97] => lookup_622_177_52(acc), [116, 97, 99, 104, 105, 107, 97, 119, 97] => lookup_622_177_53(acc), [116, 97, 105, 116, 111] => lookup_622_177_54(acc), [116, 97, 109, 97] => lookup_622_177_55(acc), [116, 111, 115, 104, 105, 109, 97] => lookup_622_177_56(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_178(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_179_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_8(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_179<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 104, 105, 122, 117] => lookup_622_179_0(acc), [104, 105, 110, 111] => lookup_622_179_1(acc), [107, 97, 119, 97, 104, 97, 114, 97] => lookup_622_179_2(acc), [107, 111, 103, 101] => lookup_622_179_3(acc), [107, 111, 116, 111, 117, 114, 97] => lookup_622_179_4(acc), [109, 105, 115, 97, 115, 97] => lookup_622_179_5(acc), [110, 97, 110, 98, 117] => lookup_622_179_6(acc), [110, 105, 99, 104, 105, 110, 97, 110] => lookup_622_179_7(acc), [115, 97, 107, 97, 105, 109, 105, 110, 97, 116, 111] => lookup_622_179_8(acc), [116, 111, 116, 116, 111, 114, 105] => lookup_622_179_9(acc), [119, 97, 107, 97, 115, 97] => lookup_622_179_10(acc), [121, 97, 122, 117] => lookup_622_179_11(acc), [121, 111, 110, 97, 103, 111] => lookup_622_179_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_180_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_10(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_11(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_180<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 97, 104, 105] => lookup_622_180_0(acc), [102, 117, 99, 104, 117] => lookup_622_180_1(acc), [102, 117, 107, 117, 109, 105, 116, 115, 117] => lookup_622_180_2(acc), [102, 117, 110, 97, 104, 97, 115, 104, 105] => lookup_622_180_3(acc), [104, 105, 109, 105] => lookup_622_180_4(acc), [105, 109, 105, 122, 117] => lookup_622_180_5(acc), [105, 110, 97, 109, 105] => lookup_622_180_6(acc), [106, 111, 104, 97, 110, 97] => lookup_622_180_7(acc), [107, 97, 109, 105, 105, 99, 104, 105] => lookup_622_180_8(acc), [107, 117, 114, 111, 98, 101] => lookup_622_180_9(acc), [110, 97, 107, 97, 110, 105, 105, 107, 97, 119, 97] => lookup_622_180_10(acc), [110, 97, 109, 101, 114, 105, 107, 97, 119, 97] => lookup_622_180_11(acc), [110, 97, 110, 116, 111] => lookup_622_180_12(acc), [110, 121, 117, 122, 101, 110] => lookup_622_180_13(acc), [111, 121, 97, 98, 101] => lookup_622_180_14(acc), [116, 97, 105, 114, 97] => lookup_622_180_15(acc), [116, 97, 107, 97, 111, 107, 97] => lookup_622_180_16(acc), [116, 97, 116, 101, 121, 97, 109, 97] => lookup_622_180_17(acc), [116, 111, 103, 97] => lookup_622_180_18(acc), [116, 111, 110, 97, 109, 105] => lookup_622_180_19(acc), [116, 111, 121, 97, 109, 97] => lookup_622_180_20(acc), [117, 110, 97, 122, 117, 107, 105] => lookup_622_180_21(acc), [117, 111, 122, 117] => lookup_622_180_22(acc), [121, 97, 109, 97, 100, 97] => lookup_622_180_23(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_181(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_182(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_183(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_184(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_185(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_186(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_187(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_188(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_189(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_190_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_9(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_14(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_18(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_21(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_190<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 105, 100, 97] => lookup_622_190_0(acc), [97, 114, 105, 100, 97, 103, 97, 119, 97] => lookup_622_190_1(acc), [103, 111, 98, 111] => lookup_622_190_2(acc), [104, 97, 115, 104, 105, 109, 111, 116, 111] => lookup_622_190_3(acc), [104, 105, 100, 97, 107, 97] => lookup_622_190_4(acc), [104, 105, 114, 111, 103, 97, 119, 97] => lookup_622_190_5(acc), [105, 110, 97, 109, 105] => lookup_622_190_6(acc), [105, 119, 97, 100, 101] => lookup_622_190_7(acc), [107, 97, 105, 110, 97, 110] => lookup_622_190_8(acc), [107, 97, 109, 105, 116, 111, 110, 100, 97] => lookup_622_190_9(acc), [107, 97, 116, 115, 117, 114, 97, 103, 105] => lookup_622_190_10(acc), [107, 105, 109, 105, 110, 111] => lookup_622_190_11(acc), [107, 105, 110, 111, 107, 97, 119, 97] => lookup_622_190_12(acc), [107, 105, 116, 97, 121, 97, 109, 97] => lookup_622_190_13(acc), [107, 111, 121, 97] => lookup_622_190_14(acc), [107, 111, 122, 97] => lookup_622_190_15(acc), [107, 111, 122, 97, 103, 97, 119, 97] => lookup_622_190_16(acc), [107, 117, 100, 111, 121, 97, 109, 97] => lookup_622_190_17(acc), [107, 117, 115, 104, 105, 109, 111, 116, 111] => lookup_622_190_18(acc), [109, 105, 104, 97, 109, 97] => lookup_622_190_19(acc), [109, 105, 115, 97, 116, 111] => lookup_622_190_20(acc), [110, 97, 99, 104, 105, 107, 97, 116, 115, 117, 117, 114, 97] => lookup_622_190_21(acc), [115, 104, 105, 110, 103, 117] => lookup_622_190_22(acc), [115, 104, 105, 114, 97, 104, 97, 109, 97] => lookup_622_190_23(acc), [116, 97, 105, 106, 105] => lookup_622_190_24(acc), [116, 97, 110, 97, 98, 101] => lookup_622_190_25(acc), [119, 97, 107, 97, 121, 97, 109, 97] => lookup_622_190_26(acc), [121, 117, 97, 115, 97] => lookup_622_190_27(acc), [121, 117, 114, 97] => lookup_622_190_28(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_191(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_192_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_192_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_192<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [114, 115] => lookup_622_192_0(acc), [117, 115, 101, 114] => lookup_622_192_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_193(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_194(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_195(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_196(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_197(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_198(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_199(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_200(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_201(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_202(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_203(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_204(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_205(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_206(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_207(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_208(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_209(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_210(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_211(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_212(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_213(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_214(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_215(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_216(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_217(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_218(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_219(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_220(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_221(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_222(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_223(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_224(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_225(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_226(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_227(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_228(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_229(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_230(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_231(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_232(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_233(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_234(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_235(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_236(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_237(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_238(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_239(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_240(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_241(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_242(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_243(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_7(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_13(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_23(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_24(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_26(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_28(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_29(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_31(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_32(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244_33(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_244<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 97, 104, 105] => lookup_622_244_0(acc), [102, 117, 110, 97, 103, 97, 116, 97] => lookup_622_244_1(acc), [104, 105, 103, 97, 115, 104, 105, 110, 101] => lookup_622_244_2(acc), [105, 105, 100, 101] => lookup_622_244_3(acc), [107, 97, 104, 111, 107, 117] => lookup_622_244_4(acc), [107, 97, 109, 105, 110, 111, 121, 97, 109, 97] => lookup_622_244_5(acc), [107, 97, 110, 101, 121, 97, 109, 97] => lookup_622_244_6(acc), [107, 97, 119, 97, 110, 105, 115, 104, 105] => lookup_622_244_7(acc), [109, 97, 109, 117, 114, 111, 103, 97, 119, 97] => lookup_622_244_8(acc), [109, 105, 107, 97, 119, 97] => lookup_622_244_9(acc), [109, 117, 114, 97, 121, 97, 109, 97] => lookup_622_244_10(acc), [110, 97, 103, 97, 105] => lookup_622_244_11(acc), [110, 97, 107, 97, 121, 97, 109, 97] => lookup_622_244_12(acc), [110, 97, 110, 121, 111] => lookup_622_244_13(acc), [110, 105, 115, 104, 105, 107, 97, 119, 97] => lookup_622_244_14(acc), [111, 98, 97, 110, 97, 122, 97, 119, 97] => lookup_622_244_15(acc), [111, 101] => lookup_622_244_16(acc), [111, 103, 117, 110, 105] => lookup_622_244_17(acc), [111, 104, 107, 117, 114, 97] => lookup_622_244_18(acc), [111, 105, 115, 104, 105, 100, 97] => lookup_622_244_19(acc), [115, 97, 103, 97, 101] => lookup_622_244_20(acc), [115, 97, 107, 97, 116, 97] => lookup_622_244_21(acc), [115, 97, 107, 101, 103, 97, 119, 97] => lookup_622_244_22(acc), [115, 104, 105, 110, 106, 111] => lookup_622_244_23(acc), [115, 104, 105, 114, 97, 116, 97, 107, 97] => lookup_622_244_24(acc), [115, 104, 111, 110, 97, 105] => lookup_622_244_25(acc), [116, 97, 107, 97, 104, 97, 116, 97] => lookup_622_244_26(acc), [116, 101, 110, 100, 111] => lookup_622_244_27(acc), [116, 111, 122, 97, 119, 97] => lookup_622_244_28(acc), [116, 115, 117, 114, 117, 111, 107, 97] => lookup_622_244_29(acc), [121, 97, 109, 97, 103, 97, 116, 97] => lookup_622_244_30(acc), [121, 97, 109, 97, 110, 111, 98, 101] => lookup_622_244_31(acc), [121, 111, 110, 101, 122, 97, 119, 97] => lookup_622_244_32(acc), [121, 117, 122, 97] => lookup_622_244_33(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_245_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_9(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_245<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98, 117] => lookup_622_245_0(acc), [104, 97, 103, 105] => lookup_622_245_1(acc), [104, 105, 107, 97, 114, 105] => lookup_622_245_2(acc), [104, 111, 102, 117] => lookup_622_245_3(acc), [105, 119, 97, 107, 117, 110, 105] => lookup_622_245_4(acc), [107, 117, 100, 97, 109, 97, 116, 115, 117] => lookup_622_245_5(acc), [109, 105, 116, 111, 117] => lookup_622_245_6(acc), [110, 97, 103, 97, 116, 111] => lookup_622_245_7(acc), [111, 115, 104, 105, 109, 97] => lookup_622_245_8(acc), [115, 104, 105, 109, 111, 110, 111, 115, 101, 107, 105] => lookup_622_245_9(acc), [115, 104, 117, 110, 97, 110] => lookup_622_245_10(acc), [116, 97, 98, 117, 115, 101] => lookup_622_245_11(acc), [116, 111, 107, 117, 121, 97, 109, 97] => lookup_622_245_12(acc), [116, 111, 121, 111, 116, 97] => lookup_622_245_13(acc), [117, 98, 101] => lookup_622_245_14(acc), [121, 117, 117] => lookup_622_245_15(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_246_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_4(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_5(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_8(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_11(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_13(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_15(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_16(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_17(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_18(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_19(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_22(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_23(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_24(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_25(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_26(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246_27(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_246<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 104, 117, 111] => lookup_622_246_0(acc), [100, 111, 115, 104, 105] => lookup_622_246_1(acc), [102, 117, 101, 102, 117, 107, 105] => lookup_622_246_2(acc), [102, 117, 106, 105, 107, 97, 119, 97] => lookup_622_246_3(acc), [102, 117, 106, 105, 107, 97, 119, 97, 103, 117, 99, 104, 105, 107, 111] => { lookup_622_246_4(acc) } [102, 117, 106, 105, 121, 111, 115, 104, 105, 100, 97] => lookup_622_246_5(acc), [104, 97, 121, 97, 107, 97, 119, 97] => lookup_622_246_6(acc), [104, 111, 107, 117, 116, 111] => lookup_622_246_7(acc), [105, 99, 104, 105, 107, 97, 119, 97, 109, 105, 115, 97, 116, 111] => { lookup_622_246_8(acc) } [107, 97, 105] => lookup_622_246_9(acc), [107, 111, 102, 117] => lookup_622_246_10(acc), [107, 111, 115, 104, 117] => lookup_622_246_11(acc), [107, 111, 115, 117, 103, 101] => lookup_622_246_12(acc), [109, 105, 110, 97, 109, 105, 45, 97, 108, 112, 115] => lookup_622_246_13(acc), [109, 105, 110, 111, 98, 117] => lookup_622_246_14(acc), [110, 97, 107, 97, 109, 105, 99, 104, 105] => lookup_622_246_15(acc), [110, 97, 110, 98, 117] => lookup_622_246_16(acc), [110, 97, 114, 117, 115, 97, 119, 97] => lookup_622_246_17(acc), [110, 105, 114, 97, 115, 97, 107, 105] => lookup_622_246_18(acc), [110, 105, 115, 104, 105, 107, 97, 116, 115, 117, 114, 97] => lookup_622_246_19(acc), [111, 115, 104, 105, 110, 111] => lookup_622_246_20(acc), [111, 116, 115, 117, 107, 105] => lookup_622_246_21(acc), [115, 104, 111, 119, 97] => lookup_622_246_22(acc), [116, 97, 98, 97, 121, 97, 109, 97] => lookup_622_246_23(acc), [116, 115, 117, 114, 117] => lookup_622_246_24(acc), [117, 101, 110, 111, 104, 97, 114, 97] => lookup_622_246_25(acc), [121, 97, 109, 97, 110, 97, 107, 97, 107, 111] => lookup_622_246_26(acc), [121, 97, 109, 97, 110, 97, 115, 104, 105] => lookup_622_246_27(acc), _ => info, }, None => info, } } #[inline] fn lookup_622_247_0(acc: usize) -> Info { Info { len: acc, typ: Some(Type::Icann), } } #[inline] fn lookup_622_247_1(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_622_247<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [99, 105, 116, 121] => lookup_622_247_0(acc), wild => lookup_622_247_1(wild, acc), }, None => info, } } #[inline] fn lookup_622_248(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_622_249(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_250(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_251(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_252(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_253(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_254(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_255(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_256(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_257(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_258(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_259(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_260(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_261(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_262(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_263(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_264(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_265(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_266(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_267(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_268(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_269(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_270(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_271(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_272(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_273(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_274(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_275(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_276(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_277(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_278(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_279(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_280(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_281(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_282(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_283(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_284(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_285(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_286(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_287(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_288(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_289(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_290(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_291(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_292(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_293(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_294(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622_295(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_622<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [50, 45, 100] => lookup_622_0(acc), [97, 99] => lookup_622_1(acc), [97, 100] => lookup_622_2(acc), [97, 105, 99, 104, 105] => lookup_622_3(labels, acc), [97, 107, 105, 116, 97] => lookup_622_4(labels, acc), [97, 110, 103, 114, 121] => lookup_622_5(acc), [97, 111, 109, 111, 114, 105] => lookup_622_6(labels, acc), [98, 97, 98, 121, 98, 108, 117, 101] => lookup_622_7(acc), [98, 97, 98, 121, 109, 105, 108, 107] => lookup_622_8(acc), [98, 97, 99, 107, 100, 114, 111, 112] => lookup_622_9(acc), [98, 97, 109, 98, 105, 110, 97] => lookup_622_10(acc), [98, 105, 116, 116, 101, 114] => lookup_622_11(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_622_12(acc), [98, 108, 117, 115, 104] => lookup_622_13(acc), [98, 111, 110, 97] => lookup_622_14(acc), [98, 111, 111] => lookup_622_15(acc), [98, 111, 121] => lookup_622_16(acc), [98, 111, 121, 102, 114, 105, 101, 110, 100] => lookup_622_17(acc), [98, 117, 116] => lookup_622_18(acc), [98, 117, 121, 115, 104, 111, 112] => lookup_622_19(acc), [99, 97, 110, 100, 121, 112, 111, 112] => lookup_622_20(acc), [99, 97, 112, 111, 111] => lookup_622_21(acc), [99, 97, 116, 102, 111, 111, 100] => lookup_622_22(acc), [99, 104, 101, 97, 112] => lookup_622_23(acc), [99, 104, 105, 98, 97] => lookup_622_24(labels, acc), [99, 104, 105, 99, 97, 112, 112, 97] => lookup_622_25(acc), [99, 104, 105, 108, 108, 111, 117, 116] => lookup_622_26(acc), [99, 104, 105, 112, 115] => lookup_622_27(acc), [99, 104, 111, 119, 100, 101, 114] => lookup_622_28(acc), [99, 104, 117] => lookup_622_29(acc), [99, 105, 97, 111] => lookup_622_30(acc), [99, 111] => lookup_622_31(acc), [99, 111, 99, 111, 116, 116, 101] => lookup_622_32(acc), [99, 111, 111, 108, 98, 108, 111, 103] => lookup_622_33(acc), [99, 114, 97, 110, 107, 121] => lookup_622_34(acc), [99, 114, 97, 112] => lookup_622_35(acc), [99, 117, 116, 101, 103, 105, 114, 108] => lookup_622_36(acc), [100, 97, 97] => lookup_622_37(acc), [100, 97, 121, 110, 105, 103, 104, 116] => lookup_622_38(acc), [100, 101, 99, 97] => lookup_622_39(acc), [100, 101, 99, 105] => lookup_622_40(acc), [100, 105, 103, 105, 99, 107] => lookup_622_41(acc), [101, 100] => lookup_622_42(acc), [101, 101, 107] => lookup_622_43(acc), [101, 103, 111, 105, 115, 109] => lookup_622_44(acc), [101, 104, 105, 109, 101] => lookup_622_45(labels, acc), [102, 97, 107, 101, 102, 117, 114] => lookup_622_46(acc), [102, 97, 115, 104, 105, 111, 110, 115, 116, 111, 114, 101] => lookup_622_47(acc), [102, 101, 109] => lookup_622_48(acc), [102, 108, 105, 101, 114] => lookup_622_49(acc), [102, 108, 111, 112] => lookup_622_50(acc), [102, 108, 111, 112, 112, 121] => lookup_622_51(acc), [102, 111, 111, 108] => lookup_622_52(acc), [102, 114, 101, 110, 99, 104, 107, 105, 115, 115] => lookup_622_53(acc), [102, 117, 107, 117, 105] => lookup_622_54(labels, acc), [102, 117, 107, 117, 111, 107, 97] => lookup_622_55(labels, acc), [102, 117, 107, 117, 115, 104, 105, 109, 97] => lookup_622_56(labels, acc), [103, 105, 102, 117] => lookup_622_57(labels, acc), [103, 105, 114, 108, 102, 114, 105, 101, 110, 100] => lookup_622_58(acc), [103, 105, 114, 108, 121] => lookup_622_59(acc), [103, 108, 111, 111, 109, 121] => lookup_622_60(acc), [103, 111] => lookup_622_61(acc), [103, 111, 110, 110, 97] => lookup_622_62(acc), [103, 114] => lookup_622_63(acc), [103, 114, 101, 97, 116, 101, 114] => lookup_622_64(acc), [103, 117, 110, 109, 97] => lookup_622_65(labels, acc), [104, 97, 99, 99, 97] => lookup_622_66(acc), [104, 97, 108, 102, 109, 111, 111, 110] => lookup_622_67(acc), [104, 97, 110, 100, 99, 114, 97, 102, 116, 101, 100] => lookup_622_68(acc), [104, 101, 97, 118, 121] => lookup_622_69(acc), [104, 101, 114] => lookup_622_70(acc), [104, 105, 104, 111] => lookup_622_71(acc), [104, 105, 112, 112, 121] => lookup_622_72(acc), [104, 105, 114, 111, 115, 104, 105, 109, 97] => lookup_622_73(labels, acc), [104, 111, 107, 107, 97, 105, 100, 111] => lookup_622_74(labels, acc), [104, 111, 108, 121] => lookup_622_75(acc), [104, 117, 110, 103, 114, 121] => lookup_622_76(acc), [104, 121, 111, 103, 111] => lookup_622_77(labels, acc), [105, 98, 97, 114, 97, 107, 105] => lookup_622_78(labels, acc), [105, 99, 117, 114, 117, 115] => lookup_622_79(acc), [105, 115, 104, 105, 107, 97, 119, 97] => lookup_622_80(labels, acc), [105, 116, 105, 103, 111] => lookup_622_81(acc), [105, 119, 97, 116, 101] => lookup_622_82(labels, acc), [106, 101, 101, 122] => lookup_622_83(acc), [106, 101, 108, 108, 121, 98, 101, 97, 110] => lookup_622_84(acc), [107, 97, 103, 97, 119, 97] => lookup_622_85(labels, acc), [107, 97, 103, 111, 115, 104, 105, 109, 97] => lookup_622_86(labels, acc), [107, 97, 110, 97, 103, 97, 119, 97] => lookup_622_87(labels, acc), [107, 97, 119, 97, 105, 105, 115, 104, 111, 112] => lookup_622_88(acc), [107, 97, 119, 97, 115, 97, 107, 105] => lookup_622_89(info, labels, acc), [107, 105, 107, 105, 114, 97, 114, 97] => lookup_622_90(acc), [107, 105, 108, 108] => lookup_622_91(acc), [107, 105, 108, 111] => lookup_622_92(acc), [107, 105, 116, 97, 107, 121, 117, 115, 104, 117] => lookup_622_93(info, labels, acc), [107, 111, 98, 101] => lookup_622_94(info, labels, acc), [107, 111, 99, 104, 105] => lookup_622_95(labels, acc), [107, 117, 109, 97, 109, 111, 116, 111] => lookup_622_96(labels, acc), [107, 117, 114, 111, 110] => lookup_622_97(acc), [107, 121, 111, 116, 111] => lookup_622_98(labels, acc), [108, 103] => lookup_622_99(acc), [108, 105, 116, 116, 108, 101, 115, 116, 97, 114] => lookup_622_100(acc), [108, 111, 108, 105, 112, 111, 112, 109, 99] => lookup_622_101(acc), [108, 111, 108, 105, 116, 97, 112, 117, 110, 107] => lookup_622_102(acc), [108, 111, 109, 111] => lookup_622_103(acc), [108, 111, 118, 101, 112, 111, 112] => lookup_622_104(acc), [108, 111, 118, 101, 115, 105, 99, 107] => lookup_622_105(acc), [109, 97, 105, 110] => lookup_622_106(acc), [109, 97, 116, 114, 105, 120] => lookup_622_107(acc), [109, 105, 101] => lookup_622_108(labels, acc), [109, 105, 109, 111, 122, 97] => lookup_622_109(acc), [109, 105, 121, 97, 103, 105] => lookup_622_110(labels, acc), [109, 105, 121, 97, 122, 97, 107, 105] => lookup_622_111(labels, acc), [109, 111, 100, 115] => lookup_622_112(acc), [109, 111, 110, 100] => lookup_622_113(acc), [109, 111, 110, 103, 111, 108, 105, 97, 110] => lookup_622_114(acc), [109, 111, 111] => lookup_622_115(acc), [110, 97, 103, 97, 110, 111] => lookup_622_116(labels, acc), [110, 97, 103, 97, 115, 97, 107, 105] => lookup_622_117(labels, acc), [110, 97, 103, 111, 121, 97] => lookup_622_118(info, labels, acc), [110, 97, 109, 97, 115, 116, 101] => lookup_622_119(acc), [110, 97, 114, 97] => lookup_622_120(labels, acc), [110, 101] => lookup_622_121(labels, acc), [110, 101, 116, 103, 97, 109, 101, 114, 115] => lookup_622_122(acc), [110, 105, 105, 103, 97, 116, 97] => lookup_622_123(labels, acc), [110, 105, 107, 105, 116, 97] => lookup_622_124(acc), [110, 111, 98, 117, 115, 104, 105] => lookup_622_125(acc), [110, 111, 111, 114] => lookup_622_126(acc), [110, 121, 97, 110, 116, 97] => lookup_622_127(acc), [111, 48, 111, 48] => lookup_622_128(acc), [111, 105, 116, 97] => lookup_622_129(labels, acc), [111, 107, 97, 121, 97, 109, 97] => lookup_622_130(labels, acc), [111, 107, 105, 110, 97, 119, 97] => lookup_622_131(labels, acc), [111, 111, 112, 115] => lookup_622_132(acc), [111, 114] => lookup_622_133(acc), [111, 115, 97, 107, 97] => lookup_622_134(labels, acc), [112, 97, 114, 97, 108, 108, 101, 108] => lookup_622_135(acc), [112, 97, 114, 97, 115, 105, 116, 101] => lookup_622_136(acc), [112, 101, 99, 111, 114, 105] => lookup_622_137(acc), [112, 101, 101, 119, 101, 101] => lookup_622_138(acc), [112, 101, 110, 110, 101] => lookup_622_139(acc), [112, 101, 112, 112, 101, 114] => lookup_622_140(acc), [112, 101, 114, 109, 97] => lookup_622_141(acc), [112, 105, 103, 98, 111, 97, 116] => lookup_622_142(acc), [112, 105, 110, 111, 107, 111] => lookup_622_143(acc), [112, 117, 110, 121, 117] => lookup_622_144(acc), [112, 117, 112, 117] => lookup_622_145(acc), [112, 117, 115, 115, 121, 99, 97, 116] => lookup_622_146(acc), [112, 121, 97] => lookup_622_147(acc), [114, 97, 105, 110, 100, 114, 111, 112] => lookup_622_148(acc), [114, 100, 121] => lookup_622_149(acc), [114, 101, 97, 100, 121, 109, 97, 100, 101] => lookup_622_150(acc), [114, 103, 114] => lookup_622_151(acc), [114, 117, 108, 101, 122] => lookup_622_152(acc), [115, 97, 100, 105, 115, 116] => lookup_622_153(acc), [115, 97, 103, 97] => lookup_622_154(labels, acc), [115, 97, 105, 116, 97, 109, 97] => lookup_622_155(labels, acc), [115, 97, 107, 117, 114, 97, 115, 116, 111, 114, 97, 103, 101] => { lookup_622_156(info, labels, acc) } [115, 97, 108, 111, 111, 110] => lookup_622_157(acc), [115, 97, 112, 112, 111, 114, 111] => lookup_622_158(info, labels, acc), [115, 98, 108, 111] => lookup_622_159(acc), [115, 99, 104, 111, 111, 108, 98, 117, 115] => lookup_622_160(acc), [115, 101, 99, 114, 101, 116] => lookup_622_161(acc), [115, 101, 110, 100, 97, 105] => lookup_622_162(info, labels, acc), [115, 104, 105, 103, 97] => lookup_622_163(labels, acc), [115, 104, 105, 109, 97, 110, 101] => lookup_622_164(labels, acc), [115, 104, 105, 122, 117, 111, 107, 97] => lookup_622_165(labels, acc), [115, 107, 114] => lookup_622_166(acc), [115, 116, 97, 98, 97] => lookup_622_167(acc), [115, 116, 114, 105, 112, 112, 101, 114] => lookup_622_168(acc), [115, 117, 98] => lookup_622_169(acc), [115, 117, 110, 110, 121, 100, 97, 121] => lookup_622_170(acc), [115, 117, 112, 101, 114, 115, 97, 108, 101] => lookup_622_171(acc), [116, 97, 110, 107] => lookup_622_172(acc), [116, 104, 101, 115, 104, 111, 112] => lookup_622_173(acc), [116, 104, 105, 99, 107] => lookup_622_174(acc), [116, 111, 99, 104, 105, 103, 105] => lookup_622_175(labels, acc), [116, 111, 107, 117, 115, 104, 105, 109, 97] => lookup_622_176(labels, acc), [116, 111, 107, 121, 111] => lookup_622_177(labels, acc), [116, 111, 110, 107, 111, 116, 115, 117] => lookup_622_178(acc), [116, 111, 116, 116, 111, 114, 105] => lookup_622_179(labels, acc), [116, 111, 121, 97, 109, 97] => lookup_622_180(labels, acc), [117, 104, 45, 111, 104] => lookup_622_181(acc), [117, 110, 100, 101, 114] => lookup_622_182(acc), [117, 110, 100, 111] => lookup_622_183(acc), [117, 112, 112, 101, 114] => lookup_622_184(acc), [117, 115, 101, 114, 99, 111, 110, 116, 101, 110, 116] => lookup_622_185(acc), [118, 101, 108, 118, 101, 116] => lookup_622_186(acc), [118, 101, 114, 115, 101] => lookup_622_187(acc), [118, 101, 114, 115, 117, 115] => lookup_622_188(acc), [118, 105, 118, 105, 97, 110] => lookup_622_189(acc), [119, 97, 107, 97, 121, 97, 109, 97] => lookup_622_190(labels, acc), [119, 97, 116, 115, 111, 110] => lookup_622_191(acc), [119, 101, 98, 97, 99, 99, 101, 108] => lookup_622_192(info, labels, acc), [119, 101, 98, 108, 105, 107, 101] => lookup_622_193(acc), [119, 101, 98, 115, 111, 122, 97, 105] => lookup_622_194(acc), [119, 104, 105, 116, 101, 115, 110, 111, 119] => lookup_622_195(acc), [120, 105, 105] => lookup_622_196(acc), [120, 110, 45, 45, 48, 116, 114, 113, 55, 112, 55, 110, 110] => lookup_622_197(acc), [120, 110, 45, 45, 49, 99, 116, 119, 111] => lookup_622_198(acc), [120, 110, 45, 45, 49, 108, 113, 115, 48, 51, 110] => lookup_622_199(acc), [120, 110, 45, 45, 49, 108, 113, 115, 55, 49, 100] => lookup_622_200(acc), [120, 110, 45, 45, 50, 109, 52, 97, 49, 53, 101] => lookup_622_201(acc), [120, 110, 45, 45, 51, 50, 118, 112, 51, 48, 104] => lookup_622_202(acc), [120, 110, 45, 45, 52, 105, 116, 49, 54, 56, 100] => lookup_622_203(acc), [120, 110, 45, 45, 52, 105, 116, 55, 57, 55, 107] => lookup_622_204(acc), [120, 110, 45, 45, 52, 112, 118, 120, 115] => lookup_622_205(acc), [120, 110, 45, 45, 53, 106, 115, 48, 52, 53, 100] => lookup_622_206(acc), [120, 110, 45, 45, 53, 114, 116, 112, 52, 57, 99] => lookup_622_207(acc), [120, 110, 45, 45, 53, 114, 116, 113, 51, 52, 107] => lookup_622_208(acc), [120, 110, 45, 45, 54, 98, 116, 119, 53, 97] => lookup_622_209(acc), [120, 110, 45, 45, 54, 111, 114, 120, 50, 114] => lookup_622_210(acc), [120, 110, 45, 45, 55, 116, 48, 97, 50, 54, 52, 99] => lookup_622_211(acc), [120, 110, 45, 45, 56, 108, 116, 114, 54, 50, 107] => lookup_622_212(acc), [120, 110, 45, 45, 56, 112, 118, 114, 52, 117] => lookup_622_213(acc), [120, 110, 45, 45, 99, 51, 115, 49, 52, 109] => lookup_622_214(acc), [120, 110, 45, 45, 100, 53, 113, 118, 55, 122, 56, 55, 54, 99] => lookup_622_215(acc), [120, 110, 45, 45, 100, 106, 114, 115, 55, 50, 100, 54, 117, 121] => { lookup_622_216(acc) } [120, 110, 45, 45, 100, 106, 116, 121, 52, 107] => lookup_622_217(acc), [120, 110, 45, 45, 101, 102, 118, 110, 57, 115] => lookup_622_218(acc), [120, 110, 45, 45, 101, 104, 113, 122, 53, 54, 110] => lookup_622_219(acc), [120, 110, 45, 45, 101, 108, 113, 113, 49, 54, 104] => lookup_622_220(acc), [120, 110, 45, 45, 102, 54, 113, 120, 53, 51, 97] => lookup_622_221(acc), [120, 110, 45, 45, 107, 55, 121, 110, 57, 53, 101] => lookup_622_222(acc), [120, 110, 45, 45, 107, 98, 114, 113, 55, 111] => lookup_622_223(acc), [120, 110, 45, 45, 107, 108, 116, 55, 56, 55, 100] => lookup_622_224(acc), [120, 110, 45, 45, 107, 108, 116, 112, 55, 100] => lookup_622_225(acc), [120, 110, 45, 45, 107, 108, 116, 120, 57, 97] => lookup_622_226(acc), [120, 110, 45, 45, 107, 108, 116, 121, 53, 120] => lookup_622_227(acc), [120, 110, 45, 45, 109, 107, 114, 117, 52, 53, 105] => lookup_622_228(acc), [120, 110, 45, 45, 110, 105, 116, 50, 50, 53, 107] => lookup_622_229(acc), [120, 110, 45, 45, 110, 116, 115, 111, 48, 105, 113, 120, 51, 97] => { lookup_622_230(acc) } [120, 110, 45, 45, 110, 116, 115, 113, 49, 55, 103] => lookup_622_231(acc), [120, 110, 45, 45, 112, 115, 115, 117, 51, 51, 108] => lookup_622_232(acc), [120, 110, 45, 45, 113, 113, 113, 116, 49, 49, 109] => lookup_622_233(acc), [120, 110, 45, 45, 114, 104, 116, 50, 55, 122] => lookup_622_234(acc), [120, 110, 45, 45, 114, 104, 116, 51, 100] => lookup_622_235(acc), [120, 110, 45, 45, 114, 104, 116, 54, 49, 101] => lookup_622_236(acc), [120, 110, 45, 45, 114, 110, 121, 51, 49, 104] => lookup_622_237(acc), [120, 110, 45, 45, 116, 111, 114, 49, 51, 49, 111] => lookup_622_238(acc), [120, 110, 45, 45, 117, 105, 115, 116, 50, 50, 104] => lookup_622_239(acc), [120, 110, 45, 45, 117, 105, 115, 122, 51, 103] => lookup_622_240(acc), [120, 110, 45, 45, 117, 117, 119, 117, 53, 56, 97] => lookup_622_241(acc), [120, 110, 45, 45, 118, 103, 117, 52, 48, 50, 99] => lookup_622_242(acc), [120, 110, 45, 45, 122, 98, 120, 48, 50, 53, 100] => lookup_622_243(acc), [121, 97, 109, 97, 103, 97, 116, 97] => lookup_622_244(labels, acc), [121, 97, 109, 97, 103, 117, 99, 104, 105] => lookup_622_245(labels, acc), [121, 97, 109, 97, 110, 97, 115, 104, 105] => lookup_622_246(labels, acc), [121, 111, 107, 111, 104, 97, 109, 97] => lookup_622_247(info, labels, acc), [122, 111, 109, 98, 105, 101] => lookup_622_248(acc), [228, 184, 137, 233, 135, 141] => lookup_622_249(acc), [228, 186, 172, 233, 131, 189] => lookup_622_250(acc), [228, 189, 144, 232, 179, 128] => lookup_622_251(acc), [229, 133, 181, 229, 186, 171] => lookup_622_252(acc), [229, 140, 151, 230, 181, 183, 233, 129, 147] => lookup_622_253(acc), [229, 141, 131, 232, 145, 137] => lookup_622_254(acc), [229, 146, 140, 230, 173, 140, 229, 177, 177] => lookup_622_255(acc), [229, 159, 188, 231, 142, 137] => lookup_622_256(acc), [229, 164, 167, 229, 136, 134] => lookup_622_257(acc), [229, 164, 167, 233, 152, 170] => lookup_622_258(acc), [229, 165, 136, 232, 137, 175] => lookup_622_259(acc), [229, 174, 174, 229, 159, 142] => lookup_622_260(acc), [229, 174, 174, 229, 180, 142] => lookup_622_261(acc), [229, 175, 140, 229, 177, 177] => lookup_622_262(acc), [229, 177, 177, 229, 143, 163] => lookup_622_263(acc), [229, 177, 177, 229, 189, 162] => lookup_622_264(acc), [229, 177, 177, 230, 162, 168] => lookup_622_265(acc), [229, 178, 144, 233, 152, 156] => lookup_622_266(acc), [229, 178, 161, 229, 177, 177] => lookup_622_267(acc), [229, 178, 169, 230, 137, 139] => lookup_622_268(acc), [229, 179, 182, 230, 160, 185] => lookup_622_269(acc), [229, 186, 131, 229, 179, 182] => lookup_622_270(acc), [229, 190, 179, 229, 179, 182] => lookup_622_271(acc), [230, 132, 155, 229, 170, 155] => lookup_622_272(acc), [230, 132, 155, 231, 159, 165] => lookup_622_273(acc), [230, 150, 176, 230, 189, 159] => lookup_622_274(acc), [230, 157, 177, 228, 186, 172] => lookup_622_275(acc), [230, 160, 131, 230, 156, 168] => lookup_622_276(acc), [230, 178, 150, 231, 184, 132] => lookup_622_277(acc), [230, 187, 139, 232, 179, 128] => lookup_622_278(acc), [231, 134, 138, 230, 156, 172] => lookup_622_279(acc), [231, 159, 179, 229, 183, 157] => lookup_622_280(acc), [231, 165, 158, 229, 165, 136, 229, 183, 157] => lookup_622_281(acc), [231, 166, 143, 228, 186, 149] => lookup_622_282(acc), [231, 166, 143, 229, 178, 161] => lookup_622_283(acc), [231, 166, 143, 229, 179, 182] => lookup_622_284(acc), [231, 167, 139, 231, 148, 176] => lookup_622_285(acc), [231, 190, 164, 233, 166, 172] => lookup_622_286(acc), [232, 140, 168, 229, 159, 142] => lookup_622_287(acc), [233, 149, 183, 229, 180, 142] => lookup_622_288(acc), [233, 149, 183, 233, 135, 142] => lookup_622_289(acc), [233, 157, 146, 230, 163, 174] => lookup_622_290(acc), [233, 157, 153, 229, 178, 161] => lookup_622_291(acc), [233, 166, 153, 229, 183, 157] => lookup_622_292(acc), [233, 171, 152, 231, 159, 165] => lookup_622_293(acc), [233, 179, 165, 229, 143, 150] => lookup_622_294(acc), [233, 185, 191, 229, 133, 144, 229, 179, 182] => lookup_622_295(acc), _ => info, }, None => info, } } #[inline] fn lookup_623() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_624() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_625() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_626() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_627() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_628() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_629_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_629_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_629_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_629<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_629_0(acc), [99, 111] => lookup_629_1(labels, acc), [103, 111] => lookup_629_2(acc), [105, 110, 102, 111] => lookup_629_3(acc), [109, 101] => lookup_629_4(acc), [109, 111, 98, 105] => lookup_629_5(acc), [110, 101] => lookup_629_6(acc), [111, 114] => lookup_629_7(acc), [115, 99] => lookup_629_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_630() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_631() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_632() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_633() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_634_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_634_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_634_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_634_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_634_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_634<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_634_0(acc), [101, 100, 117] => lookup_634_1(acc), [103, 111, 118] => lookup_634_2(acc), [105, 111] => lookup_634_3(acc), [106, 112] => lookup_634_4(acc), [109, 105, 108] => lookup_634_5(acc), [110, 101, 116] => lookup_634_6(acc), [111, 114, 103] => lookup_634_7(acc), [116, 118] => lookup_634_8(acc), [117, 107] => lookup_634_9(acc), [117, 115] => lookup_634_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_635_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_635<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_635_0(wild, acc), }, None => info, } } #[inline] fn lookup_636_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_636<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_636_0(acc), [99, 111, 109] => lookup_636_1(acc), [101, 100, 117] => lookup_636_2(acc), [103, 111, 118] => lookup_636_3(acc), [105, 110, 102, 111] => lookup_636_4(acc), [110, 101, 116] => lookup_636_5(acc), [111, 114, 103] => lookup_636_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_637() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_638() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_639() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_640() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_641() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_642() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_12(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_14(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643_16(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_643<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 115] => lookup_643_0(acc), [97, 115, 115, 111] => lookup_643_1(acc), [99, 111, 109] => lookup_643_2(acc), [99, 111, 111, 112] => lookup_643_3(acc), [101, 100, 117] => lookup_643_4(acc), [103, 111, 117, 118] => lookup_643_5(acc), [103, 111, 118] => lookup_643_6(acc), [109, 101, 100, 101, 99, 105, 110] => lookup_643_7(acc), [109, 105, 108] => lookup_643_8(acc), [110, 111, 109] => lookup_643_9(acc), [110, 111, 116, 97, 105, 114, 101, 115] => lookup_643_10(acc), [111, 114, 103] => lookup_643_11(acc), [112, 104, 97, 114, 109, 97, 99, 105, 101, 110, 115] => lookup_643_12(acc), [112, 114, 100] => lookup_643_13(acc), [112, 114, 101, 115, 115, 101] => lookup_643_14(acc), [116, 109] => lookup_643_15(acc), [118, 101, 116, 101, 114, 105, 110, 97, 105, 114, 101] => lookup_643_16(acc), _ => info, }, None => info, } } #[inline] fn lookup_644_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_644_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_644_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_644_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_644<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 100, 117] => lookup_644_0(acc), [103, 111, 118] => lookup_644_1(acc), [110, 101, 116] => lookup_644_2(acc), [111, 114, 103] => lookup_644_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_645() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_646() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_647() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_648<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_648_0(acc), [101, 100, 117] => lookup_648_1(acc), [103, 111, 118] => lookup_648_2(acc), [111, 114, 103] => lookup_648_3(acc), [114, 101, 112] => lookup_648_4(acc), [116, 114, 97] => lookup_648_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_649() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_650() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_651_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_13(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_16(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_21(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_22(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_25(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_26(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_27(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651_29(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_651<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_651_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_651_1(acc), [98, 117, 115, 97, 110] => lookup_651_2(acc), [99, 104, 117, 110, 103, 98, 117, 107] => lookup_651_3(acc), [99, 104, 117, 110, 103, 110, 97, 109] => lookup_651_4(acc), [99, 111] => lookup_651_5(acc), [100, 97, 101, 103, 117] => lookup_651_6(acc), [100, 97, 101, 106, 101, 111, 110] => lookup_651_7(acc), [101, 115] => lookup_651_8(acc), [103, 97, 110, 103, 119, 111, 110] => lookup_651_9(acc), [103, 111] => lookup_651_10(acc), [103, 119, 97, 110, 103, 106, 117] => lookup_651_11(acc), [103, 121, 101, 111, 110, 103, 98, 117, 107] => lookup_651_12(acc), [103, 121, 101, 111, 110, 103, 103, 105] => lookup_651_13(acc), [103, 121, 101, 111, 110, 103, 110, 97, 109] => lookup_651_14(acc), [104, 115] => lookup_651_15(acc), [105, 110, 99, 104, 101, 111, 110] => lookup_651_16(acc), [106, 101, 106, 117] => lookup_651_17(acc), [106, 101, 111, 110, 98, 117, 107] => lookup_651_18(acc), [106, 101, 111, 110, 110, 97, 109] => lookup_651_19(acc), [107, 103] => lookup_651_20(acc), [109, 105, 108] => lookup_651_21(acc), [109, 115] => lookup_651_22(acc), [110, 101] => lookup_651_23(acc), [111, 114] => lookup_651_24(acc), [112, 101] => lookup_651_25(acc), [114, 101] => lookup_651_26(acc), [115, 99] => lookup_651_27(acc), [115, 101, 111, 117, 108] => lookup_651_28(acc), [117, 108, 115, 97, 110] => lookup_651_29(acc), _ => info, }, None => info, } } #[inline] fn lookup_652_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_652_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_652<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_652_0(acc), [101, 100, 117] => lookup_652_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_653() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_654() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_655<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_655_0(acc), [101, 100, 117] => lookup_655_1(acc), [101, 109, 98] => lookup_655_2(acc), [103, 111, 118] => lookup_655_3(acc), [105, 110, 100] => lookup_655_4(acc), [110, 101, 116] => lookup_655_5(acc), [111, 114, 103] => lookup_655_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_656_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_656_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_656_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_656_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_656<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_656_0(acc), [101, 100, 117] => lookup_656_1(acc), [110, 101, 116] => lookup_656_2(acc), [111, 114, 103] => lookup_656_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_657() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_658_4_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_658_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [117, 112, 97, 97, 115] => lookup_658_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_658_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_658<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_658_0(acc), [101, 100, 117] => lookup_658_1(acc), [103, 111, 118] => lookup_658_2(acc), [106, 99, 108, 111, 117, 100] => lookup_658_3(acc), [107, 97, 122, 116, 101, 108, 101, 112, 111, 114, 116] => { lookup_658_4(info, labels, acc) } [109, 105, 108] => lookup_658_5(acc), [110, 101, 116] => lookup_658_6(acc), [111, 114, 103] => lookup_658_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_659_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_659_1(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_659_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_659<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 110, 114] => lookup_659_0(acc), [99] => lookup_659_1(acc), [99, 111, 109] => lookup_659_2(acc), [101, 100, 117] => lookup_659_3(acc), [103, 111, 118] => lookup_659_4(acc), [105, 110, 102, 111] => lookup_659_5(acc), [105, 110, 116] => lookup_659_6(acc), [110, 101, 116] => lookup_659_7(acc), [111, 114, 103] => lookup_659_8(acc), [112, 101, 114] => lookup_659_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_660() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_661() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_662() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_663() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_664_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_664_0_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_664_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [100, 101, 118] => lookup_664_0_0(acc), [115, 105, 116, 101, 115] => lookup_664_0_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_664<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [115, 116, 97, 116, 105, 99] => lookup_664_0(labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_665() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_666() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_667() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_668() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_669() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_670() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_671() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_672() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_673_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_673_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_673_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_673_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_673_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_673<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_673_0(acc), [101, 100, 117] => lookup_673_1(acc), [103, 111, 118] => lookup_673_2(acc), [110, 101, 116] => lookup_673_3(acc), [111, 114, 103] => lookup_673_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_674_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_674_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_674_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_674_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_674_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_674_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_674_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_674<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_674_0(acc), [99, 111, 109] => lookup_674_1(acc), [101, 100, 117] => lookup_674_2(acc), [103, 111, 118] => lookup_674_3(acc), [110, 101, 116] => lookup_674_4(acc), [111, 114, 103] => lookup_674_5(acc), [111, 121] => lookup_674_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_675() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_676() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_677() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_678() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_679() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_680() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_681() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_682() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_683_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_683_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_683<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_683_0(acc), [99, 97, 97] => lookup_683_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_684() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_685() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_686() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_687() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_688() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_689() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_690() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_691() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_692() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_693() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_694_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_694_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_694_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { wild => lookup_694_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_694_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_694<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 121, 111, 110] => lookup_694_0(acc), [100, 119, 101, 98] => lookup_694_1(info, labels, acc), [109, 121, 112, 101, 112] => lookup_694_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_695() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_696_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_696_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_696<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 101, 109] => lookup_696_0(acc), [104, 108, 120] => lookup_696_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_697() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_698<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_698_0(acc), [97, 115, 115, 110] => lookup_698_1(acc), [99, 111, 109] => lookup_698_2(acc), [101, 100, 117] => lookup_698_3(acc), [103, 111, 118] => lookup_698_4(acc), [103, 114, 112] => lookup_698_5(acc), [104, 111, 116, 101, 108] => lookup_698_6(acc), [105, 110, 116] => lookup_698_7(acc), [108, 116, 100] => lookup_698_8(acc), [110, 101, 116] => lookup_698_9(acc), [110, 103, 111] => lookup_698_10(acc), [111, 114, 103] => lookup_698_11(acc), [115, 99, 104] => lookup_698_12(acc), [115, 111, 99] => lookup_698_13(acc), [119, 101, 98] => lookup_698_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_699() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_700() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_701() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_702() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_703() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_704() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_705_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_705<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [111, 109, 103] => lookup_705_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_706() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_707() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_708() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_709() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_710() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_711() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_712_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_712_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_712_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_712_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_712_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_712<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_712_0(acc), [101, 100, 117] => lookup_712_1(acc), [103, 111, 118] => lookup_712_2(acc), [110, 101, 116] => lookup_712_3(acc), [111, 114, 103] => lookup_712_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_713_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_713_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_713<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_713_0(acc), [98, 105, 122] => lookup_713_1(acc), [99, 111] => lookup_713_2(acc), [100, 101] => lookup_713_3(acc), [101, 100, 117] => lookup_713_4(acc), [103, 111, 118] => lookup_713_5(acc), [105, 110, 102, 111] => lookup_713_6(acc), [110, 101, 116] => lookup_713_7(acc), [111, 114, 103] => lookup_713_8(acc), [115, 99] => lookup_713_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_714_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_714_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_714<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_714_0(acc), [103, 111, 118] => lookup_714_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_715() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_716() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_717_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_717_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_717<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 119, 101, 98, 115, 105, 116, 101] => lookup_717_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_717_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_718() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_719() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_720() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_721<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 110] => lookup_721_0(acc), [99, 111, 109] => lookup_721_1(acc), [99, 111, 110, 102] => lookup_721_2(acc), [101, 100, 117] => lookup_721_3(acc), [103, 111, 118] => lookup_721_4(acc), [105, 100] => lookup_721_5(acc), [109, 105, 108] => lookup_721_6(acc), [110, 101, 116] => lookup_721_7(acc), [111, 114, 103] => lookup_721_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_722_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_722<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_722_0(acc), [101, 100, 117] => lookup_722_1(acc), [103, 111, 118] => lookup_722_2(acc), [105, 100] => lookup_722_3(acc), [109, 101, 100] => lookup_722_4(acc), [110, 101, 116] => lookup_722_5(acc), [111, 114, 103] => lookup_722_6(acc), [112, 108, 99] => lookup_722_7(acc), [115, 99, 104] => lookup_722_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_723_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_723_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_723_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_723_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_723_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_723_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_723<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_723_0(acc), [99, 111] => lookup_723_1(acc), [103, 111, 118] => lookup_723_2(acc), [110, 101, 116] => lookup_723_3(acc), [111, 114, 103] => lookup_723_4(acc), [112, 114, 101, 115, 115] => lookup_723_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_724() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_725() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_726() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_727() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_728() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_729_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_729<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 10usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [114, 111, 117, 116, 101, 114] => lookup_729_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_730() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_731() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_732() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_733() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_734() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_735() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_736() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_737() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_738() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_739_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_739_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_739<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 115, 111] => lookup_739_0(acc), [116, 109] => lookup_739_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_740() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_741_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_741_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_741_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_741_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_741_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_741<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 116] => lookup_741_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_741_1(acc), [100, 101] => lookup_741_2(acc), [106, 112] => lookup_741_3(acc), [116, 111] => lookup_741_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_742_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_5_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_5<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [108, 111, 99, 97, 108, 104, 111, 115, 116] => lookup_742_5_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_742_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_7(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_13(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_14(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_15(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_16(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_17(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_18(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_20(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_22(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_23(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_25(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_27(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_29(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_31(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_32(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_33(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_742_34(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_35(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_36(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_37(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_38_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_38<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [115, 105, 116, 101] => lookup_742_38_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_742_39(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_40(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_41(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_742_42(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_742<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_742_0(acc), [98, 97, 114, 115, 121] => lookup_742_1(acc), [98, 114, 97, 115, 105, 108, 105, 97] => lookup_742_2(acc), [99, 54, 54] => lookup_742_3(acc), [99, 111] => lookup_742_4(acc), [100, 97, 112, 108, 105, 101] => lookup_742_5(labels, acc), [100, 100, 110, 115] => lookup_742_6(acc), [100, 105, 115, 107, 115, 116, 97, 116, 105, 111, 110] => lookup_742_7(acc), [100, 110, 115, 102, 111, 114] => lookup_742_8(acc), [100, 115, 99, 108, 111, 117, 100] => lookup_742_9(acc), [101, 100, 103, 101, 115, 116, 97, 99, 107] => lookup_742_10(acc), [101, 100, 117] => lookup_742_11(acc), [102, 105, 108, 101, 103, 101, 97, 114] => lookup_742_12(acc), [102, 105, 108, 101, 103, 101, 97, 114, 45, 97, 117] => lookup_742_13(acc), [102, 105, 108, 101, 103, 101, 97, 114, 45, 100, 101] => lookup_742_14(acc), [102, 105, 108, 101, 103, 101, 97, 114, 45, 103, 98] => lookup_742_15(acc), [102, 105, 108, 101, 103, 101, 97, 114, 45, 105, 101] => lookup_742_16(acc), [102, 105, 108, 101, 103, 101, 97, 114, 45, 106, 112] => lookup_742_17(acc), [102, 105, 108, 101, 103, 101, 97, 114, 45, 115, 103] => lookup_742_18(acc), [103, 108, 105, 116, 99, 104] => lookup_742_19(acc), [103, 111, 118] => lookup_742_20(acc), [104, 111, 112, 116, 111] => lookup_742_21(acc), [105, 50, 51, 52] => lookup_742_22(acc), [105, 116, 115] => lookup_742_23(acc), [108, 111, 103, 105, 110, 116, 111] => lookup_742_24(acc), [108, 111, 104, 109, 117, 115] => lookup_742_25(acc), [109, 99, 100, 105, 114] => lookup_742_26(acc), [109, 99, 112, 101] => lookup_742_27(acc), [109, 121, 100, 115] => lookup_742_28(acc), [110, 101, 116] => lookup_742_29(acc), [110, 111, 104, 111, 115, 116] => lookup_742_30(acc), [110, 111, 105, 112] => lookup_742_31(acc), [111, 114, 103] => lookup_742_32(acc), [112, 114, 105, 118] => lookup_742_33(acc), [114, 97, 118, 101, 110, 100, 98] => lookup_742_34(acc), [115, 111, 117, 110, 100, 99, 97, 115, 116] => lookup_742_35(acc), [115, 121, 110, 111, 108, 111, 103, 121] => lookup_742_36(acc), [116, 99, 112, 52] => lookup_742_37(acc), [116, 114, 97, 110, 115, 105, 112] => lookup_742_38(info, labels, acc), [118, 112, 52] => lookup_742_39(acc), [119, 101, 98, 104, 111, 112] => lookup_742_40(acc), [119, 101, 100, 101, 112, 108, 111, 121] => lookup_742_41(acc), [121, 111, 109, 98, 111] => lookup_742_42(acc), _ => info, }, None => info, } } #[inline] fn lookup_743() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_744_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_744<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [102, 114, 97, 109, 101, 114] => lookup_744_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_745() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_746() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_747() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_748() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_749() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_750_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_750<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_750_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_751() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_752<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_752_0(acc), [99, 111, 109] => lookup_752_1(acc), [101, 100, 117] => lookup_752_2(acc), [103, 111, 118] => lookup_752_3(acc), [109, 105, 108] => lookup_752_4(acc), [110, 111, 109] => lookup_752_5(acc), [111, 114, 103] => lookup_752_6(acc), [112, 114, 100] => lookup_752_7(acc), [116, 109] => lookup_752_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_753() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_754() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_755() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_756() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_757() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_758() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_759() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_760() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_761_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_761<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_761_0(acc), [99, 111, 109] => lookup_761_1(acc), [101, 100, 117] => lookup_761_2(acc), [103, 111, 118] => lookup_761_3(acc), [105, 110, 102] => lookup_761_4(acc), [110, 97, 109, 101] => lookup_761_5(acc), [110, 101, 116] => lookup_761_6(acc), [111, 114, 103] => lookup_761_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_762_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_762<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_762_0(acc), [101, 100, 117] => lookup_762_1(acc), [103, 111, 117, 118] => lookup_762_2(acc), [103, 111, 118] => lookup_762_3(acc), [110, 101, 116] => lookup_762_4(acc), [111, 114, 103] => lookup_762_5(acc), [112, 114, 101, 115, 115, 101] => lookup_762_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_763() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_764() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_765_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_765<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_765_0(wild, acc), }, None => info, } } #[inline] fn lookup_766() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_767_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_767_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_767_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_767_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_767<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 100, 117] => lookup_767_0(acc), [103, 111, 118] => lookup_767_1(acc), [110, 121, 99] => lookup_767_2(acc), [111, 114, 103] => lookup_767_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_768_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_768_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_768_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_768_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_768_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_768<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_768_0(acc), [101, 100, 117] => lookup_768_1(acc), [103, 111, 118] => lookup_768_2(acc), [110, 101, 116] => lookup_768_3(acc), [111, 114, 103] => lookup_768_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_769_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_769_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_769<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_769_0(acc), [100, 115, 99, 108, 111, 117, 100] => lookup_769_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_770() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_771() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_772() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_773() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_774() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_775() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_776() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_777() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_778() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_779() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_780() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_781() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_782() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_783() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_784() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_785_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_785<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [106, 117] => lookup_785_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_786() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_787_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_787_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_787<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_787_0(acc), [103, 111, 118] => lookup_787_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_788_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_788_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_788_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_788_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_788_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_788_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_788_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_788<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_788_0(acc), [101, 100, 117] => lookup_788_1(acc), [103, 111, 118] => lookup_788_2(acc), [108, 97, 98] => lookup_788_3(acc), [109, 105, 110, 105, 115, 105, 116, 101] => lookup_788_4(acc), [110, 101, 116] => lookup_788_5(acc), [111, 114, 103] => lookup_788_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_789() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_790_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_790_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_790_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_790_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_790_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_790_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_790<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_790_0(labels, acc), [101, 100, 117] => lookup_790_1(acc), [110, 101, 116] => lookup_790_2(acc), [111, 114, 103] => lookup_790_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_791() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_792() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_793<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_793_0(acc), [99, 111] => lookup_793_1(acc), [99, 111, 109] => lookup_793_2(acc), [103, 111, 118] => lookup_793_3(acc), [110, 101, 116] => lookup_793_4(acc), [111, 114] => lookup_793_5(acc), [111, 114, 103] => lookup_793_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_794() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_795() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_9(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_796<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 101, 114, 111] => lookup_796_0(acc), [98, 105, 122] => lookup_796_1(acc), [99, 111, 109] => lookup_796_2(acc), [99, 111, 111, 112] => lookup_796_3(acc), [101, 100, 117] => lookup_796_4(acc), [103, 111, 118] => lookup_796_5(acc), [105, 110, 102, 111] => lookup_796_6(acc), [105, 110, 116] => lookup_796_7(acc), [109, 105, 108] => lookup_796_8(acc), [109, 117, 115, 101, 117, 109] => lookup_796_9(acc), [110, 97, 109, 101] => lookup_796_10(acc), [110, 101, 116] => lookup_796_11(acc), [111, 114, 103] => lookup_796_12(acc), [112, 114, 111] => lookup_796_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_797_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_797<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_797_0(acc), [98, 105, 122] => lookup_797_1(acc), [99, 111] => lookup_797_2(acc), [99, 111, 109] => lookup_797_3(acc), [99, 111, 111, 112] => lookup_797_4(acc), [101, 100, 117] => lookup_797_5(acc), [103, 111, 118] => lookup_797_6(acc), [105, 110, 116] => lookup_797_7(acc), [109, 117, 115, 101, 117, 109] => lookup_797_8(acc), [110, 101, 116] => lookup_797_9(acc), [111, 114, 103] => lookup_797_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_798_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_798_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_798_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_798_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_798_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_798_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_798<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_798_0(acc), [99, 111, 109] => lookup_798_1(acc), [101, 100, 117] => lookup_798_2(acc), [103, 111, 98] => lookup_798_3(acc), [110, 101, 116] => lookup_798_4(acc), [111, 114, 103] => lookup_798_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_799_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_799_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_799<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_799_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_799_1(acc), [99, 111, 109] => lookup_799_2(acc), [101, 100, 117] => lookup_799_3(acc), [103, 111, 118] => lookup_799_4(acc), [109, 105, 108] => lookup_799_5(acc), [110, 97, 109, 101] => lookup_799_6(acc), [110, 101, 116] => lookup_799_7(acc), [111, 114, 103] => lookup_799_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_800_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_800<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_800_0(acc), [97, 100, 118] => lookup_800_1(acc), [99, 111] => lookup_800_2(acc), [101, 100, 117] => lookup_800_3(acc), [103, 111, 118] => lookup_800_4(acc), [109, 105, 108] => lookup_800_5(acc), [110, 101, 116] => lookup_800_6(acc), [111, 114, 103] => lookup_800_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_801_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_801<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 97] => lookup_801_0(acc), [99, 99] => lookup_801_1(acc), [99, 111] => lookup_801_2(acc), [99, 111, 109] => lookup_801_3(acc), [100, 114] => lookup_801_4(acc), [105, 110] => lookup_801_5(acc), [105, 110, 102, 111] => lookup_801_6(acc), [109, 111, 98, 105] => lookup_801_7(acc), [109, 120] => lookup_801_8(acc), [110, 97, 109, 101] => lookup_801_9(acc), [111, 114] => lookup_801_10(acc), [111, 114, 103] => lookup_801_11(acc), [112, 114, 111] => lookup_801_12(acc), [115, 99, 104, 111, 111, 108] => lookup_801_13(acc), [116, 118] => lookup_801_14(acc), [117, 115] => lookup_801_15(acc), [119, 115] => lookup_801_16(acc), _ => info, }, None => info, } } #[inline] fn lookup_802() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_803() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_804_0_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_804_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [102, 111, 114, 103, 111, 116] => lookup_804_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_804_1_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_804_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [102, 111, 114, 103, 111, 116] => lookup_804_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_804<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [104, 101, 114] => lookup_804_0(info, labels, acc), [104, 105, 115] => lookup_804_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_805() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_806() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_807() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_808_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_808_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_808<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 115, 111] => lookup_808_0(acc), [110, 111, 109] => lookup_808_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_809() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_810() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_811_0(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_2(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_5(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_7(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_9(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_10(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_11(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_13(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_16(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_17_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_17_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [99, 100, 110] => lookup_811_17_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_17<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [112, 114, 111, 100] => lookup_811_17_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_811_18(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_19(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_20(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_1(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_2(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_3(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_4(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_5(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_6(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_7(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_8(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_22<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 15usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [49] => lookup_811_22_0(acc), [50] => lookup_811_22_1(acc), [51] => lookup_811_22_2(acc), [52] => lookup_811_22_3(acc), [53] => lookup_811_22_4(acc), [54] => lookup_811_22_5(acc), [55] => lookup_811_22_6(acc), [99, 101, 110, 116, 114, 97, 108, 117, 115] => lookup_811_22_7(acc), [101, 97, 115, 116, 97, 115, 105, 97] => lookup_811_22_8(acc), [101, 97, 115, 116, 117, 115, 50] => lookup_811_22_9(acc), [119, 101, 115, 116, 101, 117, 114, 111, 112, 101] => lookup_811_22_10(acc), [119, 101, 115, 116, 117, 115, 50] => lookup_811_22_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_23(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_24(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_25(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_27(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_28(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_29(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_30(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_31(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_32(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_33(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_34(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_35(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_36(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_37(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_38_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_38<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [114] => lookup_811_38_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_39(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_40_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_40<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [117] => lookup_811_40_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_41(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_42(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_43(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_44(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_45(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_46_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_46_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_46<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [102, 114, 97, 49, 45, 100, 101] => lookup_811_46_0(acc), [119, 101, 115, 116, 49, 45, 117, 115] => lookup_811_46_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_47(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_48(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_49_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_811_49<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { wild => lookup_811_49_0(wild, acc), }, None => info, } } #[inline] fn lookup_811_50(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_51(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_52(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_53(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_54(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_55(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_56(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_57(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_58(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_59(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_60(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_61(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_62(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_63(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_64(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_65(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_66(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_67(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_68(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_69(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_70_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_70_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_70_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_70<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [106, 108, 115, 45, 115, 116, 111, 49] => lookup_811_70_0(acc), [106, 108, 115, 45, 115, 116, 111, 50] => lookup_811_70_1(acc), [106, 108, 115, 45, 115, 116, 111, 51] => lookup_811_70_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_71(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_72(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_2_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_2_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [97] => lookup_811_73_2_0(acc), [103, 108, 111, 98, 97, 108] => lookup_811_73_2_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_73_3_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_3_1(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_3_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_73_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [97] => lookup_811_73_3_0(acc), [98] => lookup_811_73_3_1(acc), [103, 108, 111, 98, 97, 108] => lookup_811_73_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_73<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [102, 114, 101, 101, 116, 108, 115] => lookup_811_73_0(acc), [109, 97, 112] => lookup_811_73_1(acc), [112, 114, 111, 100] => lookup_811_73_2(info, labels, acc), [115, 115, 108] => lookup_811_73_3(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_811_74_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_74<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [109, 97, 112] => lookup_811_74_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_75(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_76(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_77(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_78(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_79(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_80(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_81(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_82(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_83(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_84(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_85(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_86(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_87(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_88(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_89(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_90(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_91(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_92(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_93(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_94(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_95(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_96(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_97(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_98(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_99(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_100(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_101(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_102(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_103(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_104(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_105(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_106(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_107_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [102, 114, 45, 49] => lookup_811_107_0_0(acc), [108, 111, 110, 45, 49] => lookup_811_107_0_1(acc), [108, 111, 110, 45, 50] => lookup_811_107_0_2(acc), [110, 121, 45, 49] => lookup_811_107_0_3(acc), [110, 121, 45, 50] => lookup_811_107_0_4(acc), [115, 103, 45, 49] => lookup_811_107_0_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_107<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [112, 97, 97, 115] => lookup_811_107_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_811_108(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_109(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_110(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_111(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_112(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_113(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_114(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_115(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_116(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_117(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_118(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_119(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_120(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_121(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_122(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_123(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_124(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_125_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_811_125_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_811_125_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_811_125_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_811_125_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_811_125_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_811_125<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [104, 111, 115, 116, 105, 110, 103] => lookup_811_125_0(info, labels, acc), [119, 101, 98, 112, 97, 97, 115] => lookup_811_125_1(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_811_126(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_127(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_128(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_129(acc: usize) -> Info { Info { len: acc + 1 + 24usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_130(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_131(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_132(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_133(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_134_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_134_1(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_134<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; match labels.next() { Some(label) => match label { [106, 101, 108, 97, 115, 116, 105, 99] => lookup_811_134_0(acc), [110, 111, 114, 100, 101, 115, 116, 101, 45, 105, 100, 99] => lookup_811_134_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_135_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_135<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [106] => lookup_811_135_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_136(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_137(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_138(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_139(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_140(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_141(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_142(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_143(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_144(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_145(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_146(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_147(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_148(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_149(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_150(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_151_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_151_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_151<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [115, 111, 99] => lookup_811_151_0(acc), [117, 115, 101, 114] => lookup_811_151_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_152(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_153(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_154(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_155(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_156_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_156<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [98, 101, 116, 97] => lookup_811_156_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_157(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_158_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_158<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [112, 97, 103, 101, 115] => lookup_811_158_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_159(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_160(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_161_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_161<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [106, 101, 108, 97, 115, 116, 105, 99] => lookup_811_161_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_162(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_163(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_164(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_165(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_166_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_166_0_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_166_0_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_166_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [97, 116, 108] => lookup_811_166_0_0(acc), [110, 106, 115] => lookup_811_166_0_1(acc), [114, 105, 99] => lookup_811_166_0_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_166<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [106, 101, 108, 97, 115, 116, 105, 99] => lookup_811_166_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_811_167(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_168_0_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_168_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [98, 108, 111, 98] => lookup_811_168_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_168_1(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_168<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [99, 111, 114, 101] => lookup_811_168_0(info, labels, acc), [115, 101, 114, 118, 105, 99, 101, 98, 117, 115] => lookup_811_168_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_169_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_169_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_811_169<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 11usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [115, 116, 111, 114, 97, 103, 101] => lookup_811_169_0(acc), [119, 101, 98, 115, 105, 116, 101] => lookup_811_169_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_811_170(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_811<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 100, 111, 98, 101, 97, 101, 109, 99, 108, 111, 117, 100] => lookup_811_0(acc), [97, 100, 111, 98, 101, 105, 111, 45, 115, 116, 97, 116, 105, 99] => lookup_811_1(acc), [97, 100, 111, 98, 101, 105, 111, 114, 117, 110, 116, 105, 109, 101] => { lookup_811_2(acc) } [97, 107, 97, 100, 110, 115] => lookup_811_3(acc), [97, 107, 97, 109, 97, 105] => lookup_811_4(acc), [97, 107, 97, 109, 97, 105, 45, 115, 116, 97, 103, 105, 110, 103] => lookup_811_5(acc), [97, 107, 97, 109, 97, 105, 101, 100, 103, 101] => lookup_811_6(acc), [97, 107, 97, 109, 97, 105, 101, 100, 103, 101, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_811_7(acc) } [97, 107, 97, 109, 97, 105, 104, 100] => lookup_811_8(acc), [97, 107, 97, 109, 97, 105, 104, 100, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_811_9(acc) } [97, 107, 97, 109, 97, 105, 111, 114, 105, 103, 105, 110] => lookup_811_10(acc), [97, 107, 97, 109, 97, 105, 111, 114, 105, 103, 105, 110, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_811_11(acc) } [97, 107, 97, 109, 97, 105, 122, 101, 100] => lookup_811_12(acc), [97, 107, 97, 109, 97, 105, 122, 101, 100, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_811_13(acc) } [97, 108, 119, 97, 121, 115, 100, 97, 116, 97] => lookup_811_14(acc), [97, 112, 112, 117, 100, 111] => lookup_811_15(acc), [97, 116, 45, 98, 97, 110, 100, 45, 99, 97, 109, 112] => lookup_811_16(acc), [97, 116, 108, 97, 115, 115, 105, 97, 110, 45, 100, 101, 118] => { lookup_811_17(info, labels, acc) } [97, 122, 117, 114, 101, 45, 97, 112, 105] => lookup_811_18(acc), [97, 122, 117, 114, 101, 45, 109, 111, 98, 105, 108, 101] => lookup_811_19(acc), [97, 122, 117, 114, 101, 101, 100, 103, 101] => lookup_811_20(acc), [97, 122, 117, 114, 101, 102, 100] => lookup_811_21(acc), [97, 122, 117, 114, 101, 115, 116, 97, 116, 105, 99, 97, 112, 112, 115] => { lookup_811_22(labels, acc) } [97, 122, 117, 114, 101, 119, 101, 98, 115, 105, 116, 101, 115] => lookup_811_23(acc), [98, 97, 114, 48] => lookup_811_24(acc), [98, 97, 114, 49] => lookup_811_25(acc), [98, 97, 114, 50] => lookup_811_26(acc), [98, 97, 114, 115, 121] => lookup_811_27(acc), [98, 105, 116, 98, 114, 105, 100, 103, 101] => lookup_811_28(acc), [98, 108, 97, 99, 107, 98, 97, 117, 100, 99, 100, 110] => lookup_811_29(acc), [98, 108, 111, 103, 100, 110, 115] => lookup_811_30(acc), [98, 111, 111, 109, 108, 97] => lookup_811_31(acc), [98, 111, 117, 110, 99, 101, 109, 101] => lookup_811_32(acc), [98, 112, 108, 97, 99, 101, 100] => lookup_811_33(acc), [98, 114, 111, 107, 101, 45, 105, 116] => lookup_811_34(acc), [98, 117, 121, 115, 104, 111, 117, 115, 101, 115] => lookup_811_35(acc), [99, 97, 115, 97, 99, 97, 109] => lookup_811_36(acc), [99, 100, 110, 45, 101, 100, 103, 101, 115] => lookup_811_37(acc), [99, 100, 110, 55, 55] => lookup_811_38(info, labels, acc), [99, 100, 110, 55, 55, 45, 115, 115, 108] => lookup_811_39(acc), [99, 104, 97, 110, 110, 101, 108, 115, 100, 118, 114] => lookup_811_40(labels, acc), [99, 108, 105, 99, 107, 114, 105, 115, 105, 110, 103] => lookup_811_41(acc), [99, 108, 111, 117, 100, 97, 99, 99, 101, 115, 115] => lookup_811_42(acc), [99, 108, 111, 117, 100, 97, 112, 112] => lookup_811_43(acc), [99, 108, 111, 117, 100, 102, 114, 111, 110, 116] => lookup_811_44(acc), [99, 108, 111, 117, 100, 102, 117, 110, 99, 116, 105, 111, 110, 115] => { lookup_811_45(acc) } [99, 108, 111, 117, 100, 106, 105, 102, 102, 121] => lookup_811_46(labels, acc), [99, 108, 111, 117, 100, 121, 99, 108, 117, 115, 116, 101, 114] => lookup_811_47(acc), [99, 111, 109, 109, 117, 110, 105, 116, 121, 45, 112, 114, 111] => lookup_811_48(acc), [99, 114, 121, 112, 116, 111, 110, 111, 109, 105, 99] => { lookup_811_49(info, labels, acc) } [100, 97, 116, 116, 111, 108, 111, 99, 97, 108] => lookup_811_50(acc), [100, 100, 110, 115] => lookup_811_51(acc), [100, 101, 98, 105, 97, 110] => lookup_811_52(acc), [100, 101, 102, 105, 110, 105, 109, 97] => lookup_811_53(acc), [100, 110, 115, 97, 108, 105, 97, 115] => lookup_811_54(acc), [100, 110, 115, 100, 111, 106, 111] => lookup_811_55(acc), [100, 110, 115, 117, 112] => lookup_811_56(acc), [100, 111, 101, 115, 45, 105, 116] => lookup_811_57(acc), [100, 111, 110, 116, 101, 120, 105, 115, 116] => lookup_811_58(acc), [100, 115, 109, 121, 110, 97, 115] => lookup_811_59(acc), [100, 121, 110, 97, 108, 105, 97, 115] => lookup_811_60(acc), [100, 121, 110, 97, 116, 104, 111, 109, 101] => lookup_811_61(acc), [100, 121, 110, 117] => lookup_811_62(acc), [100, 121, 110, 118, 54] => lookup_811_63(acc), [101, 97, 116, 105, 110, 103, 45, 111, 114, 103, 97, 110, 105, 99] => { lookup_811_64(acc) } [101, 100, 103, 101, 97, 112, 112] => lookup_811_65(acc), [101, 100, 103, 101, 107, 101, 121] => lookup_811_66(acc), [101, 100, 103, 101, 107, 101, 121, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_811_67(acc) } [101, 100, 103, 101, 115, 117, 105, 116, 101] => lookup_811_68(acc), [101, 100, 103, 101, 115, 117, 105, 116, 101, 45, 115, 116, 97, 103, 105, 110, 103] => { lookup_811_69(acc) } [101, 108, 97, 115, 116, 120] => lookup_811_70(info, labels, acc), [101, 110, 100, 111, 102, 105, 110, 116, 101, 114, 110, 101, 116] => lookup_811_71(acc), [102, 97, 109, 105, 108, 121, 100, 115] => lookup_811_72(acc), [102, 97, 115, 116, 108, 121] => lookup_811_73(info, labels, acc), [102, 97, 115, 116, 108, 121, 108, 98] => lookup_811_74(labels, acc), [102, 97, 115, 116, 115, 116, 97, 99, 107, 115] => lookup_811_75(acc), [102, 101, 115, 116, 101, 45, 105, 112] => lookup_811_76(acc), [102, 105, 114, 101, 119, 97, 108, 108, 45, 103, 97, 116, 101, 119, 97, 121] => { lookup_811_77(acc) } [102, 108, 121, 110, 110, 104, 111, 115, 116, 105, 110, 103] => lookup_811_78(acc), [102, 114, 111, 109, 45, 97, 122] => lookup_811_79(acc), [102, 114, 111, 109, 45, 99, 111] => lookup_811_80(acc), [102, 114, 111, 109, 45, 108, 97] => lookup_811_81(acc), [102, 114, 111, 109, 45, 110, 121] => lookup_811_82(acc), [103, 98] => lookup_811_83(acc), [103, 101, 116, 115, 45, 105, 116] => lookup_811_84(acc), [104, 97, 109, 45, 114, 97, 100, 105, 111, 45, 111, 112] => lookup_811_85(acc), [104, 101, 116, 101, 109, 108] => lookup_811_86(acc), [104, 105, 99, 97, 109] => lookup_811_87(acc), [104, 111, 109, 101, 102, 116, 112] => lookup_811_88(acc), [104, 111, 109, 101, 105, 112] => lookup_811_89(acc), [104, 111, 109, 101, 108, 105, 110, 117, 120] => lookup_811_90(acc), [104, 111, 109, 101, 117, 110, 105, 120] => lookup_811_91(acc), [104, 117] => lookup_811_92(acc), [105, 110] => lookup_811_93(acc), [105, 110, 45, 100, 115, 108] => lookup_811_94(acc), [105, 110, 45, 116, 104, 101, 45, 98, 97, 110, 100] => lookup_811_95(acc), [105, 110, 45, 118, 112, 110] => lookup_811_96(acc), [105, 111, 98, 98] => lookup_811_97(acc), [105, 112, 105, 102, 111, 110, 121] => lookup_811_98(acc), [105, 115, 45, 97, 45, 99, 104, 101, 102] => lookup_811_99(acc), [105, 115, 45, 97, 45, 103, 101, 101, 107] => lookup_811_100(acc), [105, 115, 97, 45, 103, 101, 101, 107] => lookup_811_101(acc), [106, 112] => lookup_811_102(acc), [107, 105, 99, 107, 115, 45, 97, 115, 115] => lookup_811_103(acc), [107, 105, 110, 103, 104, 111, 115, 116] => lookup_811_104(acc), [107, 110, 120, 45, 115, 101, 114, 118, 101, 114] => lookup_811_105(acc), [107, 114, 101, 108, 108, 105, 97, 110] => lookup_811_106(acc), [109, 97, 115, 115, 105, 118, 101, 103, 114, 105, 100] => { lookup_811_107(info, labels, acc) } [109, 101, 105, 110, 102, 111, 114, 117, 109] => lookup_811_108(acc), [109, 101, 109, 115, 101, 116] => lookup_811_109(acc), [109, 111, 111, 110, 115, 99, 97, 108, 101] => lookup_811_110(acc), [109, 121, 97, 109, 97, 122, 101] => lookup_811_111(acc), [109, 121, 100, 97, 116, 116, 111] => lookup_811_112(acc), [109, 121, 100, 105, 115, 115, 101, 110, 116] => lookup_811_113(acc), [109, 121, 101, 102, 102, 101, 99, 116] => lookup_811_114(acc), [109, 121, 102, 114, 105, 116, 122] => lookup_811_115(acc), [109, 121, 109, 101, 100, 105, 97, 112, 99] => lookup_811_116(acc), [109, 121, 112, 115, 120] => lookup_811_117(acc), [109, 121, 115, 101, 99, 117, 114, 105, 116, 121, 99, 97, 109, 101, 114, 97] => { lookup_811_118(acc) } [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_811_119(acc), [110, 104, 108, 102, 97, 110] => lookup_811_120(acc), [110, 111, 45, 105, 112] => lookup_811_121(acc), [110, 111, 119, 45, 100, 110, 115] => lookup_811_122(acc), [111, 102, 102, 105, 99, 101, 45, 111, 110, 45, 116, 104, 101] => lookup_811_123(acc), [111, 110, 97, 118, 115, 116, 97, 99, 107] => lookup_811_124(acc), [111, 118, 104] => lookup_811_125(info, labels, acc), [111, 119, 110, 105, 112] => lookup_811_126(acc), [112, 103, 97, 102, 97, 110] => lookup_811_127(acc), [112, 111, 100, 122, 111, 110, 101] => lookup_811_128(acc), [112, 114, 105, 118, 97, 116, 105, 122, 101, 104, 101, 97, 108, 116, 104, 105, 110, 115, 117, 114, 97, 110, 99, 101] => { lookup_811_129(acc) } [114, 97, 99, 107, 109, 97, 122, 101] => lookup_811_130(acc), [114, 101, 100, 105, 114, 101, 99, 116, 109, 101] => lookup_811_131(acc), [114, 101, 115, 101, 114, 118, 101, 45, 111, 110, 108, 105, 110, 101] => { lookup_811_132(acc) } [114, 117] => lookup_811_133(acc), [115, 97, 118, 101, 105, 110, 99, 108, 111, 117, 100] => { lookup_811_134(info, labels, acc) } [115, 99, 97, 108, 101, 102, 111, 114, 99, 101] => lookup_811_135(info, labels, acc), [115, 99, 104, 111, 107, 111, 107, 101, 107, 115] => lookup_811_136(acc), [115, 99, 114, 97, 112, 112, 101, 114, 45, 115, 105, 116, 101] => lookup_811_137(acc), [115, 101] => lookup_811_138(acc), [115, 101, 105, 100, 97, 116] => lookup_811_139(acc), [115, 101, 108, 102, 105, 112] => lookup_811_140(acc), [115, 101, 108, 108, 115, 45, 105, 116] => lookup_811_141(acc), [115, 101, 110, 115, 101, 101, 114, 105, 110, 103] => lookup_811_142(acc), [115, 101, 114, 118, 101, 98, 98, 115] => lookup_811_143(acc), [115, 101, 114, 118, 101, 98, 108, 111, 103] => lookup_811_144(acc), [115, 101, 114, 118, 101, 102, 116, 112] => lookup_811_145(acc), [115, 101, 114, 118, 101, 109, 105, 110, 101, 99, 114, 97, 102, 116] => { lookup_811_146(acc) } [115, 104, 111, 112, 115, 101, 108, 101, 99, 116] => lookup_811_147(acc), [115, 105, 116, 101, 108, 101, 97, 102] => lookup_811_148(acc), [115, 113, 117, 97, 114, 101, 55] => lookup_811_149(acc), [115, 113, 117, 97, 114, 101, 115] => lookup_811_150(acc), [115, 114, 99, 102] => lookup_811_151(info, labels, acc), [115, 116, 97, 116, 105, 99, 45, 97, 99, 99, 101, 115, 115] => lookup_811_152(acc), [115, 117, 112, 97, 98, 97, 115, 101] => lookup_811_153(acc), [115, 121, 116, 101, 115] => lookup_811_154(acc), [116, 51, 108, 51, 112, 48, 114, 116] => lookup_811_155(acc), [116, 97, 105, 108, 115, 99, 97, 108, 101] => lookup_811_156(info, labels, acc), [116, 104, 114, 117, 104, 101, 114, 101] => lookup_811_157(acc), [116, 111, 114, 112, 114, 111, 106, 101, 99, 116] => lookup_811_158(labels, acc), [116, 114, 97, 102, 102, 105, 99, 109, 97, 110, 97, 103, 101, 114] => { lookup_811_159(acc) } [116, 115] => lookup_811_160(acc), [116, 115, 117, 107, 97, 101, 114, 117] => lookup_811_161(info, labels, acc), [116, 119, 109, 97, 105, 108] => lookup_811_162(acc), [117, 107] => lookup_811_163(acc), [117, 110, 105, 53] => lookup_811_164(acc), [118, 112, 110, 100, 110, 115] => lookup_811_165(acc), [118, 112, 115, 45, 104, 111, 115, 116] => lookup_811_166(labels, acc), [119, 101, 98, 104, 111, 112] => lookup_811_167(acc), [119, 105, 110, 100, 111, 119, 115] => lookup_811_168(info, labels, acc), [121, 97, 110, 100, 101, 120, 99, 108, 111, 117, 100] => lookup_811_169(labels, acc), [122, 97] => lookup_811_170(acc), _ => info, }, None => info, } } #[inline] fn lookup_812() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_813() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_814_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_814_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_814_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_814_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_814_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_814_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_814_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_814<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 108, 99, 101, 115] => lookup_814_0(info, labels, acc), [97, 114, 118, 111] => lookup_814_1(acc), [97, 122, 105, 109, 117, 116, 104] => lookup_814_2(acc), [99, 111] => lookup_814_3(acc), [116, 108, 111, 110] => lookup_814_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_815() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_816() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_817_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_817<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 111, 116, 105, 99, 101, 97, 98, 108, 101] => lookup_817_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_818() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_819() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_820() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_5(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_821<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116, 115] => lookup_821_0(acc), [99, 111, 109] => lookup_821_1(acc), [102, 105, 114, 109] => lookup_821_2(acc), [105, 110, 102, 111] => lookup_821_3(acc), [110, 101, 116] => lookup_821_4(acc), [111, 116, 104, 101, 114] => lookup_821_5(acc), [112, 101, 114] => lookup_821_6(acc), [114, 101, 99] => lookup_821_7(acc), [115, 116, 111, 114, 101] => lookup_821_8(acc), [119, 101, 98] => lookup_821_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_822() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_823_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_823_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_823_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_823_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_823_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_823_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_6(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_823_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_823_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_823<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 108] => lookup_823_0(acc), [99, 111, 109] => lookup_823_1(labels, acc), [101, 100, 117] => lookup_823_2(acc), [102, 105, 114, 109] => lookup_823_3(acc), [103, 101, 110] => lookup_823_4(acc), [103, 111, 118] => lookup_823_5(acc), [105] => lookup_823_6(acc), [108, 116, 100] => lookup_823_7(acc), [109, 105, 108] => lookup_823_8(acc), [109, 111, 98, 105] => lookup_823_9(acc), [110, 97, 109, 101] => lookup_823_10(acc), [110, 101, 116] => lookup_823_11(acc), [110, 103, 111] => lookup_823_12(acc), [111, 114, 103] => lookup_823_13(acc), [115, 99, 104] => lookup_823_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_824() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_825() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_826<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_826_0(acc), [98, 105, 122] => lookup_826_1(acc), [99, 111] => lookup_826_2(acc), [99, 111, 109] => lookup_826_3(acc), [101, 100, 117] => lookup_826_4(acc), [103, 111, 98] => lookup_826_5(acc), [105, 110] => lookup_826_6(acc), [105, 110, 102, 111] => lookup_826_7(acc), [105, 110, 116] => lookup_826_8(acc), [109, 105, 108] => lookup_826_9(acc), [110, 101, 116] => lookup_826_10(acc), [110, 111, 109] => lookup_826_11(acc), [111, 114, 103] => lookup_826_12(acc), [119, 101, 98] => lookup_826_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_827() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_828() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_829() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_830() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_831() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_832() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_833_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_6(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_8(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_833_9_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_833_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_833_9_0(wild, acc), }, None => info, } } #[inline] fn lookup_833<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 119, 101, 98, 115, 105, 116, 101] => lookup_833_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_833_1(acc), [99, 105, 115, 116, 114, 111, 110] => lookup_833_2(acc), [99, 111] => lookup_833_3(acc), [100, 101, 109, 111, 110] => lookup_833_4(acc), [103, 111, 118] => lookup_833_5(acc), [104, 111, 115, 116, 105, 110, 103, 45, 99, 108, 117, 115, 116, 101, 114] => { lookup_833_6(acc) } [107, 104, 112, 108, 97, 121] => lookup_833_7(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_833_8(acc), [116, 114, 97, 110, 115, 117, 114, 108] => lookup_833_9(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_834_0(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_834_1_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_6_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_6<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_6_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_7_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [110, 101, 115] => lookup_834_7_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_8(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_11(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_14(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_17(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_19(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_21(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_22(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_23(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_25(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_26(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_27(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_29(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_30(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_33(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_34(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_35(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_36(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_38(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_39(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_40(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_41(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_42(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_43(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_44(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_45(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_46(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_47(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_48(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_49(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_50(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_51(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_52(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_53(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_54(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_55(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_56(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_57(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_58(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_59(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_60(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_61(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_62(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_63(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_64(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_65(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_66(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_67(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_68(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_69(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_70(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_71(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_72(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_73(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_834_74(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_75(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_76(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_77(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_78(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_79(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_80(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_81(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_82(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_83(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_84(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_85_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_85<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_85_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_86(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_87_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_87<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [110, 101, 115] => lookup_834_87_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_88(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_89(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_90(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_91(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_92(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_93(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_94(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_95(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_96(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_97(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_98(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_99(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_100(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_834_101(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_102(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_103(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_104(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_105(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_106(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_107(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_108(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_109(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_110(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_111(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_112(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_113(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_114(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_115(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_116(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_117(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_118(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_119(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_120(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_121(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_122(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_123(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_124(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_125(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_126(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_127(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_128(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_129(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_130(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_131(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_132(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_133(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_134(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_135(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_136(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_137(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_138(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_139(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_140(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_141(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_142(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_143(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_144(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_145(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_146(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_147(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_148(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_149(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_150(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_151(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_152(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_153(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_154_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_154<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_154_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_155(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_156(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_157(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_158(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_159(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_160(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_161(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_162(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_163(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_164(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_165(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_166(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_167(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_168(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_169(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_170(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_171(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_172(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_173(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_174(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_175(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_176(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_177(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_178(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_179(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_180(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_181(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_182(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_183(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_184(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_185(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_186(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_187(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_188(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_189(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_190(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_191(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_192(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_193(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_194(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_195(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_196(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_197(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_198(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_199(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_200(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_201(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_202(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_203(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_204(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_205(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_206(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_207(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_208(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_209(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_210(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_211(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_212(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_213(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_214(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_215(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_216(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_217(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_218(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_219(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_220(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_221(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_222_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_222_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_222_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_222_3(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_222<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [111, 115] => lookup_834_222_0(acc), [118, 97, 108, 101, 114] => lookup_834_222_1(acc), [118, 195, 165, 108, 101, 114] => lookup_834_222_2(acc), [120, 110, 45, 45, 118, 108, 101, 114, 45, 113, 111, 97] => lookup_834_222_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_223(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_224(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_225(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_226(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_227(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_228(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_229(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_230_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_230<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_230_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_231_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_231<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_231_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_232(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_233(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_234(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_235(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_236(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_237(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_238(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_239(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_240(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_241(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_242_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_242<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [111, 115] => lookup_834_242_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_243(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_244(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_245(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_246(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_247(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_248(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_249(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_250(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_251(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_252(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_253(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_254(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_255(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_256(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_257(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_258(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_259(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_260(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_261(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_262(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_263(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_264(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_265_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_265<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_265_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_266(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_267(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_268(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_269(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_270(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_271(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_272(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_273(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_274(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_275(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_276(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_277(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_278(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_279(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_280(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_281(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_282(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_283(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_284(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_285(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_286(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_287(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_288(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_289(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_290(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_291(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_292(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_293(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_294(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_295(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_296(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_297(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_298(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_299(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_300(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_301(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_302(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_303(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_304(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_305(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_306(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_307(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_308(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_309(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_310(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_311(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_312(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_313(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_314(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_315(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_316(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_317(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_318(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_319(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_320(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_321(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_322(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_323(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_324(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_325(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_326(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_327(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_328(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_329(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_330(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_331(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_332(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_333(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_334(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_335(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_336(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_337(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_338(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_339(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_340(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_341(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_342(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_343(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_344(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_345(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_346(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_347(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_348(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_349(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_350(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_351(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_352(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_353(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_354(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_355(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_356(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_357(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_358(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_359(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_360(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_361(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_362(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_363(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_364(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_365(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_366(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_367(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_368(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_369(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_370(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_371(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_372(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_373(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_374(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_375(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_376(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_377(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_378(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_379(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_380(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_381(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_382_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_382_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_382<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 15usize; match labels.next() { Some(label) => match label { [104, 101, 114, 111, 121] => lookup_834_382_0(acc), [115, 97, 110, 100, 101] => lookup_834_382_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_383(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_384(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_385(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_386(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_387(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_388(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_389_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_389<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_389_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_390(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_391(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_392(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_393(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_834_394(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_395(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_396(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_397(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_398_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_398_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_398<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 16usize; match labels.next() { Some(label) => match label { [104, 101, 114, 195, 184, 121] => lookup_834_398_0(acc), [115, 97, 110, 100, 101] => lookup_834_398_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_399(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_400(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_401(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_402(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_403(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_404(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_405(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_406(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_407(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_408(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_409(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_410(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_411(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_412(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_413(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_414(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_415(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_416(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_417_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_417<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_417_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_418(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_419(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_420(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_421(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_422(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423_2(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423_5(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_423<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [98, 111] => lookup_834_423_0(acc), [98, 195, 184] => lookup_834_423_1(acc), [104, 101, 114, 111, 121] => lookup_834_423_2(acc), [104, 101, 114, 195, 184, 121] => lookup_834_423_3(acc), [120, 110, 45, 45, 98, 45, 53, 103, 97] => lookup_834_423_4(acc), [120, 110, 45, 45, 104, 101, 114, 121, 45, 105, 114, 97] => lookup_834_423_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_424(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_425(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_426(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_427(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_428(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_429_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_429<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_429_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_430(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_431(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_432(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_433(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_434(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_435_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_435<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_435_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_436(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_437_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_437<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_437_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_438(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_439(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_440(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_441(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_442(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_443(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_444(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_445(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_446(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_447(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_448_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_448<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_448_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_449(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_450(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_451(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_452_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_452<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [118, 97, 108, 101, 114] => lookup_834_452_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_453(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_454(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_455(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_456(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_457(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_458(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_459(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_460(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_461(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_462(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_463(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_464(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_465(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_466(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_467(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_468(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_469(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_470(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_471(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_472(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_473(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_474(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_475(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_476(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_477(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_478(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_479(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_480(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_481(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_482(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_483(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_484(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_485(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_486(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_487_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_487<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_487_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_488(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_489(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_490(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_491(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_492(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_493(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_494(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_495(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_496(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_497(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_498(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_499(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_500(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_501(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_502(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_503(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_504(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_505(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_506(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_507(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_508(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_509(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_510(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_511(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_512(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_513(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_514(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_515(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_516(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_517(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_518(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_519(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_520(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_521(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_522(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_523(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_524(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_525(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_526(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_527_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_527<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_527_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_528(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_529(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_530(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_531(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_532(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_533(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_534(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_535(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_536(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_537(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_538(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_539(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_540(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_541(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_542(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_543(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_544(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_545(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_546(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_547(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_548(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_549(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_550(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_551(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_552(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_553(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_554(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_555(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_556(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_557(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_558(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_559(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_560(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_561(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_562(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_563(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_564(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_565(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_566(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_567(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_568(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_569(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_570(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_571(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_572(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_573(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_574(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_575(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_576_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_576<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_576_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_577(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_578(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_579(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_580(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_581(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_582(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_583(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_584(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_585(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_586(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_587(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_588(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_589(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_590(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_591(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_592(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_593(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_594(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_595(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_596(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_597(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_598(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_599(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_600(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_601_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_601<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_601_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_602(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_603(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_604(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_605(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_606(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_607(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_608(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_609(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_610(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_611(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_612(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_613(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_614(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_615(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_616(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_617(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_618(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_619_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_619_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_619_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_619<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [98, 111] => lookup_834_619_0(acc), [98, 195, 184] => lookup_834_619_1(acc), [120, 110, 45, 45, 98, 45, 53, 103, 97] => lookup_834_619_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_620(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_621(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_622(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_623(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_624(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_625(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_626_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_626<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_626_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_627(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_628(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_629(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_630(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_631_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_631<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_631_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_632(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_633(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_634(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_635(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_636(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_637(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_638(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_639(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_640(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_641(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_642(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_643(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_644(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_645(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_646(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_647(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_648(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_649(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_650(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_651(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_652(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_653(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_654(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_655(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_656(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_657(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_658(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_659_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_659<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_659_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_660(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_661(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_662(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_663(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_664(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_665(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_666(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_667(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_668(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_669(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_670(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_671(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_672(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_673(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_674(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_675(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_676(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_677(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_678(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_679(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_680(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_681(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_682_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_682<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [115, 97, 110, 100, 101] => lookup_834_682_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_683(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_684(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_685(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_686(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_687(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_688(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_689_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_689<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 115] => lookup_834_689_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_690(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_691(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_692(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_693(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_694(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_695(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_696(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_697(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_698(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_699(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_700(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_701(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_702(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_703(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_704(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_705(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_706(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_707(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_708(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_709(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_710(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_711(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_712(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_713(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_714(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_715(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_716(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_717(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_718(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_719(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_720(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_721(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_722(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_723(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_724(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_725(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_726(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_727(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_728(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_729(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_730(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_731(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_732(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_733(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_734(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_735(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_736(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_737(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_738(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_739(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_740(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_741(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_742(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_743(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_744(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_745(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_746(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_747(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_748(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_749(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_750(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_751(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_752(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_753(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_754(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_755(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_756(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_757(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_758(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_759(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_760(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_761(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_762(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_763(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_764(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_765(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_766(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_767(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_768(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_769(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_770(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_771(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_772(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_773(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_774(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_775(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_776(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_777(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_778(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_779(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_780(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_781(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_782(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_783(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_784(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_785(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_786(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_787(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_788(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_789(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_790(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_791_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_791_1(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_791<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 22usize; match labels.next() { Some(label) => match label { [115, 97, 110, 100, 101] => lookup_834_791_0(acc), [120, 110, 45, 45, 104, 101, 114, 121, 45, 105, 114, 97] => lookup_834_791_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_792(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_793(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_794(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_795(acc: usize) -> Info { Info { len: acc + 1 + 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_796(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_797(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_798(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_799(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_800(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_801(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_802(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_803(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_804(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_805(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_806(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_807(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_808(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_809(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_810(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_811(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_812(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_813(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_814(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_815(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_816(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_817(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_818(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_819(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_820(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_821(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_822(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_823(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_824(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_825(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_826(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_827(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_828(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_829(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_830(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_831(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_832(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_833(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_834(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_835(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_836(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_837(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_838(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_839(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_840(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_841(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_842(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_843(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_844(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_845(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_846_0(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_846<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 14usize; match labels.next() { Some(label) => match label { [120, 110, 45, 45, 118, 108, 101, 114, 45, 113, 111, 97] => lookup_834_846_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_847(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_848(acc: usize) -> Info { Info { len: acc + 1 + 22usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_849(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_850(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_851(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_852(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_853(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_854(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_855(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_856(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_857(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_858(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_859(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_860(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_861(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_862(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_863(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_864(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_865(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_866(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_867(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_868(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_869(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_870(acc: usize) -> Info { Info { len: acc + 1 + 20usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_871(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_872(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_873(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_874(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_875(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_876(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_877(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_878(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_879(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_880(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_881(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_882(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_883(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_884(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_885(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_886(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_887(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_888(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_889_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_889<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [118, 195, 165, 108, 101, 114] => lookup_834_889_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_834_890(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_891(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_892(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_893(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_894(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834_895(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_834<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 104, 106, 101, 109, 109, 101, 115, 105, 100, 101] => lookup_834_0(acc), [97, 97] => lookup_834_1(labels, acc), [97, 97, 114, 98, 111, 114, 116, 101] => lookup_834_2(acc), [97, 101, 106, 114, 105, 101] => lookup_834_3(acc), [97, 102, 106, 111, 114, 100] => lookup_834_4(acc), [97, 103, 100, 101, 110, 101, 115] => lookup_834_5(acc), [97, 104] => lookup_834_6(labels, acc), [97, 107, 101, 114, 115, 104, 117, 115] => lookup_834_7(info, labels, acc), [97, 107, 110, 111, 108, 117, 111, 107, 116, 97] => lookup_834_8(acc), [97, 107, 114, 101, 104, 97, 109, 110] => lookup_834_9(acc), [97, 108] => lookup_834_10(acc), [97, 108, 97, 104, 101, 97, 100, 106, 117] => lookup_834_11(acc), [97, 108, 101, 115, 117, 110, 100] => lookup_834_12(acc), [97, 108, 103, 97, 114, 100] => lookup_834_13(acc), [97, 108, 115, 116, 97, 104, 97, 117, 103] => lookup_834_14(acc), [97, 108, 116, 97] => lookup_834_15(acc), [97, 108, 118, 100, 97, 108] => lookup_834_16(acc), [97, 109, 108, 105] => lookup_834_17(acc), [97, 109, 111, 116] => lookup_834_18(acc), [97, 110, 100, 97, 115, 117, 111, 108, 111] => lookup_834_19(acc), [97, 110, 100, 101, 98, 117] => lookup_834_20(acc), [97, 110, 100, 111, 121] => lookup_834_21(acc), [97, 110, 100, 195, 184, 121] => lookup_834_22(acc), [97, 114, 100, 97, 108] => lookup_834_23(acc), [97, 114, 101, 109, 97, 114, 107] => lookup_834_24(acc), [97, 114, 101, 110, 100, 97, 108] => lookup_834_25(acc), [97, 114, 110, 97] => lookup_834_26(acc), [97, 115, 101, 114, 97, 108] => lookup_834_27(acc), [97, 115, 107, 101, 114] => lookup_834_28(acc), [97, 115, 107, 105, 109] => lookup_834_29(acc), [97, 115, 107, 111, 121] => lookup_834_30(acc), [97, 115, 107, 118, 111, 108, 108] => lookup_834_31(acc), [97, 115, 107, 195, 184, 121] => lookup_834_32(acc), [97, 115, 110, 101, 115] => lookup_834_33(acc), [97, 117, 100, 110, 101, 100, 97, 108, 110] => lookup_834_34(acc), [97, 117, 107, 114, 97] => lookup_834_35(acc), [97, 117, 114, 101] => lookup_834_36(acc), [97, 117, 114, 108, 97, 110, 100] => lookup_834_37(acc), [97, 117, 114, 115, 107, 111, 103, 45, 104, 111, 108, 97, 110, 100] => { lookup_834_38(acc) } [97, 117, 114, 115, 107, 111, 103, 45, 104, 195, 184, 108, 97, 110, 100] => { lookup_834_39(acc) } [97, 117, 115, 116, 101, 118, 111, 108, 108] => lookup_834_40(acc), [97, 117, 115, 116, 114, 104, 101, 105, 109] => lookup_834_41(acc), [97, 118, 101, 114, 111, 121] => lookup_834_42(acc), [97, 118, 101, 114, 195, 184, 121] => lookup_834_43(acc), [98, 97, 100, 97, 100, 100, 106, 97] => lookup_834_44(acc), [98, 97, 104, 99, 97, 118, 117, 111, 116, 110, 97] => lookup_834_45(acc), [98, 97, 104, 99, 99, 97, 118, 117, 111, 116, 110, 97] => lookup_834_46(acc), [98, 97, 105, 100, 97, 114] => lookup_834_47(acc), [98, 97, 106, 100, 100, 97, 114] => lookup_834_48(acc), [98, 97, 108, 97, 116] => lookup_834_49(acc), [98, 97, 108, 101, 115, 116, 114, 97, 110, 100] => lookup_834_50(acc), [98, 97, 108, 108, 97, 110, 103, 101, 110] => lookup_834_51(acc), [98, 97, 108, 115, 102, 106, 111, 114, 100] => lookup_834_52(acc), [98, 97, 109, 98, 108, 101] => lookup_834_53(acc), [98, 97, 114, 100, 117] => lookup_834_54(acc), [98, 97, 114, 117, 109] => lookup_834_55(acc), [98, 97, 116, 115, 102, 106, 111, 114, 100] => lookup_834_56(acc), [98, 101, 97, 114, 97, 108, 118, 97, 104, 107, 105] => lookup_834_57(acc), [98, 101, 97, 114, 97, 108, 118, 195, 161, 104, 107, 105] => lookup_834_58(acc), [98, 101, 97, 114, 100, 117] => lookup_834_59(acc), [98, 101, 105, 97, 114, 110] => lookup_834_60(acc), [98, 101, 114, 103] => lookup_834_61(acc), [98, 101, 114, 103, 101, 110] => lookup_834_62(acc), [98, 101, 114, 108, 101, 118, 97, 103] => lookup_834_63(acc), [98, 101, 114, 108, 101, 118, 195, 165, 103] => lookup_834_64(acc), [98, 105, 101, 118, 97, 116] => lookup_834_65(acc), [98, 105, 101, 118, 195, 161, 116] => lookup_834_66(acc), [98, 105, 110, 100, 97, 108] => lookup_834_67(acc), [98, 105, 114, 107, 101, 110, 101, 115] => lookup_834_68(acc), [98, 106, 97, 114, 107, 111, 121] => lookup_834_69(acc), [98, 106, 97, 114, 107, 195, 184, 121] => lookup_834_70(acc), [98, 106, 101, 114, 107, 114, 101, 105, 109] => lookup_834_71(acc), [98, 106, 117, 103, 110] => lookup_834_72(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_834_73(acc), [98, 111, 100, 111] => lookup_834_74(acc), [98, 111, 100, 195, 184] => lookup_834_75(acc), [98, 111, 107, 110] => lookup_834_76(acc), [98, 111, 109, 108, 111] => lookup_834_77(acc), [98, 114, 101, 109, 97, 110, 103, 101, 114] => lookup_834_78(acc), [98, 114, 111, 110, 110, 111, 121] => lookup_834_79(acc), [98, 114, 111, 110, 110, 111, 121, 115, 117, 110, 100] => lookup_834_80(acc), [98, 114, 117, 109, 117, 110, 100, 100, 97, 108] => lookup_834_81(acc), [98, 114, 121, 110, 101] => lookup_834_82(acc), [98, 114, 195, 184, 110, 110, 195, 184, 121] => lookup_834_83(acc), [98, 114, 195, 184, 110, 110, 195, 184, 121, 115, 117, 110, 100] => lookup_834_84(acc), [98, 117] => lookup_834_85(labels, acc), [98, 117, 100, 101, 106, 106, 117] => lookup_834_86(acc), [98, 117, 115, 107, 101, 114, 117, 100] => lookup_834_87(info, labels, acc), [98, 121, 103, 108, 97, 110, 100] => lookup_834_88(acc), [98, 121, 107, 108, 101] => lookup_834_89(acc), [98, 195, 161, 104, 99, 97, 118, 117, 111, 116, 110, 97] => lookup_834_90(acc), [98, 195, 161, 104, 99, 99, 97, 118, 117, 111, 116, 110, 97] => lookup_834_91(acc), [98, 195, 161, 105, 100, 195, 161, 114] => lookup_834_92(acc), [98, 195, 161, 106, 100, 100, 97, 114] => lookup_834_93(acc), [98, 195, 161, 108, 195, 161, 116] => lookup_834_94(acc), [98, 195, 165, 100, 195, 165, 100, 100, 106, 195, 165] => lookup_834_95(acc), [98, 195, 165, 116, 115, 102, 106, 111, 114, 100] => lookup_834_96(acc), [98, 195, 166, 114, 117, 109] => lookup_834_97(acc), [98, 195, 184, 109, 108, 111] => lookup_834_98(acc), [99, 97, 104, 99, 101, 115, 117, 111, 108, 111] => lookup_834_99(acc), [99, 111] => lookup_834_100(acc), [100, 97, 118, 118, 101, 110, 106, 97, 114, 103, 97] => lookup_834_101(acc), [100, 97, 118, 118, 101, 110, 106, 195, 161, 114, 103, 97] => lookup_834_102(acc), [100, 97, 118, 118, 101, 115, 105, 105, 100, 97] => lookup_834_103(acc), [100, 101, 97, 116, 110, 117] => lookup_834_104(acc), [100, 101, 112] => lookup_834_105(acc), [100, 105, 101, 108, 100, 100, 97, 110, 117, 111, 114, 114, 105] => lookup_834_106(acc), [100, 105, 118, 116, 97, 115, 118, 117, 111, 100, 110, 97] => lookup_834_107(acc), [100, 105, 118, 116, 116, 97, 115, 118, 117, 111, 116, 110, 97] => lookup_834_108(acc), [100, 111, 110, 110, 97] => lookup_834_109(acc), [100, 111, 118, 114, 101] => lookup_834_110(acc), [100, 114, 97, 109, 109, 101, 110] => lookup_834_111(acc), [100, 114, 97, 110, 103, 101, 100, 97, 108] => lookup_834_112(acc), [100, 114, 111, 98, 97, 107] => lookup_834_113(acc), [100, 114, 195, 184, 98, 97, 107] => lookup_834_114(acc), [100, 121, 114, 111, 121] => lookup_834_115(acc), [100, 121, 114, 195, 184, 121] => lookup_834_116(acc), [100, 195, 184, 110, 110, 97] => lookup_834_117(acc), [101, 103, 101, 114, 115, 117, 110, 100] => lookup_834_118(acc), [101, 105, 100] => lookup_834_119(acc), [101, 105, 100, 102, 106, 111, 114, 100] => lookup_834_120(acc), [101, 105, 100, 115, 98, 101, 114, 103] => lookup_834_121(acc), [101, 105, 100, 115, 107, 111, 103] => lookup_834_122(acc), [101, 105, 100, 115, 118, 111, 108, 108] => lookup_834_123(acc), [101, 105, 103, 101, 114, 115, 117, 110, 100] => lookup_834_124(acc), [101, 108, 118, 101, 114, 117, 109] => lookup_834_125(acc), [101, 110, 101, 98, 97, 107, 107] => lookup_834_126(acc), [101, 110, 103, 101, 114, 100, 97, 108] => lookup_834_127(acc), [101, 116, 110, 101] => lookup_834_128(acc), [101, 116, 110, 101, 100, 97, 108] => lookup_834_129(acc), [101, 118, 101, 110, 97, 115, 115, 105] => lookup_834_130(acc), [101, 118, 101, 110, 101, 115] => lookup_834_131(acc), [101, 118, 101, 110, 195, 161, 197, 161, 197, 161, 105] => lookup_834_132(acc), [101, 118, 106, 101, 45, 111, 103, 45, 104, 111, 114, 110, 110, 101, 115] => { lookup_834_133(acc) } [102, 97, 114, 115, 117, 110, 100] => lookup_834_134(acc), [102, 97, 117, 115, 107, 101] => lookup_834_135(acc), [102, 101, 100, 106, 101] => lookup_834_136(acc), [102, 101, 116] => lookup_834_137(acc), [102, 101, 116, 115, 117, 110, 100] => lookup_834_138(acc), [102, 104, 115] => lookup_834_139(acc), [102, 105, 110, 110, 111, 121] => lookup_834_140(acc), [102, 105, 110, 110, 195, 184, 121] => lookup_834_141(acc), [102, 105, 116, 106, 97, 114] => lookup_834_142(acc), [102, 106, 97, 108, 101, 114] => lookup_834_143(acc), [102, 106, 101, 108, 108] => lookup_834_144(acc), [102, 108, 97] => lookup_834_145(acc), [102, 108, 97, 107, 115, 116, 97, 100] => lookup_834_146(acc), [102, 108, 97, 116, 97, 110, 103, 101, 114] => lookup_834_147(acc), [102, 108, 101, 107, 107, 101, 102, 106, 111, 114, 100] => lookup_834_148(acc), [102, 108, 101, 115, 98, 101, 114, 103] => lookup_834_149(acc), [102, 108, 111, 114, 97] => lookup_834_150(acc), [102, 108, 111, 114, 111] => lookup_834_151(acc), [102, 108, 111, 114, 195, 184] => lookup_834_152(acc), [102, 108, 195, 165] => lookup_834_153(acc), [102, 109] => lookup_834_154(labels, acc), [102, 111, 108, 107, 101, 98, 105, 98, 108] => lookup_834_155(acc), [102, 111, 108, 108, 100, 97, 108] => lookup_834_156(acc), [102, 111, 114, 100, 101] => lookup_834_157(acc), [102, 111, 114, 115, 97, 110, 100] => lookup_834_158(acc), [102, 111, 115, 110, 101, 115] => lookup_834_159(acc), [102, 114, 97, 110, 97] => lookup_834_160(acc), [102, 114, 101, 100, 114, 105, 107, 115, 116, 97, 100] => lookup_834_161(acc), [102, 114, 101, 105] => lookup_834_162(acc), [102, 114, 111, 103, 110] => lookup_834_163(acc), [102, 114, 111, 108, 97, 110, 100] => lookup_834_164(acc), [102, 114, 111, 115, 116, 97] => lookup_834_165(acc), [102, 114, 111, 121, 97] => lookup_834_166(acc), [102, 114, 195, 166, 110, 97] => lookup_834_167(acc), [102, 114, 195, 184, 121, 97] => lookup_834_168(acc), [102, 117, 111, 105, 115, 107, 117] => lookup_834_169(acc), [102, 117, 111, 115, 115, 107, 111] => lookup_834_170(acc), [102, 117, 115, 97] => lookup_834_171(acc), [102, 121, 108, 107, 101, 115, 98, 105, 98, 108] => lookup_834_172(acc), [102, 121, 114, 101, 115, 100, 97, 108] => lookup_834_173(acc), [102, 195, 184, 114, 100, 101] => lookup_834_174(acc), [103, 97, 105, 118, 117, 111, 116, 110, 97] => lookup_834_175(acc), [103, 97, 108, 115, 97] => lookup_834_176(acc), [103, 97, 109, 118, 105, 107] => lookup_834_177(acc), [103, 97, 110, 103, 97, 118, 105, 105, 107, 97] => lookup_834_178(acc), [103, 97, 117, 108, 97, 114] => lookup_834_179(acc), [103, 97, 117, 115, 100, 97, 108] => lookup_834_180(acc), [103, 105, 101, 104, 116, 97, 118, 117, 111, 97, 116, 110, 97] => lookup_834_181(acc), [103, 105, 108, 100, 101, 115, 107, 97, 108] => lookup_834_182(acc), [103, 105, 108, 100, 101, 115, 107, 195, 165, 108] => lookup_834_183(acc), [103, 105, 115, 107, 101] => lookup_834_184(acc), [103, 106, 101, 109, 110, 101, 115] => lookup_834_185(acc), [103, 106, 101, 114, 100, 114, 117, 109] => lookup_834_186(acc), [103, 106, 101, 114, 115, 116, 97, 100] => lookup_834_187(acc), [103, 106, 101, 115, 100, 97, 108] => lookup_834_188(acc), [103, 106, 111, 118, 105, 107] => lookup_834_189(acc), [103, 106, 195, 184, 118, 105, 107] => lookup_834_190(acc), [103, 108, 111, 112, 112, 101, 110] => lookup_834_191(acc), [103, 111, 108] => lookup_834_192(acc), [103, 114, 97, 110] => lookup_834_193(acc), [103, 114, 97, 110, 101] => lookup_834_194(acc), [103, 114, 97, 110, 118, 105, 110] => lookup_834_195(acc), [103, 114, 97, 116, 97, 110, 103, 101, 110] => lookup_834_196(acc), [103, 114, 105, 109, 115, 116, 97, 100] => lookup_834_197(acc), [103, 114, 111, 110, 103] => lookup_834_198(acc), [103, 114, 117, 101] => lookup_834_199(acc), [103, 117, 108, 101, 110] => lookup_834_200(acc), [103, 117, 111, 118, 100, 97, 103, 101, 97, 105, 100, 110, 117] => lookup_834_201(acc), [103, 195, 161, 105, 118, 117, 111, 116, 110, 97] => lookup_834_202(acc), [103, 195, 161, 108, 115, 195, 161] => lookup_834_203(acc), [103, 195, 161, 197, 139, 103, 97, 118, 105, 105, 107, 97] => lookup_834_204(acc), [104, 97] => lookup_834_205(acc), [104, 97, 98, 109, 101, 114] => lookup_834_206(acc), [104, 97, 100, 115, 101, 108] => lookup_834_207(acc), [104, 97, 103, 101, 98, 111, 115, 116, 97, 100] => lookup_834_208(acc), [104, 97, 108, 100, 101, 110] => lookup_834_209(acc), [104, 97, 108, 115, 97] => lookup_834_210(acc), [104, 97, 109, 97, 114] => lookup_834_211(acc), [104, 97, 109, 97, 114, 111, 121] => lookup_834_212(acc), [104, 97, 109, 109, 97, 114, 102, 101, 97, 115, 116, 97] => lookup_834_213(acc), [104, 97, 109, 109, 101, 114, 102, 101, 115, 116] => lookup_834_214(acc), [104, 97, 112, 109, 105, 114] => lookup_834_215(acc), [104, 97, 114, 97, 109] => lookup_834_216(acc), [104, 97, 114, 101, 105, 100] => lookup_834_217(acc), [104, 97, 114, 115, 116, 97, 100] => lookup_834_218(acc), [104, 97, 115, 118, 105, 107] => lookup_834_219(acc), [104, 97, 116, 116, 102, 106, 101, 108, 108, 100, 97, 108] => lookup_834_220(acc), [104, 97, 117, 103, 101, 115, 117, 110, 100] => lookup_834_221(acc), [104, 101, 100, 109, 97, 114, 107] => lookup_834_222(info, labels, acc), [104, 101, 109, 110, 101] => lookup_834_223(acc), [104, 101, 109, 110, 101, 115] => lookup_834_224(acc), [104, 101, 109, 115, 101, 100, 97, 108] => lookup_834_225(acc), [104, 101, 114, 97, 100] => lookup_834_226(acc), [104, 105, 116, 114, 97] => lookup_834_227(acc), [104, 106, 97, 114, 116, 100, 97, 108] => lookup_834_228(acc), [104, 106, 101, 108, 109, 101, 108, 97, 110, 100] => lookup_834_229(acc), [104, 108] => lookup_834_230(labels, acc), [104, 109] => lookup_834_231(labels, acc), [104, 111, 98, 111, 108] => lookup_834_232(acc), [104, 111, 98, 195, 184, 108] => lookup_834_233(acc), [104, 111, 102] => lookup_834_234(acc), [104, 111, 107, 107, 115, 117, 110, 100] => lookup_834_235(acc), [104, 111, 108] => lookup_834_236(acc), [104, 111, 108, 101] => lookup_834_237(acc), [104, 111, 108, 109, 101, 115, 116, 114, 97, 110, 100] => lookup_834_238(acc), [104, 111, 108, 116, 97, 108, 101, 110] => lookup_834_239(acc), [104, 111, 108, 116, 195, 165, 108, 101, 110] => lookup_834_240(acc), [104, 111, 110, 101, 102, 111, 115, 115] => lookup_834_241(acc), [104, 111, 114, 100, 97, 108, 97, 110, 100] => lookup_834_242(info, labels, acc), [104, 111, 114, 110, 105, 110, 100, 97, 108] => lookup_834_243(acc), [104, 111, 114, 116, 101, 110] => lookup_834_244(acc), [104, 111, 121, 97, 110, 103, 101, 114] => lookup_834_245(acc), [104, 111, 121, 108, 97, 110, 100, 101, 116] => lookup_834_246(acc), [104, 117, 114, 100, 97, 108] => lookup_834_247(acc), [104, 117, 114, 117, 109] => lookup_834_248(acc), [104, 118, 97, 108, 101, 114] => lookup_834_249(acc), [104, 121, 108, 108, 101, 115, 116, 97, 100] => lookup_834_250(acc), [104, 195, 161, 98, 109, 101, 114] => lookup_834_251(acc), [104, 195, 161, 109, 109, 195, 161, 114, 102, 101, 97, 115, 116, 97] => { lookup_834_252(acc) } [104, 195, 161, 112, 109, 105, 114] => lookup_834_253(acc), [104, 195, 165] => lookup_834_254(acc), [104, 195, 166, 103, 101, 98, 111, 115, 116, 97, 100] => lookup_834_255(acc), [104, 195, 184, 110, 101, 102, 111, 115, 115] => lookup_834_256(acc), [104, 195, 184, 121, 97, 110, 103, 101, 114] => lookup_834_257(acc), [104, 195, 184, 121, 108, 97, 110, 100, 101, 116] => lookup_834_258(acc), [105, 98, 101, 115, 116, 97, 100] => lookup_834_259(acc), [105, 100, 114, 101, 116, 116] => lookup_834_260(acc), [105, 110, 100, 101, 114, 111, 121] => lookup_834_261(acc), [105, 110, 100, 101, 114, 195, 184, 121] => lookup_834_262(acc), [105, 118, 101, 108, 97, 110, 100] => lookup_834_263(acc), [105, 118, 103, 117] => lookup_834_264(acc), [106, 97, 110, 45, 109, 97, 121, 101, 110] => lookup_834_265(labels, acc), [106, 101, 115, 115, 104, 101, 105, 109] => lookup_834_266(acc), [106, 101, 118, 110, 97, 107, 101, 114] => lookup_834_267(acc), [106, 111, 108, 115, 116, 101, 114] => lookup_834_268(acc), [106, 111, 110, 100, 97, 108] => lookup_834_269(acc), [106, 111, 114, 112, 101, 108, 97, 110, 100] => lookup_834_270(acc), [106, 195, 184, 108, 115, 116, 101, 114] => lookup_834_271(acc), [106, 195, 184, 114, 112, 101, 108, 97, 110, 100] => lookup_834_272(acc), [107, 97, 102, 106, 111, 114, 100] => lookup_834_273(acc), [107, 97, 114, 97, 115, 106, 111, 104, 107, 97] => lookup_834_274(acc), [107, 97, 114, 97, 115, 106, 111, 107] => lookup_834_275(acc), [107, 97, 114, 108, 115, 111, 121] => lookup_834_276(acc), [107, 97, 114, 109, 111, 121] => lookup_834_277(acc), [107, 97, 114, 109, 195, 184, 121] => lookup_834_278(acc), [107, 97, 117, 116, 111, 107, 101, 105, 110, 111] => lookup_834_279(acc), [107, 105, 114, 107, 101, 110, 101, 115] => lookup_834_280(acc), [107, 108, 97, 98, 117] => lookup_834_281(acc), [107, 108, 101, 112, 112] => lookup_834_282(acc), [107, 108, 195, 166, 98, 117] => lookup_834_283(acc), [107, 111, 109, 109, 117, 110, 101] => lookup_834_284(acc), [107, 111, 110, 103, 115, 98, 101, 114, 103] => lookup_834_285(acc), [107, 111, 110, 103, 115, 118, 105, 110, 103, 101, 114] => lookup_834_286(acc), [107, 111, 112, 101, 114, 118, 105, 107] => lookup_834_287(acc), [107, 114, 97, 97, 110, 103, 104, 107, 101] => lookup_834_288(acc), [107, 114, 97, 103, 101, 114, 111] => lookup_834_289(acc), [107, 114, 97, 103, 101, 114, 195, 184] => lookup_834_290(acc), [107, 114, 105, 115, 116, 105, 97, 110, 115, 97, 110, 100] => lookup_834_291(acc), [107, 114, 105, 115, 116, 105, 97, 110, 115, 117, 110, 100] => lookup_834_292(acc), [107, 114, 111, 100, 115, 104, 101, 114, 97, 100] => lookup_834_293(acc), [107, 114, 111, 107, 115, 116, 97, 100, 101, 108, 118, 97] => lookup_834_294(acc), [107, 114, 195, 165, 97, 110, 103, 104, 107, 101] => lookup_834_295(acc), [107, 114, 195, 184, 100, 115, 104, 101, 114, 97, 100] => lookup_834_296(acc), [107, 118, 97, 102, 106, 111, 114, 100] => lookup_834_297(acc), [107, 118, 97, 108, 115, 117, 110, 100] => lookup_834_298(acc), [107, 118, 97, 109] => lookup_834_299(acc), [107, 118, 97, 110, 97, 110, 103, 101, 110] => lookup_834_300(acc), [107, 118, 105, 110, 101, 115, 100, 97, 108] => lookup_834_301(acc), [107, 118, 105, 110, 110, 104, 101, 114, 97, 100] => lookup_834_302(acc), [107, 118, 105, 116, 101, 115, 101, 105, 100] => lookup_834_303(acc), [107, 118, 105, 116, 115, 111, 121] => lookup_834_304(acc), [107, 118, 105, 116, 115, 195, 184, 121] => lookup_834_305(acc), [107, 118, 195, 166, 102, 106, 111, 114, 100] => lookup_834_306(acc), [107, 118, 195, 166, 110, 97, 110, 103, 101, 110] => lookup_834_307(acc), [107, 195, 161, 114, 195, 161, 197, 161, 106, 111, 104, 107, 97] => lookup_834_308(acc), [107, 195, 165, 102, 106, 111, 114, 100] => lookup_834_309(acc), [108, 97, 97, 107, 101, 115, 118, 117, 101, 109, 105, 101] => lookup_834_310(acc), [108, 97, 104, 112, 112, 105] => lookup_834_311(acc), [108, 97, 110, 103, 101, 118, 97, 103] => lookup_834_312(acc), [108, 97, 110, 103, 101, 118, 195, 165, 103] => lookup_834_313(acc), [108, 97, 114, 100, 97, 108] => lookup_834_314(acc), [108, 97, 114, 118, 105, 107] => lookup_834_315(acc), [108, 97, 118, 97, 103, 105, 115] => lookup_834_316(acc), [108, 97, 118, 97, 110, 103, 101, 110] => lookup_834_317(acc), [108, 101, 97, 110, 103, 97, 118, 105, 105, 107, 97] => lookup_834_318(acc), [108, 101, 97, 197, 139, 103, 97, 118, 105, 105, 107, 97] => lookup_834_319(acc), [108, 101, 98, 101, 115, 98, 121] => lookup_834_320(acc), [108, 101, 105, 107, 97, 110, 103, 101, 114] => lookup_834_321(acc), [108, 101, 105, 114, 102, 106, 111, 114, 100] => lookup_834_322(acc), [108, 101, 105, 114, 118, 105, 107] => lookup_834_323(acc), [108, 101, 107, 97] => lookup_834_324(acc), [108, 101, 107, 115, 118, 105, 107] => lookup_834_325(acc), [108, 101, 110, 118, 105, 107] => lookup_834_326(acc), [108, 101, 114, 100, 97, 108] => lookup_834_327(acc), [108, 101, 115, 106, 97] => lookup_834_328(acc), [108, 101, 118, 97, 110, 103, 101, 114] => lookup_834_329(acc), [108, 105, 101, 114] => lookup_834_330(acc), [108, 105, 101, 114, 110, 101] => lookup_834_331(acc), [108, 105, 108, 108, 101, 104, 97, 109, 109, 101, 114] => lookup_834_332(acc), [108, 105, 108, 108, 101, 115, 97, 110, 100] => lookup_834_333(acc), [108, 105, 110, 100, 97, 115] => lookup_834_334(acc), [108, 105, 110, 100, 101, 115, 110, 101, 115] => lookup_834_335(acc), [108, 105, 110, 100, 195, 165, 115] => lookup_834_336(acc), [108, 111, 97, 98, 97, 116] => lookup_834_337(acc), [108, 111, 97, 98, 195, 161, 116] => lookup_834_338(acc), [108, 111, 100, 105, 110, 103, 101, 110] => lookup_834_339(acc), [108, 111, 109] => lookup_834_340(acc), [108, 111, 112, 112, 97] => lookup_834_341(acc), [108, 111, 114, 101, 110, 115, 107, 111, 103] => lookup_834_342(acc), [108, 111, 116, 101, 110] => lookup_834_343(acc), [108, 117, 110, 100] => lookup_834_344(acc), [108, 117, 110, 110, 101, 114] => lookup_834_345(acc), [108, 117, 114, 111, 121] => lookup_834_346(acc), [108, 117, 114, 195, 184, 121] => lookup_834_347(acc), [108, 117, 115, 116, 101, 114] => lookup_834_348(acc), [108, 121, 110, 103, 100, 97, 108] => lookup_834_349(acc), [108, 121, 110, 103, 101, 110] => lookup_834_350(acc), [108, 195, 161, 104, 112, 112, 105] => lookup_834_351(acc), [108, 195, 166, 114, 100, 97, 108] => lookup_834_352(acc), [108, 195, 184, 100, 105, 110, 103, 101, 110] => lookup_834_353(acc), [108, 195, 184, 114, 101, 110, 115, 107, 111, 103] => lookup_834_354(acc), [108, 195, 184, 116, 101, 110] => lookup_834_355(acc), [109, 97, 108, 97, 116, 118, 117, 111, 112, 109, 105] => lookup_834_356(acc), [109, 97, 108, 115, 101, 108, 118] => lookup_834_357(acc), [109, 97, 108, 118, 105, 107] => lookup_834_358(acc), [109, 97, 110, 100, 97, 108] => lookup_834_359(acc), [109, 97, 114, 107, 101, 114] => lookup_834_360(acc), [109, 97, 114, 110, 97, 114, 100, 97, 108] => lookup_834_361(acc), [109, 97, 115, 102, 106, 111, 114, 100, 101, 110] => lookup_834_362(acc), [109, 97, 115, 111, 121] => lookup_834_363(acc), [109, 97, 116, 116, 97, 45, 118, 97, 114, 106, 106, 97, 116] => lookup_834_364(acc), [109, 101, 108, 97, 110, 100] => lookup_834_365(acc), [109, 101, 108, 100, 97, 108] => lookup_834_366(acc), [109, 101, 108, 104, 117, 115] => lookup_834_367(acc), [109, 101, 108, 111, 121] => lookup_834_368(acc), [109, 101, 108, 195, 184, 121] => lookup_834_369(acc), [109, 101, 114, 97, 107, 101, 114] => lookup_834_370(acc), [109, 101, 114, 195, 165, 107, 101, 114] => lookup_834_371(acc), [109, 105, 100, 115, 117, 110, 100] => lookup_834_372(acc), [109, 105, 100, 116, 114, 101, 45, 103, 97, 117, 108, 100, 97, 108] => { lookup_834_373(acc) } [109, 105, 108] => lookup_834_374(acc), [109, 106, 111, 110, 100, 97, 108, 101, 110] => lookup_834_375(acc), [109, 106, 195, 184, 110, 100, 97, 108, 101, 110] => lookup_834_376(acc), [109, 111, 45, 105, 45, 114, 97, 110, 97] => lookup_834_377(acc), [109, 111, 97, 114, 101, 107, 101] => lookup_834_378(acc), [109, 111, 100, 97, 108, 101, 110] => lookup_834_379(acc), [109, 111, 100, 117, 109] => lookup_834_380(acc), [109, 111, 108, 100, 101] => lookup_834_381(acc), [109, 111, 114, 101, 45, 111, 103, 45, 114, 111, 109, 115, 100, 97, 108] => { lookup_834_382(info, labels, acc) } [109, 111, 115, 106, 111, 101, 110] => lookup_834_383(acc), [109, 111, 115, 106, 195, 184, 101, 110] => lookup_834_384(acc), [109, 111, 115, 107, 101, 110, 101, 115] => lookup_834_385(acc), [109, 111, 115, 115] => lookup_834_386(acc), [109, 111, 115, 118, 105, 107] => lookup_834_387(acc), [109, 111, 195, 165, 114, 101, 107, 101] => lookup_834_388(acc), [109, 114] => lookup_834_389(labels, acc), [109, 117, 111, 115, 97, 116] => lookup_834_390(acc), [109, 117, 111, 115, 195, 161, 116] => lookup_834_391(acc), [109, 117, 115, 101, 117, 109] => lookup_834_392(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_834_393(acc), [109, 195, 161, 108, 97, 116, 118, 117, 111, 112, 109, 105] => lookup_834_394(acc), [109, 195, 161, 116, 116, 97, 45, 118, 195, 161, 114, 106, 106, 97, 116] => { lookup_834_395(acc) } [109, 195, 165, 108, 115, 101, 108, 118] => lookup_834_396(acc), [109, 195, 165, 115, 195, 184, 121] => lookup_834_397(acc), [109, 195, 184, 114, 101, 45, 111, 103, 45, 114, 111, 109, 115, 100, 97, 108] => { lookup_834_398(info, labels, acc) } [110, 97, 97, 109, 101, 115, 106, 101, 118, 117, 101, 109, 105, 101] => { lookup_834_399(acc) } [110, 97, 109, 100, 97, 108, 115, 101, 105, 100] => lookup_834_400(acc), [110, 97, 109, 115, 111, 115] => lookup_834_401(acc), [110, 97, 109, 115, 115, 107, 111, 103, 97, 110] => lookup_834_402(acc), [110, 97, 110, 110, 101, 115, 116, 97, 100] => lookup_834_403(acc), [110, 97, 114, 111, 121] => lookup_834_404(acc), [110, 97, 114, 118, 105, 105, 107, 97] => lookup_834_405(acc), [110, 97, 114, 118, 105, 107] => lookup_834_406(acc), [110, 97, 117, 115, 116, 100, 97, 108] => lookup_834_407(acc), [110, 97, 118, 117, 111, 116, 110, 97] => lookup_834_408(acc), [110, 101, 100, 114, 101, 45, 101, 105, 107, 101, 114] => lookup_834_409(acc), [110, 101, 115, 110, 97] => lookup_834_410(acc), [110, 101, 115, 111, 100, 100, 101, 110] => lookup_834_411(acc), [110, 101, 115, 111, 100, 100, 116, 97, 110, 103, 101, 110] => lookup_834_412(acc), [110, 101, 115, 115, 101, 98, 121] => lookup_834_413(acc), [110, 101, 115, 115, 101, 116] => lookup_834_414(acc), [110, 105, 115, 115, 101, 100, 97, 108] => lookup_834_415(acc), [110, 105, 116, 116, 101, 100, 97, 108] => lookup_834_416(acc), [110, 108] => lookup_834_417(labels, acc), [110, 111, 114, 100, 45, 97, 117, 114, 100, 97, 108] => lookup_834_418(acc), [110, 111, 114, 100, 45, 102, 114, 111, 110] => lookup_834_419(acc), [110, 111, 114, 100, 45, 111, 100, 97, 108] => lookup_834_420(acc), [110, 111, 114, 100, 100, 97, 108] => lookup_834_421(acc), [110, 111, 114, 100, 107, 97, 112, 112] => lookup_834_422(acc), [110, 111, 114, 100, 108, 97, 110, 100] => lookup_834_423(info, labels, acc), [110, 111, 114, 100, 114, 101, 45, 108, 97, 110, 100] => lookup_834_424(acc), [110, 111, 114, 100, 114, 101, 105, 115, 97] => lookup_834_425(acc), [110, 111, 114, 101, 45, 111, 103, 45, 117, 118, 100, 97, 108] => lookup_834_426(acc), [110, 111, 116, 111, 100, 100, 101, 110] => lookup_834_427(acc), [110, 111, 116, 116, 101, 114, 111, 121] => lookup_834_428(acc), [110, 116] => lookup_834_429(labels, acc), [110, 195, 161, 118, 117, 111, 116, 110, 97] => lookup_834_430(acc), [110, 195, 165, 195, 165, 109, 101, 115, 106, 101, 118, 117, 101, 109, 105, 101] => { lookup_834_431(acc) } [110, 195, 166, 114, 195, 184, 121] => lookup_834_432(acc), [110, 195, 184, 116, 116, 101, 114, 195, 184, 121] => lookup_834_433(acc), [111, 100, 100, 97] => lookup_834_434(acc), [111, 102] => lookup_834_435(labels, acc), [111, 107, 115, 110, 101, 115] => lookup_834_436(acc), [111, 108] => lookup_834_437(labels, acc), [111, 109, 97, 115, 118, 117, 111, 116, 110, 97] => lookup_834_438(acc), [111, 112, 112, 100, 97, 108] => lookup_834_439(acc), [111, 112, 112, 101, 103, 97, 114, 100] => lookup_834_440(acc), [111, 112, 112, 101, 103, 195, 165, 114, 100] => lookup_834_441(acc), [111, 114, 107, 97, 110, 103, 101, 114] => lookup_834_442(acc), [111, 114, 107, 100, 97, 108] => lookup_834_443(acc), [111, 114, 108, 97, 110, 100] => lookup_834_444(acc), [111, 114, 115, 107, 111, 103] => lookup_834_445(acc), [111, 114, 115, 116, 97] => lookup_834_446(acc), [111, 115, 101, 110] => lookup_834_447(acc), [111, 115, 108, 111] => lookup_834_448(labels, acc), [111, 115, 111, 121, 114, 111] => lookup_834_449(acc), [111, 115, 116, 101, 114, 111, 121] => lookup_834_450(acc), [111, 115, 116, 101, 114, 195, 184, 121] => lookup_834_451(acc), [111, 115, 116, 102, 111, 108, 100] => lookup_834_452(info, labels, acc), [111, 115, 116, 114, 101, 45, 116, 111, 116, 101, 110] => lookup_834_453(acc), [111, 115, 195, 184, 121, 114, 111] => lookup_834_454(acc), [111, 118, 101, 114, 104, 97, 108, 108, 97] => lookup_834_455(acc), [111, 118, 114, 101, 45, 101, 105, 107, 101, 114] => lookup_834_456(acc), [111, 121, 101, 114] => lookup_834_457(acc), [111, 121, 103, 97, 114, 100, 101, 110] => lookup_834_458(acc), [111, 121, 115, 116, 114, 101, 45, 115, 108, 105, 100, 114, 101] => lookup_834_459(acc), [112, 111, 114, 115, 97, 110, 103, 101, 114] => lookup_834_460(acc), [112, 111, 114, 115, 97, 110, 103, 117] => lookup_834_461(acc), [112, 111, 114, 115, 103, 114, 117, 110, 110] => lookup_834_462(acc), [112, 111, 114, 115, 195, 161, 197, 139, 103, 117] => lookup_834_463(acc), [112, 114, 105, 118] => lookup_834_464(acc), [114, 97, 100, 101] => lookup_834_465(acc), [114, 97, 100, 111, 121] => lookup_834_466(acc), [114, 97, 100, 195, 184, 121] => lookup_834_467(acc), [114, 97, 104, 107, 107, 101, 114, 97, 118, 106, 117] => lookup_834_468(acc), [114, 97, 104, 111, 108, 116] => lookup_834_469(acc), [114, 97, 105, 115, 97] => lookup_834_470(acc), [114, 97, 107, 107, 101, 115, 116, 97, 100] => lookup_834_471(acc), [114, 97, 108, 105, 110, 103, 101, 110] => lookup_834_472(acc), [114, 97, 110, 97] => lookup_834_473(acc), [114, 97, 110, 100, 97, 98, 101, 114, 103] => lookup_834_474(acc), [114, 97, 117, 109, 97] => lookup_834_475(acc), [114, 101, 110, 100, 97, 108, 101, 110] => lookup_834_476(acc), [114, 101, 110, 110, 101, 98, 117] => lookup_834_477(acc), [114, 101, 110, 110, 101, 115, 111, 121] => lookup_834_478(acc), [114, 101, 110, 110, 101, 115, 195, 184, 121] => lookup_834_479(acc), [114, 105, 110, 100, 97, 108] => lookup_834_480(acc), [114, 105, 110, 103, 101, 98, 117] => lookup_834_481(acc), [114, 105, 110, 103, 101, 114, 105, 107, 101] => lookup_834_482(acc), [114, 105, 110, 103, 115, 97, 107, 101, 114] => lookup_834_483(acc), [114, 105, 115, 111, 114] => lookup_834_484(acc), [114, 105, 115, 115, 97] => lookup_834_485(acc), [114, 105, 115, 195, 184, 114] => lookup_834_486(acc), [114, 108] => lookup_834_487(labels, acc), [114, 111, 97, 110] => lookup_834_488(acc), [114, 111, 100, 111, 121] => lookup_834_489(acc), [114, 111, 108, 108, 97, 103] => lookup_834_490(acc), [114, 111, 109, 115, 97] => lookup_834_491(acc), [114, 111, 109, 115, 107, 111, 103] => lookup_834_492(acc), [114, 111, 114, 111, 115] => lookup_834_493(acc), [114, 111, 115, 116] => lookup_834_494(acc), [114, 111, 121, 107, 101, 110] => lookup_834_495(acc), [114, 111, 121, 114, 118, 105, 107] => lookup_834_496(acc), [114, 117, 111, 118, 97, 116] => lookup_834_497(acc), [114, 121, 103, 103, 101] => lookup_834_498(acc), [114, 195, 161, 104, 107, 107, 101, 114, 195, 161, 118, 106, 117] => { lookup_834_499(acc) } [114, 195, 161, 105, 115, 97] => lookup_834_500(acc), [114, 195, 165, 100, 101] => lookup_834_501(acc), [114, 195, 165, 104, 111, 108, 116] => lookup_834_502(acc), [114, 195, 166, 108, 105, 110, 103, 101, 110] => lookup_834_503(acc), [114, 195, 184, 100, 195, 184, 121] => lookup_834_504(acc), [114, 195, 184, 109, 115, 107, 111, 103] => lookup_834_505(acc), [114, 195, 184, 114, 111, 115] => lookup_834_506(acc), [114, 195, 184, 115, 116] => lookup_834_507(acc), [114, 195, 184, 121, 107, 101, 110] => lookup_834_508(acc), [114, 195, 184, 121, 114, 118, 105, 107] => lookup_834_509(acc), [115, 97, 108, 97, 110, 103, 101, 110] => lookup_834_510(acc), [115, 97, 108, 97, 116] => lookup_834_511(acc), [115, 97, 108, 116, 100, 97, 108] => lookup_834_512(acc), [115, 97, 109, 110, 97, 110, 103, 101, 114] => lookup_834_513(acc), [115, 97, 110, 100, 101, 102, 106, 111, 114, 100] => lookup_834_514(acc), [115, 97, 110, 100, 110, 101, 115] => lookup_834_515(acc), [115, 97, 110, 100, 110, 101, 115, 115, 106, 111, 101, 110] => lookup_834_516(acc), [115, 97, 110, 100, 110, 101, 115, 115, 106, 195, 184, 101, 110] => lookup_834_517(acc), [115, 97, 110, 100, 111, 121] => lookup_834_518(acc), [115, 97, 110, 100, 195, 184, 121] => lookup_834_519(acc), [115, 97, 114, 112, 115, 98, 111, 114, 103] => lookup_834_520(acc), [115, 97, 117, 100, 97] => lookup_834_521(acc), [115, 97, 117, 104, 101, 114, 97, 100] => lookup_834_522(acc), [115, 101, 108] => lookup_834_523(acc), [115, 101, 108, 98, 117] => lookup_834_524(acc), [115, 101, 108, 106, 101] => lookup_834_525(acc), [115, 101, 108, 106, 111, 114, 100] => lookup_834_526(acc), [115, 102] => lookup_834_527(labels, acc), [115, 105, 101, 108, 108, 97, 107] => lookup_834_528(acc), [115, 105, 103, 100, 97, 108] => lookup_834_529(acc), [115, 105, 108, 106, 97, 110] => lookup_834_530(acc), [115, 105, 114, 100, 97, 108] => lookup_834_531(acc), [115, 107, 97, 110, 105, 116] => lookup_834_532(acc), [115, 107, 97, 110, 108, 97, 110, 100] => lookup_834_533(acc), [115, 107, 97, 117, 110] => lookup_834_534(acc), [115, 107, 101, 100, 115, 109, 111] => lookup_834_535(acc), [115, 107, 101, 100, 115, 109, 111, 107, 111, 114, 115, 101, 116] => { lookup_834_536(acc) } [115, 107, 105] => lookup_834_537(acc), [115, 107, 105, 101, 110] => lookup_834_538(acc), [115, 107, 105, 101, 114, 118, 97] => lookup_834_539(acc), [115, 107, 105, 101, 114, 118, 195, 161] => lookup_834_540(acc), [115, 107, 105, 112, 116, 118, 101, 116] => lookup_834_541(acc), [115, 107, 106, 97, 107] => lookup_834_542(acc), [115, 107, 106, 101, 114, 118, 111, 121] => lookup_834_543(acc), [115, 107, 106, 101, 114, 118, 195, 184, 121] => lookup_834_544(acc), [115, 107, 106, 195, 165, 107] => lookup_834_545(acc), [115, 107, 111, 100, 106, 101] => lookup_834_546(acc), [115, 107, 195, 161, 110, 105, 116] => lookup_834_547(acc), [115, 107, 195, 165, 110, 108, 97, 110, 100] => lookup_834_548(acc), [115, 108, 97, 116, 116, 117, 109] => lookup_834_549(acc), [115, 109, 111, 108, 97] => lookup_834_550(acc), [115, 109, 195, 184, 108, 97] => lookup_834_551(acc), [115, 110, 97, 97, 115, 101] => lookup_834_552(acc), [115, 110, 97, 115, 97] => lookup_834_553(acc), [115, 110, 105, 108, 108, 102, 106, 111, 114, 100] => lookup_834_554(acc), [115, 110, 111, 97, 115, 97] => lookup_834_555(acc), [115, 110, 195, 165, 97, 115, 101] => lookup_834_556(acc), [115, 110, 195, 165, 115, 97] => lookup_834_557(acc), [115, 111, 103, 110, 100, 97, 108] => lookup_834_558(acc), [115, 111, 103, 110, 101] => lookup_834_559(acc), [115, 111, 107, 110, 100, 97, 108] => lookup_834_560(acc), [115, 111, 108, 97] => lookup_834_561(acc), [115, 111, 108, 117, 110, 100] => lookup_834_562(acc), [115, 111, 109, 110, 97] => lookup_834_563(acc), [115, 111, 110, 100, 114, 101, 45, 108, 97, 110, 100] => lookup_834_564(acc), [115, 111, 110, 103, 100, 97, 108, 101, 110] => lookup_834_565(acc), [115, 111, 114, 45, 97, 117, 114, 100, 97, 108] => lookup_834_566(acc), [115, 111, 114, 45, 102, 114, 111, 110] => lookup_834_567(acc), [115, 111, 114, 45, 111, 100, 97, 108] => lookup_834_568(acc), [115, 111, 114, 45, 118, 97, 114, 97, 110, 103, 101, 114] => lookup_834_569(acc), [115, 111, 114, 102, 111, 108, 100] => lookup_834_570(acc), [115, 111, 114, 114, 101, 105, 115, 97] => lookup_834_571(acc), [115, 111, 114, 116, 108, 97, 110, 100] => lookup_834_572(acc), [115, 111, 114, 117, 109] => lookup_834_573(acc), [115, 112, 106, 101, 108, 107, 97, 118, 105, 107] => lookup_834_574(acc), [115, 112, 121, 100, 101, 98, 101, 114, 103] => lookup_834_575(acc), [115, 116] => lookup_834_576(labels, acc), [115, 116, 97, 110, 103, 101] => lookup_834_577(acc), [115, 116, 97, 116] => lookup_834_578(acc), [115, 116, 97, 116, 104, 101, 108, 108, 101] => lookup_834_579(acc), [115, 116, 97, 118, 97, 110, 103, 101, 114] => lookup_834_580(acc), [115, 116, 97, 118, 101, 114, 110] => lookup_834_581(acc), [115, 116, 101, 105, 103, 101, 110] => lookup_834_582(acc), [115, 116, 101, 105, 110, 107, 106, 101, 114] => lookup_834_583(acc), [115, 116, 106, 111, 114, 100, 97, 108] => lookup_834_584(acc), [115, 116, 106, 111, 114, 100, 97, 108, 115, 104, 97, 108, 115, 101, 110] => { lookup_834_585(acc) } [115, 116, 106, 195, 184, 114, 100, 97, 108] => lookup_834_586(acc), [115, 116, 106, 195, 184, 114, 100, 97, 108, 115, 104, 97, 108, 115, 101, 110] => { lookup_834_587(acc) } [115, 116, 111, 107, 107, 101] => lookup_834_588(acc), [115, 116, 111, 114, 45, 101, 108, 118, 100, 97, 108] => lookup_834_589(acc), [115, 116, 111, 114, 100] => lookup_834_590(acc), [115, 116, 111, 114, 100, 97, 108] => lookup_834_591(acc), [115, 116, 111, 114, 102, 106, 111, 114, 100] => lookup_834_592(acc), [115, 116, 114, 97, 110, 100] => lookup_834_593(acc), [115, 116, 114, 97, 110, 100, 97] => lookup_834_594(acc), [115, 116, 114, 121, 110] => lookup_834_595(acc), [115, 117, 108, 97] => lookup_834_596(acc), [115, 117, 108, 100, 97, 108] => lookup_834_597(acc), [115, 117, 110, 100] => lookup_834_598(acc), [115, 117, 110, 110, 100, 97, 108] => lookup_834_599(acc), [115, 117, 114, 110, 97, 100, 97, 108] => lookup_834_600(acc), [115, 118, 97, 108, 98, 97, 114, 100] => lookup_834_601(labels, acc), [115, 118, 101, 105, 111] => lookup_834_602(acc), [115, 118, 101, 108, 118, 105, 107] => lookup_834_603(acc), [115, 121, 107, 107, 121, 108, 118, 101, 110] => lookup_834_604(acc), [115, 195, 161, 108, 97, 116] => lookup_834_605(acc), [115, 195, 161, 108, 195, 161, 116] => lookup_834_606(acc), [115, 195, 184, 103, 110, 101] => lookup_834_607(acc), [115, 195, 184, 109, 110, 97] => lookup_834_608(acc), [115, 195, 184, 110, 100, 114, 101, 45, 108, 97, 110, 100] => lookup_834_609(acc), [115, 195, 184, 114, 45, 97, 117, 114, 100, 97, 108] => lookup_834_610(acc), [115, 195, 184, 114, 45, 102, 114, 111, 110] => lookup_834_611(acc), [115, 195, 184, 114, 45, 111, 100, 97, 108] => lookup_834_612(acc), [115, 195, 184, 114, 45, 118, 97, 114, 97, 110, 103, 101, 114] => lookup_834_613(acc), [115, 195, 184, 114, 102, 111, 108, 100] => lookup_834_614(acc), [115, 195, 184, 114, 114, 101, 105, 115, 97] => lookup_834_615(acc), [115, 195, 184, 114, 117, 109] => lookup_834_616(acc), [116, 97, 110, 97] => lookup_834_617(acc), [116, 97, 110, 97, 110, 103, 101, 114] => lookup_834_618(acc), [116, 101, 108, 101, 109, 97, 114, 107] => lookup_834_619(info, labels, acc), [116, 105, 109, 101] => lookup_834_620(acc), [116, 105, 110, 103, 118, 111, 108, 108] => lookup_834_621(acc), [116, 105, 110, 110] => lookup_834_622(acc), [116, 106, 101, 108, 100, 115, 117, 110, 100] => lookup_834_623(acc), [116, 106, 111, 109, 101] => lookup_834_624(acc), [116, 106, 195, 184, 109, 101] => lookup_834_625(acc), [116, 109] => lookup_834_626(labels, acc), [116, 111, 107, 107, 101] => lookup_834_627(acc), [116, 111, 108, 103, 97] => lookup_834_628(acc), [116, 111, 110, 115, 98, 101, 114, 103] => lookup_834_629(acc), [116, 111, 114, 115, 107, 101, 110] => lookup_834_630(acc), [116, 114] => lookup_834_631(labels, acc), [116, 114, 97, 110, 97] => lookup_834_632(acc), [116, 114, 97, 110, 98, 121] => lookup_834_633(acc), [116, 114, 97, 110, 111, 121] => lookup_834_634(acc), [116, 114, 97, 110, 195, 184, 121] => lookup_834_635(acc), [116, 114, 111, 97, 110, 100, 105, 110] => lookup_834_636(acc), [116, 114, 111, 103, 115, 116, 97, 100] => lookup_834_637(acc), [116, 114, 111, 109, 115, 97] => lookup_834_638(acc), [116, 114, 111, 109, 115, 111] => lookup_834_639(acc), [116, 114, 111, 109, 115, 195, 184] => lookup_834_640(acc), [116, 114, 111, 110, 100, 104, 101, 105, 109] => lookup_834_641(acc), [116, 114, 121, 115, 105, 108] => lookup_834_642(acc), [116, 114, 195, 166, 110, 97] => lookup_834_643(acc), [116, 114, 195, 184, 103, 115, 116, 97, 100] => lookup_834_644(acc), [116, 118, 101, 100, 101, 115, 116, 114, 97, 110, 100] => lookup_834_645(acc), [116, 121, 100, 97, 108] => lookup_834_646(acc), [116, 121, 110, 115, 101, 116] => lookup_834_647(acc), [116, 121, 115, 102, 106, 111, 114, 100] => lookup_834_648(acc), [116, 121, 115, 110, 101, 115] => lookup_834_649(acc), [116, 121, 115, 118, 97, 114] => lookup_834_650(acc), [116, 121, 115, 118, 195, 166, 114] => lookup_834_651(acc), [116, 195, 184, 110, 115, 98, 101, 114, 103] => lookup_834_652(acc), [117, 108, 108, 101, 110, 115, 97, 107, 101, 114] => lookup_834_653(acc), [117, 108, 108, 101, 110, 115, 118, 97, 110, 103] => lookup_834_654(acc), [117, 108, 118, 105, 107] => lookup_834_655(acc), [117, 110, 106, 97, 114, 103, 97] => lookup_834_656(acc), [117, 110, 106, 195, 161, 114, 103, 97] => lookup_834_657(acc), [117, 116, 115, 105, 114, 97] => lookup_834_658(acc), [118, 97] => lookup_834_659(labels, acc), [118, 97, 97, 112, 115, 116, 101] => lookup_834_660(acc), [118, 97, 100, 115, 111] => lookup_834_661(acc), [118, 97, 100, 115, 195, 184] => lookup_834_662(acc), [118, 97, 103, 97] => lookup_834_663(acc), [118, 97, 103, 97, 110] => lookup_834_664(acc), [118, 97, 103, 115, 111, 121] => lookup_834_665(acc), [118, 97, 107, 115, 100, 97, 108] => lookup_834_666(acc), [118, 97, 108, 108, 101] => lookup_834_667(acc), [118, 97, 110, 103] => lookup_834_668(acc), [118, 97, 110, 121, 108, 118, 101, 110] => lookup_834_669(acc), [118, 97, 114, 100, 111] => lookup_834_670(acc), [118, 97, 114, 100, 195, 184] => lookup_834_671(acc), [118, 97, 114, 103, 103, 97, 116] => lookup_834_672(acc), [118, 97, 114, 111, 121] => lookup_834_673(acc), [118, 101, 102, 115, 110] => lookup_834_674(acc), [118, 101, 103, 97] => lookup_834_675(acc), [118, 101, 103, 97, 114, 115, 104, 101, 105] => lookup_834_676(acc), [118, 101, 103, 195, 165, 114, 115, 104, 101, 105] => lookup_834_677(acc), [118, 101, 110, 110, 101, 115, 108, 97] => lookup_834_678(acc), [118, 101, 114, 100, 97, 108] => lookup_834_679(acc), [118, 101, 114, 114, 97, 110] => lookup_834_680(acc), [118, 101, 115, 116, 98, 121] => lookup_834_681(acc), [118, 101, 115, 116, 102, 111, 108, 100] => lookup_834_682(info, labels, acc), [118, 101, 115, 116, 110, 101, 115] => lookup_834_683(acc), [118, 101, 115, 116, 114, 101, 45, 115, 108, 105, 100, 114, 101] => lookup_834_684(acc), [118, 101, 115, 116, 114, 101, 45, 116, 111, 116, 101, 110] => lookup_834_685(acc), [118, 101, 115, 116, 118, 97, 103, 111, 121] => lookup_834_686(acc), [118, 101, 115, 116, 118, 195, 165, 103, 195, 184, 121] => lookup_834_687(acc), [118, 101, 118, 101, 108, 115, 116, 97, 100] => lookup_834_688(acc), [118, 102] => lookup_834_689(labels, acc), [118, 103, 115] => lookup_834_690(acc), [118, 105, 107] => lookup_834_691(acc), [118, 105, 107, 110, 97] => lookup_834_692(acc), [118, 105, 110, 100, 97, 102, 106, 111, 114, 100] => lookup_834_693(acc), [118, 111, 97, 103, 97, 116] => lookup_834_694(acc), [118, 111, 108, 100, 97] => lookup_834_695(acc), [118, 111, 115, 115] => lookup_834_696(acc), [118, 111, 115, 115, 101, 118, 97, 110, 103, 101, 110] => lookup_834_697(acc), [118, 195, 161, 114, 103, 103, 195, 161, 116] => lookup_834_698(acc), [118, 195, 165, 103, 97, 110] => lookup_834_699(acc), [118, 195, 165, 103, 115, 195, 184, 121] => lookup_834_700(acc), [118, 195, 165, 103, 195, 165] => lookup_834_701(acc), [118, 195, 166, 114, 195, 184, 121] => lookup_834_702(acc), [120, 110, 45, 45, 97, 110, 100, 121, 45, 105, 114, 97] => lookup_834_703(acc), [120, 110, 45, 45, 97, 115, 107, 121, 45, 105, 114, 97] => lookup_834_704(acc), [120, 110, 45, 45, 97, 117, 114, 115, 107, 111, 103, 45, 104, 108, 97, 110, 100, 45, 106, 110, 98] => { lookup_834_705(acc) } [120, 110, 45, 45, 97, 118, 101, 114, 121, 45, 121, 117, 97] => lookup_834_706(acc), [120, 110, 45, 45, 98, 100, 100, 100, 106, 45, 109, 114, 97, 98, 100] => { lookup_834_707(acc) } [120, 110, 45, 45, 98, 101, 97, 114, 97, 108, 118, 104, 107, 105, 45, 121, 52, 97] => { lookup_834_708(acc) } [120, 110, 45, 45, 98, 101, 114, 108, 101, 118, 103, 45, 106, 120, 97] => { lookup_834_709(acc) } [120, 110, 45, 45, 98, 104, 99, 97, 118, 117, 111, 116, 110, 97, 45, 115, 52, 97] => { lookup_834_710(acc) } [120, 110, 45, 45, 98, 104, 99, 99, 97, 118, 117, 111, 116, 110, 97, 45, 107, 55, 97] => { lookup_834_711(acc) } [120, 110, 45, 45, 98, 105, 100, 114, 45, 53, 110, 97, 99] => lookup_834_712(acc), [120, 110, 45, 45, 98, 105, 101, 118, 116, 45, 48, 113, 97] => lookup_834_713(acc), [120, 110, 45, 45, 98, 106, 97, 114, 107, 121, 45, 102, 121, 97] => lookup_834_714(acc), [120, 110, 45, 45, 98, 106, 100, 100, 97, 114, 45, 112, 116, 97] => lookup_834_715(acc), [120, 110, 45, 45, 98, 108, 116, 45, 101, 108, 97, 98] => lookup_834_716(acc), [120, 110, 45, 45, 98, 109, 108, 111, 45, 103, 114, 97] => lookup_834_717(acc), [120, 110, 45, 45, 98, 111, 100, 45, 50, 110, 97] => lookup_834_718(acc), [120, 110, 45, 45, 98, 114, 110, 110, 121, 45, 119, 117, 97, 99] => lookup_834_719(acc), [120, 110, 45, 45, 98, 114, 110, 110, 121, 115, 117, 110, 100, 45, 109, 56, 97, 99] => { lookup_834_720(acc) } [120, 110, 45, 45, 98, 114, 117, 109, 45, 118, 111, 97] => lookup_834_721(acc), [120, 110, 45, 45, 98, 116, 115, 102, 106, 111, 114, 100, 45, 57, 122, 97] => { lookup_834_722(acc) } [120, 110, 45, 45, 100, 97, 118, 118, 101, 110, 106, 114, 103, 97, 45, 121, 52, 97] => { lookup_834_723(acc) } [120, 110, 45, 45, 100, 110, 110, 97, 45, 103, 114, 97] => lookup_834_724(acc), [120, 110, 45, 45, 100, 114, 98, 97, 107, 45, 119, 117, 97] => lookup_834_725(acc), [120, 110, 45, 45, 100, 121, 114, 121, 45, 105, 114, 97] => lookup_834_726(acc), [120, 110, 45, 45, 101, 118, 101, 110, 105, 45, 48, 113, 97, 48, 49, 103, 97] => { lookup_834_727(acc) } [120, 110, 45, 45, 102, 105, 110, 110, 121, 45, 121, 117, 97] => lookup_834_728(acc), [120, 110, 45, 45, 102, 106, 111, 114, 100, 45, 108, 114, 97] => lookup_834_729(acc), [120, 110, 45, 45, 102, 108, 45, 122, 105, 97] => lookup_834_730(acc), [120, 110, 45, 45, 102, 108, 111, 114, 45, 106, 114, 97] => lookup_834_731(acc), [120, 110, 45, 45, 102, 114, 100, 101, 45, 103, 114, 97] => lookup_834_732(acc), [120, 110, 45, 45, 102, 114, 110, 97, 45, 119, 111, 97] => lookup_834_733(acc), [120, 110, 45, 45, 102, 114, 121, 97, 45, 104, 114, 97] => lookup_834_734(acc), [120, 110, 45, 45, 103, 103, 97, 118, 105, 105, 107, 97, 45, 56, 121, 97, 52, 55, 104] => { lookup_834_735(acc) } [120, 110, 45, 45, 103, 105, 108, 100, 101, 115, 107, 108, 45, 103, 48, 97] => { lookup_834_736(acc) } [120, 110, 45, 45, 103, 105, 118, 117, 111, 116, 110, 97, 45, 56, 121, 97] => { lookup_834_737(acc) } [120, 110, 45, 45, 103, 106, 118, 105, 107, 45, 119, 117, 97] => lookup_834_738(acc), [120, 110, 45, 45, 103, 108, 115, 45, 101, 108, 97, 99] => lookup_834_739(acc), [120, 110, 45, 45, 104, 45, 50, 102, 97] => lookup_834_740(acc), [120, 110, 45, 45, 104, 98, 109, 101, 114, 45, 120, 113, 97] => lookup_834_741(acc), [120, 110, 45, 45, 104, 99, 101, 115, 117, 111, 108, 111, 45, 55, 121, 97, 51, 53, 98] => { lookup_834_742(acc) } [120, 110, 45, 45, 104, 103, 101, 98, 111, 115, 116, 97, 100, 45, 103, 51, 97] => { lookup_834_743(acc) } [120, 110, 45, 45, 104, 109, 109, 114, 102, 101, 97, 115, 116, 97, 45, 115, 52, 97, 99] => { lookup_834_744(acc) } [120, 110, 45, 45, 104, 110, 101, 102, 111, 115, 115, 45, 113, 49, 97] => { lookup_834_745(acc) } [120, 110, 45, 45, 104, 111, 98, 108, 45, 105, 114, 97] => lookup_834_746(acc), [120, 110, 45, 45, 104, 111, 108, 116, 108, 101, 110, 45, 104, 120, 97] => { lookup_834_747(acc) } [120, 110, 45, 45, 104, 112, 109, 105, 114, 45, 120, 113, 97] => lookup_834_748(acc), [120, 110, 45, 45, 104, 121, 97, 110, 103, 101, 114, 45, 113, 49, 97] => { lookup_834_749(acc) } [120, 110, 45, 45, 104, 121, 108, 97, 110, 100, 101, 116, 45, 53, 52, 97] => { lookup_834_750(acc) } [120, 110, 45, 45, 105, 110, 100, 101, 114, 121, 45, 102, 121, 97] => { lookup_834_751(acc) } [120, 110, 45, 45, 106, 108, 115, 116, 101, 114, 45, 98, 121, 97] => { lookup_834_752(acc) } [120, 110, 45, 45, 106, 114, 112, 101, 108, 97, 110, 100, 45, 53, 52, 97] => { lookup_834_753(acc) } [120, 110, 45, 45, 107, 97, 114, 109, 121, 45, 121, 117, 97] => lookup_834_754(acc), [120, 110, 45, 45, 107, 102, 106, 111, 114, 100, 45, 105, 117, 97] => { lookup_834_755(acc) } [120, 110, 45, 45, 107, 108, 98, 117, 45, 119, 111, 97] => lookup_834_756(acc), [120, 110, 45, 45, 107, 111, 108, 117, 111, 107, 116, 97, 45, 55, 121, 97, 53, 55, 104] => { lookup_834_757(acc) } [120, 110, 45, 45, 107, 114, 97, 103, 101, 114, 45, 103, 121, 97] => { lookup_834_758(acc) } [120, 110, 45, 45, 107, 114, 97, 110, 103, 104, 107, 101, 45, 98, 48, 97] => { lookup_834_759(acc) } [120, 110, 45, 45, 107, 114, 100, 115, 104, 101, 114, 97, 100, 45, 109, 56, 97] => { lookup_834_760(acc) } [120, 110, 45, 45, 107, 114, 101, 104, 97, 109, 110, 45, 100, 120, 97] => { lookup_834_761(acc) } [120, 110, 45, 45, 107, 114, 106, 111, 104, 107, 97, 45, 104, 119, 97, 98, 52, 57, 106] => { lookup_834_762(acc) } [120, 110, 45, 45, 107, 115, 110, 101, 115, 45, 117, 117, 97] => lookup_834_763(acc), [120, 110, 45, 45, 107, 118, 102, 106, 111, 114, 100, 45, 110, 120, 97] => { lookup_834_764(acc) } [120, 110, 45, 45, 107, 118, 105, 116, 115, 121, 45, 102, 121, 97] => { lookup_834_765(acc) } [120, 110, 45, 45, 107, 118, 110, 97, 110, 103, 101, 110, 45, 107, 48, 97] => { lookup_834_766(acc) } [120, 110, 45, 45, 108, 45, 49, 102, 97] => lookup_834_767(acc), [120, 110, 45, 45, 108, 97, 104, 101, 97, 100, 106, 117, 45, 55, 121, 97] => { lookup_834_768(acc) } [120, 110, 45, 45, 108, 97, 110, 103, 101, 118, 103, 45, 106, 120, 97] => { lookup_834_769(acc) } [120, 110, 45, 45, 108, 100, 105, 110, 103, 101, 110, 45, 113, 49, 97] => { lookup_834_770(acc) } [120, 110, 45, 45, 108, 101, 97, 103, 97, 118, 105, 105, 107, 97, 45, 53, 50, 98] => { lookup_834_771(acc) } [120, 110, 45, 45, 108, 101, 115, 117, 110, 100, 45, 104, 117, 97] => { lookup_834_772(acc) } [120, 110, 45, 45, 108, 103, 114, 100, 45, 112, 111, 97, 99] => lookup_834_773(acc), [120, 110, 45, 45, 108, 104, 112, 112, 105, 45, 120, 113, 97] => lookup_834_774(acc), [120, 110, 45, 45, 108, 105, 110, 100, 115, 45, 112, 114, 97] => lookup_834_775(acc), [120, 110, 45, 45, 108, 111, 97, 98, 116, 45, 48, 113, 97] => lookup_834_776(acc), [120, 110, 45, 45, 108, 114, 100, 97, 108, 45, 115, 114, 97] => lookup_834_777(acc), [120, 110, 45, 45, 108, 114, 101, 110, 115, 107, 111, 103, 45, 53, 52, 97] => { lookup_834_778(acc) } [120, 110, 45, 45, 108, 116, 45, 108, 105, 97, 99] => lookup_834_779(acc), [120, 110, 45, 45, 108, 116, 101, 110, 45, 103, 114, 97] => lookup_834_780(acc), [120, 110, 45, 45, 108, 117, 114, 121, 45, 105, 114, 97] => lookup_834_781(acc), [120, 110, 45, 45, 109, 101, 108, 121, 45, 105, 114, 97] => lookup_834_782(acc), [120, 110, 45, 45, 109, 101, 114, 107, 101, 114, 45, 107, 117, 97] => { lookup_834_783(acc) } [120, 110, 45, 45, 109, 106, 110, 100, 97, 108, 101, 110, 45, 54, 52, 97] => { lookup_834_784(acc) } [120, 110, 45, 45, 109, 108, 97, 116, 118, 117, 111, 112, 109, 105, 45, 115, 52, 97] => { lookup_834_785(acc) } [120, 110, 45, 45, 109, 108, 105, 45, 116, 108, 97] => lookup_834_786(acc), [120, 110, 45, 45, 109, 108, 115, 101, 108, 118, 45, 105, 117, 97] => { lookup_834_787(acc) } [120, 110, 45, 45, 109, 111, 114, 101, 107, 101, 45, 106, 117, 97] => { lookup_834_788(acc) } [120, 110, 45, 45, 109, 111, 115, 106, 101, 110, 45, 101, 121, 97] => { lookup_834_789(acc) } [120, 110, 45, 45, 109, 111, 116, 45, 116, 108, 97] => lookup_834_790(acc), [120, 110, 45, 45, 109, 114, 101, 45, 111, 103, 45, 114, 111, 109, 115, 100, 97, 108, 45, 113, 113, 98] => { lookup_834_791(info, labels, acc) } [120, 110, 45, 45, 109, 115, 121, 45, 117, 108, 97, 48, 104] => lookup_834_792(acc), [120, 110, 45, 45, 109, 116, 116, 97, 45, 118, 114, 106, 106, 97, 116, 45, 107, 55, 97, 102] => { lookup_834_793(acc) } [120, 110, 45, 45, 109, 117, 111, 115, 116, 45, 48, 113, 97] => lookup_834_794(acc), [120, 110, 45, 45, 110, 109, 101, 115, 106, 101, 118, 117, 101, 109, 105, 101, 45, 116, 99, 98, 97] => { lookup_834_795(acc) } [120, 110, 45, 45, 110, 114, 121, 45, 121, 108, 97, 53, 103] => lookup_834_796(acc), [120, 110, 45, 45, 110, 116, 116, 101, 114, 121, 45, 98, 121, 97, 101] => { lookup_834_797(acc) } [120, 110, 45, 45, 110, 118, 117, 111, 116, 110, 97, 45, 104, 119, 97] => { lookup_834_798(acc) } [120, 110, 45, 45, 111, 112, 112, 101, 103, 114, 100, 45, 105, 120, 97] => { lookup_834_799(acc) } [120, 110, 45, 45, 111, 115, 116, 101, 114, 121, 45, 102, 121, 97] => { lookup_834_800(acc) } [120, 110, 45, 45, 111, 115, 121, 114, 111, 45, 119, 117, 97] => lookup_834_801(acc), [120, 110, 45, 45, 112, 111, 114, 115, 103, 117, 45, 115, 116, 97, 50, 54, 102] => { lookup_834_802(acc) } [120, 110, 45, 45, 114, 97, 100, 121, 45, 105, 114, 97] => lookup_834_803(acc), [120, 110, 45, 45, 114, 100, 97, 108, 45, 112, 111, 97] => lookup_834_804(acc), [120, 110, 45, 45, 114, 100, 101, 45, 117, 108, 97] => lookup_834_805(acc), [120, 110, 45, 45, 114, 100, 121, 45, 48, 110, 97, 98] => lookup_834_806(acc), [120, 110, 45, 45, 114, 101, 110, 110, 101, 115, 121, 45, 118, 49, 97] => { lookup_834_807(acc) } [120, 110, 45, 45, 114, 104, 107, 107, 101, 114, 118, 106, 117, 45, 48, 49, 97, 102] => { lookup_834_808(acc) } [120, 110, 45, 45, 114, 104, 111, 108, 116, 45, 109, 114, 97] => lookup_834_809(acc), [120, 110, 45, 45, 114, 105, 115, 97, 45, 53, 110, 97] => lookup_834_810(acc), [120, 110, 45, 45, 114, 105, 115, 114, 45, 105, 114, 97] => lookup_834_811(acc), [120, 110, 45, 45, 114, 108, 97, 110, 100, 45, 117, 117, 97] => lookup_834_812(acc), [120, 110, 45, 45, 114, 108, 105, 110, 103, 101, 110, 45, 109, 120, 97] => { lookup_834_813(acc) } [120, 110, 45, 45, 114, 109, 115, 107, 111, 103, 45, 98, 121, 97] => { lookup_834_814(acc) } [120, 110, 45, 45, 114, 114, 111, 115, 45, 103, 114, 97] => lookup_834_815(acc), [120, 110, 45, 45, 114, 115, 107, 111, 103, 45, 117, 117, 97] => lookup_834_816(acc), [120, 110, 45, 45, 114, 115, 116, 45, 48, 110, 97] => lookup_834_817(acc), [120, 110, 45, 45, 114, 115, 116, 97, 45, 102, 114, 97] => lookup_834_818(acc), [120, 110, 45, 45, 114, 121, 107, 101, 110, 45, 118, 117, 97] => lookup_834_819(acc), [120, 110, 45, 45, 114, 121, 114, 118, 105, 107, 45, 98, 121, 97] => { lookup_834_820(acc) } [120, 110, 45, 45, 115, 45, 49, 102, 97] => lookup_834_821(acc), [120, 110, 45, 45, 115, 97, 110, 100, 110, 101, 115, 115, 106, 101, 110, 45, 111, 103, 98] => { lookup_834_822(acc) } [120, 110, 45, 45, 115, 97, 110, 100, 121, 45, 121, 117, 97] => lookup_834_823(acc), [120, 110, 45, 45, 115, 101, 114, 97, 108, 45, 108, 114, 97] => lookup_834_824(acc), [120, 110, 45, 45, 115, 103, 110, 101, 45, 103, 114, 97] => lookup_834_825(acc), [120, 110, 45, 45, 115, 107, 105, 101, 114, 118, 45, 117, 116, 97] => { lookup_834_826(acc) } [120, 110, 45, 45, 115, 107, 106, 101, 114, 118, 121, 45, 118, 49, 97] => { lookup_834_827(acc) } [120, 110, 45, 45, 115, 107, 106, 107, 45, 115, 111, 97] => lookup_834_828(acc), [120, 110, 45, 45, 115, 107, 110, 105, 116, 45, 121, 113, 97] => lookup_834_829(acc), [120, 110, 45, 45, 115, 107, 110, 108, 97, 110, 100, 45, 102, 120, 97] => { lookup_834_830(acc) } [120, 110, 45, 45, 115, 108, 97, 116, 45, 53, 110, 97] => lookup_834_831(acc), [120, 110, 45, 45, 115, 108, 116, 45, 101, 108, 97, 98] => lookup_834_832(acc), [120, 110, 45, 45, 115, 109, 108, 97, 45, 104, 114, 97] => lookup_834_833(acc), [120, 110, 45, 45, 115, 109, 110, 97, 45, 103, 114, 97] => lookup_834_834(acc), [120, 110, 45, 45, 115, 110, 97, 115, 101, 45, 110, 114, 97] => lookup_834_835(acc), [120, 110, 45, 45, 115, 110, 100, 114, 101, 45, 108, 97, 110, 100, 45, 48, 99, 98] => { lookup_834_836(acc) } [120, 110, 45, 45, 115, 110, 101, 115, 45, 112, 111, 97] => lookup_834_837(acc), [120, 110, 45, 45, 115, 110, 115, 97, 45, 114, 111, 97] => lookup_834_838(acc), [120, 110, 45, 45, 115, 114, 45, 97, 117, 114, 100, 97, 108, 45, 108, 56, 97] => { lookup_834_839(acc) } [120, 110, 45, 45, 115, 114, 45, 102, 114, 111, 110, 45, 113, 49, 97] => { lookup_834_840(acc) } [120, 110, 45, 45, 115, 114, 45, 111, 100, 97, 108, 45, 113, 49, 97] => { lookup_834_841(acc) } [120, 110, 45, 45, 115, 114, 45, 118, 97, 114, 97, 110, 103, 101, 114, 45, 103, 103, 98] => { lookup_834_842(acc) } [120, 110, 45, 45, 115, 114, 102, 111, 108, 100, 45, 98, 121, 97] => { lookup_834_843(acc) } [120, 110, 45, 45, 115, 114, 114, 101, 105, 115, 97, 45, 113, 49, 97] => { lookup_834_844(acc) } [120, 110, 45, 45, 115, 114, 117, 109, 45, 103, 114, 97] => lookup_834_845(acc), [120, 110, 45, 45, 115, 116, 102, 111, 108, 100, 45, 57, 120, 97] => { lookup_834_846(info, labels, acc) } [120, 110, 45, 45, 115, 116, 106, 114, 100, 97, 108, 45, 115, 49, 97] => { lookup_834_847(acc) } [120, 110, 45, 45, 115, 116, 106, 114, 100, 97, 108, 115, 104, 97, 108, 115, 101, 110, 45, 115, 113, 98] => { lookup_834_848(acc) } [120, 110, 45, 45, 115, 116, 114, 101, 45, 116, 111, 116, 101, 110, 45, 122, 99, 98] => { lookup_834_849(acc) } [120, 110, 45, 45, 116, 106, 109, 101, 45, 104, 114, 97] => lookup_834_850(acc), [120, 110, 45, 45, 116, 110, 115, 98, 101, 114, 103, 45, 113, 49, 97] => { lookup_834_851(acc) } [120, 110, 45, 45, 116, 114, 97, 110, 121, 45, 121, 117, 97] => lookup_834_852(acc), [120, 110, 45, 45, 116, 114, 103, 115, 116, 97, 100, 45, 114, 49, 97] => { lookup_834_853(acc) } [120, 110, 45, 45, 116, 114, 110, 97, 45, 119, 111, 97] => lookup_834_854(acc), [120, 110, 45, 45, 116, 114, 111, 109, 115, 45, 122, 117, 97] => lookup_834_855(acc), [120, 110, 45, 45, 116, 121, 115, 118, 114, 45, 118, 114, 97] => lookup_834_856(acc), [120, 110, 45, 45, 117, 110, 106, 114, 103, 97, 45, 114, 116, 97] => { lookup_834_857(acc) } [120, 110, 45, 45, 118, 97, 100, 115, 45, 106, 114, 97] => lookup_834_858(acc), [120, 110, 45, 45, 118, 97, 114, 100, 45, 106, 114, 97] => lookup_834_859(acc), [120, 110, 45, 45, 118, 101, 103, 114, 115, 104, 101, 105, 45, 99, 48, 97] => { lookup_834_860(acc) } [120, 110, 45, 45, 118, 101, 115, 116, 118, 103, 121, 45, 105, 120, 97, 54, 111] => { lookup_834_861(acc) } [120, 110, 45, 45, 118, 103, 45, 121, 105, 97, 98] => lookup_834_862(acc), [120, 110, 45, 45, 118, 103, 97, 110, 45, 113, 111, 97] => lookup_834_863(acc), [120, 110, 45, 45, 118, 103, 115, 121, 45, 113, 111, 97, 48, 106] => { lookup_834_864(acc) } [120, 110, 45, 45, 118, 114, 101, 45, 101, 105, 107, 101, 114, 45, 107, 56, 97] => { lookup_834_865(acc) } [120, 110, 45, 45, 118, 114, 103, 103, 116, 45, 120, 113, 97, 100] => { lookup_834_866(acc) } [120, 110, 45, 45, 118, 114, 121, 45, 121, 108, 97, 53, 103] => lookup_834_867(acc), [120, 110, 45, 45, 121, 101, 114, 45, 122, 110, 97] => lookup_834_868(acc), [120, 110, 45, 45, 121, 103, 97, 114, 100, 101, 110, 45, 112, 49, 97] => { lookup_834_869(acc) } [120, 110, 45, 45, 121, 115, 116, 114, 101, 45, 115, 108, 105, 100, 114, 101, 45, 117, 106, 98] => { lookup_834_870(acc) } [195, 161, 107, 197, 139, 111, 108, 117, 111, 107, 116, 97] => lookup_834_871(acc), [195, 161, 108, 97, 104, 101, 97, 100, 106, 117] => lookup_834_872(acc), [195, 161, 108, 116, 195, 161] => lookup_834_873(acc), [195, 165, 102, 106, 111, 114, 100] => lookup_834_874(acc), [195, 165, 107, 114, 101, 104, 97, 109, 110] => lookup_834_875(acc), [195, 165, 108] => lookup_834_876(acc), [195, 165, 108, 101, 115, 117, 110, 100] => lookup_834_877(acc), [195, 165, 108, 103, 195, 165, 114, 100] => lookup_834_878(acc), [195, 165, 109, 108, 105] => lookup_834_879(acc), [195, 165, 109, 111, 116] => lookup_834_880(acc), [195, 165, 114, 100, 97, 108] => lookup_834_881(acc), [195, 165, 115] => lookup_834_882(acc), [195, 165, 115, 101, 114, 97, 108] => lookup_834_883(acc), [195, 165, 115, 110, 101, 115] => lookup_834_884(acc), [195, 184, 107, 115, 110, 101, 115] => lookup_834_885(acc), [195, 184, 114, 108, 97, 110, 100] => lookup_834_886(acc), [195, 184, 114, 115, 107, 111, 103] => lookup_834_887(acc), [195, 184, 114, 115, 116, 97] => lookup_834_888(acc), [195, 184, 115, 116, 102, 111, 108, 100] => lookup_834_889(info, labels, acc), [195, 184, 115, 116, 114, 101, 45, 116, 111, 116, 101, 110] => lookup_834_890(acc), [195, 184, 118, 114, 101, 45, 101, 105, 107, 101, 114] => lookup_834_891(acc), [195, 184, 121, 101, 114] => lookup_834_892(acc), [195, 184, 121, 103, 97, 114, 100, 101, 110] => lookup_834_893(acc), [195, 184, 121, 115, 116, 114, 101, 45, 115, 108, 105, 100, 114, 101] => { lookup_834_894(acc) } [196, 141, 195, 161, 104, 99, 101, 115, 117, 111, 108, 111] => lookup_834_895(acc), _ => info, }, None => info, } } #[inline] fn lookup_835() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_836() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_837() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_838() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_839() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_840_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_840<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_840_0(wild, acc), }, None => info, } } #[inline] fn lookup_841_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_841<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_841_0(acc), [99, 111, 109] => lookup_841_1(acc), [101, 100, 117] => lookup_841_2(acc), [103, 111, 118] => lookup_841_3(acc), [105, 110, 102, 111] => lookup_841_4(acc), [110, 101, 116] => lookup_841_5(acc), [111, 114, 103] => lookup_841_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_842() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_843() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_844() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_845_0(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_845_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_845_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_845_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_845<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 110, 116, 101, 114, 112, 114, 105, 115, 101, 99, 108, 111, 117, 100] => { lookup_845_0(acc) } [109, 101, 114, 115, 101, 105, 110, 101] => lookup_845_1(acc), [109, 105, 110, 101] => lookup_845_2(acc), [115, 104, 97, 99, 107, 110, 101, 116] => lookup_845_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_846() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_1_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_847_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_847_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_847_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_9(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_14(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847_16(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_847<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_847_0(acc), [99, 111] => lookup_847_1(labels, acc), [99, 114, 105] => lookup_847_2(acc), [103, 101, 101, 107] => lookup_847_3(acc), [103, 101, 110] => lookup_847_4(acc), [103, 111, 118, 116] => lookup_847_5(acc), [104, 101, 97, 108, 116, 104] => lookup_847_6(acc), [105, 119, 105] => lookup_847_7(acc), [107, 105, 119, 105] => lookup_847_8(acc), [109, 97, 111, 114, 105] => lookup_847_9(acc), [109, 105, 108] => lookup_847_10(acc), [109, 196, 129, 111, 114, 105] => lookup_847_11(acc), [110, 101, 116] => lookup_847_12(acc), [111, 114, 103] => lookup_847_13(acc), [112, 97, 114, 108, 105, 97, 109, 101, 110, 116] => lookup_847_14(acc), [115, 99, 104, 111, 111, 108] => lookup_847_15(acc), [120, 110, 45, 45, 109, 111, 114, 105, 45, 113, 115, 97] => lookup_847_16(acc), _ => info, }, None => info, } } #[inline] fn lookup_848() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_849() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_850() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_851() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_852() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_853() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_854() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_855<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_855_0(acc), [99, 111, 109] => lookup_855_1(acc), [101, 100, 117] => lookup_855_2(acc), [103, 111, 118] => lookup_855_3(acc), [109, 101, 100] => lookup_855_4(acc), [109, 117, 115, 101, 117, 109] => lookup_855_5(acc), [110, 101, 116] => lookup_855_6(acc), [111, 114, 103] => lookup_855_7(acc), [112, 114, 111] => lookup_855_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_856() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_857_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_857_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_857_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_857_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_857_2_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_857_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [115, 116, 97, 103, 105, 110, 103] => lookup_857_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_857_3(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_857<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [104, 111, 109, 101, 108, 105, 110, 107] => lookup_857_0(acc), [107, 105, 110] => lookup_857_1(info, labels, acc), [111, 110, 114, 101, 100] => lookup_857_2(labels, acc), [115, 101, 114, 118, 105, 99, 101] => lookup_857_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_858() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_859() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_860() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_861_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_861_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_861_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_861<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_861_0(acc), [101, 101, 114, 111] => lookup_861_1(acc), [101, 101, 114, 111, 45, 115, 116, 97, 103, 101] => lookup_861_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_862() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_863() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_864() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_865_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_865<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [116, 101, 99, 104] => lookup_865_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_3_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [116, 101, 108, 101] => lookup_866_3_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_7(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_8(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_9(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_10(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_11_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_11_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_11<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { [99] => lookup_866_11_0(acc), [114, 115, 99] => lookup_866_11_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_12_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_12_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { [115, 115, 108] => lookup_866_12_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_12<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [111, 114, 105, 103, 105, 110] => lookup_866_12_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_866_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_14(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_15(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_16(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_18(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_20(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_21(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_22(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_24(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_25(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_27(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_28_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_28_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_28<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [103, 111] => lookup_866_28_0(acc), [104, 111, 109, 101] => lookup_866_28_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_29(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_30(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_31(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_18(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_21(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_22(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_26(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_27(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_28(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_29(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_30(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_31(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_32(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_33(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_34(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_35(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_36(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_37(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_38(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_39(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_40(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_41(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_42(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_43(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_44(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_45(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_46(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_47(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_48(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_49(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_50(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_51(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_52(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_53(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32_54(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_32<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [97, 108] => lookup_866_32_0(acc), [97, 115, 115, 111] => lookup_866_32_1(acc), [97, 116] => lookup_866_32_2(acc), [97, 117] => lookup_866_32_3(acc), [98, 101] => lookup_866_32_4(acc), [98, 103] => lookup_866_32_5(acc), [99, 97] => lookup_866_32_6(acc), [99, 100] => lookup_866_32_7(acc), [99, 104] => lookup_866_32_8(acc), [99, 110] => lookup_866_32_9(acc), [99, 121] => lookup_866_32_10(acc), [99, 122] => lookup_866_32_11(acc), [100, 101] => lookup_866_32_12(acc), [100, 107] => lookup_866_32_13(acc), [101, 100, 117] => lookup_866_32_14(acc), [101, 101] => lookup_866_32_15(acc), [101, 115] => lookup_866_32_16(acc), [102, 105] => lookup_866_32_17(acc), [102, 114] => lookup_866_32_18(acc), [103, 114] => lookup_866_32_19(acc), [104, 114] => lookup_866_32_20(acc), [104, 117] => lookup_866_32_21(acc), [105, 101] => lookup_866_32_22(acc), [105, 108] => lookup_866_32_23(acc), [105, 110] => lookup_866_32_24(acc), [105, 110, 116] => lookup_866_32_25(acc), [105, 115] => lookup_866_32_26(acc), [105, 116] => lookup_866_32_27(acc), [106, 112] => lookup_866_32_28(acc), [107, 114] => lookup_866_32_29(acc), [108, 116] => lookup_866_32_30(acc), [108, 117] => lookup_866_32_31(acc), [108, 118] => lookup_866_32_32(acc), [109, 99] => lookup_866_32_33(acc), [109, 101] => lookup_866_32_34(acc), [109, 107] => lookup_866_32_35(acc), [109, 116] => lookup_866_32_36(acc), [109, 121] => lookup_866_32_37(acc), [110, 101, 116] => lookup_866_32_38(acc), [110, 103] => lookup_866_32_39(acc), [110, 108] => lookup_866_32_40(acc), [110, 111] => lookup_866_32_41(acc), [110, 122] => lookup_866_32_42(acc), [112, 97, 114, 105, 115] => lookup_866_32_43(acc), [112, 108] => lookup_866_32_44(acc), [112, 116] => lookup_866_32_45(acc), [113, 45, 97] => lookup_866_32_46(acc), [114, 111] => lookup_866_32_47(acc), [114, 117] => lookup_866_32_48(acc), [115, 101] => lookup_866_32_49(acc), [115, 105] => lookup_866_32_50(acc), [115, 107] => lookup_866_32_51(acc), [116, 114] => lookup_866_32_52(acc), [117, 107] => lookup_866_32_53(acc), [117, 115] => lookup_866_32_54(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_33(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_34(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_35(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_36_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_36_1_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_36_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { [97, 112, 112] => lookup_866_36_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_36_2_0_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_36_2_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { [97, 112, 112] => lookup_866_36_2_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_36_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { [111, 115] => lookup_866_36_2_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_866_36<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 13usize; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100] => lookup_866_36_0(acc), [111, 115] => lookup_866_36_1(info, labels, acc), [115, 116, 103] => lookup_866_36_2(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_866_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_38(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_39(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_40(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_41(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_42(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_43(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_44(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_45(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_46(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_47(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_48(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_49(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_50(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_51(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_52(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_53(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_54(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_55(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_56(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_57(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_58(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_59(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_60(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_61(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_62(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_63(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_64(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_65(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_66(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_67(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_68(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_69(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_70(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_71(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_72(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_73(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_74(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_75(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_76(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_77(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_78(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_79(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_80(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_81(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_82(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_83(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_84(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_85(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_86(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_87(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_88(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_89(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_90(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_91(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_92(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_93(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_94(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_95(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_96(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_97(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_98(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_99(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_100(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_101(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_102_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_102<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [115, 51] => lookup_866_102_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_866_103(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_104(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_105(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_106(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_107(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_108(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_109(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_110(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_111(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_112(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_113(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_866_114(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_866<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99, 99, 101, 115, 115, 99, 97, 109] => lookup_866_0(acc), [97, 101] => lookup_866_1(acc), [97, 108, 116, 101, 114, 118, 105, 115, 116, 97] => lookup_866_2(acc), [97, 109, 117, 110, 101] => lookup_866_3(info, labels, acc), [98, 97, 114, 115, 121] => lookup_866_4(acc), [98, 108, 111, 103, 100, 110, 115] => lookup_866_5(acc), [98, 108, 111, 103, 115, 105, 116, 101] => lookup_866_6(acc), [98, 109, 111, 97, 116, 116, 97, 99, 104, 109, 101, 110, 116, 115] => lookup_866_7(acc), [98, 111, 108, 100, 108, 121, 103, 111, 105, 110, 103, 110, 111, 119, 104, 101, 114, 101] => { lookup_866_8(acc) } [99, 97, 98, 108, 101, 45, 109, 111, 100, 101, 109] => lookup_866_9(acc), [99, 97, 109, 100, 118, 114] => lookup_866_10(acc), [99, 100, 110, 55, 55] => lookup_866_11(info, labels, acc), [99, 100, 110, 55, 55, 45, 115, 101, 99, 117, 114, 101] => { lookup_866_12(info, labels, acc) } [99, 101, 114, 116, 109, 103, 114] => lookup_866_13(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_866_14(acc), [99, 111, 108, 108, 101, 103, 101, 102, 97, 110] => lookup_866_15(acc), [99, 111, 117, 99, 104, 112, 111, 116, 97, 116, 111, 102, 114, 105, 101, 115] => { lookup_866_16(acc) } [100, 100, 110, 115, 115] => lookup_866_17(acc), [100, 105, 115, 107, 115, 116, 97, 116, 105, 111, 110] => lookup_866_18(acc), [100, 110, 115, 97, 108, 105, 97, 115] => lookup_866_19(acc), [100, 110, 115, 100, 111, 106, 111] => lookup_866_20(acc), [100, 111, 101, 115, 110, 116, 101, 120, 105, 115, 116] => lookup_866_21(acc), [100, 111, 110, 116, 101, 120, 105, 115, 116] => lookup_866_22(acc), [100, 111, 111, 109, 100, 110, 115] => lookup_866_23(acc), [100, 115, 109, 121, 110, 97, 115] => lookup_866_24(acc), [100, 117, 99, 107, 100, 110, 115] => lookup_866_25(acc), [100, 118, 114, 100, 110, 115] => lookup_866_26(acc), [100, 121, 110, 97, 108, 105, 97, 115] => lookup_866_27(acc), [100, 121, 110, 100, 110, 115] => lookup_866_28(labels, acc), [100, 121, 110, 115, 101, 114, 118] => lookup_866_29(acc), [101, 110, 100, 111, 102, 105, 110, 116, 101, 114, 110, 101, 116] => lookup_866_30(acc), [101, 110, 100, 111, 102, 116, 104, 101, 105, 110, 116, 101, 114, 110, 101, 116] => { lookup_866_31(acc) } [101, 117] => lookup_866_32(labels, acc), [102, 97, 109, 105, 108, 121, 100, 115] => lookup_866_33(acc), [102, 101, 100, 111, 114, 97, 105, 110, 102, 114, 97, 99, 108, 111, 117, 100] => { lookup_866_34(acc) } [102, 101, 100, 111, 114, 97, 112, 101, 111, 112, 108, 101] => lookup_866_35(acc), [102, 101, 100, 111, 114, 97, 112, 114, 111, 106, 101, 99, 116] => { lookup_866_36(info, labels, acc) } [102, 114, 101, 101, 100, 100, 110, 115] => lookup_866_37(acc), [102, 114, 101, 101, 100, 101, 115, 107, 116, 111, 112] => lookup_866_38(acc), [102, 114, 111, 109, 45, 109, 101] => lookup_866_39(acc), [103, 97, 109, 101, 45, 104, 111, 115, 116] => lookup_866_40(acc), [103, 111, 116, 100, 110, 115] => lookup_866_41(acc), [104, 101, 112, 102, 111, 114, 103, 101] => lookup_866_42(acc), [104, 107] => lookup_866_43(acc), [104, 111, 98, 98, 121, 45, 115, 105, 116, 101] => lookup_866_44(acc), [104, 111, 109, 101, 100, 110, 115] => lookup_866_45(acc), [104, 111, 109, 101, 102, 116, 112] => lookup_866_46(acc), [104, 111, 109, 101, 108, 105, 110, 117, 120] => lookup_866_47(acc), [104, 111, 109, 101, 117, 110, 105, 120] => lookup_866_48(acc), [104, 111, 112, 116, 111] => lookup_866_49(acc), [104, 116, 116, 112, 98, 105, 110] => lookup_866_50(acc), [105, 110, 45, 100, 115, 108] => lookup_866_51(acc), [105, 110, 45, 118, 112, 110] => lookup_866_52(acc), [105, 115, 45, 97, 45, 98, 114, 117, 105, 110, 115, 102, 97, 110] => lookup_866_53(acc), [105, 115, 45, 97, 45, 99, 97, 110, 100, 105, 100, 97, 116, 101] => lookup_866_54(acc), [105, 115, 45, 97, 45, 99, 101, 108, 116, 105, 99, 115, 102, 97, 110] => { lookup_866_55(acc) } [105, 115, 45, 97, 45, 99, 104, 101, 102] => lookup_866_56(acc), [105, 115, 45, 97, 45, 103, 101, 101, 107] => lookup_866_57(acc), [105, 115, 45, 97, 45, 107, 110, 105, 103, 104, 116] => lookup_866_58(acc), [105, 115, 45, 97, 45, 108, 105, 110, 117, 120, 45, 117, 115, 101, 114] => { lookup_866_59(acc) } [105, 115, 45, 97, 45, 112, 97, 116, 115, 102, 97, 110] => lookup_866_60(acc), [105, 115, 45, 97, 45, 115, 111, 120, 102, 97, 110] => lookup_866_61(acc), [105, 115, 45, 102, 111, 117, 110, 100] => lookup_866_62(acc), [105, 115, 45, 108, 111, 115, 116] => lookup_866_63(acc), [105, 115, 45, 115, 97, 118, 101, 100] => lookup_866_64(acc), [105, 115, 45, 118, 101, 114, 121, 45, 98, 97, 100] => lookup_866_65(acc), [105, 115, 45, 118, 101, 114, 121, 45, 101, 118, 105, 108] => lookup_866_66(acc), [105, 115, 45, 118, 101, 114, 121, 45, 103, 111, 111, 100] => lookup_866_67(acc), [105, 115, 45, 118, 101, 114, 121, 45, 110, 105, 99, 101] => lookup_866_68(acc), [105, 115, 45, 118, 101, 114, 121, 45, 115, 119, 101, 101, 116] => lookup_866_69(acc), [105, 115, 97, 45, 103, 101, 101, 107] => lookup_866_70(acc), [106, 112, 110] => lookup_866_71(acc), [106, 115] => lookup_866_72(acc), [107, 105, 99, 107, 115, 45, 97, 115, 115] => lookup_866_73(acc), [109, 97, 121, 102, 105, 114, 115, 116] => lookup_866_74(acc), [109, 105, 115, 99, 111, 110, 102, 117, 115, 101, 100] => lookup_866_75(acc), [109, 108, 98, 102, 97, 110] => lookup_866_76(acc), [109, 111, 122, 105, 108, 108, 97, 45, 105, 111, 116] => lookup_866_77(acc), [109, 121, 45, 102, 105, 114, 101, 119, 97, 108, 108] => lookup_866_78(acc), [109, 121, 102, 105, 114, 101, 119, 97, 108, 108] => lookup_866_79(acc), [109, 121, 102, 116, 112] => lookup_866_80(acc), [109, 121, 115, 101, 99, 117, 114, 105, 116, 121, 99, 97, 109, 101, 114, 97] => { lookup_866_81(acc) } [109, 121, 119, 105, 114, 101] => lookup_866_82(acc), [110, 102, 108, 102, 97, 110] => lookup_866_83(acc), [110, 111, 45, 105, 112] => lookup_866_84(acc), [110, 111, 119, 45, 100, 110, 115] => lookup_866_85(acc), [112, 105, 109, 105, 101, 110, 116, 97] => lookup_866_86(acc), [112, 111, 100, 122, 111, 110, 101] => lookup_866_87(acc), [112, 111, 105, 118, 114, 111, 110] => lookup_866_88(acc), [112, 111, 116, 97, 103, 101, 114] => lookup_866_89(acc), [112, 117, 98, 116, 108, 115] => lookup_866_90(acc), [114, 101, 97, 100, 45, 98, 111, 111, 107, 115] => lookup_866_91(acc), [114, 101, 97, 100, 109, 121, 98, 108, 111, 103] => lookup_866_92(acc), [115, 101, 108, 102, 105, 112] => lookup_866_93(acc), [115, 101, 108, 108, 115, 121, 111, 117, 114, 104, 111, 109, 101] => lookup_866_94(acc), [115, 101, 114, 118, 101, 98, 98, 115] => lookup_866_95(acc), [115, 101, 114, 118, 101, 102, 116, 112] => lookup_866_96(acc), [115, 101, 114, 118, 101, 103, 97, 109, 101] => lookup_866_97(acc), [115, 109, 97, 108, 108, 45, 119, 101, 98] => lookup_866_98(acc), [115, 112, 100, 110, 115] => lookup_866_99(acc), [115, 116, 117, 102, 102, 45, 52, 45, 115, 97, 108, 101] => lookup_866_100(acc), [115, 119, 101, 101, 116, 112, 101, 112, 112, 101, 114] => lookup_866_101(acc), [116, 101, 99, 107, 105, 100, 115] => lookup_866_102(info, labels, acc), [116, 111, 111, 108, 102, 111, 114, 103, 101] => lookup_866_103(acc), [116, 117, 110, 107] => lookup_866_104(acc), [116, 117, 120, 102, 97, 109, 105, 108, 121] => lookup_866_105(acc), [116, 119, 109, 97, 105, 108] => lookup_866_106(acc), [117, 102, 99, 102, 97, 110] => lookup_866_107(acc), [117, 115] => lookup_866_108(acc), [119, 101, 98, 104, 111, 112] => lookup_866_109(acc), [119, 101, 98, 114, 101, 100, 105, 114, 101, 99, 116] => lookup_866_110(acc), [119, 109, 99, 108, 111, 117, 100] => lookup_866_111(acc), [119, 109, 102, 108, 97, 98, 115] => lookup_866_112(acc), [122, 97] => lookup_866_113(acc), [122, 97, 112, 116, 111] => lookup_866_114(acc), _ => info, }, None => info, } } #[inline] fn lookup_867() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_868() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_869() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_870() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_871() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_872_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_872<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 101, 114, 100, 112, 111, 108] => lookup_872_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_873_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_873<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98, 111] => lookup_873_0(acc), [97, 99] => lookup_873_1(acc), [99, 111, 109] => lookup_873_2(acc), [101, 100, 117] => lookup_873_3(acc), [103, 111, 98] => lookup_873_4(acc), [105, 110, 103] => lookup_873_5(acc), [109, 101, 100] => lookup_873_6(acc), [110, 101, 116] => lookup_873_7(acc), [110, 111, 109] => lookup_873_8(acc), [111, 114, 103] => lookup_873_9(acc), [115, 108, 100] => lookup_873_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_874_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_7(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_874_9(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_874<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 101, 109] => lookup_874_0(acc), [99, 111, 100, 101, 98, 101, 114, 103] => lookup_874_1(acc), [104, 108, 120] => lookup_874_2(acc), [104, 108, 120, 51] => lookup_874_3(acc), [109, 97, 103, 110, 101, 116] => lookup_874_4(acc), [112, 100, 110, 115] => lookup_874_5(acc), [112, 108, 101, 115, 107] => lookup_874_6(acc), [112, 114, 118, 99, 121] => lookup_874_7(acc), [114, 111, 99, 107, 121] => lookup_874_8(acc), [116, 114, 97, 110, 115, 108, 97, 116, 101, 100] => lookup_874_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_875() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_876() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_877() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_878() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_879() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_880_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_880<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [121, 98, 111] => lookup_880_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_881() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_882() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_883_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_883<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_883_0(acc), [99, 111, 109] => lookup_883_1(acc), [101, 100, 117] => lookup_883_2(acc), [103, 111, 98] => lookup_883_3(acc), [109, 105, 108] => lookup_883_4(acc), [110, 101, 116] => lookup_883_5(acc), [110, 111, 109] => lookup_883_6(acc), [111, 114, 103] => lookup_883_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_884() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_885_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_885_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_885_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_885<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_885_0(acc), [101, 100, 117] => lookup_885_1(acc), [111, 114, 103] => lookup_885_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_886() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_887_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_887<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { wild => lookup_887_0(wild, acc), }, None => info, } } #[inline] fn lookup_888_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_3(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_888<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_888_0(acc), [101, 100, 117] => lookup_888_1(acc), [103, 111, 118] => lookup_888_2(acc), [105] => lookup_888_3(acc), [109, 105, 108] => lookup_888_4(acc), [110, 101, 116] => lookup_888_5(acc), [110, 103, 111] => lookup_888_6(acc), [111, 114, 103] => lookup_888_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_889() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_890() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_891() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_892() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_893() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_894() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_895_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_895<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [102, 114, 97, 109, 101, 114] => lookup_895_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_896() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_897() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_898() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_899_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_899<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 51, 51, 55] => lookup_899_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_900() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_901() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_902() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_903() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_904() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_905_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_905<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 103, 114, 111, 107] => lookup_905_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_906_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_906<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_906_0(acc), [99, 111, 109] => lookup_906_1(acc), [101, 100, 117] => lookup_906_2(acc), [102, 97, 109] => lookup_906_3(acc), [103, 111, 98] => lookup_906_4(acc), [103, 111, 107] => lookup_906_5(acc), [103, 111, 110] => lookup_906_6(acc), [103, 111, 112] => lookup_906_7(acc), [103, 111, 115] => lookup_906_8(acc), [103, 111, 118] => lookup_906_9(acc), [105, 110, 102, 111] => lookup_906_10(acc), [110, 101, 116] => lookup_906_11(acc), [111, 114, 103] => lookup_906_12(acc), [119, 101, 98] => lookup_906_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_907_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_10(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_11(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_12(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_13(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_15(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_16(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_19(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_20(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_22(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_23(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_24(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_28(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_29(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_30(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_32(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_33(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_34(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_35(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_17(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_18(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_21(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_22(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_23(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_24(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_25(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_26(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_28(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_29(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_30(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_31(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_32(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_33(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_34(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_35(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_36(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_37(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_38(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_39(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_40(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_41(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_42(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_43(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_44(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_45(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_46(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_47(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_48(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_49(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_50(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_51(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_52(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_53(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36_54(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_36<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 112] => lookup_907_36_0(acc), [103, 114, 105, 119] => lookup_907_36_1(acc), [105, 99] => lookup_907_36_2(acc), [105, 115] => lookup_907_36_3(acc), [107, 109, 112, 115, 112] => lookup_907_36_4(acc), [107, 111, 110, 115, 117, 108, 97, 116] => lookup_907_36_5(acc), [107, 112, 112, 115, 112] => lookup_907_36_6(acc), [107, 119, 112] => lookup_907_36_7(acc), [107, 119, 112, 115, 112] => lookup_907_36_8(acc), [109, 117, 112] => lookup_907_36_9(acc), [109, 119] => lookup_907_36_10(acc), [111, 105, 97] => lookup_907_36_11(acc), [111, 105, 114, 109] => lookup_907_36_12(acc), [111, 107, 101] => lookup_907_36_13(acc), [111, 111, 119] => lookup_907_36_14(acc), [111, 115, 99, 104, 114] => lookup_907_36_15(acc), [111, 117, 109] => lookup_907_36_16(acc), [112, 97] => lookup_907_36_17(acc), [112, 105, 110, 98] => lookup_907_36_18(acc), [112, 105, 119] => lookup_907_36_19(acc), [112, 111] => lookup_907_36_20(acc), [112, 114] => lookup_907_36_21(acc), [112, 115, 112] => lookup_907_36_22(acc), [112, 115, 115, 101] => lookup_907_36_23(acc), [112, 117, 112] => lookup_907_36_24(acc), [114, 122, 103, 119] => lookup_907_36_25(acc), [115, 97] => lookup_907_36_26(acc), [115, 100, 110] => lookup_907_36_27(acc), [115, 107, 111] => lookup_907_36_28(acc), [115, 111] => lookup_907_36_29(acc), [115, 114] => lookup_907_36_30(acc), [115, 116, 97, 114, 111, 115, 116, 119, 111] => lookup_907_36_31(acc), [117, 103] => lookup_907_36_32(acc), [117, 103, 105, 109] => lookup_907_36_33(acc), [117, 109] => lookup_907_36_34(acc), [117, 109, 105, 103] => lookup_907_36_35(acc), [117, 112, 111, 119] => lookup_907_36_36(acc), [117, 112, 112, 111] => lookup_907_36_37(acc), [117, 115] => lookup_907_36_38(acc), [117, 119] => lookup_907_36_39(acc), [117, 122, 115] => lookup_907_36_40(acc), [119, 105, 102] => lookup_907_36_41(acc), [119, 105, 105, 104] => lookup_907_36_42(acc), [119, 105, 110, 98] => lookup_907_36_43(acc), [119, 105, 111, 115] => lookup_907_36_44(acc), [119, 105, 116, 100] => lookup_907_36_45(acc), [119, 105, 119] => lookup_907_36_46(acc), [119, 107, 122] => lookup_907_36_47(acc), [119, 115, 97] => lookup_907_36_48(acc), [119, 115, 107, 114] => lookup_907_36_49(acc), [119, 115, 115, 101] => lookup_907_36_50(acc), [119, 117, 111, 122] => lookup_907_36_51(acc), [119, 122, 109, 105, 117, 119] => lookup_907_36_52(acc), [122, 112] => lookup_907_36_53(acc), [122, 112, 105, 115, 100, 110] => lookup_907_36_54(acc), _ => info, }, None => info, } } #[inline] fn lookup_907_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_38(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_39(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_40(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_41(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_42(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_43(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_44(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_45(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_46(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_48(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_49(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_50(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_51(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_52(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_53(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_54(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_55(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_56(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_57(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_58(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_59(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_60(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_61(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_62(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_63(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_64(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_65(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_66(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_67(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_68(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_69(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_70(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_71(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_72(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_73(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_74(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_75(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_76(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_77(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_78(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_79(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_80(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_81(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_82(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_83(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_84(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_85(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_86(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_87(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_88(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_89(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_90(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_91(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_92(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_93(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_94(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_95(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_96(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_97(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_98(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_99(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_100(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_101(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_102(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_103(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_104(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_105(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_106(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_107(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_108(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_109(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_110(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_111(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_112(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_113(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_114(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_115(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_116(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_117(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_118(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_119(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_120(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_121(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_122(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_123(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_124(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_125(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_126(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_127(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_128(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_129(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_130(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_131(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_132(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_133(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_134(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_135(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_136(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_137(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_138(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_139(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_140(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_141(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_142(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_143(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_144(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_145(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_146(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_147(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_148(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_149(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_150(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_151(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_152(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_153(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_154(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_155(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_156(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_157(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_158(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_159(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_160(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_161(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_162(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_163(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_164(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_165(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_166(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_167(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_168(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_169(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_170(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_171(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_172(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_173(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_174(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_175(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_176(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_907_177(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_178(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907_179(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_907<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 103, 114, 111] => lookup_907_0(acc), [97, 105, 100] => lookup_907_1(acc), [97, 114, 116] => lookup_907_2(acc), [97, 116, 109] => lookup_907_3(acc), [97, 117, 103, 117, 115, 116, 111, 119] => lookup_907_4(acc), [97, 117, 116, 111] => lookup_907_5(acc), [98, 97, 98, 105, 97, 45, 103, 111, 114, 97] => lookup_907_6(acc), [98, 101, 100, 122, 105, 110] => lookup_907_7(acc), [98, 101, 101, 112] => lookup_907_8(acc), [98, 101, 115, 107, 105, 100, 121] => lookup_907_9(acc), [98, 105, 97, 108, 111, 119, 105, 101, 122, 97] => lookup_907_10(acc), [98, 105, 97, 108, 121, 115, 116, 111, 107] => lookup_907_11(acc), [98, 105, 101, 108, 97, 119, 97] => lookup_907_12(acc), [98, 105, 101, 115, 122, 99, 122, 97, 100, 121] => lookup_907_13(acc), [98, 105, 122] => lookup_907_14(acc), [98, 111, 108, 101, 115, 108, 97, 119, 105, 101, 99] => lookup_907_15(acc), [98, 121, 100, 103, 111, 115, 122, 99, 122] => lookup_907_16(acc), [98, 121, 116, 111, 109] => lookup_907_17(acc), [99, 105, 101, 115, 122, 121, 110] => lookup_907_18(acc), [99, 111] => lookup_907_19(acc), [99, 111, 109] => lookup_907_20(acc), [99, 122, 101, 108, 97, 100, 122] => lookup_907_21(acc), [99, 122, 101, 115, 116] => lookup_907_22(acc), [100, 108, 117, 103, 111, 108, 101, 107, 97] => lookup_907_23(acc), [101, 99, 111, 109, 109, 101, 114, 99, 101, 45, 115, 104, 111, 112] => { lookup_907_24(acc) } [101, 100, 117] => lookup_907_25(acc), [101, 108, 98, 108, 97, 103] => lookup_907_26(acc), [101, 108, 107] => lookup_907_27(acc), [103, 100, 97] => lookup_907_28(acc), [103, 100, 97, 110, 115, 107] => lookup_907_29(acc), [103, 100, 121, 110, 105, 97] => lookup_907_30(acc), [103, 108, 105, 119, 105, 99, 101] => lookup_907_31(acc), [103, 108, 111, 103, 111, 119] => lookup_907_32(acc), [103, 109, 105, 110, 97] => lookup_907_33(acc), [103, 110, 105, 101, 122, 110, 111] => lookup_907_34(acc), [103, 111, 114, 108, 105, 99, 101] => lookup_907_35(acc), [103, 111, 118] => lookup_907_36(labels, acc), [103, 114, 97, 106, 101, 119, 111] => lookup_907_37(acc), [103, 115, 109] => lookup_907_38(acc), [104, 111, 109, 101, 115, 107, 108, 101, 112] => lookup_907_39(acc), [105, 108, 97, 119, 97] => lookup_907_40(acc), [105, 110, 102, 111] => lookup_907_41(acc), [106, 97, 119, 111, 114, 122, 110, 111] => lookup_907_42(acc), [106, 101, 108, 101, 110, 105, 97, 45, 103, 111, 114, 97] => lookup_907_43(acc), [106, 103, 111, 114, 97] => lookup_907_44(acc), [107, 97, 108, 105, 115, 122] => lookup_907_45(acc), [107, 97, 114, 112, 97, 99, 122] => lookup_907_46(acc), [107, 97, 114, 116, 117, 122, 121] => lookup_907_47(acc), [107, 97, 115, 122, 117, 98, 121] => lookup_907_48(acc), [107, 97, 116, 111, 119, 105, 99, 101] => lookup_907_49(acc), [107, 97, 122, 105, 109, 105, 101, 114, 122, 45, 100, 111, 108, 110, 121] => { lookup_907_50(acc) } [107, 101, 112, 110, 111] => lookup_907_51(acc), [107, 101, 116, 114, 122, 121, 110] => lookup_907_52(acc), [107, 108, 111, 100, 122, 107, 111] => lookup_907_53(acc), [107, 111, 98, 105, 101, 114, 122, 121, 99, 101] => lookup_907_54(acc), [107, 111, 108, 111, 98, 114, 122, 101, 103] => lookup_907_55(acc), [107, 111, 110, 105, 110] => lookup_907_56(acc), [107, 111, 110, 115, 107, 111, 119, 111, 108, 97] => lookup_907_57(acc), [107, 114, 97, 107, 111, 119] => lookup_907_58(acc), [107, 114, 97, 115, 110, 105, 107] => lookup_907_59(acc), [107, 117, 116, 110, 111] => lookup_907_60(acc), [108, 97, 112, 121] => lookup_907_61(acc), [108, 101, 98, 111, 114, 107] => lookup_907_62(acc), [108, 101, 99, 122, 110, 97] => lookup_907_63(acc), [108, 101, 103, 110, 105, 99, 97] => lookup_907_64(acc), [108, 101, 122, 97, 106, 115, 107] => lookup_907_65(acc), [108, 105, 109, 97, 110, 111, 119, 97] => lookup_907_66(acc), [108, 111, 109, 122, 97] => lookup_907_67(acc), [108, 111, 119, 105, 99, 122] => lookup_907_68(acc), [108, 117, 98, 97, 114, 116, 111, 119] => lookup_907_69(acc), [108, 117, 98, 105, 110] => lookup_907_70(acc), [108, 117, 98, 108, 105, 110] => lookup_907_71(acc), [108, 117, 107, 111, 119] => lookup_907_72(acc), [109, 97, 105, 108] => lookup_907_73(acc), [109, 97, 108, 98, 111, 114, 107] => lookup_907_74(acc), [109, 97, 108, 111, 112, 111, 108, 115, 107, 97] => lookup_907_75(acc), [109, 97, 122, 111, 119, 115, 122, 101] => lookup_907_76(acc), [109, 97, 122, 117, 114, 121] => lookup_907_77(acc), [109, 101, 100] => lookup_907_78(acc), [109, 101, 100, 105, 97] => lookup_907_79(acc), [109, 105, 97, 115, 116, 97] => lookup_907_80(acc), [109, 105, 101, 108, 101, 99] => lookup_907_81(acc), [109, 105, 101, 108, 110, 111] => lookup_907_82(acc), [109, 105, 108] => lookup_907_83(acc), [109, 114, 97, 103, 111, 119, 111] => lookup_907_84(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_907_85(acc), [110, 97, 107, 108, 111] => lookup_907_86(acc), [110, 101, 116] => lookup_907_87(acc), [110, 105, 101, 114, 117, 99, 104, 111, 109, 111, 115, 99, 105] => lookup_907_88(acc), [110, 111, 109] => lookup_907_89(acc), [110, 111, 119, 97, 114, 117, 100, 97] => lookup_907_90(acc), [110, 121, 115, 97] => lookup_907_91(acc), [111, 108, 97, 119, 97] => lookup_907_92(acc), [111, 108, 101, 99, 107, 111] => lookup_907_93(acc), [111, 108, 107, 117, 115, 122] => lookup_907_94(acc), [111, 108, 115, 122, 116, 121, 110] => lookup_907_95(acc), [111, 112, 111, 99, 122, 110, 111] => lookup_907_96(acc), [111, 112, 111, 108, 101] => lookup_907_97(acc), [111, 114, 103] => lookup_907_98(acc), [111, 115, 116, 114, 111, 100, 97] => lookup_907_99(acc), [111, 115, 116, 114, 111, 108, 101, 107, 97] => lookup_907_100(acc), [111, 115, 116, 114, 111, 119, 105, 101, 99] => lookup_907_101(acc), [111, 115, 116, 114, 111, 119, 119, 108, 107, 112] => lookup_907_102(acc), [112, 99] => lookup_907_103(acc), [112, 105, 108, 97] => lookup_907_104(acc), [112, 105, 115, 122] => lookup_907_105(acc), [112, 111, 100, 104, 97, 108, 101] => lookup_907_106(acc), [112, 111, 100, 108, 97, 115, 105, 101] => lookup_907_107(acc), [112, 111, 108, 107, 111, 119, 105, 99, 101] => lookup_907_108(acc), [112, 111, 109, 111, 114, 115, 107, 105, 101] => lookup_907_109(acc), [112, 111, 109, 111, 114, 122, 101] => lookup_907_110(acc), [112, 111, 110, 105, 97, 116, 111, 119, 97] => lookup_907_111(acc), [112, 111, 119, 105, 97, 116] => lookup_907_112(acc), [112, 111, 122, 110, 97, 110] => lookup_907_113(acc), [112, 114, 105, 118] => lookup_907_114(acc), [112, 114, 111, 99, 104, 111, 119, 105, 99, 101] => lookup_907_115(acc), [112, 114, 117, 115, 122, 107, 111, 119] => lookup_907_116(acc), [112, 114, 122, 101, 119, 111, 114, 115, 107] => lookup_907_117(acc), [112, 117, 108, 97, 119, 121] => lookup_907_118(acc), [114, 97, 100, 111, 109] => lookup_907_119(acc), [114, 97, 119, 97, 45, 109, 97, 122] => lookup_907_120(acc), [114, 101, 97, 108, 101, 115, 116, 97, 116, 101] => lookup_907_121(acc), [114, 101, 108] => lookup_907_122(acc), [114, 121, 98, 110, 105, 107] => lookup_907_123(acc), [114, 122, 101, 115, 122, 111, 119] => lookup_907_124(acc), [115, 97, 110, 111, 107] => lookup_907_125(acc), [115, 100, 115, 99, 108, 111, 117, 100] => lookup_907_126(acc), [115, 101, 106, 110, 121] => lookup_907_127(acc), [115, 101, 120] => lookup_907_128(acc), [115, 104, 111, 112] => lookup_907_129(acc), [115, 104, 111, 112, 97, 114, 101, 110, 97] => lookup_907_130(acc), [115, 105, 109, 112, 108, 101, 115, 105, 116, 101] => lookup_907_131(acc), [115, 107, 108, 101, 112] => lookup_907_132(acc), [115, 107, 111, 99, 122, 111, 119] => lookup_907_133(acc), [115, 108, 97, 115, 107] => lookup_907_134(acc), [115, 108, 117, 112, 115, 107] => lookup_907_135(acc), [115, 111, 112, 111, 116] => lookup_907_136(acc), [115, 111, 115] => lookup_907_137(acc), [115, 111, 115, 110, 111, 119, 105, 101, 99] => lookup_907_138(acc), [115, 116, 97, 108, 111, 119, 97, 45, 119, 111, 108, 97] => lookup_907_139(acc), [115, 116, 97, 114, 97, 99, 104, 111, 119, 105, 99, 101] => lookup_907_140(acc), [115, 116, 97, 114, 103, 97, 114, 100] => lookup_907_141(acc), [115, 117, 119, 97, 108, 107, 105] => lookup_907_142(acc), [115, 119, 105, 100, 110, 105, 99, 97] => lookup_907_143(acc), [115, 119, 105, 100, 110, 105, 107] => lookup_907_144(acc), [115, 119, 105, 101, 98, 111, 100, 122, 105, 110] => lookup_907_145(acc), [115, 119, 105, 110, 111, 117, 106, 115, 99, 105, 101] => lookup_907_146(acc), [115, 122, 99, 122, 101, 99, 105, 110] => lookup_907_147(acc), [115, 122, 99, 122, 121, 116, 110, 111] => lookup_907_148(acc), [115, 122, 107, 111, 108, 97] => lookup_907_149(acc), [116, 97, 114, 103, 105] => lookup_907_150(acc), [116, 97, 114, 110, 111, 98, 114, 122, 101, 103] => lookup_907_151(acc), [116, 103, 111, 114, 121] => lookup_907_152(acc), [116, 109] => lookup_907_153(acc), [116, 111, 114, 117, 110] => lookup_907_154(acc), [116, 111, 117, 114, 105, 115, 109] => lookup_907_155(acc), [116, 114, 97, 118, 101, 108] => lookup_907_156(acc), [116, 117, 114, 101, 107] => lookup_907_157(acc), [116, 117, 114, 121, 115, 116, 121, 107, 97] => lookup_907_158(acc), [116, 121, 99, 104, 121] => lookup_907_159(acc), [117, 110, 105, 99, 108, 111, 117, 100] => lookup_907_160(acc), [117, 115, 116, 107, 97] => lookup_907_161(acc), [119, 97, 108, 98, 114, 122, 121, 99, 104] => lookup_907_162(acc), [119, 97, 114, 109, 105, 97] => lookup_907_163(acc), [119, 97, 114, 115, 122, 97, 119, 97] => lookup_907_164(acc), [119, 97, 119] => lookup_907_165(acc), [119, 101, 103, 114, 111, 119] => lookup_907_166(acc), [119, 105, 101, 108, 117, 110] => lookup_907_167(acc), [119, 108, 111, 99, 108] => lookup_907_168(acc), [119, 108, 111, 99, 108, 97, 119, 101, 107] => lookup_907_169(acc), [119, 111, 100, 122, 105, 115, 108, 97, 119] => lookup_907_170(acc), [119, 111, 108, 111, 109, 105, 110] => lookup_907_171(acc), [119, 114, 111, 99] => lookup_907_172(acc), [119, 114, 111, 99, 108, 97, 119] => lookup_907_173(acc), [122, 97, 99, 104, 112, 111, 109, 111, 114] => lookup_907_174(acc), [122, 97, 103, 97, 110] => lookup_907_175(acc), [122, 97, 107, 111, 112, 97, 110, 101] => lookup_907_176(acc), [122, 97, 114, 111, 119] => lookup_907_177(acc), [122, 103, 111, 114, 97] => lookup_907_178(acc), [122, 103, 111, 114, 122, 101, 108, 101, 99] => lookup_907_179(acc), _ => info, }, None => info, } } #[inline] fn lookup_908_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_908<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_908_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_909() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_910() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_911() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_912() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_913_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_913_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_913<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 97, 109, 101] => lookup_913_0(acc), [111, 119, 110] => lookup_913_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_914_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_914_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_914_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_914_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_914_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_914<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_914_0(acc), [101, 100, 117] => lookup_914_1(acc), [103, 111, 118] => lookup_914_2(acc), [110, 101, 116] => lookup_914_3(acc), [111, 114, 103] => lookup_914_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_915() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_916() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_917() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_918() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_919_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_919<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [105, 110, 100, 105, 101] => lookup_919_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_920() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_921<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_921_0(acc), [98, 105, 122] => lookup_921_1(acc), [99, 111, 109] => lookup_921_2(acc), [101, 100, 117] => lookup_921_3(acc), [101, 115, 116] => lookup_921_4(acc), [103, 111, 118] => lookup_921_5(acc), [105, 110, 102, 111] => lookup_921_6(acc), [105, 115, 108, 97] => lookup_921_7(acc), [110, 97, 109, 101] => lookup_921_8(acc), [110, 101, 116] => lookup_921_9(acc), [111, 114, 103] => lookup_921_10(acc), [112, 114, 111] => lookup_921_11(acc), [112, 114, 111, 102] => lookup_921_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_922() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_923() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_924() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_925() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_926_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_926_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_926_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_9_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_926_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [98, 99, 105] => lookup_926_9_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_926_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_926<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 99, 104, 97, 114, 115] => lookup_926_0(acc), [97, 97, 97] => lookup_926_1(acc), [97, 99, 97] => lookup_926_2(acc), [97, 99, 99, 116] => lookup_926_3(acc), [97, 118, 111, 99, 97, 116] => lookup_926_4(acc), [98, 97, 114] => lookup_926_5(acc), [98, 97, 114, 115, 121] => lookup_926_6(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_926_7(acc), [99, 112, 97] => lookup_926_8(acc), [100, 110, 115, 116, 114, 97, 99, 101] => lookup_926_9(info, labels, acc), [101, 110, 103] => lookup_926_10(acc), [106, 117, 114] => lookup_926_11(acc), [108, 97, 119] => lookup_926_12(acc), [109, 101, 100] => lookup_926_13(acc), [114, 101, 99, 104, 116] => lookup_926_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_927() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_928() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_929() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_930() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_931() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_932() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_933() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_934() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_935() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_936() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_937<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_937_0(acc), [101, 100, 117] => lookup_937_1(acc), [103, 111, 118] => lookup_937_2(acc), [110, 101, 116] => lookup_937_3(acc), [111, 114, 103] => lookup_937_4(acc), [112, 108, 111] => lookup_937_5(acc), [115, 101, 99] => lookup_937_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_938_0(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_938_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_938_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_938<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 112, 97, 103, 105, 110, 97, 119, 101, 98] => lookup_938_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_938_1(acc), [99, 111, 109] => lookup_938_2(acc), [101, 100, 117] => lookup_938_3(acc), [103, 111, 118] => lookup_938_4(acc), [105, 110, 116] => lookup_938_5(acc), [110, 101, 116] => lookup_938_6(acc), [110, 111, 109, 101] => lookup_938_7(acc), [111, 114, 103] => lookup_938_8(acc), [112, 117, 98, 108] => lookup_938_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_939_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_939_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_939_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; match labels.next() { Some(label) => match label { wild => lookup_939_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_939_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_939_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_939_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_939<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_939_0(acc), [105, 100] => lookup_939_1(info, labels, acc), [107, 105, 110] => lookup_939_2(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_940_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_940_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_940_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_940_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_940_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_940_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_940_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_940_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_940<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101, 108, 97, 117] => lookup_940_0(acc), [99, 108, 111, 117, 100, 110, 115] => lookup_940_1(acc), [99, 111] => lookup_940_2(acc), [101, 100] => lookup_940_3(acc), [103, 111] => lookup_940_4(acc), [110, 101] => lookup_940_5(acc), [111, 114] => lookup_940_6(acc), [120, 52, 52, 51] => lookup_940_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_941() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_942<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_942_0(acc), [99, 111, 111, 112] => lookup_942_1(acc), [101, 100, 117] => lookup_942_2(acc), [103, 111, 118] => lookup_942_3(acc), [109, 105, 108] => lookup_942_4(acc), [110, 101, 116] => lookup_942_5(acc), [111, 114, 103] => lookup_942_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_943_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_943_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_943<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_943_0(acc), [99, 111, 109] => lookup_943_1(acc), [101, 100, 117] => lookup_943_2(acc), [103, 111, 118] => lookup_943_3(acc), [109, 105, 108] => lookup_943_4(acc), [110, 97, 109, 101] => lookup_943_5(acc), [110, 101, 116] => lookup_943_6(acc), [111, 114, 103] => lookup_943_7(acc), [115, 99, 104] => lookup_943_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_944() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_945() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_946() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_947() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_948() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_949_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_949_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_949_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_949_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_949<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 115, 115, 111] => lookup_949_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_949_1(acc), [99, 111, 109] => lookup_949_2(acc), [110, 111, 109] => lookup_949_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_950() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_951() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_952() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_953() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_954() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_955() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_956() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_957() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_958() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_959() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_960() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_961() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_962() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_963() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_964() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_965() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_966() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_967() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_968() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_969() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_970() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_971_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_971<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [121, 98, 111] => lookup_971_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_972() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_973() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_974() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_975() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_976() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_977() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_978() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_979_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_979<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 97, 110] => lookup_979_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_980_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_980_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_980_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_980_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_11(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_980_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_980<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116, 115] => lookup_980_0(acc), [98, 97, 114, 115, 121] => lookup_980_1(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_980_2(acc), [99, 111] => lookup_980_3(acc), [99, 111, 109] => lookup_980_4(acc), [102, 105, 114, 109] => lookup_980_5(acc), [105, 110, 102, 111] => lookup_980_6(acc), [110, 111, 109] => lookup_980_7(acc), [110, 116] => lookup_980_8(acc), [111, 114, 103] => lookup_980_9(acc), [114, 101, 99] => lookup_980_10(acc), [115, 104, 111, 112] => lookup_980_11(acc), [115, 116, 111, 114, 101] => lookup_980_12(acc), [116, 109] => lookup_980_13(acc), [119, 119, 119] => lookup_980_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_981_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_981_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_981_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_981<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [108, 105, 109, 97, 45, 99, 105, 116, 121] => lookup_981_0(acc), [109, 121, 100, 100, 110, 115] => lookup_981_1(acc), [119, 101, 98, 115, 112, 97, 99, 101] => lookup_981_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_982() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_983() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_984() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_985_2_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_985_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [115, 104, 111, 112] => lookup_985_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_985_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_985_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_985_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_985<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_985_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_985_1(acc), [98, 114, 101, 110, 100, 108, 121] => lookup_985_2(info, labels, acc), [99, 111] => lookup_985_3(acc), [101, 100, 117] => lookup_985_4(acc), [103, 111, 118] => lookup_985_5(acc), [105, 110] => lookup_985_6(acc), [111, 114, 103] => lookup_985_7(acc), [111, 120] => lookup_985_8(acc), [117, 97] => lookup_985_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_986() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_987_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_7_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_7<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { [104, 98] => lookup_987_7_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_987_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_15(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_19_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_19<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [118, 112, 115] => lookup_987_19_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_987_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_21(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_23(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_24(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_25_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_987_25_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_987_25_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_987_25_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_987_25_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_987_25_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_987_25_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_987_25_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_987_25_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_987_25_3_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_987_25_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_987_25_3_0(wild, acc), }, None => info, } } #[inline] fn lookup_987_25<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [104, 111, 115, 116, 105, 110, 103] => lookup_987_25_0(info, labels, acc), [108, 97, 110, 100, 105, 110, 103] => lookup_987_25_1(info, labels, acc), [115, 112, 101, 99, 116, 114, 117, 109] => lookup_987_25_2(info, labels, acc), [118, 112, 115] => lookup_987_25_3(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_987_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_27(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_29(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_30(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_31(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_32(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_33(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_34(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_35_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_35<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [106, 101, 108, 97, 115, 116, 105, 99] => lookup_987_35_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_987_36(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_37(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_38(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_987_39(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_987<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 115, 97, 105, 116] => lookup_987_0(acc), [97, 99] => lookup_987_1(acc), [97, 100, 121, 103, 101, 121, 97] => lookup_987_2(acc), [98, 97, 115, 104, 107, 105, 114, 105, 97] => lookup_987_3(acc), [98, 105, 114] => lookup_987_4(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_987_5(acc), [99, 98, 103] => lookup_987_6(acc), [99, 108, 100, 109, 97, 105, 108] => lookup_987_7(info, labels, acc), [99, 111, 109] => lookup_987_8(acc), [100, 97, 103, 101, 115, 116, 97, 110] => lookup_987_9(acc), [101, 100, 117] => lookup_987_10(acc), [101, 117, 114, 111, 100, 105, 114] => lookup_987_11(acc), [103, 111, 118] => lookup_987_12(acc), [103, 114, 111, 122, 110, 121] => lookup_987_13(acc), [105, 110, 116] => lookup_987_14(acc), [107, 97, 108, 109, 121, 107, 105, 97] => lookup_987_15(acc), [107, 117, 115, 116, 97, 110, 97, 105] => lookup_987_16(acc), [108, 107, 51] => lookup_987_17(acc), [109, 97, 114, 105, 110, 101] => lookup_987_18(acc), [109, 99, 100, 105, 114] => lookup_987_19(labels, acc), [109, 99, 112, 114, 101] => lookup_987_20(acc), [109, 105, 108] => lookup_987_21(acc), [109, 105, 114, 99, 108, 111, 117, 100] => lookup_987_22(acc), [109, 111, 114, 100, 111, 118, 105, 97] => lookup_987_23(acc), [109, 115, 107] => lookup_987_24(acc), [109, 121, 106, 105, 110, 111] => lookup_987_25(labels, acc), [109, 121, 116, 105, 115] => lookup_987_26(acc), [110, 97, 52, 117] => lookup_987_27(acc), [110, 97, 108, 99, 104, 105, 107] => lookup_987_28(acc), [110, 101, 116] => lookup_987_29(acc), [110, 111, 118] => lookup_987_30(acc), [111, 114, 103] => lookup_987_31(acc), [112, 112] => lookup_987_32(acc), [112, 121, 97, 116, 105, 103, 111, 114, 115, 107] => lookup_987_33(acc), [114, 97, 115] => lookup_987_34(acc), [114, 101, 103, 114, 117, 104, 111, 115, 116, 105, 110, 103] => { lookup_987_35(info, labels, acc) } [115, 112, 98] => lookup_987_36(acc), [116, 101, 115, 116] => lookup_987_37(acc), [118, 108, 97, 100, 105, 107, 97, 118, 107, 97, 122] => lookup_987_38(acc), [118, 108, 97, 100, 105, 109, 105, 114] => lookup_987_39(acc), _ => info, }, None => info, } } #[inline] fn lookup_988() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_989() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_990_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_990_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_990_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_990_1_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_990_1<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { wild => lookup_990_1_0(wild, acc), }, None => info, } } #[inline] fn lookup_990_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_990_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_990_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_990_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_990_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_990_5_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_990_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { wild => lookup_990_5_0(wild, acc), }, None => info, } } #[inline] fn lookup_990_6(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_990_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_990_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_990_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_990_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_990<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 117, 105, 108, 100] => lookup_990_0(info, labels, acc), [99, 111, 100, 101] => lookup_990_1(info, labels, acc), [100, 97, 116, 97, 98, 97, 115, 101] => lookup_990_2(info, labels, acc), [100, 101, 118, 101, 108, 111, 112, 109, 101, 110, 116] => lookup_990_3(acc), [104, 115] => lookup_990_4(acc), [109, 105, 103, 114, 97, 116, 105, 111, 110] => lookup_990_5(info, labels, acc), [111, 110, 112, 111, 114, 116, 101, 114] => lookup_990_6(acc), [114, 97, 118, 101, 110, 100, 98] => lookup_990_7(acc), [114, 101, 112, 108] => lookup_990_8(acc), [115, 101, 114, 118, 101, 114, 115] => lookup_990_9(acc), [119, 105, 120] => lookup_990_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_991_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_991<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_991_0(acc), [99, 111] => lookup_991_1(acc), [99, 111, 111, 112] => lookup_991_2(acc), [103, 111, 118] => lookup_991_3(acc), [109, 105, 108] => lookup_991_4(acc), [110, 101, 116] => lookup_991_5(acc), [111, 114, 103] => lookup_991_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_992() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_993() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_994<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_994_0(acc), [101, 100, 117] => lookup_994_1(acc), [103, 111, 118] => lookup_994_2(acc), [109, 101, 100] => lookup_994_3(acc), [110, 101, 116] => lookup_994_4(acc), [111, 114, 103] => lookup_994_5(acc), [112, 117, 98] => lookup_994_6(acc), [115, 99, 104] => lookup_994_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_995() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_996() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_997() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_998() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_999() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1000() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1001() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1002() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1003() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1004() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1005() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1006() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1007() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1008() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1009() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1010() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1011_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1011_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1011_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1011_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1011_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1011<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1011_0(acc), [101, 100, 117] => lookup_1011_1(acc), [103, 111, 118] => lookup_1011_2(acc), [110, 101, 116] => lookup_1011_3(acc), [111, 114, 103] => lookup_1011_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1012() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1013() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1014_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1014_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1014_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1014_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1014_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1014<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1014_0(acc), [101, 100, 117] => lookup_1014_1(acc), [103, 111, 118] => lookup_1014_2(acc), [110, 101, 116] => lookup_1014_3(acc), [111, 114, 103] => lookup_1014_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1015() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1016() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1017() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1018() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1019() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1020() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1021() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1022_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1022<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [121, 98, 111] => lookup_1022_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1023_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1023_1_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1023_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [115, 101, 114, 118, 105, 99, 101] => lookup_1023_1_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1023<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [101, 100, 117] => lookup_1023_0(acc), [103, 111, 118] => lookup_1023_1(labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_1024_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1024<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1024_0(acc), [101, 100, 117] => lookup_1024_1(acc), [103, 111, 118] => lookup_1024_2(acc), [105, 110, 102, 111] => lookup_1024_3(acc), [109, 101, 100] => lookup_1024_4(acc), [110, 101, 116] => lookup_1024_5(acc), [111, 114, 103] => lookup_1024_6(acc), [116, 118] => lookup_1024_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1025_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_1(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_3(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_7(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_10(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_11(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_12(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_14(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_16(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_17(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_18(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_20(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_21(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_22(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_23(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_24(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_25(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_27(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_28(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_29(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_30(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_31(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_32(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_33(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_34_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1025_34<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 4usize; match labels.next() { Some(label) => match label { [115, 117] => lookup_1025_34_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1025_35(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_36(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_37(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_38(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_39(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_40(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_41(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_42(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_43(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_44(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_45(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025_46(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1025<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [49, 50, 51, 109, 105, 110, 115, 105, 100, 97] => lookup_1025_0(acc), [97] => lookup_1025_1(acc), [97, 99] => lookup_1025_2(acc), [98] => lookup_1025_3(acc), [98, 100] => lookup_1025_4(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1025_5(acc), [98, 114, 97, 110, 100] => lookup_1025_6(acc), [99] => lookup_1025_7(acc), [99, 111, 109] => lookup_1025_8(acc), [99, 111, 110, 102] => lookup_1025_9(acc), [100] => lookup_1025_10(acc), [101] => lookup_1025_11(acc), [102] => lookup_1025_12(acc), [102, 104] => lookup_1025_13(acc), [102, 104, 115, 107] => lookup_1025_14(acc), [102, 104, 118] => lookup_1025_15(acc), [103] => lookup_1025_16(acc), [104] => lookup_1025_17(acc), [105] => lookup_1025_18(acc), [105, 111, 112, 115, 121, 115] => lookup_1025_19(acc), [105, 116, 99, 111, 117, 108, 100, 98, 101, 119, 111, 114] => lookup_1025_20(acc), [107] => lookup_1025_21(acc), [107, 111, 109, 102, 111, 114, 98] => lookup_1025_22(acc), [107, 111, 109, 109, 117, 110, 97, 108, 102, 111, 114, 98, 117, 110, 100] => { lookup_1025_23(acc) } [107, 111, 109, 118, 117, 120] => lookup_1025_24(acc), [108] => lookup_1025_25(acc), [108, 97, 110, 98, 105, 98] => lookup_1025_26(acc), [109] => lookup_1025_27(acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_1025_28(acc), [110] => lookup_1025_29(acc), [110, 97, 116, 117, 114, 98, 114, 117, 107, 115, 103, 121, 109, 110] => { lookup_1025_30(acc) } [111] => lookup_1025_31(acc), [111, 114, 103] => lookup_1025_32(acc), [112] => lookup_1025_33(acc), [112, 97, 98, 97] => lookup_1025_34(info, labels, acc), [112, 97, 114, 116, 105] => lookup_1025_35(acc), [112, 112] => lookup_1025_36(acc), [112, 114, 101, 115, 115] => lookup_1025_37(acc), [114] => lookup_1025_38(acc), [115] => lookup_1025_39(acc), [116] => lookup_1025_40(acc), [116, 109] => lookup_1025_41(acc), [117] => lookup_1025_42(acc), [119] => lookup_1025_43(acc), [120] => lookup_1025_44(acc), [121] => lookup_1025_45(acc), [122] => lookup_1025_46(acc), _ => info, }, None => info, } } #[inline] fn lookup_1026() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1027() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1028() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1029() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1030() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1031() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1032() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1033_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1033<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 8usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [108, 111, 103, 105, 110, 108, 105, 110, 101] => lookup_1033_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1034() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1035() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1036() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1037() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1038() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1039_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1039_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1039<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1039_0(acc), [99, 111, 109] => lookup_1039_1(acc), [101, 100, 117] => lookup_1039_2(acc), [101, 110, 115, 99, 97, 108, 101, 100] => lookup_1039_3(acc), [103, 111, 118] => lookup_1039_4(acc), [110, 101, 116] => lookup_1039_5(acc), [111, 114, 103] => lookup_1039_6(acc), [112, 101, 114] => lookup_1039_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1040_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1040_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1040_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1040_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1040_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1040_8_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_8_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_8_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_8<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [101, 110, 116] => lookup_1040_8_0(acc), [101, 117] => lookup_1040_8_1(acc), [117, 115] => lookup_1040_8_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1040_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1040<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 112] => lookup_1040_0(acc), [99, 111, 109] => lookup_1040_1(acc), [103, 111, 118] => lookup_1040_2(acc), [104, 97, 115, 104, 98, 97, 110, 103] => lookup_1040_3(acc), [109, 105, 108] => lookup_1040_4(acc), [110, 101, 116] => lookup_1040_5(acc), [110, 111, 119] => lookup_1040_6(acc), [111, 114, 103] => lookup_1040_7(acc), [112, 108, 97, 116, 102, 111, 114, 109] => lookup_1040_8(info, labels, acc), [118, 120, 108] => lookup_1040_9(acc), [119, 101, 100, 101, 112, 108, 111, 121] => lookup_1040_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_1041() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1042() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1043() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1044() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1045() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1046() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1047() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1048_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1048_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1048_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1048<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_1048_0(acc), [98, 97, 115, 101] => lookup_1048_1(acc), [104, 111, 112, 108, 105, 120] => lookup_1048_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1049() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1050() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1051() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1052_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1052_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1052_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1052<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1052_0(acc), [103, 105, 116, 97, 112, 112] => lookup_1052_1(acc), [103, 105, 116, 112, 97, 103, 101] => lookup_1052_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1053() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1054() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1055() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1056_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_2_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1056_2<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { wild => lookup_1056_2_0(wild, acc), }, None => info, } } #[inline] fn lookup_1056_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_6(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_9(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_12(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_13(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_14_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1056_14<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { wild => lookup_1056_14_0(wild, acc), }, None => info, } } #[inline] fn lookup_1056_15(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1056_16_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1056_16<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_1056_16_0(wild, acc), }, None => info, } } #[inline] fn lookup_1056<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_1056_0(acc), [98, 121, 101, 110] => lookup_1056_1(acc), [99, 108, 111, 117, 100, 101, 114, 97] => lookup_1056_2(info, labels, acc), [99, 121, 111, 110] => lookup_1056_3(acc), [102, 97, 115, 116, 118, 112, 115] => lookup_1056_4(acc), [102, 110, 119, 107] => lookup_1056_5(acc), [102, 111, 108, 105, 111, 110, 101, 116, 119, 111, 114, 107] => lookup_1056_6(acc), [106, 101, 108, 101] => lookup_1056_7(acc), [108, 101, 108, 117, 120] => lookup_1056_8(acc), [108, 111, 103, 105, 110, 108, 105, 110, 101] => lookup_1056_9(acc), [109, 105, 110, 116, 101, 114, 101] => lookup_1056_10(acc), [110, 111, 118, 101, 99, 111, 114, 101] => lookup_1056_11(acc), [111, 109, 110, 105, 119, 101] => lookup_1056_12(acc), [111, 112, 101, 110, 115, 111, 99, 105, 97, 108] => lookup_1056_13(acc), [112, 108, 97, 116, 102, 111, 114, 109, 115, 104] => lookup_1056_14(info, labels, acc), [115, 114, 104, 116] => lookup_1056_15(acc), [116, 115, 116] => lookup_1056_16(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_1057() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1058_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1058<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1058_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1059() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1060() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1061() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1062() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1063_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1063_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1063_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1063_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1063_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1063<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1063_0(acc), [101, 100, 117] => lookup_1063_1(acc), [103, 111, 118] => lookup_1063_2(acc), [110, 101, 116] => lookup_1063_3(acc), [111, 114, 103] => lookup_1063_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1064() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1065() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1066() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1067() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1068_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_6(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1068<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116] => lookup_1068_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1068_1(acc), [99, 111, 109] => lookup_1068_2(acc), [101, 100, 117] => lookup_1068_3(acc), [103, 111, 117, 118] => lookup_1068_4(acc), [111, 114, 103] => lookup_1068_5(acc), [112, 101, 114, 115, 111] => lookup_1068_6(acc), [117, 110, 105, 118] => lookup_1068_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1069() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1070_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1070<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1070_0(acc), [101, 100, 117] => lookup_1070_1(acc), [103, 111, 118] => lookup_1070_2(acc), [109, 101] => lookup_1070_3(acc), [110, 101, 116] => lookup_1070_4(acc), [111, 114, 103] => lookup_1070_5(acc), [115, 99, 104] => lookup_1070_6(acc), _ => info, }, None => info, } } #[inline] fn lookup_1071() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1072() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1073() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1074() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1075() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1076() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1077_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1077_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 5usize; match labels.next() { Some(label) => match label { wild => lookup_1077_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_1077<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [100, 105, 104, 101, 114] => lookup_1077_0(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_1078() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1079() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1080() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1081() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1082_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1082_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1082_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1082<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [109, 121, 102, 97, 115, 116] => lookup_1082_0(acc), [117, 98, 101, 114] => lookup_1082_1(acc), [120, 115, 52, 97, 108, 108] => lookup_1082_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1083() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1084() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1085() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1086() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1087<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_1087_0(acc), [99, 111, 109] => lookup_1087_1(acc), [101, 100, 117] => lookup_1087_2(acc), [103, 111, 118] => lookup_1087_3(acc), [109, 101] => lookup_1087_4(acc), [110, 101, 116] => lookup_1087_5(acc), [111, 114, 103] => lookup_1087_6(acc), [115, 99, 104] => lookup_1087_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1088_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1088_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1088_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_10(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1088<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_1088_0(acc), [99, 111, 109] => lookup_1088_1(acc), [99, 111, 110, 115, 117, 108, 97, 100, 111] => lookup_1088_2(acc), [101, 100, 117] => lookup_1088_3(acc), [101, 109, 98, 97, 105, 120, 97, 100, 97] => lookup_1088_4(acc), [107, 105, 114, 97, 114, 97] => lookup_1088_5(acc), [109, 105, 108] => lookup_1088_6(acc), [110, 101, 116] => lookup_1088_7(acc), [110, 111, 104, 111] => lookup_1088_8(acc), [111, 114, 103] => lookup_1088_9(acc), [112, 114, 105, 110, 99, 105, 112, 101] => lookup_1088_10(acc), [115, 97, 111, 116, 111, 109, 101] => lookup_1088_11(acc), [115, 116, 111, 114, 101] => lookup_1088_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_1089() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1090() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1091() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1092() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1093() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1094() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1095() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1096() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1097() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1098_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1098_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1098_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1098<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [115, 101, 108, 108, 102, 121] => lookup_1098_0(acc), [115, 104, 111, 112, 119, 97, 114, 101] => lookup_1098_1(acc), [115, 116, 111, 114, 101, 98, 97, 115, 101] => lookup_1098_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1099() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1100() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1101() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1102() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1103_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_4(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_5(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_8(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_9(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_10(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_11(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_12(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_13(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_14(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_15(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_17(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_19(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_20(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_21(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_22(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_24(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_25(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_27(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_28(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_29(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_31(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_32(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_33(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_34(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_35(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_36(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_38(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_39(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_40(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_41(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_42(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_43(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_44(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_45(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_46(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_47(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_48(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_49(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_50(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103_51(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1103<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 98, 107, 104, 97, 122, 105, 97] => lookup_1103_0(acc), [97, 100, 121, 103, 101, 121, 97] => lookup_1103_1(acc), [97, 107, 116, 121, 117, 98, 105, 110, 115, 107] => lookup_1103_2(acc), [97, 114, 107, 104, 97, 110, 103, 101, 108, 115, 107] => lookup_1103_3(acc), [97, 114, 109, 101, 110, 105, 97] => lookup_1103_4(acc), [97, 115, 104, 103, 97, 98, 97, 100] => lookup_1103_5(acc), [97, 122, 101, 114, 98, 97, 105, 106, 97, 110] => lookup_1103_6(acc), [98, 97, 108, 97, 115, 104, 111, 118] => lookup_1103_7(acc), [98, 97, 115, 104, 107, 105, 114, 105, 97] => lookup_1103_8(acc), [98, 114, 121, 97, 110, 115, 107] => lookup_1103_9(acc), [98, 117, 107, 104, 97, 114, 97] => lookup_1103_10(acc), [99, 104, 105, 109, 107, 101, 110, 116] => lookup_1103_11(acc), [100, 97, 103, 101, 115, 116, 97, 110] => lookup_1103_12(acc), [101, 97, 115, 116, 45, 107, 97, 122, 97, 107, 104, 115, 116, 97, 110] => { lookup_1103_13(acc) } [101, 120, 110, 101, 116] => lookup_1103_14(acc), [103, 101, 111, 114, 103, 105, 97] => lookup_1103_15(acc), [103, 114, 111, 122, 110, 121] => lookup_1103_16(acc), [105, 118, 97, 110, 111, 118, 111] => lookup_1103_17(acc), [106, 97, 109, 98, 121, 108] => lookup_1103_18(acc), [107, 97, 108, 109, 121, 107, 105, 97] => lookup_1103_19(acc), [107, 97, 108, 117, 103, 97] => lookup_1103_20(acc), [107, 97, 114, 97, 99, 111, 108] => lookup_1103_21(acc), [107, 97, 114, 97, 103, 97, 110, 100, 97] => lookup_1103_22(acc), [107, 97, 114, 101, 108, 105, 97] => lookup_1103_23(acc), [107, 104, 97, 107, 97, 115, 115, 105, 97] => lookup_1103_24(acc), [107, 114, 97, 115, 110, 111, 100, 97, 114] => lookup_1103_25(acc), [107, 117, 114, 103, 97, 110] => lookup_1103_26(acc), [107, 117, 115, 116, 97, 110, 97, 105] => lookup_1103_27(acc), [108, 101, 110, 117, 103] => lookup_1103_28(acc), [109, 97, 110, 103, 121, 115, 104, 108, 97, 107] => lookup_1103_29(acc), [109, 111, 114, 100, 111, 118, 105, 97] => lookup_1103_30(acc), [109, 115, 107] => lookup_1103_31(acc), [109, 117, 114, 109, 97, 110, 115, 107] => lookup_1103_32(acc), [110, 97, 108, 99, 104, 105, 107] => lookup_1103_33(acc), [110, 97, 118, 111, 105] => lookup_1103_34(acc), [110, 111, 114, 116, 104, 45, 107, 97, 122, 97, 107, 104, 115, 116, 97, 110] => { lookup_1103_35(acc) } [110, 111, 118] => lookup_1103_36(acc), [111, 98, 110, 105, 110, 115, 107] => lookup_1103_37(acc), [112, 101, 110, 122, 97] => lookup_1103_38(acc), [112, 111, 107, 114, 111, 118, 115, 107] => lookup_1103_39(acc), [115, 111, 99, 104, 105] => lookup_1103_40(acc), [115, 112, 98] => lookup_1103_41(acc), [116, 97, 115, 104, 107, 101, 110, 116] => lookup_1103_42(acc), [116, 101, 114, 109, 101, 122] => lookup_1103_43(acc), [116, 111, 103, 108, 105, 97, 116, 116, 105] => lookup_1103_44(acc), [116, 114, 111, 105, 116, 115, 107] => lookup_1103_45(acc), [116, 115, 101, 108, 105, 110, 111, 103, 114, 97, 100] => lookup_1103_46(acc), [116, 117, 108, 97] => lookup_1103_47(acc), [116, 117, 118, 97] => lookup_1103_48(acc), [118, 108, 97, 100, 105, 107, 97, 118, 107, 97, 122] => lookup_1103_49(acc), [118, 108, 97, 100, 105, 109, 105, 114] => lookup_1103_50(acc), [118, 111, 108, 111, 103, 100, 97] => lookup_1103_51(acc), _ => info, }, None => info, } } #[inline] fn lookup_1104() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1105() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1106() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1107_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1107<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 97, 114, 115, 121] => lookup_1107_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1108() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1109() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1110() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1111_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1111_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1111_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1111_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1111_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1111<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1111_0(acc), [101, 100, 117] => lookup_1111_1(acc), [103, 111, 98] => lookup_1111_2(acc), [111, 114, 103] => lookup_1111_3(acc), [114, 101, 100] => lookup_1111_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1112() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1113() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1114_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1114<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 111, 118] => lookup_1114_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1115_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1115_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1115_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1115_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1115_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1115_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1115<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1115_0(acc), [101, 100, 117] => lookup_1115_1(acc), [103, 111, 118] => lookup_1115_2(acc), [109, 105, 108] => lookup_1115_3(acc), [110, 101, 116] => lookup_1115_4(acc), [111, 114, 103] => lookup_1115_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1116() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1117_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1117<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [107, 110, 105, 103, 104, 116, 112, 111, 105, 110, 116] => lookup_1117_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1118_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1118_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1118_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1118<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1118_0(acc), [99, 111] => lookup_1118_1(acc), [111, 114, 103] => lookup_1118_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1119() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1120() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1121() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1122() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1123() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1124() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1125() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1126() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1127() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1128() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1129_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1129_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1129_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1129<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 104] => lookup_1129_0(acc), [109, 101] => lookup_1129_1(acc), [119, 101] => lookup_1129_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1130() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1131_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1131<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1131_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1132() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1133_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1133_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1133<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [100, 105, 115, 99, 111, 117, 114, 115, 101] => lookup_1133_0(acc), [106, 101, 108, 97, 115, 116, 105, 99] => lookup_1133_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1134() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1135_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1135<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 10usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_1135_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1136() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1137() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1138() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1139() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1140_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1140<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [115, 99, 104] => lookup_1140_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1141() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_3(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1142_7(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1142_8(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1142<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1142_0(acc), [99, 111] => lookup_1142_1(acc), [103, 111] => lookup_1142_2(acc), [105, 110] => lookup_1142_3(acc), [109, 105] => lookup_1142_4(acc), [110, 101, 116] => lookup_1142_5(acc), [111, 110, 108, 105, 110, 101] => lookup_1142_6(acc), [111, 114] => lookup_1142_7(acc), [115, 104, 111, 112] => lookup_1142_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_1143() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1144() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1145() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1146() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1147() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1148() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1149() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1150() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1151() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1152<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1152_0(acc), [98, 105, 122] => lookup_1152_1(acc), [99, 111] => lookup_1152_2(acc), [99, 111, 109] => lookup_1152_3(acc), [101, 100, 117] => lookup_1152_4(acc), [103, 111] => lookup_1152_5(acc), [103, 111, 118] => lookup_1152_6(acc), [105, 110, 116] => lookup_1152_7(acc), [109, 105, 108] => lookup_1152_8(acc), [110, 97, 109, 101] => lookup_1152_9(acc), [110, 101, 116] => lookup_1152_10(acc), [110, 105, 99] => lookup_1152_11(acc), [111, 114, 103] => lookup_1152_12(acc), [116, 101, 115, 116] => lookup_1152_13(acc), [119, 101, 98] => lookup_1152_14(acc), _ => info, }, None => info, } } #[inline] fn lookup_1153() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1154() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1155() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1156() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1157_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1157<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 111, 118] => lookup_1157_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1158_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1158<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_1158_0(acc), [99, 111, 109] => lookup_1158_1(acc), [101, 100, 117] => lookup_1158_2(acc), [103, 111, 118] => lookup_1158_3(acc), [109, 105, 108] => lookup_1158_4(acc), [110, 101, 116] => lookup_1158_5(acc), [110, 111, 109] => lookup_1158_6(acc), [111, 114, 103] => lookup_1158_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1159() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_7(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_10(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1160_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_12(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160_13(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1160<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1160_0(acc), [101, 110, 115] => lookup_1160_1(acc), [102, 105, 110] => lookup_1160_2(acc), [103, 111, 118] => lookup_1160_3(acc), [105, 110, 100] => lookup_1160_4(acc), [105, 110, 102, 111] => lookup_1160_5(acc), [105, 110, 116, 108] => lookup_1160_6(acc), [109, 105, 110, 99, 111, 109] => lookup_1160_7(acc), [110, 97, 116] => lookup_1160_8(acc), [110, 101, 116] => lookup_1160_9(acc), [111, 114, 97, 110, 103, 101, 99, 108, 111, 117, 100] => lookup_1160_10(acc), [111, 114, 103] => lookup_1160_11(acc), [112, 101, 114, 115, 111] => lookup_1160_12(acc), [116, 111, 117, 114, 105, 115, 109] => lookup_1160_13(acc), _ => info, }, None => info, } } #[inline] fn lookup_1161_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1161_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1161_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1161_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1161_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1161_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1161_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161_9_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 12usize; match labels.next() { Some(label) => match label { [100, 105, 114, 101, 99, 116] => lookup_1161_9_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1161_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161_11(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1161<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [54, 49, 49] => lookup_1161_0(acc), [99, 111, 109] => lookup_1161_1(acc), [101, 100, 117] => lookup_1161_2(acc), [103, 111, 118] => lookup_1161_3(acc), [109, 105, 108] => lookup_1161_4(acc), [110, 101, 116] => lookup_1161_5(acc), [110, 121, 97, 110] => lookup_1161_6(acc), [111, 114, 103] => lookup_1161_7(acc), [111, 121, 97] => lookup_1161_8(acc), [113, 117, 105, 99, 107, 99, 111, 110, 110, 101, 99, 116] => { lookup_1161_9(info, labels, acc) } [114, 100, 118] => lookup_1161_10(acc), [118, 112, 110, 112, 108, 117, 115] => lookup_1161_11(acc), [120, 48] => lookup_1161_12(acc), _ => info, }, None => info, } } #[inline] fn lookup_1162_0(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1162<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [112, 114, 101, 113, 117, 97, 108, 105, 102, 121, 109, 101] => lookup_1162_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1163() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1164() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1165_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1165_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1165<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [110, 111, 119, 45, 100, 110, 115] => lookup_1165_0(acc), [110, 116, 100, 108, 108] => lookup_1165_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1166() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1167() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1168() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1169() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1170() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1171() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1172() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_4_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1173_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1173_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1173_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_13(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_14_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_14<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [103, 111, 118] => lookup_1173_14_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1173_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173_21(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1173<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 118] => lookup_1173_0(acc), [98, 98, 115] => lookup_1173_1(acc), [98, 101, 108] => lookup_1173_2(acc), [98, 105, 122] => lookup_1173_3(acc), [99, 111, 109] => lookup_1173_4(labels, acc), [100, 114] => lookup_1173_5(acc), [101, 100, 117] => lookup_1173_6(acc), [103, 101, 110] => lookup_1173_7(acc), [103, 111, 118] => lookup_1173_8(acc), [105, 110, 102, 111] => lookup_1173_9(acc), [107, 49, 50] => lookup_1173_10(acc), [107, 101, 112] => lookup_1173_11(acc), [109, 105, 108] => lookup_1173_12(acc), [110, 97, 109, 101] => lookup_1173_13(acc), [110, 99] => lookup_1173_14(labels, acc), [110, 101, 116] => lookup_1173_15(acc), [111, 114, 103] => lookup_1173_16(acc), [112, 111, 108] => lookup_1173_17(acc), [116, 101, 108] => lookup_1173_18(acc), [116, 115, 107] => lookup_1173_19(acc), [116, 118] => lookup_1173_20(acc), [119, 101, 98] => lookup_1173_21(acc), _ => info, }, None => info, } } #[inline] fn lookup_1174_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1174<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 5usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [121, 98, 111] => lookup_1174_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1175() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1176() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1177() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1178() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1179() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1180() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1181() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_10(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_11(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1182<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 101, 114, 111] => lookup_1182_0(acc), [98, 105, 122] => lookup_1182_1(acc), [99, 111] => lookup_1182_2(acc), [99, 111, 109] => lookup_1182_3(acc), [99, 111, 111, 112] => lookup_1182_4(acc), [101, 100, 117] => lookup_1182_5(acc), [103, 111, 118] => lookup_1182_6(acc), [105, 110, 102, 111] => lookup_1182_7(acc), [105, 110, 116] => lookup_1182_8(acc), [106, 111, 98, 115] => lookup_1182_9(acc), [109, 111, 98, 105] => lookup_1182_10(acc), [109, 117, 115, 101, 117, 109] => lookup_1182_11(acc), [110, 97, 109, 101] => lookup_1182_12(acc), [110, 101, 116] => lookup_1182_13(acc), [111, 114, 103] => lookup_1182_14(acc), [112, 114, 111] => lookup_1182_15(acc), [116, 114, 97, 118, 101, 108] => lookup_1182_16(acc), _ => info, }, None => info, } } #[inline] fn lookup_1183() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1184() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1185() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1186() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1187_0(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1187_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1187_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1187_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1187_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1187_5(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1187<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 101, 116, 116, 101, 114, 45, 116, 104, 97, 110] => lookup_1187_0(acc), [100, 121, 110, 100, 110, 115] => lookup_1187_1(acc), [102, 114, 111, 109] => lookup_1187_2(acc), [111, 110, 45, 116, 104, 101, 45, 119, 101, 98] => lookup_1187_3(acc), [115, 97, 107, 117, 114, 97] => lookup_1187_4(acc), [119, 111, 114, 115, 101, 45, 116, 104, 97, 110] => lookup_1187_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1188() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1189_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_2_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1189_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [109, 121, 109, 97, 105, 108, 101, 114] => lookup_1189_2_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1189_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_5(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1189_12(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_13(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_14(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189_17(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1189<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1189_0(acc), [99, 108, 117, 98] => lookup_1189_1(acc), [99, 111, 109] => lookup_1189_2(labels, acc), [101, 98, 105, 122] => lookup_1189_3(acc), [101, 100, 117] => lookup_1189_4(acc), [103, 97, 109, 101] => lookup_1189_5(acc), [103, 111, 118] => lookup_1189_6(acc), [105, 100, 118] => lookup_1189_7(acc), [109, 105, 108] => lookup_1189_8(acc), [110, 101, 116] => lookup_1189_9(acc), [111, 114, 103] => lookup_1189_10(acc), [117, 114, 108] => lookup_1189_11(acc), [120, 110, 45, 45, 99, 122, 114, 119, 50, 56, 98] => lookup_1189_12(acc), [120, 110, 45, 45, 117, 99, 48, 97, 116, 118] => lookup_1189_13(acc), [120, 110, 45, 45, 122, 102, 48, 97, 111, 54, 52, 97] => lookup_1189_14(acc), [229, 149, 134, 230, 165, 173] => lookup_1189_15(acc), [231, 181, 132, 231, 185, 148] => lookup_1189_16(acc), [231, 182, 178, 232, 183, 175] => lookup_1189_17(acc), _ => info, }, None => info, } } #[inline] fn lookup_1190_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_3(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_7(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190_11(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1190<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1190_0(acc), [99, 111] => lookup_1190_1(acc), [103, 111] => lookup_1190_2(acc), [104, 111, 116, 101, 108] => lookup_1190_3(acc), [105, 110, 102, 111] => lookup_1190_4(acc), [109, 101] => lookup_1190_5(acc), [109, 105, 108] => lookup_1190_6(acc), [109, 111, 98, 105] => lookup_1190_7(acc), [110, 101] => lookup_1190_8(acc), [111, 114] => lookup_1190_9(acc), [115, 99] => lookup_1190_10(acc), [116, 118] => lookup_1190_11(acc), _ => info, }, None => info, } } #[inline] fn lookup_1191_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_7(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_10(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_12(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_13(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_14(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_15(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_17(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_18(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_20(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_21(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_22(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_23(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_24(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_25(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_26(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_27(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_28(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_29(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_30(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_31(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_32(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_33(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_34(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_35(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_36(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_37(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_38(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_39(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_40(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_41(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_42(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_43(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_44(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_45(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_46(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_48(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_49(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_50(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_51(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_52(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_53(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_54(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_55(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_56(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_57(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_58(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_59(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_60(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_61(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_62(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_63(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_64(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_65(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_66(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_67(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_68(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_69(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_70(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_71(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_72(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_73(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_74(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_75(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_1191_76(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_77(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_78(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_79(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_80(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_81(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_82(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_83(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_84(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_85(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_86(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191_87(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1191<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_1191_0(acc), [99, 99] => lookup_1191_1(acc), [99, 104, 101, 114, 107, 97, 115, 115, 121] => lookup_1191_2(acc), [99, 104, 101, 114, 107, 97, 115, 121] => lookup_1191_3(acc), [99, 104, 101, 114, 110, 105, 103, 111, 118] => lookup_1191_4(acc), [99, 104, 101, 114, 110, 105, 104, 105, 118] => lookup_1191_5(acc), [99, 104, 101, 114, 110, 105, 118, 116, 115, 105] => lookup_1191_6(acc), [99, 104, 101, 114, 110, 111, 118, 116, 115, 121] => lookup_1191_7(acc), [99, 107] => lookup_1191_8(acc), [99, 110] => lookup_1191_9(acc), [99, 111] => lookup_1191_10(acc), [99, 111, 109] => lookup_1191_11(acc), [99, 114] => lookup_1191_12(acc), [99, 114, 105, 109, 101, 97] => lookup_1191_13(acc), [99, 118] => lookup_1191_14(acc), [99, 120] => lookup_1191_15(acc), [100, 110] => lookup_1191_16(acc), [100, 110, 101, 112, 114, 111, 112, 101, 116, 114, 111, 118, 115, 107] => { lookup_1191_17(acc) } [100, 110, 105, 112, 114, 111, 112, 101, 116, 114, 111, 118, 115, 107] => { lookup_1191_18(acc) } [100, 111, 110, 101, 116, 115, 107] => lookup_1191_19(acc), [100, 112] => lookup_1191_20(acc), [101, 100, 117] => lookup_1191_21(acc), [103, 111, 118] => lookup_1191_22(acc), [105, 101] => lookup_1191_23(acc), [105, 102] => lookup_1191_24(acc), [105, 110] => lookup_1191_25(acc), [105, 110, 102] => lookup_1191_26(acc), [105, 118, 97, 110, 111, 45, 102, 114, 97, 110, 107, 105, 118, 115, 107] => { lookup_1191_27(acc) } [107, 104] => lookup_1191_28(acc), [107, 104, 97, 114, 107, 105, 118] => lookup_1191_29(acc), [107, 104, 97, 114, 107, 111, 118] => lookup_1191_30(acc), [107, 104, 101, 114, 115, 111, 110] => lookup_1191_31(acc), [107, 104, 109, 101, 108, 110, 105, 116, 115, 107, 105, 121] => lookup_1191_32(acc), [107, 104, 109, 101, 108, 110, 121, 116, 115, 107, 121, 105] => lookup_1191_33(acc), [107, 105, 101, 118] => lookup_1191_34(acc), [107, 105, 114, 111, 118, 111, 103, 114, 97, 100] => lookup_1191_35(acc), [107, 109] => lookup_1191_36(acc), [107, 114] => lookup_1191_37(acc), [107, 114, 111, 112, 121, 118, 110, 121, 116, 115, 107, 121, 105] => { lookup_1191_38(acc) } [107, 114, 121, 109] => lookup_1191_39(acc), [107, 115] => lookup_1191_40(acc), [107, 118] => lookup_1191_41(acc), [107, 121, 105, 118] => lookup_1191_42(acc), [108, 103] => lookup_1191_43(acc), [108, 116] => lookup_1191_44(acc), [108, 116, 100] => lookup_1191_45(acc), [108, 117, 103, 97, 110, 115, 107] => lookup_1191_46(acc), [108, 117, 104, 97, 110, 115, 107] => lookup_1191_47(acc), [108, 117, 116, 115, 107] => lookup_1191_48(acc), [108, 118] => lookup_1191_49(acc), [108, 118, 105, 118] => lookup_1191_50(acc), [109, 107] => lookup_1191_51(acc), [109, 121, 107, 111, 108, 97, 105, 118] => lookup_1191_52(acc), [110, 101, 116] => lookup_1191_53(acc), [110, 105, 107, 111, 108, 97, 101, 118] => lookup_1191_54(acc), [111, 100] => lookup_1191_55(acc), [111, 100, 101, 115, 97] => lookup_1191_56(acc), [111, 100, 101, 115, 115, 97] => lookup_1191_57(acc), [111, 114, 103] => lookup_1191_58(acc), [112, 108] => lookup_1191_59(acc), [112, 111, 108, 116, 97, 118, 97] => lookup_1191_60(acc), [112, 112] => lookup_1191_61(acc), [114, 105, 118, 110, 101] => lookup_1191_62(acc), [114, 111, 118, 110, 111] => lookup_1191_63(acc), [114, 118] => lookup_1191_64(acc), [115, 98] => lookup_1191_65(acc), [115, 101, 98, 97, 115, 116, 111, 112, 111, 108] => lookup_1191_66(acc), [115, 101, 118, 97, 115, 116, 111, 112, 111, 108] => lookup_1191_67(acc), [115, 109] => lookup_1191_68(acc), [115, 117, 109, 121] => lookup_1191_69(acc), [116, 101] => lookup_1191_70(acc), [116, 101, 114, 110, 111, 112, 105, 108] => lookup_1191_71(acc), [117, 122] => lookup_1191_72(acc), [117, 122, 104, 103, 111, 114, 111, 100] => lookup_1191_73(acc), [117, 122, 104, 104, 111, 114, 111, 100] => lookup_1191_74(acc), [118] => lookup_1191_75(acc), [118, 105, 110, 110, 105, 99, 97] => lookup_1191_76(acc), [118, 105, 110, 110, 121, 116, 115, 105, 97] => lookup_1191_77(acc), [118, 110] => lookup_1191_78(acc), [118, 111, 108, 121, 110] => lookup_1191_79(acc), [121, 97, 108, 116, 97] => lookup_1191_80(acc), [122, 97, 107, 97, 114, 112, 97, 116, 116, 105, 97] => lookup_1191_81(acc), [122, 97, 112, 111, 114, 105, 122, 104, 122, 104, 101] => lookup_1191_82(acc), [122, 97, 112, 111, 114, 105, 122, 104, 122, 104, 105, 97] => lookup_1191_83(acc), [122, 104, 105, 116, 111, 109, 105, 114] => lookup_1191_84(acc), [122, 104, 121, 116, 111, 109, 121, 114] => lookup_1191_85(acc), [122, 112] => lookup_1191_86(acc), [122, 116] => lookup_1191_87(acc), _ => info, }, None => info, } } #[inline] fn lookup_1192() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1193() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1194_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_4(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_6(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194_8(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1194<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1194_0(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1194_1(acc), [99, 111] => lookup_1194_2(acc), [99, 111, 109] => lookup_1194_3(acc), [103, 111] => lookup_1194_4(acc), [110, 101] => lookup_1194_5(acc), [111, 114] => lookup_1194_6(acc), [111, 114, 103] => lookup_1194_7(acc), [115, 99] => lookup_1194_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_1195_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_0(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_2(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_4_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_4_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_4<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [100, 104] => lookup_1195_2_4_0(acc), [118, 109] => lookup_1195_2_4_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1195_2_5_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_5<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 10usize; match labels.next() { Some(label) => match label { [106] => lookup_1195_2_5_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1195_2_6(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_7(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_8(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_9_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2_9<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 9usize; match labels.next() { Some(label) => match label { [99, 117, 115, 116] => lookup_1195_2_9_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1195_2_10(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 100, 105, 109, 111] => lookup_1195_2_0(acc), [98, 97, 114, 115, 121] => lookup_1195_2_1(acc), [98, 97, 114, 115, 121, 111, 110, 108, 105, 110, 101] => lookup_1195_2_2(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1195_2_3(acc), [98, 121, 116, 101, 109, 97, 114, 107] => lookup_1195_2_4(info, labels, acc), [108, 97, 121, 101, 114, 115, 104, 105, 102, 116] => lookup_1195_2_5(info, labels, acc), [109, 121, 115, 112, 114, 101, 97, 100, 115, 104, 111, 112] => lookup_1195_2_6(acc), [110, 104, 45, 115, 101, 114, 118] => lookup_1195_2_7(acc), [110, 111, 45, 105, 112] => lookup_1195_2_8(acc), [114, 101, 116, 114, 111, 115, 110, 117, 98] => lookup_1195_2_9(info, labels, acc), [119, 101, 108, 108, 98, 101, 105, 110, 103, 122, 111, 110, 101] => { lookup_1195_2_10(acc) } _ => info, }, None => info, } } #[inline] fn lookup_1195_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_5_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_5_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_5_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_5<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 112, 105] => lookup_1195_5_0(acc), [99, 97, 109, 112, 97, 105, 103, 110] => lookup_1195_5_1(acc), [115, 101, 114, 118, 105, 99, 101] => lookup_1195_5_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1195_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_7(acc: usize) -> Info { Info { len: acc + 1 + 22usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_8(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_9(acc: usize) -> Info { Info { len: acc + 1 + 19usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_10(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_11(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_13(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_16_0(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_16_1(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_16_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_16_3(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_16_4(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_16_5(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_16<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 102, 102, 105, 110, 105, 116, 121, 108, 111, 116, 116, 101, 114, 121] => { lookup_1195_16_0(acc) } [103, 108, 117, 103] => lookup_1195_16_1(acc), [108, 117, 103] => lookup_1195_16_2(acc), [108, 117, 103, 115] => lookup_1195_16_3(acc), [114, 97, 102, 102, 108, 101, 101, 110, 116, 114, 121] => lookup_1195_16_4(acc), [119, 101, 101, 107, 108, 121, 108, 111, 116, 116, 101, 114, 121] => { lookup_1195_16_5(acc) } _ => info, }, None => info, } } #[inline] fn lookup_1195_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_18(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1195_19(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_20(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_21(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Private), } } #[inline] fn lookup_1195_22_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Icann), } } #[inline] fn lookup_1195_22<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; match labels.next() { Some(label) => match label { wild => lookup_1195_22_0(wild, acc), }, None => info, } } #[inline] fn lookup_1195<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1195_0(acc), [98, 97, 114, 115, 121] => lookup_1195_1(acc), [99, 111] => lookup_1195_2(labels, acc), [99, 111, 110, 110] => lookup_1195_3(acc), [99, 111, 112, 114, 111] => lookup_1195_4(acc), [103, 111, 118] => lookup_1195_5(labels, acc), [104, 111, 115, 112] => lookup_1195_6(acc), [105, 110, 100, 101, 112, 101, 110, 100, 101, 110, 116, 45, 99, 111, 109, 109, 105, 115, 115, 105, 111, 110] => { lookup_1195_7(acc) } [105, 110, 100, 101, 112, 101, 110, 100, 101, 110, 116, 45, 105, 110, 113, 117, 101, 115, 116] => { lookup_1195_8(acc) } [105, 110, 100, 101, 112, 101, 110, 100, 101, 110, 116, 45, 105, 110, 113, 117, 105, 114, 121] => { lookup_1195_9(acc) } [105, 110, 100, 101, 112, 101, 110, 100, 101, 110, 116, 45, 112, 97, 110, 101, 108] => { lookup_1195_10(acc) } [105, 110, 100, 101, 112, 101, 110, 100, 101, 110, 116, 45, 114, 101, 118, 105, 101, 119] => { lookup_1195_11(acc) } [108, 116, 100] => lookup_1195_12(acc), [109, 101] => lookup_1195_13(acc), [110, 101, 116] => lookup_1195_14(acc), [110, 104, 115] => lookup_1195_15(acc), [111, 114, 103] => lookup_1195_16(labels, acc), [112, 108, 99] => lookup_1195_17(acc), [112, 111, 108, 105, 99, 101] => lookup_1195_18(acc), [112, 117, 98, 108, 105, 99, 45, 105, 110, 113, 117, 105, 114, 121] => { lookup_1195_19(acc) } [112, 121, 109, 110, 116] => lookup_1195_20(acc), [114, 111, 121, 97, 108, 45, 99, 111, 109, 109, 105, 115, 115, 105, 111, 110] => { lookup_1195_21(acc) } [115, 99, 104] => lookup_1195_22(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_1196() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1197() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1198() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1199() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1200() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_0_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_0_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_0_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_0_0(acc), [107, 49, 50] => lookup_1201_0_1(acc), [108, 105, 98] => lookup_1201_0_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_1_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_1_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_1_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_1_0(acc), [107, 49, 50] => lookup_1201_1_1(acc), [108, 105, 98] => lookup_1201_1_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_2_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_2_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_2_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_2<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_2_0(acc), [107, 49, 50] => lookup_1201_2_1(acc), [108, 105, 98] => lookup_1201_2_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_3_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_3_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_3_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_3<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_3_0(acc), [107, 49, 50] => lookup_1201_3_1(acc), [108, 105, 98] => lookup_1201_3_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_4_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_4_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_4_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_4_0(acc), [107, 49, 50] => lookup_1201_4_1(acc), [108, 105, 98] => lookup_1201_4_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_5_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_5_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_5_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_5<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_5_0(acc), [107, 49, 50] => lookup_1201_5_1(acc), [108, 105, 98] => lookup_1201_5_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_7_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_7_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_7_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_7<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_7_0(acc), [107, 49, 50] => lookup_1201_7_1(acc), [108, 105, 98] => lookup_1201_7_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_8_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_8_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_8_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_8<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_8_0(acc), [107, 49, 50] => lookup_1201_8_1(acc), [108, 105, 98] => lookup_1201_8_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_9_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_9_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_9_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_9<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_9_0(acc), [107, 49, 50] => lookup_1201_9_1(acc), [108, 105, 98] => lookup_1201_9_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_10_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_10_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_10<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_10_0(acc), [108, 105, 98] => lookup_1201_10_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_12(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_13_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_13<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 8usize; match labels.next() { Some(label) => match label { [112, 104, 120] => lookup_1201_13_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_15_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_15_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_15_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_15<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_15_0(acc), [107, 49, 50] => lookup_1201_15_1(acc), [108, 105, 98] => lookup_1201_15_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_16(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_17_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_17_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_17_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_17<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_17_0(acc), [107, 49, 50] => lookup_1201_17_1(acc), [108, 105, 98] => lookup_1201_17_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_18(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_19(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_20_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_20_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_20_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_20<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_20_0(acc), [107, 49, 50] => lookup_1201_20_1(acc), [108, 105, 98] => lookup_1201_20_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_21_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_21_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_21<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_21_0(acc), [108, 105, 98] => lookup_1201_21_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_22_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_22_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_22_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_22<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_22_0(acc), [107, 49, 50] => lookup_1201_22_1(acc), [108, 105, 98] => lookup_1201_22_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_23_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_23_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_23_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_23<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_23_0(acc), [107, 49, 50] => lookup_1201_23_1(acc), [108, 105, 98] => lookup_1201_23_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_24_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_24_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_24_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_24<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_24_0(acc), [107, 49, 50] => lookup_1201_24_1(acc), [108, 105, 98] => lookup_1201_24_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_25_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_25_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_25_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_25<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_25_0(acc), [107, 49, 50] => lookup_1201_25_1(acc), [108, 105, 98] => lookup_1201_25_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_26(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_28(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_29_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_29_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_29_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_29<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_29_0(acc), [107, 49, 50] => lookup_1201_29_1(acc), [108, 105, 98] => lookup_1201_29_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_30_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_30_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_30_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_30<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_30_0(acc), [107, 49, 50] => lookup_1201_30_1(acc), [108, 105, 98] => lookup_1201_30_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_31_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_31_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_31_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_31<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_31_0(acc), [107, 49, 50] => lookup_1201_31_1(acc), [108, 105, 98] => lookup_1201_31_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_32(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_33_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_33_1_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_33_1_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_33_1_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_33_1<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 104, 116, 114] => lookup_1201_33_1_0(acc), [112, 97, 114, 111, 99, 104] => lookup_1201_33_1_1(acc), [112, 118, 116] => lookup_1201_33_1_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_33_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_33<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_33_0(acc), [107, 49, 50] => lookup_1201_33_1(labels, acc), [108, 105, 98] => lookup_1201_33_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_34_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_34_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_34_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_34<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_34_0(acc), [107, 49, 50] => lookup_1201_34_1(acc), [108, 105, 98] => lookup_1201_34_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_35_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_35_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_35_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_35<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_35_0(acc), [107, 49, 50] => lookup_1201_35_1(acc), [108, 105, 98] => lookup_1201_35_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_36_0(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_36<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 110, 110, 45, 97, 114, 98, 111, 114] => lookup_1201_36_0(acc), [99, 99] => lookup_1201_36_1(acc), [99, 111, 103] => lookup_1201_36_2(acc), [100, 115, 116] => lookup_1201_36_3(acc), [101, 97, 116, 111, 110] => lookup_1201_36_4(acc), [103, 101, 110] => lookup_1201_36_5(acc), [107, 49, 50] => lookup_1201_36_6(acc), [108, 105, 98] => lookup_1201_36_7(acc), [109, 117, 115] => lookup_1201_36_8(acc), [116, 101, 99] => lookup_1201_36_9(acc), [119, 97, 115, 104, 116, 101, 110, 97, 119] => lookup_1201_36_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_37(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_38_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_38_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_38_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_38<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_38_0(acc), [107, 49, 50] => lookup_1201_38_1(acc), [108, 105, 98] => lookup_1201_38_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_39_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_39_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_39_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_39<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_39_0(acc), [107, 49, 50] => lookup_1201_39_1(acc), [108, 105, 98] => lookup_1201_39_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_40_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_40_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_40_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_40<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_40_0(acc), [107, 49, 50] => lookup_1201_40_1(acc), [108, 105, 98] => lookup_1201_40_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_41_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_41_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_41_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_41<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_41_0(acc), [107, 49, 50] => lookup_1201_41_1(acc), [108, 105, 98] => lookup_1201_41_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_42_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_42_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_42_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_42<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_42_0(acc), [107, 49, 50] => lookup_1201_42_1(acc), [108, 105, 98] => lookup_1201_42_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_43_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_43_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_43<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_43_0(acc), [108, 105, 98] => lookup_1201_43_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_44_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_44_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_44_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_44<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_44_0(acc), [107, 49, 50] => lookup_1201_44_1(acc), [108, 105, 98] => lookup_1201_44_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_45_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_45_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_45_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_45<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_45_0(acc), [107, 49, 50] => lookup_1201_45_1(acc), [108, 105, 98] => lookup_1201_45_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_46_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_46_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_46_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_46<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_46_0(acc), [107, 49, 50] => lookup_1201_46_1(acc), [108, 105, 98] => lookup_1201_46_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_47_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_47_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_47_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_47<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_47_0(acc), [107, 49, 50] => lookup_1201_47_1(acc), [108, 105, 98] => lookup_1201_47_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_48(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_49(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_50_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_50_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_50_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_50<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_50_0(acc), [107, 49, 50] => lookup_1201_50_1(acc), [108, 105, 98] => lookup_1201_50_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_51_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_51_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_51_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_51<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_51_0(acc), [107, 49, 50] => lookup_1201_51_1(acc), [108, 105, 98] => lookup_1201_51_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_52_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_52_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_52_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_52<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_52_0(acc), [107, 49, 50] => lookup_1201_52_1(acc), [108, 105, 98] => lookup_1201_52_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_53_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_53_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_53_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_53<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_53_0(acc), [107, 49, 50] => lookup_1201_53_1(acc), [108, 105, 98] => lookup_1201_53_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_54_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_54_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_54_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_54<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_54_0(acc), [107, 49, 50] => lookup_1201_54_1(acc), [108, 105, 98] => lookup_1201_54_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_55_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_55_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_55_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_55<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_55_0(acc), [107, 49, 50] => lookup_1201_55_1(acc), [108, 105, 98] => lookup_1201_55_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_56(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_57(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_58_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_58_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_58_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_58<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_58_0(acc), [107, 49, 50] => lookup_1201_58_1(acc), [108, 105, 98] => lookup_1201_58_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_59_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_59_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_59<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_59_0(acc), [108, 105, 98] => lookup_1201_59_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_60_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_60_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_60_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_60<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_60_0(acc), [107, 49, 50] => lookup_1201_60_1(acc), [108, 105, 98] => lookup_1201_60_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_61_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_61_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_61<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_61_0(acc), [108, 105, 98] => lookup_1201_61_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_62(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1201_63_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_63_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_63_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_63<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_63_0(acc), [107, 49, 50] => lookup_1201_63_1(acc), [108, 105, 98] => lookup_1201_63_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_64_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_64_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_64_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_64<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_64_0(acc), [107, 49, 50] => lookup_1201_64_1(acc), [108, 105, 98] => lookup_1201_64_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_65_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_65_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_65_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_65<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_65_0(acc), [107, 49, 50] => lookup_1201_65_1(acc), [108, 105, 98] => lookup_1201_65_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_66_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_66_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_66_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_66<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_66_0(acc), [107, 49, 50] => lookup_1201_66_1(acc), [108, 105, 98] => lookup_1201_66_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_67_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_67_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_67_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_67<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_67_0(acc), [107, 49, 50] => lookup_1201_67_1(acc), [108, 105, 98] => lookup_1201_67_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_68_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_68_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_68_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_68<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_68_0(acc), [107, 49, 50] => lookup_1201_68_1(acc), [108, 105, 98] => lookup_1201_68_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_69_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_69_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_69_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_69<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_69_0(acc), [107, 49, 50] => lookup_1201_69_1(acc), [108, 105, 98] => lookup_1201_69_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_70_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_70_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_70_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_70<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_70_0(acc), [107, 49, 50] => lookup_1201_70_1(acc), [108, 105, 98] => lookup_1201_70_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_71_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_71<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_71_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201_72_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_72_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_72_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1201_72<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 99] => lookup_1201_72_0(acc), [107, 49, 50] => lookup_1201_72_1(acc), [108, 105, 98] => lookup_1201_72_2(acc), _ => info, }, None => info, } } #[inline] fn lookup_1201<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 107] => lookup_1201_0(labels, acc), [97, 108] => lookup_1201_1(labels, acc), [97, 114] => lookup_1201_2(labels, acc), [97, 115] => lookup_1201_3(labels, acc), [97, 122] => lookup_1201_4(labels, acc), [99, 97] => lookup_1201_5(labels, acc), [99, 108, 111, 117, 100, 110, 115] => lookup_1201_6(acc), [99, 111] => lookup_1201_7(labels, acc), [99, 116] => lookup_1201_8(labels, acc), [100, 99] => lookup_1201_9(labels, acc), [100, 101] => lookup_1201_10(labels, acc), [100, 110, 105] => lookup_1201_11(acc), [100, 114, 117, 100] => lookup_1201_12(acc), [101, 110, 115, 99, 97, 108, 101, 100] => lookup_1201_13(info, labels, acc), [102, 101, 100] => lookup_1201_14(acc), [102, 108] => lookup_1201_15(labels, acc), [102, 114, 101, 101, 100, 100, 110, 115] => lookup_1201_16(acc), [103, 97] => lookup_1201_17(labels, acc), [103, 111, 108, 102, 102, 97, 110] => lookup_1201_18(acc), [103, 114, 97, 112, 104, 111, 120] => lookup_1201_19(acc), [103, 117] => lookup_1201_20(labels, acc), [104, 105] => lookup_1201_21(labels, acc), [105, 97] => lookup_1201_22(labels, acc), [105, 100] => lookup_1201_23(labels, acc), [105, 108] => lookup_1201_24(labels, acc), [105, 110] => lookup_1201_25(labels, acc), [105, 115, 45, 98, 121] => lookup_1201_26(acc), [105, 115, 97] => lookup_1201_27(acc), [107, 105, 100, 115] => lookup_1201_28(acc), [107, 115] => lookup_1201_29(labels, acc), [107, 121] => lookup_1201_30(labels, acc), [108, 97] => lookup_1201_31(labels, acc), [108, 97, 110, 100, 45, 52, 45, 115, 97, 108, 101] => lookup_1201_32(acc), [109, 97] => lookup_1201_33(labels, acc), [109, 100] => lookup_1201_34(labels, acc), [109, 101] => lookup_1201_35(labels, acc), [109, 105] => lookup_1201_36(labels, acc), [109, 105, 114, 99, 108, 111, 117, 100] => lookup_1201_37(acc), [109, 110] => lookup_1201_38(labels, acc), [109, 111] => lookup_1201_39(labels, acc), [109, 115] => lookup_1201_40(labels, acc), [109, 116] => lookup_1201_41(labels, acc), [110, 99] => lookup_1201_42(labels, acc), [110, 100] => lookup_1201_43(labels, acc), [110, 101] => lookup_1201_44(labels, acc), [110, 104] => lookup_1201_45(labels, acc), [110, 106] => lookup_1201_46(labels, acc), [110, 109] => lookup_1201_47(labels, acc), [110, 111, 105, 112] => lookup_1201_48(acc), [110, 115, 110] => lookup_1201_49(acc), [110, 118] => lookup_1201_50(labels, acc), [110, 121] => lookup_1201_51(labels, acc), [111, 104] => lookup_1201_52(labels, acc), [111, 107] => lookup_1201_53(labels, acc), [111, 114] => lookup_1201_54(labels, acc), [112, 97] => lookup_1201_55(labels, acc), [112, 108, 97, 116, 116, 101, 114, 112] => lookup_1201_56(acc), [112, 111, 105, 110, 116, 116, 111] => lookup_1201_57(acc), [112, 114] => lookup_1201_58(labels, acc), [114, 105] => lookup_1201_59(labels, acc), [115, 99] => lookup_1201_60(labels, acc), [115, 100] => lookup_1201_61(labels, acc), [115, 116, 117, 102, 102, 45, 52, 45, 115, 97, 108, 101] => lookup_1201_62(acc), [116, 110] => lookup_1201_63(labels, acc), [116, 120] => lookup_1201_64(labels, acc), [117, 116] => lookup_1201_65(labels, acc), [118, 97] => lookup_1201_66(labels, acc), [118, 105] => lookup_1201_67(labels, acc), [118, 116] => lookup_1201_68(labels, acc), [119, 97] => lookup_1201_69(labels, acc), [119, 105] => lookup_1201_70(labels, acc), [119, 118] => lookup_1201_71(labels, acc), [119, 121] => lookup_1201_72(labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_1202_0_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1202_0<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1202_0_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1202_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1202_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1202_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1202_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1202_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1202<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1202_0(labels, acc), [101, 100, 117] => lookup_1202_1(acc), [103, 117, 98] => lookup_1202_2(acc), [109, 105, 108] => lookup_1202_3(acc), [110, 101, 116] => lookup_1202_4(acc), [111, 114, 103] => lookup_1202_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1203_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1203_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1203_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1203_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1203<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_1203_0(acc), [99, 111, 109] => lookup_1203_1(acc), [110, 101, 116] => lookup_1203_2(acc), [111, 114, 103] => lookup_1203_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_1204() -> Info { Info { len: 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1205() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1206() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1207() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1208_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208_4_0(acc: usize) -> Info { Info { len: acc + 1 + 1usize, typ: Some(Type::Private), } } #[inline] fn lookup_1208_4<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Private), }; match labels.next() { Some(label) => match label { [100] => lookup_1208_4_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1208_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1208<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [48, 101] => lookup_1208_0(acc), [99, 111, 109] => lookup_1208_1(acc), [101, 100, 117] => lookup_1208_2(acc), [103, 111, 118] => lookup_1208_3(acc), [103, 118] => lookup_1208_4(labels, acc), [109, 105, 108] => lookup_1208_5(acc), [110, 101, 116] => lookup_1208_6(acc), [111, 114, 103] => lookup_1208_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1209_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_9(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_15(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_16(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_17(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209_19(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1209<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 114, 116, 115] => lookup_1209_0(acc), [98, 105, 98] => lookup_1209_1(acc), [99, 111] => lookup_1209_2(acc), [99, 111, 109] => lookup_1209_3(acc), [101, 49, 50] => lookup_1209_4(acc), [101, 100, 117] => lookup_1209_5(acc), [102, 105, 114, 109] => lookup_1209_6(acc), [103, 111, 98] => lookup_1209_7(acc), [103, 111, 118] => lookup_1209_8(acc), [105, 110, 102, 111] => lookup_1209_9(acc), [105, 110, 116] => lookup_1209_10(acc), [109, 105, 108] => lookup_1209_11(acc), [110, 101, 116] => lookup_1209_12(acc), [110, 111, 109] => lookup_1209_13(acc), [111, 114, 103] => lookup_1209_14(acc), [114, 97, 114] => lookup_1209_15(acc), [114, 101, 99] => lookup_1209_16(acc), [115, 116, 111, 114, 101] => lookup_1209_17(acc), [116, 101, 99] => lookup_1209_18(acc), [119, 101, 98] => lookup_1209_19(acc), _ => info, }, None => info, } } #[inline] fn lookup_1210() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1211() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1212() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1213() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1214() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1215() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1216() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1217_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1217<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 116] => lookup_1217_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1218_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1218_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1218_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1218_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1218_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1218<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111] => lookup_1218_0(acc), [99, 111, 109] => lookup_1218_1(acc), [107, 49, 50] => lookup_1218_2(acc), [110, 101, 116] => lookup_1218_3(acc), [111, 114, 103] => lookup_1218_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1219() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1220() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1221() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1222() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1223() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1224() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1225() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1226() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1227() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1228() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1229() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1230() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1231() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_2(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_5(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_7(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_9(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_10(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_11(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_12(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_14(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1232_15(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_16(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_17(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_18(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_19(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_20(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_21(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_22(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_23(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_24(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_25(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_26(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_27(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_28(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_29(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_30(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_31(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_32(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_33(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_34(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_35(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_36(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_37(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_38(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_39(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_40(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_41(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_42(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_43(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_44(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_45(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_46(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_47(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_48(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_49(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_50(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_51(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_52(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_53(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_54(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_55(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_56(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_57(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_58(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_59(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_60(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_61(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_62(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_63(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_64(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_65(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_66(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_67(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_68(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_69(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_70(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_71(acc: usize) -> Info { Info { len: acc + 1 + 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_72(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_73(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_74(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_75(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_76(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_77(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232_78(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1232<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1232_0(acc), [97, 105] => lookup_1232_1(acc), [97, 110, 103, 105, 97, 110, 103] => lookup_1232_2(acc), [98, 97, 99, 103, 105, 97, 110, 103] => lookup_1232_3(acc), [98, 97, 99, 107, 97, 110] => lookup_1232_4(acc), [98, 97, 99, 108, 105, 101, 117] => lookup_1232_5(acc), [98, 97, 99, 110, 105, 110, 104] => lookup_1232_6(acc), [98, 97, 114, 105, 97, 45, 118, 117, 110, 103, 116, 97, 117] => lookup_1232_7(acc), [98, 101, 110, 116, 114, 101] => lookup_1232_8(acc), [98, 105, 110, 104, 100, 105, 110, 104] => lookup_1232_9(acc), [98, 105, 110, 104, 100, 117, 111, 110, 103] => lookup_1232_10(acc), [98, 105, 110, 104, 112, 104, 117, 111, 99] => lookup_1232_11(acc), [98, 105, 110, 104, 116, 104, 117, 97, 110] => lookup_1232_12(acc), [98, 105, 122] => lookup_1232_13(acc), [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1232_14(acc), [99, 97, 109, 97, 117] => lookup_1232_15(acc), [99, 97, 110, 116, 104, 111] => lookup_1232_16(acc), [99, 97, 111, 98, 97, 110, 103] => lookup_1232_17(acc), [99, 111, 109] => lookup_1232_18(acc), [100, 97, 107, 108, 97, 107] => lookup_1232_19(acc), [100, 97, 107, 110, 111, 110, 103] => lookup_1232_20(acc), [100, 97, 110, 97, 110, 103] => lookup_1232_21(acc), [100, 105, 101, 110, 98, 105, 101, 110] => lookup_1232_22(acc), [100, 111, 110, 103, 110, 97, 105] => lookup_1232_23(acc), [100, 111, 110, 103, 116, 104, 97, 112] => lookup_1232_24(acc), [101, 100, 117] => lookup_1232_25(acc), [103, 105, 97, 108, 97, 105] => lookup_1232_26(acc), [103, 111, 118] => lookup_1232_27(acc), [104, 97, 103, 105, 97, 110, 103] => lookup_1232_28(acc), [104, 97, 105, 100, 117, 111, 110, 103] => lookup_1232_29(acc), [104, 97, 105, 112, 104, 111, 110, 103] => lookup_1232_30(acc), [104, 97, 110, 97, 109] => lookup_1232_31(acc), [104, 97, 110, 111, 105] => lookup_1232_32(acc), [104, 97, 116, 105, 110, 104] => lookup_1232_33(acc), [104, 97, 117, 103, 105, 97, 110, 103] => lookup_1232_34(acc), [104, 101, 97, 108, 116, 104] => lookup_1232_35(acc), [104, 111, 97, 98, 105, 110, 104] => lookup_1232_36(acc), [104, 117, 110, 103, 121, 101, 110] => lookup_1232_37(acc), [105, 100] => lookup_1232_38(acc), [105, 110, 102, 111] => lookup_1232_39(acc), [105, 110, 116] => lookup_1232_40(acc), [105, 111] => lookup_1232_41(acc), [107, 104, 97, 110, 104, 104, 111, 97] => lookup_1232_42(acc), [107, 105, 101, 110, 103, 105, 97, 110, 103] => lookup_1232_43(acc), [107, 111, 110, 116, 117, 109] => lookup_1232_44(acc), [108, 97, 105, 99, 104, 97, 117] => lookup_1232_45(acc), [108, 97, 109, 100, 111, 110, 103] => lookup_1232_46(acc), [108, 97, 110, 103, 115, 111, 110] => lookup_1232_47(acc), [108, 97, 111, 99, 97, 105] => lookup_1232_48(acc), [108, 111, 110, 103, 97, 110] => lookup_1232_49(acc), [110, 97, 109, 100, 105, 110, 104] => lookup_1232_50(acc), [110, 97, 109, 101] => lookup_1232_51(acc), [110, 101, 116] => lookup_1232_52(acc), [110, 103, 104, 101, 97, 110] => lookup_1232_53(acc), [110, 105, 110, 104, 98, 105, 110, 104] => lookup_1232_54(acc), [110, 105, 110, 104, 116, 104, 117, 97, 110] => lookup_1232_55(acc), [111, 114, 103] => lookup_1232_56(acc), [112, 104, 117, 116, 104, 111] => lookup_1232_57(acc), [112, 104, 117, 121, 101, 110] => lookup_1232_58(acc), [112, 114, 111] => lookup_1232_59(acc), [113, 117, 97, 110, 103, 98, 105, 110, 104] => lookup_1232_60(acc), [113, 117, 97, 110, 103, 110, 97, 109] => lookup_1232_61(acc), [113, 117, 97, 110, 103, 110, 103, 97, 105] => lookup_1232_62(acc), [113, 117, 97, 110, 103, 110, 105, 110, 104] => lookup_1232_63(acc), [113, 117, 97, 110, 103, 116, 114, 105] => lookup_1232_64(acc), [115, 111, 99, 116, 114, 97, 110, 103] => lookup_1232_65(acc), [115, 111, 110, 108, 97] => lookup_1232_66(acc), [116, 97, 121, 110, 105, 110, 104] => lookup_1232_67(acc), [116, 104, 97, 105, 98, 105, 110, 104] => lookup_1232_68(acc), [116, 104, 97, 105, 110, 103, 117, 121, 101, 110] => lookup_1232_69(acc), [116, 104, 97, 110, 104, 104, 111, 97] => lookup_1232_70(acc), [116, 104, 97, 110, 104, 112, 104, 111, 104, 111, 99, 104, 105, 109, 105, 110, 104] => { lookup_1232_71(acc) } [116, 104, 117, 97, 116, 104, 105, 101, 110, 104, 117, 101] => lookup_1232_72(acc), [116, 105, 101, 110, 103, 105, 97, 110, 103] => lookup_1232_73(acc), [116, 114, 97, 118, 105, 110, 104] => lookup_1232_74(acc), [116, 117, 121, 101, 110, 113, 117, 97, 110, 103] => lookup_1232_75(acc), [118, 105, 110, 104, 108, 111, 110, 103] => lookup_1232_76(acc), [118, 105, 110, 104, 112, 104, 117, 99] => lookup_1232_77(acc), [121, 101, 110, 98, 97, 105] => lookup_1232_78(acc), _ => info, }, None => info, } } #[inline] fn lookup_1233() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1234() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1235() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1236() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1237() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1238() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1239_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1239_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1239_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1239_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1239_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1239_5(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1239_6(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1239_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1239<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103] => lookup_1239_0(acc), [99, 110] => lookup_1239_1(acc), [99, 111, 109] => lookup_1239_2(acc), [100, 101, 118] => lookup_1239_3(acc), [101, 100, 117] => lookup_1239_4(acc), [109, 101] => lookup_1239_5(acc), [110, 101, 116] => lookup_1239_6(acc), [111, 114, 103] => lookup_1239_7(acc), _ => info, }, None => info, } } #[inline] fn lookup_1240() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1241() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1242() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1243() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1244() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1245() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1246() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1247() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1248() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1249() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1250() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1251_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1251<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 7usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [102, 114, 97, 109, 101, 114] => lookup_1251_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1252() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1253() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1254() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1255() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1256_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1256_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1256<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 105, 122] => lookup_1256_0(acc), [115, 99, 104] => lookup_1256_1(acc), _ => info, }, None => info, } } #[inline] fn lookup_1257() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1258() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1259_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1259<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [102, 114, 97, 109, 101, 114] => lookup_1259_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1260() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1261() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1262() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1263() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1264() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1265() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1266() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1267() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1268() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1269() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1270() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1271() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1272_0_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1272_0<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_1272_0_0(wild, acc), }, None => info, } } #[inline] fn lookup_1272_1(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1272_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1272_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1272_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1272_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1272_6(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1272_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1272_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1272<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 100, 118, 105, 115, 111, 114] => lookup_1272_0(info, labels, acc), [99, 108, 111, 117, 100, 54, 54] => lookup_1272_1(acc), [99, 111, 109] => lookup_1272_2(acc), [100, 121, 110, 100, 110, 115] => lookup_1272_3(acc), [101, 100, 117] => lookup_1272_4(acc), [103, 111, 118] => lookup_1272_5(acc), [109, 121, 112, 101, 116, 115] => lookup_1272_6(acc), [110, 101, 116] => lookup_1272_7(acc), [111, 114, 103] => lookup_1272_8(acc), _ => info, }, None => info, } } #[inline] fn lookup_1273() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1274() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1275() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1276() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1277() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1278() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1279() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1280() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1281() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1282() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1283() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1284() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1285() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1286() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1287() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1288() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1289() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1290() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1291() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1292() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1293_0(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1293_1(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1293_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1293_3(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1293<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 12usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [120, 110, 45, 45, 52, 100, 98, 103, 100, 116, 121, 54, 99] => lookup_1293_0(acc), [120, 110, 45, 45, 53, 100, 98, 104, 108, 56, 100] => lookup_1293_1(acc), [120, 110, 45, 45, 56, 100, 98, 113, 50, 97] => lookup_1293_2(acc), [120, 110, 45, 45, 104, 101, 98, 100, 97, 56, 98] => lookup_1293_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_1294() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1295() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1296() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1297() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1298() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1299() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1300() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1301() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1302() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1303() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1304() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1305() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1306() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1307() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308_1(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308_3(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308_4(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1308<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 10usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [120, 110, 45, 45, 56, 48, 97, 117] => lookup_1308_0(acc), [120, 110, 45, 45, 57, 48, 97, 122, 104] => lookup_1308_1(acc), [120, 110, 45, 45, 99, 49, 97, 118, 103] => lookup_1308_2(acc), [120, 110, 45, 45, 100, 49, 97, 116] => lookup_1308_3(acc), [120, 110, 45, 45, 111, 49, 97, 99] => lookup_1308_4(acc), [120, 110, 45, 45, 111, 49, 97, 99, 104] => lookup_1308_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1309() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1310() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1311() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1312() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1313() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1314() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1315() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1316() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1317() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1318() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1319() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1320() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1321() -> Info { Info { len: 22usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1322() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1323() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1324() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1325() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1326() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1327() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1328() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1329() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1330() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1331() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1332() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1333() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1334() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1335() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1336() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1337() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1338() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1339() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1340() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1341() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1342() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1343() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1344() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1345() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1346() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1347() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1348() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1349() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1350() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1351() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1352() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1353() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354_0(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354_1(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354_3(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354_4(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354_5(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1354<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 11usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [120, 110, 45, 45, 53, 53, 113, 120, 53, 100] => lookup_1354_0(acc), [120, 110, 45, 45, 103, 109, 113, 119, 53, 97] => lookup_1354_1(acc), [120, 110, 45, 45, 109, 120, 116, 113, 49, 109] => lookup_1354_2(acc), [120, 110, 45, 45, 111, 100, 48, 97, 108, 103] => lookup_1354_3(acc), [120, 110, 45, 45, 117, 99, 48, 97, 116, 118] => lookup_1354_4(acc), [120, 110, 45, 45, 119, 99, 118, 115, 50, 50, 100] => lookup_1354_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1355() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1356() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1357() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1358() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1359() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1360() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1361() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1362() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1363() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1364() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1365() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1366() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1367() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1368() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1369() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1370() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1371() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1372() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1373() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1374() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1375() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1376() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1377() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1378() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1379() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1380() -> Info { Info { len: 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1381() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1382() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1383() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1384() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1385() -> Info { Info { len: 19usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1386() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1387() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1388() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1389() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1390() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1391() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1392() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1393() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1394() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1395() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1396() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1397() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1398() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1399() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1400() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1401() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1402() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403_0(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403_1(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403_2(acc: usize) -> Info { Info { len: acc + 1 + 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403_3(acc: usize) -> Info { Info { len: acc + 1 + 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403_4(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403_5(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1403<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 10usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [120, 110, 45, 45, 49, 50, 99, 49, 102, 101, 48, 98, 114] => lookup_1403_0(acc), [120, 110, 45, 45, 49, 50, 99, 102, 105, 56, 105, 120, 98, 56, 108] => { lookup_1403_1(acc) } [120, 110, 45, 45, 49, 50, 99, 111, 48, 99, 51, 98, 52, 101, 118, 97] => { lookup_1403_2(acc) } [120, 110, 45, 45, 104, 51, 99, 117, 122, 107, 49, 100, 105] => lookup_1403_3(acc), [120, 110, 45, 45, 109, 51, 99, 104, 48, 106, 51, 97] => lookup_1403_4(acc), [120, 110, 45, 45, 111, 51, 99, 121, 120, 50, 97] => lookup_1403_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1404() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1405() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1406_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_1(acc: usize) -> Info { Info { len: acc + 1 + 14usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_2(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_3(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_4(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_5(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_6(acc: usize) -> Info { Info { len: acc + 1 + 10usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_7(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_8(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406_9(acc: usize) -> Info { Info { len: acc + 1 + 11usize, typ: Some(Type::Private), } } #[inline] fn lookup_1406<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [120, 110, 45, 45, 52, 49, 97] => lookup_1406_0(acc), [120, 110, 45, 45, 56, 48, 97, 97, 97, 48, 99, 118, 97, 99] => lookup_1406_1(acc), [120, 110, 45, 45, 57, 48, 97, 49, 97, 102] => lookup_1406_2(acc), [120, 110, 45, 45, 57, 48, 97, 109, 99] => lookup_1406_3(acc), [120, 110, 45, 45, 99, 49, 97, 118, 103] => lookup_1406_4(acc), [120, 110, 45, 45, 104, 49, 97, 104, 110] => lookup_1406_5(acc), [120, 110, 45, 45, 104, 49, 97, 108, 105, 122] => lookup_1406_6(acc), [120, 110, 45, 45, 106, 49, 97, 100, 112] => lookup_1406_7(acc), [120, 110, 45, 45, 106, 49, 97, 101, 102] => lookup_1406_8(acc), [120, 110, 45, 45, 106, 49, 97, 101, 108, 56, 98] => lookup_1406_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_1407() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1408() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1409() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1410() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1411() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1412() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1413() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1414() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1415() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1416() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1417() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1418() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1419() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1420() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1421() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1422() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1423() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1424() -> Info { Info { len: 23usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1425() -> Info { Info { len: 24usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1426() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1427() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1428() -> Info { Info { len: 20usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1429() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1430() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1431() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1432() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1433() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1434() -> Info { Info { len: 17usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1435() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1436() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1437() -> Info { Info { len: 13usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1438() -> Info { Info { len: 11usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1439() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1440_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1440_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1440_2(acc: usize) -> Info { Info { len: acc + 1 + 9usize, typ: Some(Type::Private), } } #[inline] fn lookup_1440_3_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1440_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 7usize; match labels.next() { Some(label) => match label { wild => lookup_1440_3_0(wild, acc), }, None => info, } } #[inline] fn lookup_1440_4(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Private), } } #[inline] fn lookup_1440<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 3usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 105, 116, 101] => lookup_1440_0(acc), [99, 114, 97, 102, 116, 105, 110, 103] => lookup_1440_1(acc), [108, 111, 99, 97, 108, 122, 111, 110, 101] => lookup_1440_2(acc), [116, 101, 108, 101, 98, 105, 116] => lookup_1440_3(info, labels, acc), [122, 97, 112, 116, 111] => lookup_1440_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1441() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1442() -> Info { Info { len: 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1443() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1444() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1445<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 111, 109] => lookup_1445_0(acc), [101, 100, 117] => lookup_1445_1(acc), [103, 111, 118] => lookup_1445_2(acc), [109, 105, 108] => lookup_1445_3(acc), [110, 101, 116] => lookup_1445_4(acc), [111, 114, 103] => lookup_1445_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1446() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1447() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1448() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1449() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1450() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1451_0(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Private), } } #[inline] fn lookup_1451<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [111, 114, 103] => lookup_1451_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1452() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_1(acc: usize) -> Info { Info { len: acc + 1 + 5usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_3_0(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1453_3<'a, T>(mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [98, 108, 111, 103, 115, 112, 111, 116] => lookup_1453_3_0(acc), _ => info, }, None => info, } } #[inline] fn lookup_1453_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_6(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_11(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_12(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_13(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_14(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_15(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_16(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453_17(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1453<'a, T>(mut info: Info, mut labels: T) -> Info where T: Iterator, { let acc = 2usize; info.len = acc; match labels.next() { Some(label) => match label { [97, 99] => lookup_1453_0(acc), [97, 103, 114, 105, 99] => lookup_1453_1(acc), [97, 108, 116] => lookup_1453_2(acc), [99, 111] => lookup_1453_3(labels, acc), [101, 100, 117] => lookup_1453_4(acc), [103, 111, 118] => lookup_1453_5(acc), [103, 114, 111, 110, 100, 97, 114] => lookup_1453_6(acc), [108, 97, 119] => lookup_1453_7(acc), [109, 105, 108] => lookup_1453_8(acc), [110, 101, 116] => lookup_1453_9(acc), [110, 103, 111] => lookup_1453_10(acc), [110, 105, 99] => lookup_1453_11(acc), [110, 105, 115] => lookup_1453_12(acc), [110, 111, 109] => lookup_1453_13(acc), [111, 114, 103] => lookup_1453_14(acc), [115, 99, 104, 111, 111, 108] => lookup_1453_15(acc), [116, 109] => lookup_1453_16(acc), [119, 101, 98] => lookup_1453_17(acc), _ => info, }, None => info, } } #[inline] fn lookup_1454() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1455() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1456() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1457() -> Info { Info { len: 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_1(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_2(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_5(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_6(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_7(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_8(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_9(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458_10(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1458<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1458_0(acc), [98, 105, 122] => lookup_1458_1(acc), [99, 111] => lookup_1458_2(acc), [99, 111, 109] => lookup_1458_3(acc), [101, 100, 117] => lookup_1458_4(acc), [103, 111, 118] => lookup_1458_5(acc), [105, 110, 102, 111] => lookup_1458_6(acc), [109, 105, 108] => lookup_1458_7(acc), [110, 101, 116] => lookup_1458_8(acc), [111, 114, 103] => lookup_1458_9(acc), [115, 99, 104] => lookup_1458_10(acc), _ => info, }, None => info, } } #[inline] fn lookup_1459_0(acc: usize) -> Info { Info { len: acc + 1 + 7usize, typ: Some(Type::Private), } } #[inline] fn lookup_1459_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1459_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Private), } } #[inline] fn lookup_1459_3_0(wild: &[u8], acc: usize) -> Info { Info { len: acc + 1 + wild.len(), typ: Some(Type::Private), } } #[inline] fn lookup_1459_3<'a, T>(info: Info, mut labels: T, mut acc: usize) -> Info where T: Iterator, { acc += 1 + 6usize; match labels.next() { Some(label) => match label { wild => lookup_1459_3_0(wild, acc), }, None => info, } } #[inline] fn lookup_1459<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 4usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [99, 108, 111, 117, 100, 54, 54] => lookup_1459_0(acc), [104, 115] => lookup_1459_1(acc), [108, 105, 109, 97] => lookup_1459_2(acc), [116, 114, 105, 116, 111, 110] => lookup_1459_3(info, labels, acc), _ => info, }, None => info, } } #[inline] fn lookup_1460() -> Info { Info { len: 7usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1461_0(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1461_1(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1461_2(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1461_3(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1461_4(acc: usize) -> Info { Info { len: acc + 1 + 3usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1461<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 2usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [97, 99] => lookup_1461_0(acc), [99, 111] => lookup_1461_1(acc), [103, 111, 118] => lookup_1461_2(acc), [109, 105, 108] => lookup_1461_3(acc), [111, 114, 103] => lookup_1461_4(acc), _ => info, }, None => info, } } #[inline] fn lookup_1462() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1463() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1464() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1465() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1466() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1467() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1468() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1469() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1470() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1471() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1472() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1473() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1474() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1475_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_6(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_7(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_8(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475_9(acc: usize) -> Info { Info { len: acc + 1 + 2usize, typ: Some(Type::Private), } } #[inline] fn lookup_1475<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [208, 177, 208, 184, 208, 183] => lookup_1475_0(acc), [208, 186, 208, 190, 208, 188] => lookup_1475_1(acc), [208, 186, 209, 128, 209, 139, 208, 188] => lookup_1475_2(acc), [208, 188, 208, 184, 209, 128] => lookup_1475_3(acc), [208, 188, 209, 129, 208, 186] => lookup_1475_4(acc), [208, 190, 209, 128, 208, 179] => lookup_1475_5(acc), [209, 129, 208, 176, 208, 188, 208, 176, 209, 128, 208, 176] => lookup_1475_6(acc), [209, 129, 208, 190, 209, 135, 208, 184] => lookup_1475_7(acc), [209, 129, 208, 191, 208, 177] => lookup_1475_8(acc), [209, 143] => lookup_1475_9(acc), _ => info, }, None => info, } } #[inline] fn lookup_1476() -> Info { Info { len: 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1477() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478_0(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478_2(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478_4(acc: usize) -> Info { Info { len: acc + 1 + 4usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1478<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [208, 176, 208, 186] => lookup_1478_0(acc), [208, 190, 208, 177, 209, 128] => lookup_1478_1(acc), [208, 190, 208, 180] => lookup_1478_2(acc), [208, 190, 209, 128, 208, 179] => lookup_1478_3(acc), [208, 191, 209, 128] => lookup_1478_4(acc), [209, 131, 208, 191, 209, 128] => lookup_1478_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1479() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1480() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1481() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1482_0(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1482_1(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1482_2(acc: usize) -> Info { Info { len: acc + 1 + 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1482_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1482<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 10usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [215, 144, 215, 167, 215, 147, 215, 158, 215, 153, 215, 148] => lookup_1482_0(acc), [215, 153, 215, 169, 215, 149, 215, 145] => lookup_1482_1(acc), [215, 158, 215, 158, 215, 169, 215, 156] => lookup_1482_2(acc), [215, 166, 215, 148, 215, 156] => lookup_1482_3(acc), _ => info, }, None => info, } } #[inline] fn lookup_1483() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1484() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1485() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1486() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1487() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1488() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1489() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1490() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1491() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1492() -> Info { Info { len: 16usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1493() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1494() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1495() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1496() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1497() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1498() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1499() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1500() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1501() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1502() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1503() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1504() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1505() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1506() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1507() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1508() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1509() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1510() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1511() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1512() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1513() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1514() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1515() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1516() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1517() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1518() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1519() -> Info { Info { len: 10usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1520() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1521() -> Info { Info { len: 14usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1522() -> Info { Info { len: 8usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1523() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1524() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1525() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1526() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1527() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1528() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1529() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1530() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1531() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1532() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1533() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1534() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1535() -> Info { Info { len: 21usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1536() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1537() -> Info { Info { len: 33usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1538() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1539() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1540() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1541() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1542() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543_0(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543_1(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543_2(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543_3(acc: usize) -> Info { Info { len: acc + 1 + 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543_4(acc: usize) -> Info { Info { len: acc + 1 + 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543_5(acc: usize) -> Info { Info { len: acc + 1 + 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1543<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 9usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [224, 184, 151, 224, 184, 171, 224, 184, 178, 224, 184, 163] => lookup_1543_0(acc), [224, 184, 152, 224, 184, 184, 224, 184, 163, 224, 184, 129, 224, 184, 180, 224, 184, 136] => { lookup_1543_1(acc) } [224, 184, 163, 224, 184, 177, 224, 184, 144, 224, 184, 154, 224, 184, 178, 224, 184, 165] => { lookup_1543_2(acc) } [224, 184, 168, 224, 184, 182, 224, 184, 129, 224, 184, 169, 224, 184, 178] => { lookup_1543_3(acc) } [224, 184, 173, 224, 184, 135, 224, 184, 132, 224, 185, 140, 224, 184, 129, 224, 184, 163] => { lookup_1543_4(acc) } [224, 185, 128, 224, 184, 153, 224, 185, 135, 224, 184, 149] => lookup_1543_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1544() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1545() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1546() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1547() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1548() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1549() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1550() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1551() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1552() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1553() -> Info { Info { len: 18usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1554() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1555() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1556() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1557() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1558() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1559() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1560() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1561() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1562() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1563() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1564() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1565() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1566() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1567() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1568() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1569() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1570() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1571() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1572() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1573() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1574() -> Info { Info { len: 15usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1575() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1576() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1577() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1578() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1579() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1580() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1581() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1582() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1583() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1584() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1585() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1586() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1587() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1588() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1589() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1590() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1591() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1592() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1593() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1594() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1595() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1596() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1597() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1598() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1599() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1600() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1601() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1602() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1603() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1604() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1605() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1606() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1607() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1608() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1609() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1610() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1611() -> Info { Info { len: 9usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1612() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1613() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1614() -> Info { Info { len: 12usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615_0(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615_1(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615_2(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615_3(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615_4(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615_5(acc: usize) -> Info { Info { len: acc + 1 + 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1615<'a, T>(mut labels: T) -> Info where T: Iterator, { let acc = 6usize; let info = Info { len: acc, typ: Some(Type::Icann), }; match labels.next() { Some(label) => match label { [229, 128, 139, 228, 186, 186] => lookup_1615_0(acc), [229, 133, 172, 229, 143, 184] => lookup_1615_1(acc), [230, 148, 191, 229, 186, 156] => lookup_1615_2(acc), [230, 149, 153, 232, 130, 178] => lookup_1615_3(acc), [231, 181, 132, 231, 185, 148] => lookup_1615_4(acc), [231, 182, 178, 231, 181, 161] => lookup_1615_5(acc), _ => info, }, None => info, } } #[inline] fn lookup_1616() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1617() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1618() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } } #[inline] fn lookup_1619() -> Info { Info { len: 6usize, typ: Some(Type::Icann), } }