ETH Price: $2,234.57 (+2.63%)

Token

Hooters (HOOTERS)
 

Overview

Max Total Supply

18 HOOTERS

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
k11c.eth
Balance
1 HOOTERS
0x703fa6eCb45570340DA8Dd0761eAD898B3FDEd82
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Hooters

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-04
*/

// File: IHooterDescriptor.sol



/*********************************
*                                *
*              (+ω+)             *
*                                *
 *********************************/

pragma solidity ^0.8.13;

interface IHooterDescriptor {
    function tokenURI(uint256 tokenId, uint256 seed) external view returns (string memory);
}
// File: Address.sol



pragma solidity ^0.8.13;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}
// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: ERC721.sol



pragma solidity ^0.8.13;








abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    string private _name;
    string private _symbol;

    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
        || interfaceId == type(IERC721Metadata).interfaceId
        || super.supportsInterface(interfaceId);
    }

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");

        uint256 count;
        for (uint256 i; i < _owners.length;) {
            if (owner == _owners[i]) {
                unchecked {
                    ++count;
                }
            }
            unchecked {
                ++i;
            }
        }
        return count;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: invalid token ID");

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(!_exists(tokenId), "ERC721: token already minted");

        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        delete _tokenApprovals[tokenId];
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }

        return true;
    }
}
// File: ERC721Enumerable.sol



pragma solidity ^0.8.7;



abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function totalSupply() public view virtual override returns (uint256) {
        uint256 count;
        for (uint256 i; i < _owners.length;) {
            if (_owners[i] != address(0)) {
                unchecked {
                    ++count;
                }
            }

            unchecked {
                ++i;
            }
        }

        return count;
    }

    function tokenByIndex(uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint256 count;
        for(uint256 i; i < _owners.length;){
            if(owner == _owners[i]) {
                if(count == index) return i;
                else {
                    unchecked {
                        ++count;
                    }
                }
            }

            unchecked {
                ++i;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: Hooters.sol



/*********************************
*                                *
*              (+ω+)             *
*                                *
 *********************************/

pragma solidity ^0.8.13;




contract Hooters is ERC721Enumerable, Ownable {
    event SeedUpdated(uint256 indexed tokenId, uint256 seed);

    mapping(uint256 => uint256) internal seeds;
    IHooterDescriptor public descriptor;
    uint256 public maxSupply = 10000;
    bool public minting = false;
    bool public canUpdateSeed = true;

    constructor(IHooterDescriptor newDescriptor) ERC721("Hooters", "HOOTERS") {
        descriptor = newDescriptor;
    }

    function mint(uint32 count) external payable {
        require(minting, "Minting needs to be enabled to start minting");
        require(count < 51, "Exceeds max per transaction.");
        uint256 nextTokenId = _owners.length;
        unchecked {
            require(nextTokenId + count < maxSupply, "Exceeds max supply.");
        }

        for (uint32 i; i < count;) {
            seeds[nextTokenId] = generateSeed(nextTokenId);
            _mint(_msgSender(), nextTokenId);
            unchecked { ++nextTokenId; ++i; }
        }
    }

    function setMinting(bool value) external onlyOwner {
        minting = value;
    }

    function setDescriptor(IHooterDescriptor newDescriptor) external onlyOwner {
        descriptor = newDescriptor;
    }

    function withdraw() external payable onlyOwner {
        (bool os,)= payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function updateSeed(uint256 tokenId, uint256 seed) external onlyOwner {
        require(canUpdateSeed, "Cannot set the seed");
        seeds[tokenId] = seed;
        emit SeedUpdated(tokenId, seed);
    }

    function disableSeedUpdate() external onlyOwner {
        canUpdateSeed = false;
    }

    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        delete seeds[tokenId];
        _burn(tokenId);
    }

    function getSeed(uint256 tokenId) public view returns (uint256) {
        require(_exists(tokenId), "Hooter does not exist.");
        return seeds[tokenId];
    }

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "Hooter does not exist.");
        uint256 seed = seeds[tokenId];
        return descriptor.tokenURI(tokenId, seed);
    }

    function generateSeed(uint256 tokenId) private view returns (uint256) {
        uint256 r = random(tokenId);
        uint256 headSeed = 100 * (r % 7 + 10) + ((r >> 48) % 20 + 10);
        uint256 faceSeed = 100 * ((r >> 96) % 6 + 10) + ((r >> 96) % 20 + 10);
        uint256 bodySeed = 100 * ((r >> 144) % 7 + 10) + ((r >> 144) % 20 + 10);
        uint256 legsSeed = 100 * ((r >> 192) % 2 + 10) + ((r >> 192) % 20 + 10);
        return 10000 * (10000 * (10000 * headSeed + faceSeed) + bodySeed) + legsSeed;
    }

    function random(uint256 tokenId) private view returns (uint256 pseudoRandomness) {
        pseudoRandomness = uint256(
            keccak256(abi.encodePacked(blockhash(block.number - 1), tokenId))
        );

        return pseudoRandomness;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract IHooterDescriptor","name":"newDescriptor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"SeedUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canUpdateSeed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract IHooterDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableSeedUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IHooterDescriptor","name":"newDescriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"seed","type":"uint256"}],"name":"updateSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526127106008556000600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055503480156200004d57600080fd5b5060405162003e2838038062003e28833981810160405281019062000073919062000377565b6040518060400160405280600781526020017f486f6f74657273000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f484f4f54455253000000000000000000000000000000000000000000000000008152508160009080519060200190620000f792919062000249565b5080600190805190602001906200011092919062000249565b50505062000133620001276200017b60201b60201c565b6200018360201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200040d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025790620003d8565b90600052602060002090601f0160209004810192826200027b5760008555620002c7565b82601f106200029657805160ff1916838001178555620002c7565b82800160010185558215620002c7579182015b82811115620002c6578251825591602001919060010190620002a9565b5b509050620002d69190620002da565b5090565b5b80821115620002f5576000816000905550600101620002db565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200032b82620002fe565b9050919050565b60006200033f826200031e565b9050919050565b620003518162000332565b81146200035d57600080fd5b50565b600081519050620003718162000346565b92915050565b60006020828403121562000390576200038f620002f9565b5b6000620003a08482850162000360565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f157607f821691505b602082108103620004075762000406620003a9565b5b50919050565b613a0b806200041d6000396000f3fe6080604052600436106101d85760003560e01c80634f6ccce711610102578063a71bbebe11610095578063d5abeb0111610064578063d5abeb011461067a578063e0d4ea37146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063a71bbebe146105cf578063b4c7f066146105eb578063b88d4fde14610614578063c87b56dd1461063d576101d8565b80637dc2268c116100d15780637dc2268c146105255780638da5cb5b1461055057806395d89b411461057b578063a22cb465146105a6576101d8565b80634f6ccce7146104575780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806323b872dd1161017a5780633bb2c938116101495780633bb2c938146103e45780633ccfd60b146103fb57806342842e0e1461040557806342966c681461042e576101d8565b806323b872dd146103285780632f745c5914610351578063303e74df1461038e57806333101e1f146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab578063176b72b4146102d457806318160ddd146102fd576101d8565b806301b9a397146101dd57806301ffc9a71461020657806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612413565b610748565b005b34801561021257600080fd5b5061022d60048036038101906102289190612498565b610794565b60405161023a91906124e0565b60405180910390f35b34801561024f57600080fd5b5061025861080e565b6040516102659190612594565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906125ec565b6108a0565b6040516102a29190612628565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061266f565b610925565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906126af565b610a3c565b005b34801561030957600080fd5b50610312610ae7565b60405161031f91906126fe565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612719565b610b86565b005b34801561035d57600080fd5b506103786004803603810190610373919061266f565b610be6565b60405161038591906126fe565b60405180910390f35b34801561039a57600080fd5b506103a3610d19565b6040516103b091906127cb565b60405180910390f35b3480156103c557600080fd5b506103ce610d3f565b6040516103db91906124e0565b60405180910390f35b3480156103f057600080fd5b506103f9610d52565b005b610403610d77565b005b34801561041157600080fd5b5061042c60048036038101906104279190612719565b610dff565b005b34801561043a57600080fd5b50610455600480360381019061045091906125ec565b610e1f565b005b34801561046357600080fd5b5061047e600480360381019061047991906125ec565b610e92565b60405161048b91906126fe565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906125ec565b610ee3565b6040516104c89190612628565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906127e6565b610f9f565b60405161050591906126fe565b60405180910390f35b34801561051a57600080fd5b506105236110ad565b005b34801561053157600080fd5b5061053a6110c1565b60405161054791906124e0565b60405180910390f35b34801561055c57600080fd5b506105656110d4565b6040516105729190612628565b60405180910390f35b34801561058757600080fd5b506105906110fe565b60405161059d9190612594565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061283f565b611190565b005b6105e960048036038101906105e491906128bb565b611310565b005b3480156105f757600080fd5b50610612600480360381019061060d91906128e8565b61145c565b005b34801561062057600080fd5b5061063b60048036038101906106369190612a4a565b611481565b005b34801561064957600080fd5b50610664600480360381019061065f91906125ec565b6114e3565b6040516106719190612594565b60405180910390f35b34801561068657600080fd5b5061068f6115f0565b60405161069c91906126fe565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906125ec565b6115f6565b6040516106d991906126fe565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612acd565b61165b565b60405161071691906124e0565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906127e6565b6116ef565b005b610750611772565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108075750610806826117f0565b5b9050919050565b60606000805461081d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612b3c565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab826118d2565b6108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190612bb9565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093082610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612c4b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bf61195a565b73ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109ed816109e861195a565b61165b565b5b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612cdd565b60405180910390fd5b610a378383611962565b505050565b610a44611772565b600960019054906101000a900460ff16610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90612d49565b60405180910390fd5b806006600084815260200190815260200160002081905550817faabfe5e8bccf1a1352f72b557ce580211305c37f88d5783ae467a1ba5e0761e082604051610adb91906126fe565b60405180910390a25050565b60008060005b600280549050811015610b7e57600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610b2657610b25612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73578160010191505b806001019050610aed565b508091505090565b610b97610b9161195a565b82611a1b565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612e0a565b60405180910390fd5b610be1838383611ab0565b505050565b6000610bf183610f9f565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e9c565b60405180910390fd5b6000805b600280549050811015610cd75760028181548110610c5757610c56612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ccc57838203610cc5578092505050610d13565b8160010191505b806001019050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612e9c565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960019054906101000a900460ff1681565b610d5a611772565b6000600960016101000a81548160ff021916908315150217905550565b610d7f611772565b6000610d896110d4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612eed565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611481565b505050565b610e30610e2a61195a565b82611a1b565b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612f4e565b60405180910390fd5b6006600082815260200190815260200160002060009055610e8f81611c88565b50565b60006002805490508210610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612fe0565b60405180910390fd5b819050919050565b60008060028381548110610efa57610ef9612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612bb9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613072565b60405180910390fd5b6000805b6002805490508110156110a3576002818154811061103457611033612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611098578160010191505b806001019050611013565b5080915050919050565b6110b5611772565b6110bf6000611d6c565b565b600960009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461110d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461113990612b3c565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff166111af61195a565b73ffffffffffffffffffffffffffffffffffffffff1603611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906130de565b60405180910390fd5b806004600061121261195a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112bf61195a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130491906124e0565b60405180910390a35050565b600960009054906101000a900460ff1661135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613170565b60405180910390fd5b60338163ffffffff16106113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906131dc565b60405180910390fd5b600060028054905090506008548263ffffffff168201106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613248565b60405180910390fd5b60005b8263ffffffff168163ffffffff1610156114575761141e82611e32565b600660008481526020019081526020016000208190555061144661144061195a565b83611fe1565b816001019150806001019050611401565b505050565b611464611772565b80600960006101000a81548160ff02191690831515021790555050565b61149261148c61195a565b83611a1b565b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612e0a565b60405180910390fd5b6114dd848484846120ed565b50505050565b60606114ee826118d2565b61152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906132b4565b60405180910390fd5b600060066000848152602001908152602001600020549050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392cb829d84836040518363ffffffff1660e01b81526004016115a29291906132d4565b600060405180830381865afa1580156115bf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115e8919061339e565b915050919050565b60085481565b6000611601826118d2565b611640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611637906132b4565b60405180910390fd5b60066000838152602001908152602001600020549050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f7611772565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90613459565b60405180910390fd5b61176f81611d6c565b50565b61177a61195a565b73ffffffffffffffffffffffffffffffffffffffff166117986110d4565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e5906134c5565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118cb57506118ca82612149565b5b9050919050565b6000600280549050821080156119535750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061190f5761190e612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d583610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a2783610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a695750611a68818561165b565b5b80611aa757508373ffffffffffffffffffffffffffffffffffffffff16611a8f846108a0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad082610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c906135e9565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558160028281548110611be057611bdf612d69565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c9382610ee3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611cdf57611cde612d69565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611e3e836121b3565b90506000600a6014603084901c611e559190613638565b611e5f9190613698565b600a600784611e6e9190613638565b611e789190613698565b6064611e8491906136ee565b611e8e9190613698565b90506000600a6014606085901c611ea59190613638565b611eaf9190613698565b600a6006606086901c611ec29190613638565b611ecc9190613698565b6064611ed891906136ee565b611ee29190613698565b90506000600a6014609086901c611ef99190613638565b611f039190613698565b600a6007609087901c611f169190613638565b611f209190613698565b6064611f2c91906136ee565b611f369190613698565b90506000600a601460c087901c611f4d9190613638565b611f579190613698565b600a600260c088901c611f6a9190613638565b611f749190613698565b6064611f8091906136ee565b611f8a9190613698565b905080828486612710611f9d91906136ee565b611fa79190613698565b612710611fb491906136ee565b611fbe9190613698565b612710611fcb91906136ee565b611fd59190613698565b95505050505050919050565b611fea816118d2565b1561202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613794565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6120f8848484611ab0565b612104848484846121f5565b612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613826565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001436121c29190613846565b40826040516020016121d59291906138c6565b6040516020818303038152906040528051906020012060001c9050919050565b60006122168473ffffffffffffffffffffffffffffffffffffffff1661237c565b1561236f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223f61195a565b8786866040518563ffffffff1660e01b81526004016122619493929190613947565b6020604051808303816000875af192505050801561229d57506040513d601f19601f8201168201806040525081019061229a91906139a8565b60015b61231f573d80600081146122cd576040519150601f19603f3d011682016040523d82523d6000602084013e6122d2565b606091505b506000815103612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613826565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612374565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123ce826123a3565b9050919050565b60006123e0826123c3565b9050919050565b6123f0816123d5565b81146123fb57600080fd5b50565b60008135905061240d816123e7565b92915050565b60006020828403121561242957612428612399565b5b6000612437848285016123fe565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247581612440565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad612399565b5b60006124bc84828501612483565b91505092915050565b60008115159050919050565b6124da816124c5565b82525050565b60006020820190506124f560008301846124d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253557808201518184015260208101905061251a565b83811115612544576000848401525b50505050565b6000601f19601f8301169050919050565b6000612566826124fb565b6125708185612506565b9350612580818560208601612517565b6125898161254a565b840191505092915050565b600060208201905081810360008301526125ae818461255b565b905092915050565b6000819050919050565b6125c9816125b6565b81146125d457600080fd5b50565b6000813590506125e6816125c0565b92915050565b60006020828403121561260257612601612399565b5b6000612610848285016125d7565b91505092915050565b612622816123c3565b82525050565b600060208201905061263d6000830184612619565b92915050565b61264c816123c3565b811461265757600080fd5b50565b60008135905061266981612643565b92915050565b6000806040838503121561268657612685612399565b5b60006126948582860161265a565b92505060206126a5858286016125d7565b9150509250929050565b600080604083850312156126c6576126c5612399565b5b60006126d4858286016125d7565b92505060206126e5858286016125d7565b9150509250929050565b6126f8816125b6565b82525050565b600060208201905061271360008301846126ef565b92915050565b60008060006060848603121561273257612731612399565b5b60006127408682870161265a565b93505060206127518682870161265a565b9250506040612762868287016125d7565b9150509250925092565b6000819050919050565b600061279161278c612787846123a3565b61276c565b6123a3565b9050919050565b60006127a382612776565b9050919050565b60006127b582612798565b9050919050565b6127c5816127aa565b82525050565b60006020820190506127e060008301846127bc565b92915050565b6000602082840312156127fc576127fb612399565b5b600061280a8482850161265a565b91505092915050565b61281c816124c5565b811461282757600080fd5b50565b60008135905061283981612813565b92915050565b6000806040838503121561285657612855612399565b5b60006128648582860161265a565b92505060206128758582860161282a565b9150509250929050565b600063ffffffff82169050919050565b6128988161287f565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d0612399565b5b60006128df848285016128a6565b91505092915050565b6000602082840312156128fe576128fd612399565b5b600061290c8482850161282a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129578261254a565b810181811067ffffffffffffffff821117156129765761297561291f565b5b80604052505050565b600061298961238f565b9050612995828261294e565b919050565b600067ffffffffffffffff8211156129b5576129b461291f565b5b6129be8261254a565b9050602081019050919050565b82818337600083830152505050565b60006129ed6129e88461299a565b61297f565b905082815260208101848484011115612a0957612a0861291a565b5b612a148482856129cb565b509392505050565b600082601f830112612a3157612a30612915565b5b8135612a418482602086016129da565b91505092915050565b60008060008060808587031215612a6457612a63612399565b5b6000612a728782880161265a565b9450506020612a838782880161265a565b9350506040612a94878288016125d7565b925050606085013567ffffffffffffffff811115612ab557612ab461239e565b5b612ac187828801612a1c565b91505092959194509250565b60008060408385031215612ae457612ae3612399565b5b6000612af28582860161265a565b9250506020612b038582860161265a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5457607f821691505b602082108103612b6757612b66612b0d565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ba3601883612506565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c35602183612506565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cc7603883612506565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f43616e6e6f742073657420746865207365656400000000000000000000000000600082015250565b6000612d33601383612506565b9150612d3e82612cfd565b602082019050919050565b60006020820190508181036000830152612d6281612d26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612df4602d83612506565b9150612dff82612d98565b604082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612e86602b83612506565b9150612e9182612e2a565b604082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b600081905092915050565b50565b6000612ed7600083612ebc565b9150612ee282612ec7565b600082019050919050565b6000612ef882612eca565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612f38601583612506565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612fca602c83612506565b9150612fd582612f6e565b604082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061305c602983612506565b915061306782613000565b604082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130c8601983612506565b91506130d382613092565b602082019050919050565b600060208201905081810360008301526130f7816130bb565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b600061315a602c83612506565b9150613165826130fe565b604082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b60006131c6601c83612506565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000613232601383612506565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f486f6f74657220646f6573206e6f742065786973742e00000000000000000000600082015250565b600061329e601683612506565b91506132a982613268565b602082019050919050565b600060208201905081810360008301526132cd81613291565b9050919050565b60006040820190506132e960008301856126ef565b6132f660208301846126ef565b9392505050565b600067ffffffffffffffff8211156133185761331761291f565b5b6133218261254a565b9050602081019050919050565b600061334161333c846132fd565b61297f565b90508281526020810184848401111561335d5761335c61291a565b5b613368848285612517565b509392505050565b600082601f83011261338557613384612915565b5b815161339584826020860161332e565b91505092915050565b6000602082840312156133b4576133b3612399565b5b600082015167ffffffffffffffff8111156133d2576133d161239e565b5b6133de84828501613370565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613443602683612506565b915061344e826133e7565b604082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134af602083612506565b91506134ba82613479565b602082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613541602583612506565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135d3602483612506565b91506135de82613577565b604082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613643826125b6565b915061364e836125b6565b92508261365e5761365d613609565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136a3826125b6565b91506136ae836125b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e3576136e2613669565b5b828201905092915050565b60006136f9826125b6565b9150613704836125b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373d5761373c613669565b5b828202905092915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061377e601c83612506565b915061378982613748565b602082019050919050565b600060208201905081810360008301526137ad81613771565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613810603283612506565b915061381b826137b4565b604082019050919050565b6000602082019050818103600083015261383f81613803565b9050919050565b6000613851826125b6565b915061385c836125b6565b92508282101561386f5761386e613669565b5b828203905092915050565b6000819050919050565b6000819050919050565b61389f61389a8261387a565b613884565b82525050565b6000819050919050565b6138c06138bb826125b6565b6138a5565b82525050565b60006138d2828561388e565b6020820191506138e282846138af565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613919826138f2565b61392381856138fd565b9350613933818560208601612517565b61393c8161254a565b840191505092915050565b600060808201905061395c6000830187612619565b6139696020830186612619565b61397660408301856126ef565b8181036060830152613988818461390e565b905095945050505050565b6000815190506139a28161246c565b92915050565b6000602082840312156139be576139bd612399565b5b60006139cc84828501613993565b9150509291505056fea2646970667358221220b46961b8751fb4635ef9db277b1cf2e2a72278965b672726c6795c406ef5219f64736f6c634300080d00330000000000000000000000006932b4ae768ac7955f184044dd24249834c470b5

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80634f6ccce711610102578063a71bbebe11610095578063d5abeb0111610064578063d5abeb011461067a578063e0d4ea37146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063a71bbebe146105cf578063b4c7f066146105eb578063b88d4fde14610614578063c87b56dd1461063d576101d8565b80637dc2268c116100d15780637dc2268c146105255780638da5cb5b1461055057806395d89b411461057b578063a22cb465146105a6576101d8565b80634f6ccce7146104575780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806323b872dd1161017a5780633bb2c938116101495780633bb2c938146103e45780633ccfd60b146103fb57806342842e0e1461040557806342966c681461042e576101d8565b806323b872dd146103285780632f745c5914610351578063303e74df1461038e57806333101e1f146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab578063176b72b4146102d457806318160ddd146102fd576101d8565b806301b9a397146101dd57806301ffc9a71461020657806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612413565b610748565b005b34801561021257600080fd5b5061022d60048036038101906102289190612498565b610794565b60405161023a91906124e0565b60405180910390f35b34801561024f57600080fd5b5061025861080e565b6040516102659190612594565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906125ec565b6108a0565b6040516102a29190612628565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061266f565b610925565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906126af565b610a3c565b005b34801561030957600080fd5b50610312610ae7565b60405161031f91906126fe565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612719565b610b86565b005b34801561035d57600080fd5b506103786004803603810190610373919061266f565b610be6565b60405161038591906126fe565b60405180910390f35b34801561039a57600080fd5b506103a3610d19565b6040516103b091906127cb565b60405180910390f35b3480156103c557600080fd5b506103ce610d3f565b6040516103db91906124e0565b60405180910390f35b3480156103f057600080fd5b506103f9610d52565b005b610403610d77565b005b34801561041157600080fd5b5061042c60048036038101906104279190612719565b610dff565b005b34801561043a57600080fd5b50610455600480360381019061045091906125ec565b610e1f565b005b34801561046357600080fd5b5061047e600480360381019061047991906125ec565b610e92565b60405161048b91906126fe565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906125ec565b610ee3565b6040516104c89190612628565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906127e6565b610f9f565b60405161050591906126fe565b60405180910390f35b34801561051a57600080fd5b506105236110ad565b005b34801561053157600080fd5b5061053a6110c1565b60405161054791906124e0565b60405180910390f35b34801561055c57600080fd5b506105656110d4565b6040516105729190612628565b60405180910390f35b34801561058757600080fd5b506105906110fe565b60405161059d9190612594565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061283f565b611190565b005b6105e960048036038101906105e491906128bb565b611310565b005b3480156105f757600080fd5b50610612600480360381019061060d91906128e8565b61145c565b005b34801561062057600080fd5b5061063b60048036038101906106369190612a4a565b611481565b005b34801561064957600080fd5b50610664600480360381019061065f91906125ec565b6114e3565b6040516106719190612594565b60405180910390f35b34801561068657600080fd5b5061068f6115f0565b60405161069c91906126fe565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906125ec565b6115f6565b6040516106d991906126fe565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612acd565b61165b565b60405161071691906124e0565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906127e6565b6116ef565b005b610750611772565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108075750610806826117f0565b5b9050919050565b60606000805461081d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612b3c565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab826118d2565b6108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190612bb9565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093082610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612c4b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bf61195a565b73ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109ed816109e861195a565b61165b565b5b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612cdd565b60405180910390fd5b610a378383611962565b505050565b610a44611772565b600960019054906101000a900460ff16610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90612d49565b60405180910390fd5b806006600084815260200190815260200160002081905550817faabfe5e8bccf1a1352f72b557ce580211305c37f88d5783ae467a1ba5e0761e082604051610adb91906126fe565b60405180910390a25050565b60008060005b600280549050811015610b7e57600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610b2657610b25612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73578160010191505b806001019050610aed565b508091505090565b610b97610b9161195a565b82611a1b565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612e0a565b60405180910390fd5b610be1838383611ab0565b505050565b6000610bf183610f9f565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e9c565b60405180910390fd5b6000805b600280549050811015610cd75760028181548110610c5757610c56612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ccc57838203610cc5578092505050610d13565b8160010191505b806001019050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612e9c565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960019054906101000a900460ff1681565b610d5a611772565b6000600960016101000a81548160ff021916908315150217905550565b610d7f611772565b6000610d896110d4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612eed565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611481565b505050565b610e30610e2a61195a565b82611a1b565b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612f4e565b60405180910390fd5b6006600082815260200190815260200160002060009055610e8f81611c88565b50565b60006002805490508210610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612fe0565b60405180910390fd5b819050919050565b60008060028381548110610efa57610ef9612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612bb9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613072565b60405180910390fd5b6000805b6002805490508110156110a3576002818154811061103457611033612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611098578160010191505b806001019050611013565b5080915050919050565b6110b5611772565b6110bf6000611d6c565b565b600960009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461110d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461113990612b3c565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff166111af61195a565b73ffffffffffffffffffffffffffffffffffffffff1603611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906130de565b60405180910390fd5b806004600061121261195a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112bf61195a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130491906124e0565b60405180910390a35050565b600960009054906101000a900460ff1661135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613170565b60405180910390fd5b60338163ffffffff16106113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906131dc565b60405180910390fd5b600060028054905090506008548263ffffffff168201106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613248565b60405180910390fd5b60005b8263ffffffff168163ffffffff1610156114575761141e82611e32565b600660008481526020019081526020016000208190555061144661144061195a565b83611fe1565b816001019150806001019050611401565b505050565b611464611772565b80600960006101000a81548160ff02191690831515021790555050565b61149261148c61195a565b83611a1b565b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612e0a565b60405180910390fd5b6114dd848484846120ed565b50505050565b60606114ee826118d2565b61152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906132b4565b60405180910390fd5b600060066000848152602001908152602001600020549050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392cb829d84836040518363ffffffff1660e01b81526004016115a29291906132d4565b600060405180830381865afa1580156115bf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115e8919061339e565b915050919050565b60085481565b6000611601826118d2565b611640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611637906132b4565b60405180910390fd5b60066000838152602001908152602001600020549050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f7611772565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90613459565b60405180910390fd5b61176f81611d6c565b50565b61177a61195a565b73ffffffffffffffffffffffffffffffffffffffff166117986110d4565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e5906134c5565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118cb57506118ca82612149565b5b9050919050565b6000600280549050821080156119535750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061190f5761190e612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d583610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a2783610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a695750611a68818561165b565b5b80611aa757508373ffffffffffffffffffffffffffffffffffffffff16611a8f846108a0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad082610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c906135e9565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558160028281548110611be057611bdf612d69565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c9382610ee3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611cdf57611cde612d69565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611e3e836121b3565b90506000600a6014603084901c611e559190613638565b611e5f9190613698565b600a600784611e6e9190613638565b611e789190613698565b6064611e8491906136ee565b611e8e9190613698565b90506000600a6014606085901c611ea59190613638565b611eaf9190613698565b600a6006606086901c611ec29190613638565b611ecc9190613698565b6064611ed891906136ee565b611ee29190613698565b90506000600a6014609086901c611ef99190613638565b611f039190613698565b600a6007609087901c611f169190613638565b611f209190613698565b6064611f2c91906136ee565b611f369190613698565b90506000600a601460c087901c611f4d9190613638565b611f579190613698565b600a600260c088901c611f6a9190613638565b611f749190613698565b6064611f8091906136ee565b611f8a9190613698565b905080828486612710611f9d91906136ee565b611fa79190613698565b612710611fb491906136ee565b611fbe9190613698565b612710611fcb91906136ee565b611fd59190613698565b95505050505050919050565b611fea816118d2565b1561202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613794565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6120f8848484611ab0565b612104848484846121f5565b612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613826565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001436121c29190613846565b40826040516020016121d59291906138c6565b6040516020818303038152906040528051906020012060001c9050919050565b60006122168473ffffffffffffffffffffffffffffffffffffffff1661237c565b1561236f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223f61195a565b8786866040518563ffffffff1660e01b81526004016122619493929190613947565b6020604051808303816000875af192505050801561229d57506040513d601f19601f8201168201806040525081019061229a91906139a8565b60015b61231f573d80600081146122cd576040519150601f19603f3d011682016040523d82523d6000602084013e6122d2565b606091505b506000815103612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613826565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612374565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123ce826123a3565b9050919050565b60006123e0826123c3565b9050919050565b6123f0816123d5565b81146123fb57600080fd5b50565b60008135905061240d816123e7565b92915050565b60006020828403121561242957612428612399565b5b6000612437848285016123fe565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247581612440565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad612399565b5b60006124bc84828501612483565b91505092915050565b60008115159050919050565b6124da816124c5565b82525050565b60006020820190506124f560008301846124d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253557808201518184015260208101905061251a565b83811115612544576000848401525b50505050565b6000601f19601f8301169050919050565b6000612566826124fb565b6125708185612506565b9350612580818560208601612517565b6125898161254a565b840191505092915050565b600060208201905081810360008301526125ae818461255b565b905092915050565b6000819050919050565b6125c9816125b6565b81146125d457600080fd5b50565b6000813590506125e6816125c0565b92915050565b60006020828403121561260257612601612399565b5b6000612610848285016125d7565b91505092915050565b612622816123c3565b82525050565b600060208201905061263d6000830184612619565b92915050565b61264c816123c3565b811461265757600080fd5b50565b60008135905061266981612643565b92915050565b6000806040838503121561268657612685612399565b5b60006126948582860161265a565b92505060206126a5858286016125d7565b9150509250929050565b600080604083850312156126c6576126c5612399565b5b60006126d4858286016125d7565b92505060206126e5858286016125d7565b9150509250929050565b6126f8816125b6565b82525050565b600060208201905061271360008301846126ef565b92915050565b60008060006060848603121561273257612731612399565b5b60006127408682870161265a565b93505060206127518682870161265a565b9250506040612762868287016125d7565b9150509250925092565b6000819050919050565b600061279161278c612787846123a3565b61276c565b6123a3565b9050919050565b60006127a382612776565b9050919050565b60006127b582612798565b9050919050565b6127c5816127aa565b82525050565b60006020820190506127e060008301846127bc565b92915050565b6000602082840312156127fc576127fb612399565b5b600061280a8482850161265a565b91505092915050565b61281c816124c5565b811461282757600080fd5b50565b60008135905061283981612813565b92915050565b6000806040838503121561285657612855612399565b5b60006128648582860161265a565b92505060206128758582860161282a565b9150509250929050565b600063ffffffff82169050919050565b6128988161287f565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d0612399565b5b60006128df848285016128a6565b91505092915050565b6000602082840312156128fe576128fd612399565b5b600061290c8482850161282a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129578261254a565b810181811067ffffffffffffffff821117156129765761297561291f565b5b80604052505050565b600061298961238f565b9050612995828261294e565b919050565b600067ffffffffffffffff8211156129b5576129b461291f565b5b6129be8261254a565b9050602081019050919050565b82818337600083830152505050565b60006129ed6129e88461299a565b61297f565b905082815260208101848484011115612a0957612a0861291a565b5b612a148482856129cb565b509392505050565b600082601f830112612a3157612a30612915565b5b8135612a418482602086016129da565b91505092915050565b60008060008060808587031215612a6457612a63612399565b5b6000612a728782880161265a565b9450506020612a838782880161265a565b9350506040612a94878288016125d7565b925050606085013567ffffffffffffffff811115612ab557612ab461239e565b5b612ac187828801612a1c565b91505092959194509250565b60008060408385031215612ae457612ae3612399565b5b6000612af28582860161265a565b9250506020612b038582860161265a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5457607f821691505b602082108103612b6757612b66612b0d565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ba3601883612506565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c35602183612506565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cc7603883612506565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f43616e6e6f742073657420746865207365656400000000000000000000000000600082015250565b6000612d33601383612506565b9150612d3e82612cfd565b602082019050919050565b60006020820190508181036000830152612d6281612d26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612df4602d83612506565b9150612dff82612d98565b604082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612e86602b83612506565b9150612e9182612e2a565b604082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b600081905092915050565b50565b6000612ed7600083612ebc565b9150612ee282612ec7565b600082019050919050565b6000612ef882612eca565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612f38601583612506565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612fca602c83612506565b9150612fd582612f6e565b604082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061305c602983612506565b915061306782613000565b604082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130c8601983612506565b91506130d382613092565b602082019050919050565b600060208201905081810360008301526130f7816130bb565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b600061315a602c83612506565b9150613165826130fe565b604082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b60006131c6601c83612506565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000613232601383612506565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f486f6f74657220646f6573206e6f742065786973742e00000000000000000000600082015250565b600061329e601683612506565b91506132a982613268565b602082019050919050565b600060208201905081810360008301526132cd81613291565b9050919050565b60006040820190506132e960008301856126ef565b6132f660208301846126ef565b9392505050565b600067ffffffffffffffff8211156133185761331761291f565b5b6133218261254a565b9050602081019050919050565b600061334161333c846132fd565b61297f565b90508281526020810184848401111561335d5761335c61291a565b5b613368848285612517565b509392505050565b600082601f83011261338557613384612915565b5b815161339584826020860161332e565b91505092915050565b6000602082840312156133b4576133b3612399565b5b600082015167ffffffffffffffff8111156133d2576133d161239e565b5b6133de84828501613370565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613443602683612506565b915061344e826133e7565b604082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134af602083612506565b91506134ba82613479565b602082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613541602583612506565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135d3602483612506565b91506135de82613577565b604082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613643826125b6565b915061364e836125b6565b92508261365e5761365d613609565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136a3826125b6565b91506136ae836125b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e3576136e2613669565b5b828201905092915050565b60006136f9826125b6565b9150613704836125b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373d5761373c613669565b5b828202905092915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061377e601c83612506565b915061378982613748565b602082019050919050565b600060208201905081810360008301526137ad81613771565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613810603283612506565b915061381b826137b4565b604082019050919050565b6000602082019050818103600083015261383f81613803565b9050919050565b6000613851826125b6565b915061385c836125b6565b92508282101561386f5761386e613669565b5b828203905092915050565b6000819050919050565b6000819050919050565b61389f61389a8261387a565b613884565b82525050565b6000819050919050565b6138c06138bb826125b6565b6138a5565b82525050565b60006138d2828561388e565b6020820191506138e282846138af565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613919826138f2565b61392381856138fd565b9350613933818560208601612517565b61393c8161254a565b840191505092915050565b600060808201905061395c6000830187612619565b6139696020830186612619565b61397660408301856126ef565b8181036060830152613988818461390e565b905095945050505050565b6000815190506139a28161246c565b92915050565b6000602082840312156139be576139bd612399565b5b60006139cc84828501613993565b9150509291505056fea2646970667358221220b46961b8751fb4635ef9db277b1cf2e2a72278965b672726c6795c406ef5219f64736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000006932b4ae768ac7955f184044dd24249834c470b5

-----Decoded View---------------
Arg [0] : newDescriptor (address): 0x6932b4aE768ac7955F184044dD24249834c470B5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006932b4ae768ac7955f184044dd24249834c470b5


Deployed Bytecode Sourcemap

37478:3102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38582:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33019:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28955:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28536:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38873:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33251:388;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29637:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33868:659;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37645:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37760:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39089:88;;;;;;;;;;;;;:::i;:::-;;38710:155;;;:::i;:::-;;29891:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39185:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33647:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28086:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27602:476;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36415:103;;;;;;;;;;;;;:::i;:::-;;37726:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35767:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28424:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29164:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37928:553;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38489:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30050:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39556:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37687:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39382:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29465:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36673:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38582:120;35653:13;:11;:13::i;:::-;38681::::1;38668:10;;:26;;;;;;;;;;;;;;;;;;38582:120:::0;:::o;33019:224::-;33121:4;33160:35;33145:50;;;:11;:50;;;;:90;;;;33199:36;33223:11;33199:23;:36::i;:::-;33145:90;33138:97;;33019:224;;;:::o;28316:100::-;28370:13;28403:5;28396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28316:100;:::o;28955:201::-;29031:7;29059:16;29067:7;29059;:16::i;:::-;29051:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;29124:15;:24;29140:7;29124:24;;;;;;;;;;;;;;;;;;;;;29117:31;;28955:201;;;:::o;28536:411::-;28617:13;28633:23;28648:7;28633:14;:23::i;:::-;28617:39;;28681:5;28675:11;;:2;:11;;;28667:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28775:5;28759:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28784:37;28801:5;28808:12;:10;:12::i;:::-;28784:16;:37::i;:::-;28759:62;28737:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28918:21;28927:2;28931:7;28918:8;:21::i;:::-;28606:341;28536:411;;:::o;38873:208::-;35653:13;:11;:13::i;:::-;38962::::1;;;;;;;;;;;38954:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;39027:4;39010:5;:14;39016:7;39010:14;;;;;;;;;;;:21;;;;39059:7;39047:26;39068:4;39047:26;;;;;;:::i;:::-;;;;;;;;38873:208:::0;;:::o;33251:388::-;33312:7;33332:13;33361:9;33356:251;33376:7;:14;;;;33372:1;:18;33356:251;;;33434:1;33412:24;;:7;33420:1;33412:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:24;;;33408:124;;33490:7;;;;;33408:124;33577:3;;;;;33356:251;;;;33626:5;33619:12;;;33251:388;:::o;29637:246::-;29745:41;29764:12;:10;:12::i;:::-;29778:7;29745:18;:41::i;:::-;29737:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;29847:28;29857:4;29863:2;29867:7;29847:9;:28::i;:::-;29637:246;;;:::o;33868:659::-;33965:15;34009:16;34019:5;34009:9;:16::i;:::-;34001:5;:24;33993:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34086:13;34114:9;34110:344;34129:7;:14;;;;34125:1;:18;34110:344;;;34172:7;34180:1;34172:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34163:19;;:5;:19;;;34160:219;;34215:5;34206;:14;34203:161;;34229:1;34222:8;;;;;;34203:161;34314:7;;;;;34160:219;34424:3;;;;;34110:344;;;;34466:53;;;;;;;;;;:::i;:::-;;;;;;;;33868:659;;;;;:::o;37645:35::-;;;;;;;;;;;;;:::o;37760:32::-;;;;;;;;;;;;;:::o;39089:88::-;35653:13;:11;:13::i;:::-;39164:5:::1;39148:13;;:21;;;;;;;;;;;;;;;;;;39089:88::o:0;38710:155::-;35653:13;:11;:13::i;:::-;38769:7:::1;38788;:5;:7::i;:::-;38780:21;;38809;38780:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38768:67;;;38854:2;38846:11;;;::::0;::::1;;38757:108;38710:155::o:0;29891:151::-;29995:39;30012:4;30018:2;30022:7;29995:39;;;;;;;;;;;;:16;:39::i;:::-;29891:151;;;:::o;39185:189::-;39242:41;39261:12;:10;:12::i;:::-;39275:7;39242:18;:41::i;:::-;39234:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;39327:5;:14;39333:7;39327:14;;;;;;;;;;;39320:21;;;39352:14;39358:7;39352:5;:14::i;:::-;39185:189;:::o;33647:213::-;33722:15;33766:7;:14;;;;33758:5;:22;33750:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;33847:5;33840:12;;33647:213;;;:::o;28086:222::-;28158:7;28178:13;28194:7;28202;28194:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28178:32;;28246:1;28229:19;;:5;:19;;;28221:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28295:5;28288:12;;;28086:222;;;:::o;27602:476::-;27674:7;27719:1;27702:19;;:5;:19;;;27694:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27780:13;27809:9;27804:244;27824:7;:14;;;;27820:1;:18;27804:244;;;27869:7;27877:1;27869:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27860:19;;:5;:19;;;27856:119;;27933:7;;;;;27856:119;28018:3;;;;;27804:244;;;;28065:5;28058:12;;;27602:476;;;:::o;36415:103::-;35653:13;:11;:13::i;:::-;36480:30:::1;36507:1;36480:18;:30::i;:::-;36415:103::o:0;37726:27::-;;;;;;;;;;;;;:::o;35767:87::-;35813:7;35840:6;;;;;;;;;;;35833:13;;35767:87;:::o;28424:104::-;28480:13;28513:7;28506:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28424:104;:::o;29164:293::-;29283:8;29267:24;;:12;:10;:12::i;:::-;:24;;;29259:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29377:8;29332:18;:32;29351:12;:10;:12::i;:::-;29332:32;;;;;;;;;;;;;;;:42;29365:8;29332:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29430:8;29401:48;;29416:12;:10;:12::i;:::-;29401:48;;;29440:8;29401:48;;;;;;:::i;:::-;;;;;;;;29164:293;;:::o;37928:553::-;37992:7;;;;;;;;;;;37984:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38075:2;38067:5;:10;;;38059:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;38121:19;38143:7;:14;;;;38121:36;;38223:9;;38215:5;38201:19;;:11;:19;:31;38193:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38285:8;38280:194;38299:5;38295:9;;:1;:9;;;38280:194;;;38343:25;38356:11;38343:12;:25::i;:::-;38322:5;:18;38328:11;38322:18;;;;;;;;;;;:46;;;;38383:32;38389:12;:10;:12::i;:::-;38403:11;38383:5;:32::i;:::-;38442:13;;;;;38457:3;;;;;38280:194;;;;37973:508;37928:553;:::o;38489:85::-;35653:13;:11;:13::i;:::-;38561:5:::1;38551:7;;:15;;;;;;;;;;;;;;;;;;38489:85:::0;:::o;30050:279::-;30181:41;30200:12;:10;:12::i;:::-;30214:7;30181:18;:41::i;:::-;30173:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;30283:38;30297:4;30303:2;30307:7;30316:4;30283:13;:38::i;:::-;30050:279;;;;:::o;39556:233::-;39612:13;39646:16;39654:7;39646;:16::i;:::-;39638:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;39700:12;39715:5;:14;39721:7;39715:14;;;;;;;;;;;;39700:29;;39747:10;;;;;;;;;;;:19;;;39767:7;39776:4;39747:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39740:41;;;39556:233;;;:::o;37687:32::-;;;;:::o;39382:166::-;39437:7;39465:16;39473:7;39465;:16::i;:::-;39457:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;39526:5;:14;39532:7;39526:14;;;;;;;;;;;;39519:21;;39382:166;;;:::o;29465:164::-;29562:4;29586:18;:25;29605:5;29586:25;;;;;;;;;;;;;;;:35;29612:8;29586:35;;;;;;;;;;;;;;;;;;;;;;;;;29579:42;;29465:164;;;;:::o;36673:201::-;35653:13;:11;:13::i;:::-;36782:1:::1;36762:22;;:8;:22;;::::0;36754:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36838:28;36857:8;36838:18;:28::i;:::-;36673:201:::0;:::o;35932:132::-;36007:12;:10;:12::i;:::-;35996:23;;:7;:5;:7::i;:::-;:23;;;35988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35932:132::o;27310:284::-;27412:4;27451:25;27436:40;;;:11;:40;;;;:101;;;;27504:33;27489:48;;;:11;:48;;;;27436:101;:150;;;;27550:36;27574:11;27550:23;:36::i;:::-;27436:150;27429:157;;27310:284;;;:::o;30615:155::-;30680:4;30714:7;:14;;;;30704:7;:24;:58;;;;;30760:1;30732:30;;:7;30740;30732:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:30;;;;30704:58;30697:65;;30615:155;;;:::o;26529:98::-;26582:7;26609:10;26602:17;;26529:98;:::o;31959:174::-;32061:2;32034:15;:24;32050:7;32034:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32117:7;32113:2;32079:46;;32088:23;32103:7;32088:14;:23::i;:::-;32079:46;;;;;;;;;;;;31959:174;;:::o;30778:264::-;30871:4;30888:13;30904:23;30919:7;30904:14;:23::i;:::-;30888:39;;30957:5;30946:16;;:7;:16;;;:52;;;;30966:32;30983:5;30990:7;30966:16;:32::i;:::-;30946:52;:87;;;;31026:7;31002:31;;:20;31014:7;31002:11;:20::i;:::-;:31;;;30946:87;30938:96;;;30778:264;;;;:::o;31523:428::-;31648:4;31621:31;;:23;31636:7;31621:14;:23::i;:::-;:31;;;31613:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31727:1;31713:16;;:2;:16;;;31705:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31842:15;:24;31858:7;31842:24;;;;;;;;;;;;31835:31;;;;;;;;;;;31896:2;31877:7;31885;31877:16;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31935:7;31931:2;31916:27;;31925:4;31916:27;;;;;;;;;;;;31523:428;;;:::o;31276:239::-;31336:13;31352:23;31367:7;31352:14;:23::i;:::-;31336:39;;31395:15;:24;31411:7;31395:24;;;;;;;;;;;;31388:31;;;;;;;;;;;31437:7;31445;31437:16;;;;;;;;:::i;:::-;;;;;;;;;;31430:23;;;;;;;;;;;31499:7;31495:1;31471:36;;31480:5;31471:36;;;;;;;;;;;;31325:190;31276:239;:::o;37034:191::-;37108:16;37127:6;;;;;;;;;;;37108:25;;37153:8;37144:6;;:17;;;;;;;;;;;;;;;;;;37208:8;37177:40;;37198:8;37177:40;;;;;;;;;;;;37097:128;37034:191;:::o;39797:519::-;39858:7;39878:9;39890:15;39897:7;39890:6;:15::i;:::-;39878:27;;39916:16;39974:2;39969;39963;39958:1;:7;;39957:14;;;;:::i;:::-;:19;;;;:::i;:::-;39950:2;39946:1;39942;:5;;;;:::i;:::-;:10;;;;:::i;:::-;39935:3;:18;;;;:::i;:::-;:42;;;;:::i;:::-;39916:61;;39988:16;40054:2;40049;40043;40038:1;:7;;40037:14;;;;:::i;:::-;:19;;;;:::i;:::-;40030:2;40026:1;40020:2;40015:1;:7;;40014:13;;;;:::i;:::-;:18;;;;:::i;:::-;40007:3;:26;;;;:::i;:::-;:50;;;;:::i;:::-;39988:69;;40068:16;40136:2;40131;40124:3;40119:1;:8;;40118:15;;;;:::i;:::-;:20;;;;:::i;:::-;40111:2;40107:1;40100:3;40095:1;:8;;40094:14;;;;:::i;:::-;:19;;;;:::i;:::-;40087:3;:27;;;;:::i;:::-;:52;;;;:::i;:::-;40068:71;;40150:16;40218:2;40213;40206:3;40201:1;:8;;40200:15;;;;:::i;:::-;:20;;;;:::i;:::-;40193:2;40189:1;40182:3;40177:1;:8;;40176:14;;;;:::i;:::-;:19;;;;:::i;:::-;40169:3;:27;;;;:::i;:::-;:52;;;;:::i;:::-;40150:71;;40300:8;40288;40276;40265;40257:5;:16;;;;:::i;:::-;:27;;;;:::i;:::-;40248:5;:37;;;;:::i;:::-;:48;;;;:::i;:::-;40239:5;:58;;;;:::i;:::-;:69;;;;:::i;:::-;40232:76;;;;;;;39797:519;;;:::o;31050:218::-;31131:16;31139:7;31131;:16::i;:::-;31130:17;31122:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31193:7;31206:2;31193:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31252:7;31248:2;31227:33;;31244:1;31227:33;;;;;;;;;;;;31050:218;;:::o;30337:270::-;30450:28;30460:4;30466:2;30470:7;30450:9;:28::i;:::-;30497:47;30520:4;30526:2;30530:7;30539:4;30497:22;:47::i;:::-;30489:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30337:270;;;;:::o;18689:157::-;18774:4;18813:25;18798:40;;;:11;:40;;;;18791:47;;18689:157;;;:::o;40324:253::-;40379:24;40509:1;40494:12;:16;;;;:::i;:::-;40484:27;40513:7;40467:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40457:65;;;;;;40435:98;;40416:117;;40324:253;;;:::o;32141:734::-;32252:4;32273:15;:2;:13;;;:15::i;:::-;32269:575;;;32325:2;32309:36;;;32346:12;:10;:12::i;:::-;32360:4;32366:7;32375:4;32309:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32305:528;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32567:1;32550:6;:13;:18;32546:272;;32593:60;;;;;;;;;;:::i;:::-;;;;;;;;32546:272;32768:6;32762:13;32753:6;32749:2;32745:15;32738:38;32305:528;32441:41;;;32431:51;;;:6;:51;;;;32424:58;;;;;32269:575;32863:4;32856:11;;32141:734;;;;;;;:::o;456:193::-;516:4;533:9;597:7;585:20;577:28;;640:1;633:4;:8;626:15;;;456:193;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:120::-;629:7;658:24;676:5;658:24;:::i;:::-;647:35;;568:120;;;:::o;694:170::-;791:48;833:5;791:48;:::i;:::-;784:5;781:59;771:87;;854:1;851;844:12;771:87;694:170;:::o;870:187::-;940:5;978:6;965:20;956:29;;994:57;1045:5;994:57;:::i;:::-;870:187;;;;:::o;1063:377::-;1146:6;1195:2;1183:9;1174:7;1170:23;1166:32;1163:119;;;1201:79;;:::i;:::-;1163:119;1321:1;1346:77;1415:7;1406:6;1395:9;1391:22;1346:77;:::i;:::-;1336:87;;1292:141;1063:377;;;;:::o;1446:149::-;1482:7;1522:66;1515:5;1511:78;1500:89;;1446:149;;;:::o;1601:120::-;1673:23;1690:5;1673:23;:::i;:::-;1666:5;1663:34;1653:62;;1711:1;1708;1701:12;1653:62;1601:120;:::o;1727:137::-;1772:5;1810:6;1797:20;1788:29;;1826:32;1852:5;1826:32;:::i;:::-;1727:137;;;;:::o;1870:327::-;1928:6;1977:2;1965:9;1956:7;1952:23;1948:32;1945:119;;;1983:79;;:::i;:::-;1945:119;2103:1;2128:52;2172:7;2163:6;2152:9;2148:22;2128:52;:::i;:::-;2118:62;;2074:116;1870:327;;;;:::o;2203:90::-;2237:7;2280:5;2273:13;2266:21;2255:32;;2203:90;;;:::o;2299:109::-;2380:21;2395:5;2380:21;:::i;:::-;2375:3;2368:34;2299:109;;:::o;2414:210::-;2501:4;2539:2;2528:9;2524:18;2516:26;;2552:65;2614:1;2603:9;2599:17;2590:6;2552:65;:::i;:::-;2414:210;;;;:::o;2630:99::-;2682:6;2716:5;2710:12;2700:22;;2630:99;;;:::o;2735:169::-;2819:11;2853:6;2848:3;2841:19;2893:4;2888:3;2884:14;2869:29;;2735:169;;;;:::o;2910:307::-;2978:1;2988:113;3002:6;2999:1;2996:13;2988:113;;;3087:1;3082:3;3078:11;3072:18;3068:1;3063:3;3059:11;3052:39;3024:2;3021:1;3017:10;3012:15;;2988:113;;;3119:6;3116:1;3113:13;3110:101;;;3199:1;3190:6;3185:3;3181:16;3174:27;3110:101;2959:258;2910:307;;;:::o;3223:102::-;3264:6;3315:2;3311:7;3306:2;3299:5;3295:14;3291:28;3281:38;;3223:102;;;:::o;3331:364::-;3419:3;3447:39;3480:5;3447:39;:::i;:::-;3502:71;3566:6;3561:3;3502:71;:::i;:::-;3495:78;;3582:52;3627:6;3622:3;3615:4;3608:5;3604:16;3582:52;:::i;:::-;3659:29;3681:6;3659:29;:::i;:::-;3654:3;3650:39;3643:46;;3423:272;3331:364;;;;:::o;3701:313::-;3814:4;3852:2;3841:9;3837:18;3829:26;;3901:9;3895:4;3891:20;3887:1;3876:9;3872:17;3865:47;3929:78;4002:4;3993:6;3929:78;:::i;:::-;3921:86;;3701:313;;;;:::o;4020:77::-;4057:7;4086:5;4075:16;;4020:77;;;:::o;4103:122::-;4176:24;4194:5;4176:24;:::i;:::-;4169:5;4166:35;4156:63;;4215:1;4212;4205:12;4156:63;4103:122;:::o;4231:139::-;4277:5;4315:6;4302:20;4293:29;;4331:33;4358:5;4331:33;:::i;:::-;4231:139;;;;:::o;4376:329::-;4435:6;4484:2;4472:9;4463:7;4459:23;4455:32;4452:119;;;4490:79;;:::i;:::-;4452:119;4610:1;4635:53;4680:7;4671:6;4660:9;4656:22;4635:53;:::i;:::-;4625:63;;4581:117;4376:329;;;;:::o;4711:118::-;4798:24;4816:5;4798:24;:::i;:::-;4793:3;4786:37;4711:118;;:::o;4835:222::-;4928:4;4966:2;4955:9;4951:18;4943:26;;4979:71;5047:1;5036:9;5032:17;5023:6;4979:71;:::i;:::-;4835:222;;;;:::o;5063:122::-;5136:24;5154:5;5136:24;:::i;:::-;5129:5;5126:35;5116:63;;5175:1;5172;5165:12;5116:63;5063:122;:::o;5191:139::-;5237:5;5275:6;5262:20;5253:29;;5291:33;5318:5;5291:33;:::i;:::-;5191:139;;;;:::o;5336:474::-;5404:6;5412;5461:2;5449:9;5440:7;5436:23;5432:32;5429:119;;;5467:79;;:::i;:::-;5429:119;5587:1;5612:53;5657:7;5648:6;5637:9;5633:22;5612:53;:::i;:::-;5602:63;;5558:117;5714:2;5740:53;5785:7;5776:6;5765:9;5761:22;5740:53;:::i;:::-;5730:63;;5685:118;5336:474;;;;;:::o;5816:::-;5884:6;5892;5941:2;5929:9;5920:7;5916:23;5912:32;5909:119;;;5947:79;;:::i;:::-;5909:119;6067:1;6092:53;6137:7;6128:6;6117:9;6113:22;6092:53;:::i;:::-;6082:63;;6038:117;6194:2;6220:53;6265:7;6256:6;6245:9;6241:22;6220:53;:::i;:::-;6210:63;;6165:118;5816:474;;;;;:::o;6296:118::-;6383:24;6401:5;6383:24;:::i;:::-;6378:3;6371:37;6296:118;;:::o;6420:222::-;6513:4;6551:2;6540:9;6536:18;6528:26;;6564:71;6632:1;6621:9;6617:17;6608:6;6564:71;:::i;:::-;6420:222;;;;:::o;6648:619::-;6725:6;6733;6741;6790:2;6778:9;6769:7;6765:23;6761:32;6758:119;;;6796:79;;:::i;:::-;6758:119;6916:1;6941:53;6986:7;6977:6;6966:9;6962:22;6941:53;:::i;:::-;6931:63;;6887:117;7043:2;7069:53;7114:7;7105:6;7094:9;7090:22;7069:53;:::i;:::-;7059:63;;7014:118;7171:2;7197:53;7242:7;7233:6;7222:9;7218:22;7197:53;:::i;:::-;7187:63;;7142:118;6648:619;;;;;:::o;7273:60::-;7301:3;7322:5;7315:12;;7273:60;;;:::o;7339:142::-;7389:9;7422:53;7440:34;7449:24;7467:5;7449:24;:::i;:::-;7440:34;:::i;:::-;7422:53;:::i;:::-;7409:66;;7339:142;;;:::o;7487:126::-;7537:9;7570:37;7601:5;7570:37;:::i;:::-;7557:50;;7487:126;;;:::o;7619:150::-;7693:9;7726:37;7757:5;7726:37;:::i;:::-;7713:50;;7619:150;;;:::o;7775:179::-;7886:61;7941:5;7886:61;:::i;:::-;7881:3;7874:74;7775:179;;:::o;7960:270::-;8077:4;8115:2;8104:9;8100:18;8092:26;;8128:95;8220:1;8209:9;8205:17;8196:6;8128:95;:::i;:::-;7960:270;;;;:::o;8236:329::-;8295:6;8344:2;8332:9;8323:7;8319:23;8315:32;8312:119;;;8350:79;;:::i;:::-;8312:119;8470:1;8495:53;8540:7;8531:6;8520:9;8516:22;8495:53;:::i;:::-;8485:63;;8441:117;8236:329;;;;:::o;8571:116::-;8641:21;8656:5;8641:21;:::i;:::-;8634:5;8631:32;8621:60;;8677:1;8674;8667:12;8621:60;8571:116;:::o;8693:133::-;8736:5;8774:6;8761:20;8752:29;;8790:30;8814:5;8790:30;:::i;:::-;8693:133;;;;:::o;8832:468::-;8897:6;8905;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9080:1;9105:53;9150:7;9141:6;9130:9;9126:22;9105:53;:::i;:::-;9095:63;;9051:117;9207:2;9233:50;9275:7;9266:6;9255:9;9251:22;9233:50;:::i;:::-;9223:60;;9178:115;8832:468;;;;;:::o;9306:93::-;9342:7;9382:10;9375:5;9371:22;9360:33;;9306:93;;;:::o;9405:120::-;9477:23;9494:5;9477:23;:::i;:::-;9470:5;9467:34;9457:62;;9515:1;9512;9505:12;9457:62;9405:120;:::o;9531:137::-;9576:5;9614:6;9601:20;9592:29;;9630:32;9656:5;9630:32;:::i;:::-;9531:137;;;;:::o;9674:327::-;9732:6;9781:2;9769:9;9760:7;9756:23;9752:32;9749:119;;;9787:79;;:::i;:::-;9749:119;9907:1;9932:52;9976:7;9967:6;9956:9;9952:22;9932:52;:::i;:::-;9922:62;;9878:116;9674:327;;;;:::o;10007:323::-;10063:6;10112:2;10100:9;10091:7;10087:23;10083:32;10080:119;;;10118:79;;:::i;:::-;10080:119;10238:1;10263:50;10305:7;10296:6;10285:9;10281:22;10263:50;:::i;:::-;10253:60;;10209:114;10007:323;;;;:::o;10336:117::-;10445:1;10442;10435:12;10459:117;10568:1;10565;10558:12;10582:180;10630:77;10627:1;10620:88;10727:4;10724:1;10717:15;10751:4;10748:1;10741:15;10768:281;10851:27;10873:4;10851:27;:::i;:::-;10843:6;10839:40;10981:6;10969:10;10966:22;10945:18;10933:10;10930:34;10927:62;10924:88;;;10992:18;;:::i;:::-;10924:88;11032:10;11028:2;11021:22;10811:238;10768:281;;:::o;11055:129::-;11089:6;11116:20;;:::i;:::-;11106:30;;11145:33;11173:4;11165:6;11145:33;:::i;:::-;11055:129;;;:::o;11190:307::-;11251:4;11341:18;11333:6;11330:30;11327:56;;;11363:18;;:::i;:::-;11327:56;11401:29;11423:6;11401:29;:::i;:::-;11393:37;;11485:4;11479;11475:15;11467:23;;11190:307;;;:::o;11503:154::-;11587:6;11582:3;11577;11564:30;11649:1;11640:6;11635:3;11631:16;11624:27;11503:154;;;:::o;11663:410::-;11740:5;11765:65;11781:48;11822:6;11781:48;:::i;:::-;11765:65;:::i;:::-;11756:74;;11853:6;11846:5;11839:21;11891:4;11884:5;11880:16;11929:3;11920:6;11915:3;11911:16;11908:25;11905:112;;;11936:79;;:::i;:::-;11905:112;12026:41;12060:6;12055:3;12050;12026:41;:::i;:::-;11746:327;11663:410;;;;;:::o;12092:338::-;12147:5;12196:3;12189:4;12181:6;12177:17;12173:27;12163:122;;12204:79;;:::i;:::-;12163:122;12321:6;12308:20;12346:78;12420:3;12412:6;12405:4;12397:6;12393:17;12346:78;:::i;:::-;12337:87;;12153:277;12092:338;;;;:::o;12436:943::-;12531:6;12539;12547;12555;12604:3;12592:9;12583:7;12579:23;12575:33;12572:120;;;12611:79;;:::i;:::-;12572:120;12731:1;12756:53;12801:7;12792:6;12781:9;12777:22;12756:53;:::i;:::-;12746:63;;12702:117;12858:2;12884:53;12929:7;12920:6;12909:9;12905:22;12884:53;:::i;:::-;12874:63;;12829:118;12986:2;13012:53;13057:7;13048:6;13037:9;13033:22;13012:53;:::i;:::-;13002:63;;12957:118;13142:2;13131:9;13127:18;13114:32;13173:18;13165:6;13162:30;13159:117;;;13195:79;;:::i;:::-;13159:117;13300:62;13354:7;13345:6;13334:9;13330:22;13300:62;:::i;:::-;13290:72;;13085:287;12436:943;;;;;;;:::o;13385:474::-;13453:6;13461;13510:2;13498:9;13489:7;13485:23;13481:32;13478:119;;;13516:79;;:::i;:::-;13478:119;13636:1;13661:53;13706:7;13697:6;13686:9;13682:22;13661:53;:::i;:::-;13651:63;;13607:117;13763:2;13789:53;13834:7;13825:6;13814:9;13810:22;13789:53;:::i;:::-;13779:63;;13734:118;13385:474;;;;;:::o;13865:180::-;13913:77;13910:1;13903:88;14010:4;14007:1;14000:15;14034:4;14031:1;14024:15;14051:320;14095:6;14132:1;14126:4;14122:12;14112:22;;14179:1;14173:4;14169:12;14200:18;14190:81;;14256:4;14248:6;14244:17;14234:27;;14190:81;14318:2;14310:6;14307:14;14287:18;14284:38;14281:84;;14337:18;;:::i;:::-;14281:84;14102:269;14051:320;;;:::o;14377:174::-;14517:26;14513:1;14505:6;14501:14;14494:50;14377:174;:::o;14557:366::-;14699:3;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14796:93;14885:3;14796:93;:::i;:::-;14914:2;14909:3;14905:12;14898:19;;14557:366;;;:::o;14929:419::-;15095:4;15133:2;15122:9;15118:18;15110:26;;15182:9;15176:4;15172:20;15168:1;15157:9;15153:17;15146:47;15210:131;15336:4;15210:131;:::i;:::-;15202:139;;14929:419;;;:::o;15354:220::-;15494:34;15490:1;15482:6;15478:14;15471:58;15563:3;15558:2;15550:6;15546:15;15539:28;15354:220;:::o;15580:366::-;15722:3;15743:67;15807:2;15802:3;15743:67;:::i;:::-;15736:74;;15819:93;15908:3;15819:93;:::i;:::-;15937:2;15932:3;15928:12;15921:19;;15580:366;;;:::o;15952:419::-;16118:4;16156:2;16145:9;16141:18;16133:26;;16205:9;16199:4;16195:20;16191:1;16180:9;16176:17;16169:47;16233:131;16359:4;16233:131;:::i;:::-;16225:139;;15952:419;;;:::o;16377:243::-;16517:34;16513:1;16505:6;16501:14;16494:58;16586:26;16581:2;16573:6;16569:15;16562:51;16377:243;:::o;16626:366::-;16768:3;16789:67;16853:2;16848:3;16789:67;:::i;:::-;16782:74;;16865:93;16954:3;16865:93;:::i;:::-;16983:2;16978:3;16974:12;16967:19;;16626:366;;;:::o;16998:419::-;17164:4;17202:2;17191:9;17187:18;17179:26;;17251:9;17245:4;17241:20;17237:1;17226:9;17222:17;17215:47;17279:131;17405:4;17279:131;:::i;:::-;17271:139;;16998:419;;;:::o;17423:169::-;17563:21;17559:1;17551:6;17547:14;17540:45;17423:169;:::o;17598:366::-;17740:3;17761:67;17825:2;17820:3;17761:67;:::i;:::-;17754:74;;17837:93;17926:3;17837:93;:::i;:::-;17955:2;17950:3;17946:12;17939:19;;17598:366;;;:::o;17970:419::-;18136:4;18174:2;18163:9;18159:18;18151:26;;18223:9;18217:4;18213:20;18209:1;18198:9;18194:17;18187:47;18251:131;18377:4;18251:131;:::i;:::-;18243:139;;17970:419;;;:::o;18395:180::-;18443:77;18440:1;18433:88;18540:4;18537:1;18530:15;18564:4;18561:1;18554:15;18581:232;18721:34;18717:1;18709:6;18705:14;18698:58;18790:15;18785:2;18777:6;18773:15;18766:40;18581:232;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:230::-;19756:34;19752:1;19744:6;19740:14;19733:58;19825:13;19820:2;19812:6;19808:15;19801:38;19616:230;:::o;19852:366::-;19994:3;20015:67;20079:2;20074:3;20015:67;:::i;:::-;20008:74;;20091:93;20180:3;20091:93;:::i;:::-;20209:2;20204:3;20200:12;20193:19;;19852:366;;;:::o;20224:419::-;20390:4;20428:2;20417:9;20413:18;20405:26;;20477:9;20471:4;20467:20;20463:1;20452:9;20448:17;20441:47;20505:131;20631:4;20505:131;:::i;:::-;20497:139;;20224:419;;;:::o;20649:147::-;20750:11;20787:3;20772:18;;20649:147;;;;:::o;20802:114::-;;:::o;20922:398::-;21081:3;21102:83;21183:1;21178:3;21102:83;:::i;:::-;21095:90;;21194:93;21283:3;21194:93;:::i;:::-;21312:1;21307:3;21303:11;21296:18;;20922:398;;;:::o;21326:379::-;21510:3;21532:147;21675:3;21532:147;:::i;:::-;21525:154;;21696:3;21689:10;;21326:379;;;:::o;21711:171::-;21851:23;21847:1;21839:6;21835:14;21828:47;21711:171;:::o;21888:366::-;22030:3;22051:67;22115:2;22110:3;22051:67;:::i;:::-;22044:74;;22127:93;22216:3;22127:93;:::i;:::-;22245:2;22240:3;22236:12;22229:19;;21888:366;;;:::o;22260:419::-;22426:4;22464:2;22453:9;22449:18;22441:26;;22513:9;22507:4;22503:20;22499:1;22488:9;22484:17;22477:47;22541:131;22667:4;22541:131;:::i;:::-;22533:139;;22260:419;;;:::o;22685:231::-;22825:34;22821:1;22813:6;22809:14;22802:58;22894:14;22889:2;22881:6;22877:15;22870:39;22685:231;:::o;22922:366::-;23064:3;23085:67;23149:2;23144:3;23085:67;:::i;:::-;23078:74;;23161:93;23250:3;23161:93;:::i;:::-;23279:2;23274:3;23270:12;23263:19;;22922:366;;;:::o;23294:419::-;23460:4;23498:2;23487:9;23483:18;23475:26;;23547:9;23541:4;23537:20;23533:1;23522:9;23518:17;23511:47;23575:131;23701:4;23575:131;:::i;:::-;23567:139;;23294:419;;;:::o;23719:228::-;23859:34;23855:1;23847:6;23843:14;23836:58;23928:11;23923:2;23915:6;23911:15;23904:36;23719:228;:::o;23953:366::-;24095:3;24116:67;24180:2;24175:3;24116:67;:::i;:::-;24109:74;;24192:93;24281:3;24192:93;:::i;:::-;24310:2;24305:3;24301:12;24294:19;;23953:366;;;:::o;24325:419::-;24491:4;24529:2;24518:9;24514:18;24506:26;;24578:9;24572:4;24568:20;24564:1;24553:9;24549:17;24542:47;24606:131;24732:4;24606:131;:::i;:::-;24598:139;;24325:419;;;:::o;24750:175::-;24890:27;24886:1;24878:6;24874:14;24867:51;24750:175;:::o;24931:366::-;25073:3;25094:67;25158:2;25153:3;25094:67;:::i;:::-;25087:74;;25170:93;25259:3;25170:93;:::i;:::-;25288:2;25283:3;25279:12;25272:19;;24931:366;;;:::o;25303:419::-;25469:4;25507:2;25496:9;25492:18;25484:26;;25556:9;25550:4;25546:20;25542:1;25531:9;25527:17;25520:47;25584:131;25710:4;25584:131;:::i;:::-;25576:139;;25303:419;;;:::o;25728:231::-;25868:34;25864:1;25856:6;25852:14;25845:58;25937:14;25932:2;25924:6;25920:15;25913:39;25728:231;:::o;25965:366::-;26107:3;26128:67;26192:2;26187:3;26128:67;:::i;:::-;26121:74;;26204:93;26293:3;26204:93;:::i;:::-;26322:2;26317:3;26313:12;26306:19;;25965:366;;;:::o;26337:419::-;26503:4;26541:2;26530:9;26526:18;26518:26;;26590:9;26584:4;26580:20;26576:1;26565:9;26561:17;26554:47;26618:131;26744:4;26618:131;:::i;:::-;26610:139;;26337:419;;;:::o;26762:178::-;26902:30;26898:1;26890:6;26886:14;26879:54;26762:178;:::o;26946:366::-;27088:3;27109:67;27173:2;27168:3;27109:67;:::i;:::-;27102:74;;27185:93;27274:3;27185:93;:::i;:::-;27303:2;27298:3;27294:12;27287:19;;26946:366;;;:::o;27318:419::-;27484:4;27522:2;27511:9;27507:18;27499:26;;27571:9;27565:4;27561:20;27557:1;27546:9;27542:17;27535:47;27599:131;27725:4;27599:131;:::i;:::-;27591:139;;27318:419;;;:::o;27743:169::-;27883:21;27879:1;27871:6;27867:14;27860:45;27743:169;:::o;27918:366::-;28060:3;28081:67;28145:2;28140:3;28081:67;:::i;:::-;28074:74;;28157:93;28246:3;28157:93;:::i;:::-;28275:2;28270:3;28266:12;28259:19;;27918:366;;;:::o;28290:419::-;28456:4;28494:2;28483:9;28479:18;28471:26;;28543:9;28537:4;28533:20;28529:1;28518:9;28514:17;28507:47;28571:131;28697:4;28571:131;:::i;:::-;28563:139;;28290:419;;;:::o;28715:172::-;28855:24;28851:1;28843:6;28839:14;28832:48;28715:172;:::o;28893:366::-;29035:3;29056:67;29120:2;29115:3;29056:67;:::i;:::-;29049:74;;29132:93;29221:3;29132:93;:::i;:::-;29250:2;29245:3;29241:12;29234:19;;28893:366;;;:::o;29265:419::-;29431:4;29469:2;29458:9;29454:18;29446:26;;29518:9;29512:4;29508:20;29504:1;29493:9;29489:17;29482:47;29546:131;29672:4;29546:131;:::i;:::-;29538:139;;29265:419;;;:::o;29690:332::-;29811:4;29849:2;29838:9;29834:18;29826:26;;29862:71;29930:1;29919:9;29915:17;29906:6;29862:71;:::i;:::-;29943:72;30011:2;30000:9;29996:18;29987:6;29943:72;:::i;:::-;29690:332;;;;;:::o;30028:308::-;30090:4;30180:18;30172:6;30169:30;30166:56;;;30202:18;;:::i;:::-;30166:56;30240:29;30262:6;30240:29;:::i;:::-;30232:37;;30324:4;30318;30314:15;30306:23;;30028:308;;;:::o;30342:421::-;30431:5;30456:66;30472:49;30514:6;30472:49;:::i;:::-;30456:66;:::i;:::-;30447:75;;30545:6;30538:5;30531:21;30583:4;30576:5;30572:16;30621:3;30612:6;30607:3;30603:16;30600:25;30597:112;;;30628:79;;:::i;:::-;30597:112;30718:39;30750:6;30745:3;30740;30718:39;:::i;:::-;30437:326;30342:421;;;;;:::o;30783:355::-;30850:5;30899:3;30892:4;30884:6;30880:17;30876:27;30866:122;;30907:79;;:::i;:::-;30866:122;31017:6;31011:13;31042:90;31128:3;31120:6;31113:4;31105:6;31101:17;31042:90;:::i;:::-;31033:99;;30856:282;30783:355;;;;:::o;31144:524::-;31224:6;31273:2;31261:9;31252:7;31248:23;31244:32;31241:119;;;31279:79;;:::i;:::-;31241:119;31420:1;31409:9;31405:17;31399:24;31450:18;31442:6;31439:30;31436:117;;;31472:79;;:::i;:::-;31436:117;31577:74;31643:7;31634:6;31623:9;31619:22;31577:74;:::i;:::-;31567:84;;31370:291;31144:524;;;;:::o;31674:225::-;31814:34;31810:1;31802:6;31798:14;31791:58;31883:8;31878:2;31870:6;31866:15;31859:33;31674:225;:::o;31905:366::-;32047:3;32068:67;32132:2;32127:3;32068:67;:::i;:::-;32061:74;;32144:93;32233:3;32144:93;:::i;:::-;32262:2;32257:3;32253:12;32246:19;;31905:366;;;:::o;32277:419::-;32443:4;32481:2;32470:9;32466:18;32458:26;;32530:9;32524:4;32520:20;32516:1;32505:9;32501:17;32494:47;32558:131;32684:4;32558:131;:::i;:::-;32550:139;;32277:419;;;:::o;32702:182::-;32842:34;32838:1;32830:6;32826:14;32819:58;32702:182;:::o;32890:366::-;33032:3;33053:67;33117:2;33112:3;33053:67;:::i;:::-;33046:74;;33129:93;33218:3;33129:93;:::i;:::-;33247:2;33242:3;33238:12;33231:19;;32890:366;;;:::o;33262:419::-;33428:4;33466:2;33455:9;33451:18;33443:26;;33515:9;33509:4;33505:20;33501:1;33490:9;33486:17;33479:47;33543:131;33669:4;33543:131;:::i;:::-;33535:139;;33262:419;;;:::o;33687:224::-;33827:34;33823:1;33815:6;33811:14;33804:58;33896:7;33891:2;33883:6;33879:15;33872:32;33687:224;:::o;33917:366::-;34059:3;34080:67;34144:2;34139:3;34080:67;:::i;:::-;34073:74;;34156:93;34245:3;34156:93;:::i;:::-;34274:2;34269:3;34265:12;34258:19;;33917:366;;;:::o;34289:419::-;34455:4;34493:2;34482:9;34478:18;34470:26;;34542:9;34536:4;34532:20;34528:1;34517:9;34513:17;34506:47;34570:131;34696:4;34570:131;:::i;:::-;34562:139;;34289:419;;;:::o;34714:223::-;34854:34;34850:1;34842:6;34838:14;34831:58;34923:6;34918:2;34910:6;34906:15;34899:31;34714:223;:::o;34943:366::-;35085:3;35106:67;35170:2;35165:3;35106:67;:::i;:::-;35099:74;;35182:93;35271:3;35182:93;:::i;:::-;35300:2;35295:3;35291:12;35284:19;;34943:366;;;:::o;35315:419::-;35481:4;35519:2;35508:9;35504:18;35496:26;;35568:9;35562:4;35558:20;35554:1;35543:9;35539:17;35532:47;35596:131;35722:4;35596:131;:::i;:::-;35588:139;;35315:419;;;:::o;35740:180::-;35788:77;35785:1;35778:88;35885:4;35882:1;35875:15;35909:4;35906:1;35899:15;35926:176;35958:1;35975:20;35993:1;35975:20;:::i;:::-;35970:25;;36009:20;36027:1;36009:20;:::i;:::-;36004:25;;36048:1;36038:35;;36053:18;;:::i;:::-;36038:35;36094:1;36091;36087:9;36082:14;;35926:176;;;;:::o;36108:180::-;36156:77;36153:1;36146:88;36253:4;36250:1;36243:15;36277:4;36274:1;36267:15;36294:305;36334:3;36353:20;36371:1;36353:20;:::i;:::-;36348:25;;36387:20;36405:1;36387:20;:::i;:::-;36382:25;;36541:1;36473:66;36469:74;36466:1;36463:81;36460:107;;;36547:18;;:::i;:::-;36460:107;36591:1;36588;36584:9;36577:16;;36294:305;;;;:::o;36605:348::-;36645:7;36668:20;36686:1;36668:20;:::i;:::-;36663:25;;36702:20;36720:1;36702:20;:::i;:::-;36697:25;;36890:1;36822:66;36818:74;36815:1;36812:81;36807:1;36800:9;36793:17;36789:105;36786:131;;;36897:18;;:::i;:::-;36786:131;36945:1;36942;36938:9;36927:20;;36605:348;;;;:::o;36959:178::-;37099:30;37095:1;37087:6;37083:14;37076:54;36959:178;:::o;37143:366::-;37285:3;37306:67;37370:2;37365:3;37306:67;:::i;:::-;37299:74;;37382:93;37471:3;37382:93;:::i;:::-;37500:2;37495:3;37491:12;37484:19;;37143:366;;;:::o;37515:419::-;37681:4;37719:2;37708:9;37704:18;37696:26;;37768:9;37762:4;37758:20;37754:1;37743:9;37739:17;37732:47;37796:131;37922:4;37796:131;:::i;:::-;37788:139;;37515:419;;;:::o;37940:237::-;38080:34;38076:1;38068:6;38064:14;38057:58;38149:20;38144:2;38136:6;38132:15;38125:45;37940:237;:::o;38183:366::-;38325:3;38346:67;38410:2;38405:3;38346:67;:::i;:::-;38339:74;;38422:93;38511:3;38422:93;:::i;:::-;38540:2;38535:3;38531:12;38524:19;;38183:366;;;:::o;38555:419::-;38721:4;38759:2;38748:9;38744:18;38736:26;;38808:9;38802:4;38798:20;38794:1;38783:9;38779:17;38772:47;38836:131;38962:4;38836:131;:::i;:::-;38828:139;;38555:419;;;:::o;38980:191::-;39020:4;39040:20;39058:1;39040:20;:::i;:::-;39035:25;;39074:20;39092:1;39074:20;:::i;:::-;39069:25;;39113:1;39110;39107:8;39104:34;;;39118:18;;:::i;:::-;39104:34;39163:1;39160;39156:9;39148:17;;38980:191;;;;:::o;39177:77::-;39214:7;39243:5;39232:16;;39177:77;;;:::o;39260:79::-;39299:7;39328:5;39317:16;;39260:79;;;:::o;39345:157::-;39450:45;39470:24;39488:5;39470:24;:::i;:::-;39450:45;:::i;:::-;39445:3;39438:58;39345:157;;:::o;39508:79::-;39547:7;39576:5;39565:16;;39508:79;;;:::o;39593:157::-;39698:45;39718:24;39736:5;39718:24;:::i;:::-;39698:45;:::i;:::-;39693:3;39686:58;39593:157;;:::o;39756:397::-;39896:3;39911:75;39982:3;39973:6;39911:75;:::i;:::-;40011:2;40006:3;40002:12;39995:19;;40024:75;40095:3;40086:6;40024:75;:::i;:::-;40124:2;40119:3;40115:12;40108:19;;40144:3;40137:10;;39756:397;;;;;:::o;40159:98::-;40210:6;40244:5;40238:12;40228:22;;40159:98;;;:::o;40263:168::-;40346:11;40380:6;40375:3;40368:19;40420:4;40415:3;40411:14;40396:29;;40263:168;;;;:::o;40437:360::-;40523:3;40551:38;40583:5;40551:38;:::i;:::-;40605:70;40668:6;40663:3;40605:70;:::i;:::-;40598:77;;40684:52;40729:6;40724:3;40717:4;40710:5;40706:16;40684:52;:::i;:::-;40761:29;40783:6;40761:29;:::i;:::-;40756:3;40752:39;40745:46;;40527:270;40437:360;;;;:::o;40803:640::-;40998:4;41036:3;41025:9;41021:19;41013:27;;41050:71;41118:1;41107:9;41103:17;41094:6;41050:71;:::i;:::-;41131:72;41199:2;41188:9;41184:18;41175:6;41131:72;:::i;:::-;41213;41281:2;41270:9;41266:18;41257:6;41213:72;:::i;:::-;41332:9;41326:4;41322:20;41317:2;41306:9;41302:18;41295:48;41360:76;41431:4;41422:6;41360:76;:::i;:::-;41352:84;;40803:640;;;;;;;:::o;41449:141::-;41505:5;41536:6;41530:13;41521:22;;41552:32;41578:5;41552:32;:::i;:::-;41449:141;;;;:::o;41596:349::-;41665:6;41714:2;41702:9;41693:7;41689:23;41685:32;41682:119;;;41720:79;;:::i;:::-;41682:119;41840:1;41865:63;41920:7;41911:6;41900:9;41896:22;41865:63;:::i;:::-;41855:73;;41811:127;41596:349;;;;:::o

Swarm Source

ipfs://b46961b8751fb4635ef9db277b1cf2e2a72278965b672726c6795c406ef5219f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.