Mumbai Testnet

Contract

0x8d079674cDaA31BD89776596cae12f79B7d6c529

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
Mint223237612021-12-06 15:51:03843 days ago1638805863IN
0x8d079674...9B7d6c529
0 MATIC0.0011447910
Add To Whitelist223237162021-12-06 15:49:33843 days ago1638805773IN
0x8d079674...9B7d6c529
0 MATIC0.0006946610
0x60c06040223236232021-12-06 15:46:19843 days ago1638805579IN
 Create: TalkToTheHandTestnet
0 MATIC0.0347010910

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TalkToTheHandTestnet

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at mumbai.polygonscan.com on 2021-12-06
*/

// SPDX-License-Identifier: MIT

// Amended by HashLips
/**
    !Disclaimer!
    These contracts have been used to create tutorials,
    and was created for the purpose to teach people
    how to create smart contracts on the blockchain.
    please review this code on your own before using any of
    the following code for production.
    HashLips will not be liable in any way if for the use 
    of the code. That being said, the code has been tested 
    to the best of the developers' knowledge to work as intended.
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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;
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 onlyOwner {
        _setOwner(address(0));
    }

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

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

pragma solidity >=0.7.0 <0.9.0;

contract TalkToTheHandTestnet is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 0.07 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 20;
    uint256 public maxFreeMintAmount = 2;
    uint256 public nftPerAddressLimit = 10000;
    uint256 public daoShare = 10;
    bool public paused = false;
    bool public revealed = false;
    bool public onlyWhitelisted = true;
    bool public allowFreeMint = true;
    address payable public daoAccount;
    address[] public whitelistedAddresses;
    address[] public freeMintedAddresses;
    mapping(address => uint256) public addressFreeMintedBalance;
    mapping(address => uint256) public addressMintedBalance;
    IERC20 public wethContract;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        address _wethContract
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        setWethContract(_wethContract);
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // public
    function mint(uint256 _mintAmount) public {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmount,
            "max mint amount per session exceeded"
        );
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        uint256 balance = wethContract.balanceOf(msg.sender);
        uint256 price = cost * _mintAmount;
        // require(wethContract.allowance(msg.sender, address(this)) >= price, "Incorrect allowance");
                
        uint256 ownerFreeMintedCount = addressFreeMintedBalance[msg.sender];

        if (msg.sender != owner()) {
            if (onlyWhitelisted == true) {
                require(isWhitelisted(msg.sender), "User is not whitelisted");
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    ownerMintedCount + _mintAmount <= nftPerAddressLimit,
                    "max NFT per address exceeded"
                );
            }

            if (allowFreeMint == true && isFreeMinted(msg.sender) == true) {
                require(ownerFreeMintedCount + _mintAmount <= maxFreeMintAmount, "Max Free NFT per address exceeded. Need funds to mint.");
                price = 0;
            } else {
                require(balance >= price, "Insuficient ETH balance");
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            if (
                allowFreeMint == true &&
                isFreeMinted(msg.sender) == true &&
                (ownerFreeMintedCount + _mintAmount) <= maxFreeMintAmount
            ) {
                addressFreeMintedBalance[msg.sender]++;
            } else {
                wethContract.transferFrom(msg.sender, address(this), price);
            }
            //  payable(daoAccount).transfer(msg.value * (daoShare / uint256(100)));
            
            _safeMint(msg.sender, supply + i);
        }
    }

    function isWhitelisted(address _account) public view returns (bool) {
        for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
            if (whitelistedAddresses[i] == _account) {
                return true;
            }
        }
        return false;
    }

    function isFreeMinted(address _user) public view returns (bool) {
        for (uint256 i = 0; i < freeMintedAddresses.length; i++) {
            if (freeMintedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

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

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

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMintAmount = _newMaxMintAmount;
    }

    function setMaxFreeMintAmount(uint256 _newMaxFreeMintAmount)
        public
        onlyOwner
    {
        maxFreeMintAmount = _newMaxFreeMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setWethContract(address _wethContract) public onlyOwner {
        wethContract = IERC20(_wethContract);
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setAllowFreeMint(bool _state) public onlyOwner {
        allowFreeMint = _state;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }

    function addToWhitelist(address[] calldata _accounts) public onlyOwner {
        require(_accounts.length != 0, "Invalid accounts array");
        for (uint256 i = 0; i < _accounts.length; i++) {
            if (!isWhitelisted(_accounts[i])) {
                whitelistedAddresses.push(_accounts[i]);
            }
        }
    }

    function removeWhitelist(address[] calldata _accounts) public onlyOwner {
        require(_accounts.length != 0, "Invalid accounts array");
        for (uint256 x = 0; x < _accounts.length; x++) {
            for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
                if (whitelistedAddresses[i] == _accounts[x]) {
                    delete whitelistedAddresses[i];
                }
            }
        }
    }

    function addToFreeMint(address[] calldata _accounts) public onlyOwner {
        require(_accounts.length != 0, "Invalid accounts array");
        for (uint256 i = 0; i < _accounts.length; i++) {
            if (!isFreeMinted(_accounts[i])) {
                freeMintedAddresses.push(_accounts[i]);
            }
        }
    }

    function removeFreeMint(address[] calldata _accounts) public onlyOwner {
        require(_accounts.length != 0, "Invalid accounts array");
        for (uint256 x = 0; x < _accounts.length; x++) {
            for (uint256 i = 0; i < freeMintedAddresses.length; i++) {
                if (freeMintedAddresses[i] == _accounts[x]) {
                    delete freeMintedAddresses[i];
                }
            }
        }
    }

    function setDaoAccount(address _newAccount) public onlyOwner {
        daoAccount = payable(_newAccount);
    }

    function setDaoShare(uint256 _newShare) public onlyOwner {
        daoShare = _newShare;
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = wethContract.balanceOf(address(this));
        wethContract.transfer(msg.sender, balance);
    }
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address","name":"_wethContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addToFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoAccount","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freeMintedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"_user","type":"address"}],"name":"isFreeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"removeFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"_state","type":"bool"}],"name":"setAllowFreeMint","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAccount","type":"address"}],"name":"setDaoAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newShare","type":"uint256"}],"name":"setDaoShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeMintAmount","type":"uint256"}],"name":"setMaxFreeMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wethContract","type":"address"}],"name":"setWethContract","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wethContract","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000297565b5066f8b0a10e470000600e55612710600f819055601460108190556002601155601291909155600a601355805463ffffffff191663010100001790553480156200007157600080fd5b5060405162003afb38038062003afb8339810160408190526200009491620003f4565b845185908590620000ad90600090602085019062000297565b508051620000c390600190602084019062000297565b505050620000e0620000da6200010c60201b60201c565b62000110565b620000eb8362000162565b620000f682620001ca565b62000101816200022a565b505050505062000524565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b15760405162461bcd60e51b8152602060048201819052602482015260008051602062003adb83398151915260448201526064015b60405180910390fd5b8051620001c690600b90602084019062000297565b5050565b600a546001600160a01b03163314620002155760405162461bcd60e51b8152602060048201819052602482015260008051602062003adb8339815191526044820152606401620001a8565b8051620001c690600d90602084019062000297565b600a546001600160a01b03163314620002755760405162461bcd60e51b8152602060048201819052602482015260008051602062003adb8339815191526044820152606401620001a8565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b828054620002a590620004d1565b90600052602060002090601f016020900481019282620002c9576000855562000314565b82601f10620002e457805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000314578251825591602001919060010190620002f7565b506200032292915062000326565b5090565b5b8082111562000322576000815560010162000327565b600082601f8301126200034f57600080fd5b81516001600160401b03808211156200036c576200036c6200050e565b604051601f8301601f19908116603f011681019082821181831017156200039757620003976200050e565b81604052838152602092508683858801011115620003b457600080fd5b600091505b83821015620003d85785820183015181830184015290820190620003b9565b83821115620003ea5760008385830101525b9695505050505050565b600080600080600060a086880312156200040d57600080fd5b85516001600160401b03808211156200042557600080fd5b6200043389838a016200033d565b965060208801519150808211156200044a57600080fd5b6200045889838a016200033d565b955060408801519150808211156200046f57600080fd5b6200047d89838a016200033d565b945060608801519150808211156200049457600080fd5b50620004a3888289016200033d565b608088015190935090506001600160a01b0381168114620004c357600080fd5b809150509295509295909350565b600181811c90821680620004e657607f821691505b602082108114156200050857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6135a780620005346000396000f3fe6080604052600436106103a25760003560e01c8063631307a6116101e7578063a0712d681161010d578063c771dbd0116100a0578063da3ef23f1161006f578063da3ef23f14610a8c578063e985e9c514610aac578063f2c4ce1e14610af5578063f2fde38b14610b1557600080fd5b8063c771dbd014610a16578063c87b56dd14610a36578063d0eb26b014610a56578063d5abeb0114610a7657600080fd5b8063b88d4fde116100dc578063b88d4fde146109ab578063ba4e5c49146109cb578063ba7d2c76146109eb578063c668286214610a0157600080fd5b8063a0712d6814610936578063a22cb46514610956578063a475b5dd14610976578063abe0906a1461098b57600080fd5b80637f6497831161018557806395d89b411161015457806395d89b41146108cb5780639a307fa5146108e05780639c70b512146109005780639d3d41de1461092057600080fd5b80637f6497831461084f57806388d19f1b1461086f5780638da5cb5b14610885578063914ede26146108a357600080fd5b80636fadc3ca116101c15780636fadc3ca146107cd57806370a08231146107ed578063715018a61461080d5780637c6b172d1461082257600080fd5b8063631307a6146107785780636352211e146107985780636c0360eb146107b857600080fd5b80632f745c59116102cc5780634780eac11161026a57806355f804b31161023957806355f804b3146106fd5780635ba199921461071d5780635c975abb1461073e5780635d729df51461075857600080fd5b80634780eac11461067e5780634f6ccce71461069e5780635021c593146106be57806351830227146106de57600080fd5b80633ccfd60b116102a65780633ccfd60b1461060957806342842e0e14610611578063438b63001461063157806344a0d68a1461065e57600080fd5b80632f745c59146105a95780633af32abf146105c95780633c952764146105e957600080fd5b806313faede611610344578063239c70ae11610313578063239c70ae1461053357806323b872dd146105495780632aba3832146105695780632c10e68a1461058957600080fd5b806313faede6146104ad57806318160ddd146104d157806318cae269146104e6578063232452161461051357600080fd5b8063081812fc11610380578063081812fc14610420578063081c8c4414610458578063088a4ed01461046d578063095ea7b31461048d57600080fd5b806301ffc9a7146103a757806302329a29146103dc57806306fdde03146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c23660046130a6565b610b35565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103fc6103f736600461306c565b610b60565b005b34801561040a57600080fd5b50610413610ba6565b6040516103d391906132cc565b34801561042c57600080fd5b5061044061043b366004613129565b610c38565b6040516001600160a01b0390911681526020016103d3565b34801561046457600080fd5b50610413610ccd565b34801561047957600080fd5b506103fc610488366004613129565b610d5b565b34801561049957600080fd5b506103fc6104a8366004612fcd565b610d8a565b3480156104b957600080fd5b506104c3600e5481565b6040519081526020016103d3565b3480156104dd57600080fd5b506008546104c3565b3480156104f257600080fd5b506104c3610501366004612e90565b60186020526000908152604090205481565b34801561051f57600080fd5b506103fc61052e366004612ff7565b610ea0565b34801561053f57600080fd5b506104c360105481565b34801561055557600080fd5b506103fc610564366004612ede565b610faf565b34801561057557600080fd5b506103fc610584366004613129565b610fe0565b34801561059557600080fd5b506103fc6105a4366004612e90565b61100f565b3480156105b557600080fd5b506104c36105c4366004612fcd565b611067565b3480156105d557600080fd5b506103c76105e4366004612e90565b6110fd565b3480156105f557600080fd5b506103fc61060436600461306c565b611167565b6103fc6111ad565b34801561061d57600080fd5b506103fc61062c366004612ede565b6112dc565b34801561063d57600080fd5b5061065161064c366004612e90565b6112f7565b6040516103d39190613288565b34801561066a57600080fd5b506103fc610679366004613129565b611399565b34801561068a57600080fd5b50601954610440906001600160a01b031681565b3480156106aa57600080fd5b506104c36106b9366004613129565b6113c8565b3480156106ca57600080fd5b506104406106d9366004613129565b61145b565b3480156106ea57600080fd5b506014546103c790610100900460ff1681565b34801561070957600080fd5b506103fc6107183660046130e0565b611485565b34801561072957600080fd5b506014546103c7906301000000900460ff1681565b34801561074a57600080fd5b506014546103c79060ff1681565b34801561076457600080fd5b506103c7610773366004612e90565b6114c2565b34801561078457600080fd5b506103fc61079336600461306c565b611523565b3480156107a457600080fd5b506104406107b3366004613129565b61156b565b3480156107c457600080fd5b506104136115e2565b3480156107d957600080fd5b506103fc6107e8366004613129565b6115ef565b3480156107f957600080fd5b506104c3610808366004612e90565b61161e565b34801561081957600080fd5b506103fc6116a5565b34801561082e57600080fd5b506104c361083d366004612e90565b60176020526000908152604090205481565b34801561085b57600080fd5b506103fc61086a366004612ff7565b6116db565b34801561087b57600080fd5b506104c360135481565b34801561089157600080fd5b50600a546001600160a01b0316610440565b3480156108af57600080fd5b506014546104409064010000000090046001600160a01b031681565b3480156108d757600080fd5b506104136117c9565b3480156108ec57600080fd5b506103fc6108fb366004612ff7565b6117d8565b34801561090c57600080fd5b506014546103c79062010000900460ff1681565b34801561092c57600080fd5b506104c360115481565b34801561094257600080fd5b506103fc610951366004613129565b6118e7565b34801561096257600080fd5b506103fc610971366004612f96565b611e31565b34801561098257600080fd5b506103fc611ef6565b34801561099757600080fd5b506103fc6109a6366004612e90565b611f31565b3480156109b757600080fd5b506103fc6109c6366004612f1a565b611f7d565b3480156109d757600080fd5b506104406109e6366004613129565b611fb5565b3480156109f757600080fd5b506104c360125481565b348015610a0d57600080fd5b50610413611fc5565b348015610a2257600080fd5b506103fc610a31366004612ff7565b611fd2565b348015610a4257600080fd5b50610413610a51366004613129565b6120c0565b348015610a6257600080fd5b506103fc610a71366004613129565b61223f565b348015610a8257600080fd5b506104c3600f5481565b348015610a9857600080fd5b506103fc610aa73660046130e0565b61226e565b348015610ab857600080fd5b506103c7610ac7366004612eab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b0157600080fd5b506103fc610b103660046130e0565b6122ab565b348015610b2157600080fd5b506103fc610b30366004612e90565b6122e8565b60006001600160e01b0319821663780e9d6360e01b1480610b5a5750610b5a82612383565b92915050565b600a546001600160a01b03163314610b935760405162461bcd60e51b8152600401610b8a90613331565b60405180910390fd5b6014805460ff1916911515919091179055565b606060008054610bb590613475565b80601f0160208091040260200160405190810160405280929190818152602001828054610be190613475565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b506000908152600460205260409020546001600160a01b031690565b600d8054610cda90613475565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690613475565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b505050505081565b600a546001600160a01b03163314610d855760405162461bcd60e51b8152600401610b8a90613331565b601055565b6000610d958261156b565b9050806001600160a01b0316836001600160a01b03161415610e035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b8a565b336001600160a01b0382161480610e1f5750610e1f8133610ac7565b610e915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b8a565b610e9b83836123d3565b505050565b600a546001600160a01b03163314610eca5760405162461bcd60e51b8152600401610b8a90613331565b80610ee75760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5760005b601554811015610f9c57838383818110610f1157610f11613521565b9050602002016020810190610f269190612e90565b6001600160a01b031660158281548110610f4257610f42613521565b6000918252602090912001546001600160a01b03161415610f8a5760158181548110610f7057610f70613521565b600091825260209091200180546001600160a01b03191690555b80610f94816134b0565b915050610ef5565b5080610fa7816134b0565b915050610eea565b610fb93382612441565b610fd55760405162461bcd60e51b8152600401610b8a90613366565b610e9b838383612538565b600a546001600160a01b0316331461100a5760405162461bcd60e51b8152600401610b8a90613331565b601155565b600a546001600160a01b031633146110395760405162461bcd60e51b8152600401610b8a90613331565b601480546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b60006110728361161e565b82106110d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b8a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b60155481101561115e57826001600160a01b03166015828154811061112857611128613521565b6000918252602090912001546001600160a01b0316141561114c5750600192915050565b80611156816134b0565b915050611101565b50600092915050565b600a546001600160a01b031633146111915760405162461bcd60e51b8152600401610b8a90613331565b60148054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146111d75760405162461bcd60e51b8152600401610b8a90613331565b6019546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561121b57600080fd5b505afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112539190613142565b60195460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156112a057600080fd5b505af11580156112b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d89190613089565b5050565b610e9b83838360405180602001604052806000815250611f7d565b606060006113048361161e565b905060008167ffffffffffffffff81111561132157611321613537565b60405190808252806020026020018201604052801561134a578160200160208202803683370190505b50905060005b82811015611391576113628582611067565b82828151811061137457611374613521565b602090810291909101015280611389816134b0565b915050611350565b509392505050565b600a546001600160a01b031633146113c35760405162461bcd60e51b8152600401610b8a90613331565b600e55565b60006113d360085490565b82106114365760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b8a565b6008828154811061144957611449613521565b90600052602060002001549050919050565b6016818154811061146b57600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146114af5760405162461bcd60e51b8152600401610b8a90613331565b80516112d890600b906020840190612d65565b6000805b60165481101561115e57826001600160a01b0316601682815481106114ed576114ed613521565b6000918252602090912001546001600160a01b031614156115115750600192915050565b8061151b816134b0565b9150506114c6565b600a546001600160a01b0316331461154d5760405162461bcd60e51b8152600401610b8a90613331565b6014805491151563010000000263ff00000019909216919091179055565b6000818152600260205260408120546001600160a01b031680610b5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b8a565b600b8054610cda90613475565b600a546001600160a01b031633146116195760405162461bcd60e51b8152600401610b8a90613331565b601355565b60006001600160a01b0382166116895760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b8a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116cf5760405162461bcd60e51b8152600401610b8a90613331565b6116d960006126e3565b565b600a546001600160a01b031633146117055760405162461bcd60e51b8152600401610b8a90613331565b806117225760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5761175783838381811061174257611742613521565b90506020020160208101906105e49190612e90565b6117b757601583838381811061176f5761176f613521565b90506020020160208101906117849190612e90565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b039092169190911790555b806117c1816134b0565b915050611725565b606060018054610bb590613475565b600a546001600160a01b031633146118025760405162461bcd60e51b8152600401610b8a90613331565b8061181f5760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5760005b6016548110156118d45783838381811061184957611849613521565b905060200201602081019061185e9190612e90565b6001600160a01b03166016828154811061187a5761187a613521565b6000918252602090912001546001600160a01b031614156118c257601681815481106118a8576118a8613521565b600091825260209091200180546001600160a01b03191690555b806118cc816134b0565b91505061182d565b50806118df816134b0565b915050611822565b60145460ff16156119335760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b8a565b600061193e60085490565b9050600082116119905760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b8a565b6010548211156119ee5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610b8a565b600f546119fb83836133e7565b1115611a425760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b8a565b6019546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611a8657600080fd5b505afa158015611a9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abe9190613142565b9050600083600e54611ad09190613413565b33600090815260176020526040902054909150611af5600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614611ce55760145462010000900460ff16151560011415611be557611b2c336110fd565b611b785760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b8a565b33600090815260186020526040902054601254611b9587836133e7565b1115611be35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b8a565b505b6014546301000000900460ff1615156001148015611c0d5750611c07336114c2565b15156001145b15611c9557601154611c1f86836133e7565b1115611c8c5760405162461bcd60e51b815260206004820152603660248201527f4d61782046726565204e465420706572206164647265737320657863656564656044820152753217102732b2b210333ab73239903a379036b4b73a1760511b6064820152608401610b8a565b60009150611ce5565b81831015611ce55760405162461bcd60e51b815260206004820152601760248201527f496e737566696369656e74204554482062616c616e63650000000000000000006044820152606401610b8a565b60015b858111611e2957336000908152601860205260408120805491611d0a836134b0565b90915550506014546301000000900460ff1615156001148015611d375750611d31336114c2565b15156001145b8015611d4e5750601154611d4b87846133e7565b11155b15611d7857336000908152601760205260408120805491611d6e836134b0565b9190505550611e04565b6019546040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015611dca57600080fd5b505af1158015611dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e029190613089565b505b611e1733611e1283886133e7565b612735565b80611e21816134b0565b915050611ce8565b505050505050565b6001600160a01b038216331415611e8a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b8a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611f205760405162461bcd60e51b8152600401610b8a90613331565b6014805461ff001916610100179055565b600a546001600160a01b03163314611f5b5760405162461bcd60e51b8152600401610b8a90613331565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b611f873383612441565b611fa35760405162461bcd60e51b8152600401610b8a90613366565b611faf8484848461274f565b50505050565b6015818154811061146b57600080fd5b600c8054610cda90613475565b600a546001600160a01b03163314611ffc5760405162461bcd60e51b8152600401610b8a90613331565b806120195760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5761204e83838381811061203957612039613521565b90506020020160208101906107739190612e90565b6120ae57601683838381811061206657612066613521565b905060200201602081019061207b9190612e90565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b039092169190911790555b806120b8816134b0565b91505061201c565b6000818152600260205260409020546060906001600160a01b031661213f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b8a565b601454610100900460ff166121e057600d805461215b90613475565b80601f016020809104026020016040519081016040528092919081815260200182805461218790613475565b80156121d45780601f106121a9576101008083540402835291602001916121d4565b820191906000526020600020905b8154815290600101906020018083116121b757829003601f168201915b50505050509050919050565b60006121ea612782565b9050600081511161220a5760405180602001604052806000815250612238565b8061221484612791565b600c60405160200161222893929190613187565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146122695760405162461bcd60e51b8152600401610b8a90613331565b601255565b600a546001600160a01b031633146122985760405162461bcd60e51b8152600401610b8a90613331565b80516112d890600c906020840190612d65565b600a546001600160a01b031633146122d55760405162461bcd60e51b8152600401610b8a90613331565b80516112d890600d906020840190612d65565b600a546001600160a01b031633146123125760405162461bcd60e51b8152600401610b8a90613331565b6001600160a01b0381166123775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b8a565b612380816126e3565b50565b60006001600160e01b031982166380ac58cd60e01b14806123b457506001600160e01b03198216635b5e139f60e01b145b80610b5a57506301ffc9a760e01b6001600160e01b0319831614610b5a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124088261156b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166124ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b60006124c58361156b565b9050806001600160a01b0316846001600160a01b031614806125005750836001600160a01b03166124f584610c38565b6001600160a01b0316145b8061253057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661254b8261156b565b6001600160a01b0316146125b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b8a565b6001600160a01b0382166126155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b8a565b61262083838361288f565b61262b6000826123d3565b6001600160a01b0383166000908152600360205260408120805460019290612654908490613432565b90915550506001600160a01b03821660009081526003602052604081208054600192906126829084906133e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112d8828260405180602001604052806000815250612947565b61275a848484612538565b6127668484848461297a565b611faf5760405162461bcd60e51b8152600401610b8a906132df565b6060600b8054610bb590613475565b6060816127b55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156127df57806127c9816134b0565b91506127d89050600a836133ff565b91506127b9565b60008167ffffffffffffffff8111156127fa576127fa613537565b6040519080825280601f01601f191660200182016040528015612824576020820181803683370190505b5090505b841561253057612839600183613432565b9150612846600a866134cb565b6128519060306133e7565b60f81b81838151811061286657612866613521565b60200101906001600160f81b031916908160001a905350612888600a866133ff565b9450612828565b6001600160a01b0383166128ea576128e581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61290d565b816001600160a01b0316836001600160a01b03161461290d5761290d8382612a87565b6001600160a01b03821661292457610e9b81612b24565b826001600160a01b0316826001600160a01b031614610e9b57610e9b8282612bd3565b6129518383612c17565b61295e600084848461297a565b610e9b5760405162461bcd60e51b8152600401610b8a906132df565b60006001600160a01b0384163b15612a7c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129be90339089908890889060040161324b565b602060405180830381600087803b1580156129d857600080fd5b505af1925050508015612a08575060408051601f3d908101601f19168201909252612a05918101906130c3565b60015b612a62573d808015612a36576040519150601f19603f3d011682016040523d82523d6000602084013e612a3b565b606091505b508051612a5a5760405162461bcd60e51b8152600401610b8a906132df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612530565b506001949350505050565b60006001612a948461161e565b612a9e9190613432565b600083815260076020526040902054909150808214612af1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b3690600190613432565b60008381526009602052604081205460088054939450909284908110612b5e57612b5e613521565b906000526020600020015490508060088381548110612b7f57612b7f613521565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bb757612bb761350b565b6001900381819060005260206000200160009055905550505050565b6000612bde8361161e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612c6d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b8a565b6000818152600260205260409020546001600160a01b031615612cd25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b8a565b612cde6000838361288f565b6001600160a01b0382166000908152600360205260408120805460019290612d079084906133e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d7190613475565b90600052602060002090601f016020900481019282612d935760008555612dd9565b82601f10612dac57805160ff1916838001178555612dd9565b82800160010185558215612dd9579182015b82811115612dd9578251825591602001919060010190612dbe565b50612de5929150612de9565b5090565b5b80821115612de55760008155600101612dea565b600067ffffffffffffffff80841115612e1957612e19613537565b604051601f8501601f19908116603f01168101908282118183101715612e4157612e41613537565b81604052809350858152868686011115612e5a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612e8b57600080fd5b919050565b600060208284031215612ea257600080fd5b61223882612e74565b60008060408385031215612ebe57600080fd5b612ec783612e74565b9150612ed560208401612e74565b90509250929050565b600080600060608486031215612ef357600080fd5b612efc84612e74565b9250612f0a60208501612e74565b9150604084013590509250925092565b60008060008060808587031215612f3057600080fd5b612f3985612e74565b9350612f4760208601612e74565b925060408501359150606085013567ffffffffffffffff811115612f6a57600080fd5b8501601f81018713612f7b57600080fd5b612f8a87823560208401612dfe565b91505092959194509250565b60008060408385031215612fa957600080fd5b612fb283612e74565b91506020830135612fc28161354d565b809150509250929050565b60008060408385031215612fe057600080fd5b612fe983612e74565b946020939093013593505050565b6000806020838503121561300a57600080fd5b823567ffffffffffffffff8082111561302257600080fd5b818501915085601f83011261303657600080fd5b81358181111561304557600080fd5b8660208260051b850101111561305a57600080fd5b60209290920196919550909350505050565b60006020828403121561307e57600080fd5b81356122388161354d565b60006020828403121561309b57600080fd5b81516122388161354d565b6000602082840312156130b857600080fd5b81356122388161355b565b6000602082840312156130d557600080fd5b81516122388161355b565b6000602082840312156130f257600080fd5b813567ffffffffffffffff81111561310957600080fd5b8201601f8101841361311a57600080fd5b61253084823560208401612dfe565b60006020828403121561313b57600080fd5b5035919050565b60006020828403121561315457600080fd5b5051919050565b60008151808452613173816020860160208601613449565b601f01601f19169290920160200192915050565b60008451602061319a8285838a01613449565b8551918401916131ad8184848a01613449565b8554920191600090600181811c90808316806131ca57607f831692505b8583108114156131e857634e487b7160e01b85526022600452602485fd5b8080156131fc576001811461320d5761323a565b60ff1985168852838801955061323a565b60008b81526020902060005b858110156132325781548a820152908401908801613219565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061327e9083018461315b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156132c0578351835292840192918401916001016132a4565b50909695505050505050565b602081526000612238602083018461315b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260169082015275496e76616c6964206163636f756e747320617272617960501b604082015260600190565b600082198211156133fa576133fa6134df565b500190565b60008261340e5761340e6134f5565b500490565b600081600019048311821515161561342d5761342d6134df565b500290565b600082821015613444576134446134df565b500390565b60005b8381101561346457818101518382015260200161344c565b83811115611faf5750506000910152565b600181811c9082168061348957607f821691505b602082108114156134aa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134c4576134c46134df565b5060010190565b6000826134da576134da6134f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461238057600080fd5b6001600160e01b03198116811461238057600080fdfea264697066735822122031990df7fa4c603177ec67bfd74008b686bf4c7720e34dd7e87a813b8d7a6c1a64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa000000000000000000000000000000000000000000000000000000000000001154616c6b546f54686548616e6457455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454545448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64554b594a3869634164476b6b6b4a756b4e4c76446b544262746d5039574a6a4a467551774274593141695a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5531394872424641764e7931456e6563343771776562684332787443354d55523872395a5164584a784d56592f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063631307a6116101e7578063a0712d681161010d578063c771dbd0116100a0578063da3ef23f1161006f578063da3ef23f14610a8c578063e985e9c514610aac578063f2c4ce1e14610af5578063f2fde38b14610b1557600080fd5b8063c771dbd014610a16578063c87b56dd14610a36578063d0eb26b014610a56578063d5abeb0114610a7657600080fd5b8063b88d4fde116100dc578063b88d4fde146109ab578063ba4e5c49146109cb578063ba7d2c76146109eb578063c668286214610a0157600080fd5b8063a0712d6814610936578063a22cb46514610956578063a475b5dd14610976578063abe0906a1461098b57600080fd5b80637f6497831161018557806395d89b411161015457806395d89b41146108cb5780639a307fa5146108e05780639c70b512146109005780639d3d41de1461092057600080fd5b80637f6497831461084f57806388d19f1b1461086f5780638da5cb5b14610885578063914ede26146108a357600080fd5b80636fadc3ca116101c15780636fadc3ca146107cd57806370a08231146107ed578063715018a61461080d5780637c6b172d1461082257600080fd5b8063631307a6146107785780636352211e146107985780636c0360eb146107b857600080fd5b80632f745c59116102cc5780634780eac11161026a57806355f804b31161023957806355f804b3146106fd5780635ba199921461071d5780635c975abb1461073e5780635d729df51461075857600080fd5b80634780eac11461067e5780634f6ccce71461069e5780635021c593146106be57806351830227146106de57600080fd5b80633ccfd60b116102a65780633ccfd60b1461060957806342842e0e14610611578063438b63001461063157806344a0d68a1461065e57600080fd5b80632f745c59146105a95780633af32abf146105c95780633c952764146105e957600080fd5b806313faede611610344578063239c70ae11610313578063239c70ae1461053357806323b872dd146105495780632aba3832146105695780632c10e68a1461058957600080fd5b806313faede6146104ad57806318160ddd146104d157806318cae269146104e6578063232452161461051357600080fd5b8063081812fc11610380578063081812fc14610420578063081c8c4414610458578063088a4ed01461046d578063095ea7b31461048d57600080fd5b806301ffc9a7146103a757806302329a29146103dc57806306fdde03146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c23660046130a6565b610b35565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103fc6103f736600461306c565b610b60565b005b34801561040a57600080fd5b50610413610ba6565b6040516103d391906132cc565b34801561042c57600080fd5b5061044061043b366004613129565b610c38565b6040516001600160a01b0390911681526020016103d3565b34801561046457600080fd5b50610413610ccd565b34801561047957600080fd5b506103fc610488366004613129565b610d5b565b34801561049957600080fd5b506103fc6104a8366004612fcd565b610d8a565b3480156104b957600080fd5b506104c3600e5481565b6040519081526020016103d3565b3480156104dd57600080fd5b506008546104c3565b3480156104f257600080fd5b506104c3610501366004612e90565b60186020526000908152604090205481565b34801561051f57600080fd5b506103fc61052e366004612ff7565b610ea0565b34801561053f57600080fd5b506104c360105481565b34801561055557600080fd5b506103fc610564366004612ede565b610faf565b34801561057557600080fd5b506103fc610584366004613129565b610fe0565b34801561059557600080fd5b506103fc6105a4366004612e90565b61100f565b3480156105b557600080fd5b506104c36105c4366004612fcd565b611067565b3480156105d557600080fd5b506103c76105e4366004612e90565b6110fd565b3480156105f557600080fd5b506103fc61060436600461306c565b611167565b6103fc6111ad565b34801561061d57600080fd5b506103fc61062c366004612ede565b6112dc565b34801561063d57600080fd5b5061065161064c366004612e90565b6112f7565b6040516103d39190613288565b34801561066a57600080fd5b506103fc610679366004613129565b611399565b34801561068a57600080fd5b50601954610440906001600160a01b031681565b3480156106aa57600080fd5b506104c36106b9366004613129565b6113c8565b3480156106ca57600080fd5b506104406106d9366004613129565b61145b565b3480156106ea57600080fd5b506014546103c790610100900460ff1681565b34801561070957600080fd5b506103fc6107183660046130e0565b611485565b34801561072957600080fd5b506014546103c7906301000000900460ff1681565b34801561074a57600080fd5b506014546103c79060ff1681565b34801561076457600080fd5b506103c7610773366004612e90565b6114c2565b34801561078457600080fd5b506103fc61079336600461306c565b611523565b3480156107a457600080fd5b506104406107b3366004613129565b61156b565b3480156107c457600080fd5b506104136115e2565b3480156107d957600080fd5b506103fc6107e8366004613129565b6115ef565b3480156107f957600080fd5b506104c3610808366004612e90565b61161e565b34801561081957600080fd5b506103fc6116a5565b34801561082e57600080fd5b506104c361083d366004612e90565b60176020526000908152604090205481565b34801561085b57600080fd5b506103fc61086a366004612ff7565b6116db565b34801561087b57600080fd5b506104c360135481565b34801561089157600080fd5b50600a546001600160a01b0316610440565b3480156108af57600080fd5b506014546104409064010000000090046001600160a01b031681565b3480156108d757600080fd5b506104136117c9565b3480156108ec57600080fd5b506103fc6108fb366004612ff7565b6117d8565b34801561090c57600080fd5b506014546103c79062010000900460ff1681565b34801561092c57600080fd5b506104c360115481565b34801561094257600080fd5b506103fc610951366004613129565b6118e7565b34801561096257600080fd5b506103fc610971366004612f96565b611e31565b34801561098257600080fd5b506103fc611ef6565b34801561099757600080fd5b506103fc6109a6366004612e90565b611f31565b3480156109b757600080fd5b506103fc6109c6366004612f1a565b611f7d565b3480156109d757600080fd5b506104406109e6366004613129565b611fb5565b3480156109f757600080fd5b506104c360125481565b348015610a0d57600080fd5b50610413611fc5565b348015610a2257600080fd5b506103fc610a31366004612ff7565b611fd2565b348015610a4257600080fd5b50610413610a51366004613129565b6120c0565b348015610a6257600080fd5b506103fc610a71366004613129565b61223f565b348015610a8257600080fd5b506104c3600f5481565b348015610a9857600080fd5b506103fc610aa73660046130e0565b61226e565b348015610ab857600080fd5b506103c7610ac7366004612eab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b0157600080fd5b506103fc610b103660046130e0565b6122ab565b348015610b2157600080fd5b506103fc610b30366004612e90565b6122e8565b60006001600160e01b0319821663780e9d6360e01b1480610b5a5750610b5a82612383565b92915050565b600a546001600160a01b03163314610b935760405162461bcd60e51b8152600401610b8a90613331565b60405180910390fd5b6014805460ff1916911515919091179055565b606060008054610bb590613475565b80601f0160208091040260200160405190810160405280929190818152602001828054610be190613475565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b506000908152600460205260409020546001600160a01b031690565b600d8054610cda90613475565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0690613475565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b505050505081565b600a546001600160a01b03163314610d855760405162461bcd60e51b8152600401610b8a90613331565b601055565b6000610d958261156b565b9050806001600160a01b0316836001600160a01b03161415610e035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b8a565b336001600160a01b0382161480610e1f5750610e1f8133610ac7565b610e915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b8a565b610e9b83836123d3565b505050565b600a546001600160a01b03163314610eca5760405162461bcd60e51b8152600401610b8a90613331565b80610ee75760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5760005b601554811015610f9c57838383818110610f1157610f11613521565b9050602002016020810190610f269190612e90565b6001600160a01b031660158281548110610f4257610f42613521565b6000918252602090912001546001600160a01b03161415610f8a5760158181548110610f7057610f70613521565b600091825260209091200180546001600160a01b03191690555b80610f94816134b0565b915050610ef5565b5080610fa7816134b0565b915050610eea565b610fb93382612441565b610fd55760405162461bcd60e51b8152600401610b8a90613366565b610e9b838383612538565b600a546001600160a01b0316331461100a5760405162461bcd60e51b8152600401610b8a90613331565b601155565b600a546001600160a01b031633146110395760405162461bcd60e51b8152600401610b8a90613331565b601480546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b60006110728361161e565b82106110d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b8a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b60155481101561115e57826001600160a01b03166015828154811061112857611128613521565b6000918252602090912001546001600160a01b0316141561114c5750600192915050565b80611156816134b0565b915050611101565b50600092915050565b600a546001600160a01b031633146111915760405162461bcd60e51b8152600401610b8a90613331565b60148054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146111d75760405162461bcd60e51b8152600401610b8a90613331565b6019546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561121b57600080fd5b505afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112539190613142565b60195460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156112a057600080fd5b505af11580156112b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d89190613089565b5050565b610e9b83838360405180602001604052806000815250611f7d565b606060006113048361161e565b905060008167ffffffffffffffff81111561132157611321613537565b60405190808252806020026020018201604052801561134a578160200160208202803683370190505b50905060005b82811015611391576113628582611067565b82828151811061137457611374613521565b602090810291909101015280611389816134b0565b915050611350565b509392505050565b600a546001600160a01b031633146113c35760405162461bcd60e51b8152600401610b8a90613331565b600e55565b60006113d360085490565b82106114365760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b8a565b6008828154811061144957611449613521565b90600052602060002001549050919050565b6016818154811061146b57600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146114af5760405162461bcd60e51b8152600401610b8a90613331565b80516112d890600b906020840190612d65565b6000805b60165481101561115e57826001600160a01b0316601682815481106114ed576114ed613521565b6000918252602090912001546001600160a01b031614156115115750600192915050565b8061151b816134b0565b9150506114c6565b600a546001600160a01b0316331461154d5760405162461bcd60e51b8152600401610b8a90613331565b6014805491151563010000000263ff00000019909216919091179055565b6000818152600260205260408120546001600160a01b031680610b5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b8a565b600b8054610cda90613475565b600a546001600160a01b031633146116195760405162461bcd60e51b8152600401610b8a90613331565b601355565b60006001600160a01b0382166116895760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b8a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116cf5760405162461bcd60e51b8152600401610b8a90613331565b6116d960006126e3565b565b600a546001600160a01b031633146117055760405162461bcd60e51b8152600401610b8a90613331565b806117225760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5761175783838381811061174257611742613521565b90506020020160208101906105e49190612e90565b6117b757601583838381811061176f5761176f613521565b90506020020160208101906117849190612e90565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b039092169190911790555b806117c1816134b0565b915050611725565b606060018054610bb590613475565b600a546001600160a01b031633146118025760405162461bcd60e51b8152600401610b8a90613331565b8061181f5760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5760005b6016548110156118d45783838381811061184957611849613521565b905060200201602081019061185e9190612e90565b6001600160a01b03166016828154811061187a5761187a613521565b6000918252602090912001546001600160a01b031614156118c257601681815481106118a8576118a8613521565b600091825260209091200180546001600160a01b03191690555b806118cc816134b0565b91505061182d565b50806118df816134b0565b915050611822565b60145460ff16156119335760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b8a565b600061193e60085490565b9050600082116119905760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b8a565b6010548211156119ee5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610b8a565b600f546119fb83836133e7565b1115611a425760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b8a565b6019546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015611a8657600080fd5b505afa158015611a9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abe9190613142565b9050600083600e54611ad09190613413565b33600090815260176020526040902054909150611af5600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614611ce55760145462010000900460ff16151560011415611be557611b2c336110fd565b611b785760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b8a565b33600090815260186020526040902054601254611b9587836133e7565b1115611be35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b8a565b505b6014546301000000900460ff1615156001148015611c0d5750611c07336114c2565b15156001145b15611c9557601154611c1f86836133e7565b1115611c8c5760405162461bcd60e51b815260206004820152603660248201527f4d61782046726565204e465420706572206164647265737320657863656564656044820152753217102732b2b210333ab73239903a379036b4b73a1760511b6064820152608401610b8a565b60009150611ce5565b81831015611ce55760405162461bcd60e51b815260206004820152601760248201527f496e737566696369656e74204554482062616c616e63650000000000000000006044820152606401610b8a565b60015b858111611e2957336000908152601860205260408120805491611d0a836134b0565b90915550506014546301000000900460ff1615156001148015611d375750611d31336114c2565b15156001145b8015611d4e5750601154611d4b87846133e7565b11155b15611d7857336000908152601760205260408120805491611d6e836134b0565b9190505550611e04565b6019546040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015611dca57600080fd5b505af1158015611dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e029190613089565b505b611e1733611e1283886133e7565b612735565b80611e21816134b0565b915050611ce8565b505050505050565b6001600160a01b038216331415611e8a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b8a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611f205760405162461bcd60e51b8152600401610b8a90613331565b6014805461ff001916610100179055565b600a546001600160a01b03163314611f5b5760405162461bcd60e51b8152600401610b8a90613331565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b611f873383612441565b611fa35760405162461bcd60e51b8152600401610b8a90613366565b611faf8484848461274f565b50505050565b6015818154811061146b57600080fd5b600c8054610cda90613475565b600a546001600160a01b03163314611ffc5760405162461bcd60e51b8152600401610b8a90613331565b806120195760405162461bcd60e51b8152600401610b8a906133b7565b60005b81811015610e9b5761204e83838381811061203957612039613521565b90506020020160208101906107739190612e90565b6120ae57601683838381811061206657612066613521565b905060200201602081019061207b9190612e90565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b039092169190911790555b806120b8816134b0565b91505061201c565b6000818152600260205260409020546060906001600160a01b031661213f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b8a565b601454610100900460ff166121e057600d805461215b90613475565b80601f016020809104026020016040519081016040528092919081815260200182805461218790613475565b80156121d45780601f106121a9576101008083540402835291602001916121d4565b820191906000526020600020905b8154815290600101906020018083116121b757829003601f168201915b50505050509050919050565b60006121ea612782565b9050600081511161220a5760405180602001604052806000815250612238565b8061221484612791565b600c60405160200161222893929190613187565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146122695760405162461bcd60e51b8152600401610b8a90613331565b601255565b600a546001600160a01b031633146122985760405162461bcd60e51b8152600401610b8a90613331565b80516112d890600c906020840190612d65565b600a546001600160a01b031633146122d55760405162461bcd60e51b8152600401610b8a90613331565b80516112d890600d906020840190612d65565b600a546001600160a01b031633146123125760405162461bcd60e51b8152600401610b8a90613331565b6001600160a01b0381166123775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b8a565b612380816126e3565b50565b60006001600160e01b031982166380ac58cd60e01b14806123b457506001600160e01b03198216635b5e139f60e01b145b80610b5a57506301ffc9a760e01b6001600160e01b0319831614610b5a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124088261156b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166124ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b8a565b60006124c58361156b565b9050806001600160a01b0316846001600160a01b031614806125005750836001600160a01b03166124f584610c38565b6001600160a01b0316145b8061253057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661254b8261156b565b6001600160a01b0316146125b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b8a565b6001600160a01b0382166126155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b8a565b61262083838361288f565b61262b6000826123d3565b6001600160a01b0383166000908152600360205260408120805460019290612654908490613432565b90915550506001600160a01b03821660009081526003602052604081208054600192906126829084906133e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112d8828260405180602001604052806000815250612947565b61275a848484612538565b6127668484848461297a565b611faf5760405162461bcd60e51b8152600401610b8a906132df565b6060600b8054610bb590613475565b6060816127b55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156127df57806127c9816134b0565b91506127d89050600a836133ff565b91506127b9565b60008167ffffffffffffffff8111156127fa576127fa613537565b6040519080825280601f01601f191660200182016040528015612824576020820181803683370190505b5090505b841561253057612839600183613432565b9150612846600a866134cb565b6128519060306133e7565b60f81b81838151811061286657612866613521565b60200101906001600160f81b031916908160001a905350612888600a866133ff565b9450612828565b6001600160a01b0383166128ea576128e581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61290d565b816001600160a01b0316836001600160a01b03161461290d5761290d8382612a87565b6001600160a01b03821661292457610e9b81612b24565b826001600160a01b0316826001600160a01b031614610e9b57610e9b8282612bd3565b6129518383612c17565b61295e600084848461297a565b610e9b5760405162461bcd60e51b8152600401610b8a906132df565b60006001600160a01b0384163b15612a7c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129be90339089908890889060040161324b565b602060405180830381600087803b1580156129d857600080fd5b505af1925050508015612a08575060408051601f3d908101601f19168201909252612a05918101906130c3565b60015b612a62573d808015612a36576040519150601f19603f3d011682016040523d82523d6000602084013e612a3b565b606091505b508051612a5a5760405162461bcd60e51b8152600401610b8a906132df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612530565b506001949350505050565b60006001612a948461161e565b612a9e9190613432565b600083815260076020526040902054909150808214612af1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b3690600190613432565b60008381526009602052604081205460088054939450909284908110612b5e57612b5e613521565b906000526020600020015490508060088381548110612b7f57612b7f613521565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bb757612bb761350b565b6001900381819060005260206000200160009055905550505050565b6000612bde8361161e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612c6d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b8a565b6000818152600260205260409020546001600160a01b031615612cd25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b8a565b612cde6000838361288f565b6001600160a01b0382166000908152600360205260408120805460019290612d079084906133e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d7190613475565b90600052602060002090601f016020900481019282612d935760008555612dd9565b82601f10612dac57805160ff1916838001178555612dd9565b82800160010185558215612dd9579182015b82811115612dd9578251825591602001919060010190612dbe565b50612de5929150612de9565b5090565b5b80821115612de55760008155600101612dea565b600067ffffffffffffffff80841115612e1957612e19613537565b604051601f8501601f19908116603f01168101908282118183101715612e4157612e41613537565b81604052809350858152868686011115612e5a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612e8b57600080fd5b919050565b600060208284031215612ea257600080fd5b61223882612e74565b60008060408385031215612ebe57600080fd5b612ec783612e74565b9150612ed560208401612e74565b90509250929050565b600080600060608486031215612ef357600080fd5b612efc84612e74565b9250612f0a60208501612e74565b9150604084013590509250925092565b60008060008060808587031215612f3057600080fd5b612f3985612e74565b9350612f4760208601612e74565b925060408501359150606085013567ffffffffffffffff811115612f6a57600080fd5b8501601f81018713612f7b57600080fd5b612f8a87823560208401612dfe565b91505092959194509250565b60008060408385031215612fa957600080fd5b612fb283612e74565b91506020830135612fc28161354d565b809150509250929050565b60008060408385031215612fe057600080fd5b612fe983612e74565b946020939093013593505050565b6000806020838503121561300a57600080fd5b823567ffffffffffffffff8082111561302257600080fd5b818501915085601f83011261303657600080fd5b81358181111561304557600080fd5b8660208260051b850101111561305a57600080fd5b60209290920196919550909350505050565b60006020828403121561307e57600080fd5b81356122388161354d565b60006020828403121561309b57600080fd5b81516122388161354d565b6000602082840312156130b857600080fd5b81356122388161355b565b6000602082840312156130d557600080fd5b81516122388161355b565b6000602082840312156130f257600080fd5b813567ffffffffffffffff81111561310957600080fd5b8201601f8101841361311a57600080fd5b61253084823560208401612dfe565b60006020828403121561313b57600080fd5b5035919050565b60006020828403121561315457600080fd5b5051919050565b60008151808452613173816020860160208601613449565b601f01601f19169290920160200192915050565b60008451602061319a8285838a01613449565b8551918401916131ad8184848a01613449565b8554920191600090600181811c90808316806131ca57607f831692505b8583108114156131e857634e487b7160e01b85526022600452602485fd5b8080156131fc576001811461320d5761323a565b60ff1985168852838801955061323a565b60008b81526020902060005b858110156132325781548a820152908401908801613219565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061327e9083018461315b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156132c0578351835292840192918401916001016132a4565b50909695505050505050565b602081526000612238602083018461315b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260169082015275496e76616c6964206163636f756e747320617272617960501b604082015260600190565b600082198211156133fa576133fa6134df565b500190565b60008261340e5761340e6134f5565b500490565b600081600019048311821515161561342d5761342d6134df565b500290565b600082821015613444576134446134df565b500390565b60005b8381101561346457818101518382015260200161344c565b83811115611faf5750506000910152565b600181811c9082168061348957607f821691505b602082108114156134aa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134c4576134c46134df565b5060010190565b6000826134da576134da6134f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461238057600080fd5b6001600160e01b03198116811461238057600080fdfea264697066735822122031990df7fa4c603177ec67bfd74008b686bf4c7720e34dd7e87a813b8d7a6c1a64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa000000000000000000000000000000000000000000000000000000000000001154616c6b546f54686548616e6457455448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454545448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64554b594a3869634164476b6b6b4a756b4e4c76446b544262746d5039574a6a4a467551774274593141695a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5531394872424641764e7931456e6563343771776562684332787443354d55523872395a5164584a784d56592f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TalkToTheHandWETH
Arg [1] : _symbol (string): TTTH
Arg [2] : _initBaseURI (string): ipfs://QmdUKYJ8icAdGkkkJukNLvDkTBbtmP9WJjJFuQwBtY1AiZ/
Arg [3] : _initNotRevealedUri (string): ipfs://QmU19HrBFAvNy1Enec47qwebhC2xtC5MUR8r9ZQdXJxMVY/hidden.json
Arg [4] : _wethContract (address): 0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 54616c6b546f54686548616e6457455448000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 5454544800000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d64554b594a3869634164476b6b6b4a756b4e4c76446b54
Arg [11] : 4262746d5039574a6a4a467551774274593141695a2f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d5531394872424641764e7931456e656334377177656268
Arg [14] : 4332787443354d55523872395a5164584a784d56592f68696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48450:8683:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39671:300;;;;;;;;;;-1:-1:-1;39671:300:0;;;;;:::i;:::-;;:::i;:::-;;;9496:14:1;;9489:22;9471:41;;9459:2;9444:18;39671:300:0;;;;;;;;54853:79;;;;;;;;;;-1:-1:-1;54853:79:0;;;;;:::i;:::-;;:::i;:::-;;26835:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28528:308::-;;;;;;;;;;-1:-1:-1;28528:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7274:32:1;;;7256:51;;7244:2;7229:18;28528:308:0;7110:203:1;48622:28:0;;;;;;;;;;;;;:::i;54021:122::-;;;;;;;;;;-1:-1:-1;54021:122:0;;;;;:::i;:::-;;:::i;28051:411::-;;;;;;;;;;-1:-1:-1;28051:411:0;;;;;:::i;:::-;;:::i;48657:32::-;;;;;;;;;;;;;;;;;;;20620:25:1;;;20608:2;20593:18;48657:32:0;20474:177:1;40474:113:0;;;;;;;;;;-1:-1:-1;40562:10:0;:17;40474:113;;49242:55;;;;;;;;;;-1:-1:-1;49242:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;55499:440;;;;;;;;;;-1:-1:-1;55499:440:0;;;;;:::i;:::-;;:::i;48735:33::-;;;;;;;;;;;;;;;;29587:376;;;;;;;;;;-1:-1:-1;29587:376:0;;;;;:::i;:::-;;:::i;54151:161::-;;;;;;;;;;-1:-1:-1;54151:161:0;;;;;:::i;:::-;;:::i;56733:113::-;;;;;;;;;;-1:-1:-1;56733:113:0;;;;;:::i;:::-;;:::i;40055:343::-;;;;;;;;;;-1:-1:-1;40055:343:0;;;;;:::i;:::-;;:::i;52016:280::-;;;;;;;;;;-1:-1:-1;52016:280:0;;;;;:::i;:::-;;:::i;55045:101::-;;;;;;;;;;-1:-1:-1;55045:101:0;;;;;:::i;:::-;;:::i;56958:172::-;;;:::i;30034:185::-;;;;;;;;;;-1:-1:-1;30034:185:0;;;;;:::i;:::-;;:::i;52583:390::-;;;;;;;;;;-1:-1:-1;52583:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53927:86::-;;;;;;;;;;-1:-1:-1;53927:86:0;;;;;:::i;:::-;;:::i;49304:26::-;;;;;;;;;;-1:-1:-1;49304:26:0;;;;-1:-1:-1;;;;;49304:26:0;;;40664:320;;;;;;;;;;-1:-1:-1;40664:320:0;;;;;:::i;:::-;;:::i;49133:36::-;;;;;;;;;;-1:-1:-1;49133:36:0;;;;;:::i;:::-;;:::i;48934:28::-;;;;;;;;;;-1:-1:-1;48934:28:0;;;;;;;;;;;54320:104;;;;;;;;;;-1:-1:-1;54320:104:0;;;;;:::i;:::-;;:::i;49010:32::-;;;;;;;;;;-1:-1:-1;49010:32:0;;;;;;;;;;;48901:26;;;;;;;;;;-1:-1:-1;48901:26:0;;;;;;;;52304:271;;;;;;;;;;-1:-1:-1;52304:271:0;;;;;:::i;:::-;;:::i;54940:97::-;;;;;;;;;;-1:-1:-1;54940:97:0;;;;;:::i;:::-;;:::i;26442:326::-;;;;;;;;;;-1:-1:-1;26442:326:0;;;;;:::i;:::-;;:::i;48550:21::-;;;;;;;;;;;;;:::i;56854:96::-;;;;;;;;;;-1:-1:-1;56854:96:0;;;;;:::i;:::-;;:::i;26085:295::-;;;;;;;;;;-1:-1:-1;26085:295:0;;;;;:::i;:::-;;:::i;47749:94::-;;;;;;;;;;;;;:::i;49176:59::-;;;;;;;;;;-1:-1:-1;49176:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;55154:337;;;;;;;;;;-1:-1:-1;55154:337:0;;;;;:::i;:::-;;:::i;48866:28::-;;;;;;;;;;;;;;;;47098:87;;;;;;;;;;-1:-1:-1;47171:6:0;;-1:-1:-1;;;;;47171:6:0;47098:87;;49049:33;;;;;;;;;;-1:-1:-1;49049:33:0;;;;;;;-1:-1:-1;;;;;49049:33:0;;;27004:104;;;;;;;;;;;;;:::i;56289:436::-;;;;;;;;;;-1:-1:-1;56289:436:0;;;;;:::i;:::-;;:::i;48969:34::-;;;;;;;;;;-1:-1:-1;48969:34:0;;;;;;;;;;;48775:36;;;;;;;;;;;;;;;;49845:2163;;;;;;;;;;-1:-1:-1;49845:2163:0;;;;;:::i;:::-;;:::i;28908:327::-;;;;;;;;;;-1:-1:-1;28908:327:0;;;;;:::i;:::-;;:::i;53732:69::-;;;;;;;;;;;;;:::i;54432:120::-;;;;;;;;;;-1:-1:-1;54432:120:0;;;;;:::i;:::-;;:::i;30290:365::-;;;;;;;;;;-1:-1:-1;30290:365:0;;;;;:::i;:::-;;:::i;49089:37::-;;;;;;;;;;-1:-1:-1;49089:37:0;;;;;:::i;:::-;;:::i;48818:41::-;;;;;;;;;;;;;;;;48578:37;;;;;;;;;;;;;:::i;55947:334::-;;;;;;;;;;-1:-1:-1;55947:334:0;;;;;:::i;:::-;;:::i;52981:725::-;;;;;;;;;;-1:-1:-1;52981:725:0;;;;;:::i;:::-;;:::i;53809:110::-;;;;;;;;;;-1:-1:-1;53809:110:0;;;;;:::i;:::-;;:::i;48696:32::-;;;;;;;;;;;;;;;;54560:151;;;;;;;;;;-1:-1:-1;54560:151:0;;;;;:::i;:::-;;:::i;29306:214::-;;;;;;;;;;-1:-1:-1;29306:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29477:25:0;;;29448:4;29477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29306:214;54719:126;;;;;;;;;;-1:-1:-1;54719:126:0;;;;;:::i;:::-;;:::i;47998:229::-;;;;;;;;;;-1:-1:-1;47998:229:0;;;;;:::i;:::-;;:::i;39671:300::-;39818:4;-1:-1:-1;;;;;;39860:50:0;;-1:-1:-1;;;39860:50:0;;:103;;;39927:36;39951:11;39927:23;:36::i;:::-;39840:123;39671:300;-1:-1:-1;;39671:300:0:o;54853:79::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;;;;;;;;;54909:6:::1;:15:::0;;-1:-1:-1;;54909:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54853:79::o;26835:100::-;26889:13;26922:5;26915:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26835:100;:::o;28528:308::-;28649:7;32291:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32291:16:0;28674:110;;;;-1:-1:-1;;;28674:110:0;;16785:2:1;28674:110:0;;;16767:21:1;16824:2;16804:18;;;16797:30;16863:34;16843:18;;;16836:62;-1:-1:-1;;;16914:18:1;;;16907:42;16966:19;;28674:110:0;16583:408:1;28674:110:0;-1:-1:-1;28804:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28804:24:0;;28528:308::o;48622:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54021:122::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;54102:13:::1;:33:::0;54021:122::o;28051:411::-;28132:13;28148:23;28163:7;28148:14;:23::i;:::-;28132:39;;28196:5;-1:-1:-1;;;;;28190:11:0;:2;-1:-1:-1;;;;;28190:11:0;;;28182:57;;;;-1:-1:-1;;;28182:57:0;;18736:2:1;28182:57:0;;;18718:21:1;18775:2;18755:18;;;18748:30;18814:34;18794:18;;;18787:62;-1:-1:-1;;;18865:18:1;;;18858:31;18906:19;;28182:57:0;18534:397:1;28182:57:0;24220:10;-1:-1:-1;;;;;28274:21:0;;;;:62;;-1:-1:-1;28299:37:0;28316:5;24220:10;29306:214;:::i;28299:37::-;28252:168;;;;-1:-1:-1;;;28252:168:0;;13999:2:1;28252:168:0;;;13981:21:1;14038:2;14018:18;;;14011:30;14077:34;14057:18;;;14050:62;14148:26;14128:18;;;14121:54;14192:19;;28252:168:0;13797:420:1;28252:168:0;28433:21;28442:2;28446:7;28433:8;:21::i;:::-;28121:341;28051:411;;:::o;55499:440::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;55590:21;55582:56:::1;;;;-1:-1:-1::0;;;55582:56:0::1;;;;;;;:::i;:::-;55654:9;55649:283;55669:20:::0;;::::1;55649:283;;;55716:9;55711:210;55735:20;:27:::0;55731:31;::::1;55711:210;;;55819:9;;55829:1;55819:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55792:39:0::1;:20;55813:1;55792:23;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;55792:23:0::1;:39;55788:118;;;55863:20;55884:1;55863:23;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;55856:30:::0;;-1:-1:-1;;;;;;55856:30:0::1;::::0;;55788:118:::1;55764:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55711:210;;;-1:-1:-1::0;55691:3:0;::::1;::::0;::::1;:::i;:::-;;;;55649:283;;29587:376:::0;29796:41;24220:10;29829:7;29796:18;:41::i;:::-;29774:140;;;;-1:-1:-1;;;29774:140:0;;;;;;;:::i;:::-;29927:28;29937:4;29943:2;29947:7;29927:9;:28::i;54151:161::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;54263:17:::1;:41:::0;54151:161::o;56733:113::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;56805:10:::1;:33:::0;;-1:-1:-1;;;;;56805:33:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;56805:33:0;;::::1;::::0;;;::::1;::::0;;56733:113::o;40055:343::-;40197:7;40252:23;40269:5;40252:16;:23::i;:::-;40244:5;:31;40222:124;;;;-1:-1:-1;;;40222:124:0;;10171:2:1;40222:124:0;;;10153:21:1;10210:2;10190:18;;;10183:30;10249:34;10229:18;;;10222:62;-1:-1:-1;;;10300:18:1;;;10293:41;10351:19;;40222:124:0;9969:407:1;40222:124:0;-1:-1:-1;;;;;;40364:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40055:343::o;52016:280::-;52078:4;;52095:171;52119:20;:27;52115:31;;52095:171;;;52199:8;-1:-1:-1;;;;;52172:35:0;:20;52193:1;52172:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52172:23:0;:35;52168:87;;;-1:-1:-1;52235:4:0;;52016:280;-1:-1:-1;;52016:280:0:o;52168:87::-;52148:3;;;;:::i;:::-;;;;52095:171;;;-1:-1:-1;52283:5:0;;52016:280;-1:-1:-1;;52016:280:0:o;55045:101::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;55114:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;55114:24:0;;::::1;::::0;;;::::1;::::0;;55045:101::o;56958:172::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;57032:12:::1;::::0;:37:::1;::::0;-1:-1:-1;;;57032:37:0;;57063:4:::1;57032:37;::::0;::::1;7256:51:1::0;57014:15:0::1;::::0;-1:-1:-1;;;;;57032:12:0::1;::::0;:22:::1;::::0;7229:18:1;;57032:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57080:12;::::0;:42:::1;::::0;-1:-1:-1;;;57080:42:0;;57102:10:::1;57080:42;::::0;::::1;8589:51:1::0;8656:18;;;8649:34;;;57014:55:0;;-1:-1:-1;;;;;;57080:12:0::1;::::0;:21:::1;::::0;8562:18:1;;57080:42:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57003:127;56958:172::o:0;30034:185::-;30172:39;30189:4;30195:2;30199:7;30172:39;;;;;;;;;;;;:16;:39::i;52583:390::-;52670:16;52704:23;52730:17;52740:6;52730:9;:17::i;:::-;52704:43;;52758:25;52800:15;52786:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52786:30:0;;52758:58;;52832:9;52827:113;52847:15;52843:1;:19;52827:113;;;52898:30;52918:6;52926:1;52898:19;:30::i;:::-;52884:8;52893:1;52884:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52864:3;;;;:::i;:::-;;;;52827:113;;;-1:-1:-1;52957:8:0;52583:390;-1:-1:-1;;;52583:390:0:o;53927:86::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;53990:4:::1;:15:::0;53927:86::o;40664:320::-;40784:7;40839:30;40562:10;:17;;40474:113;40839:30;40831:5;:38;40809:132;;;;-1:-1:-1;;;40809:132:0;;19907:2:1;40809:132:0;;;19889:21:1;19946:2;19926:18;;;19919:30;19985:34;19965:18;;;19958:62;-1:-1:-1;;;20036:18:1;;;20029:42;20088:19;;40809:132:0;19705:408:1;40809:132:0;40959:10;40970:5;40959:17;;;;;;;;:::i;:::-;;;;;;;;;40952:24;;40664:320;;;:::o;49133:36::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49133:36:0;;-1:-1:-1;49133:36:0;:::o;54320:104::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;54395:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;52304:271::-:0;52362:4;;52379:166;52403:19;:26;52399:30;;52379:166;;;52481:5;-1:-1:-1;;;;;52455:31:0;:19;52475:1;52455:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52455:22:0;:31;52451:83;;;-1:-1:-1;52514:4:0;;52304:271;-1:-1:-1;;52304:271:0:o;52451:83::-;52431:3;;;;:::i;:::-;;;;52379:166;;54940:97;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;55007:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;55007:22:0;;::::1;::::0;;;::::1;::::0;;54940:97::o;26442:326::-;26559:7;26600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26600:16:0;26649:19;26627:110;;;;-1:-1:-1;;;26627:110:0;;14835:2:1;26627:110:0;;;14817:21:1;14874:2;14854:18;;;14847:30;14913:34;14893:18;;;14886:62;-1:-1:-1;;;14964:18:1;;;14957:39;15013:19;;26627:110:0;14633:405:1;48550:21:0;;;;;;;:::i;56854:96::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;56922:8:::1;:20:::0;56854:96::o;26085:295::-;26202:7;-1:-1:-1;;;;;26249:19:0;;26227:111;;;;-1:-1:-1;;;26227:111:0;;14424:2:1;26227:111:0;;;14406:21:1;14463:2;14443:18;;;14436:30;14502:34;14482:18;;;14475:62;-1:-1:-1;;;14553:18:1;;;14546:40;14603:19;;26227:111:0;14222:406:1;26227:111:0;-1:-1:-1;;;;;;26356:16:0;;;;;:9;:16;;;;;;;26085:295::o;47749:94::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;47814:21:::1;47832:1;47814:9;:21::i;:::-;47749:94::o:0;55154:337::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;55244:21;55236:56:::1;;;;-1:-1:-1::0;;;55236:56:0::1;;;;;;;:::i;:::-;55308:9;55303:181;55323:20:::0;;::::1;55303:181;;;55370:27;55384:9;;55394:1;55384:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;55370:27::-;55365:108;;55418:20;55444:9;;55454:1;55444:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;55418:39:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;55418:39:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;55418:39:0::1;-1:-1:-1::0;;;;;55418:39:0;;::::1;::::0;;;::::1;::::0;;55365:108:::1;55345:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55303:181;;27004:104:::0;27060:13;27093:7;27086:14;;;;;:::i;56289:436::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;56379:21;56371:56:::1;;;;-1:-1:-1::0;;;56371:56:0::1;;;;;;;:::i;:::-;56443:9;56438:280;56458:20:::0;;::::1;56438:280;;;56505:9;56500:207;56524:19;:26:::0;56520:30;::::1;56500:207;;;56606:9;;56616:1;56606:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56580:38:0::1;:19;56600:1;56580:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;56580:22:0::1;:38;56576:116;;;56650:19;56670:1;56650:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;56643:29:::0;;-1:-1:-1;;;;;;56643:29:0::1;::::0;;56576:116:::1;56552:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56500:207;;;-1:-1:-1::0;56480:3:0;::::1;::::0;::::1;:::i;:::-;;;;56438:280;;49845:2163:::0;49907:6;;;;49906:7;49898:42;;;;-1:-1:-1;;;49898:42:0;;17559:2:1;49898:42:0;;;17541:21:1;17598:2;17578:18;;;17571:30;-1:-1:-1;;;17617:18:1;;;17610:52;17679:18;;49898:42:0;17357:346:1;49898:42:0;49951:14;49968:13;40562:10;:17;;40474:113;49968:13;49951:30;;50014:1;50000:11;:15;49992:55;;;;-1:-1:-1;;;49992:55:0;;20320:2:1;49992:55:0;;;20302:21:1;20359:2;20339:18;;;20332:30;20398:29;20378:18;;;20371:57;20445:18;;49992:55:0;20118:351:1;49992:55:0;50095:13;;50080:11;:28;;50058:114;;;;-1:-1:-1;;;50058:114:0;;16019:2:1;50058:114:0;;;16001:21:1;16058:2;16038:18;;;16031:30;16097:34;16077:18;;;16070:62;-1:-1:-1;;;16148:18:1;;;16141:34;16192:19;;50058:114:0;15817:400:1;50058:114:0;50215:9;;50191:20;50200:11;50191:6;:20;:::i;:::-;:33;;50183:68;;;;-1:-1:-1;;;50183:68:0;;15668:2:1;50183:68:0;;;15650:21:1;15707:2;15687:18;;;15680:30;-1:-1:-1;;;15726:18:1;;;15719:52;15788:18;;50183:68:0;15466:346:1;50183:68:0;50282:12;;:34;;-1:-1:-1;;;50282:34:0;;50305:10;50282:34;;;7256:51:1;50264:15:0;;-1:-1:-1;;;;;50282:12:0;;:22;;7229:18:1;;50282:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50264:52;;50327:13;50350:11;50343:4;;:18;;;;:::i;:::-;50550:10;50494:28;50525:36;;;:24;:36;;;;;;50327:34;;-1:-1:-1;50592:7:0;47171:6;;-1:-1:-1;;;;;47171:6:0;;47098:87;50592:7;-1:-1:-1;;;;;50578:21:0;:10;-1:-1:-1;;;;;50578:21:0;;50574:786;;50620:15;;;;;;;:23;;50639:4;50620:23;50616:376;;;50672:25;50686:10;50672:13;:25::i;:::-;50664:61;;;;-1:-1:-1;;;50664:61:0;;13647:2:1;50664:61:0;;;13629:21:1;13686:2;13666:18;;;13659:30;13725:25;13705:18;;;13698:53;13768:18;;50664:61:0;13445:347:1;50664:61:0;50792:10;50744:24;50771:32;;;:20;:32;;;;;;50886:18;;50852:30;50871:11;50771:32;50852:30;:::i;:::-;:52;;50822:154;;;;-1:-1:-1;;;50822:154:0;;11766:2:1;50822:154:0;;;11748:21:1;11805:2;11785:18;;;11778:30;11844;11824:18;;;11817:58;11892:18;;50822:154:0;11564:352:1;50822:154:0;50645:347;50616:376;51012:13;;;;;;;:21;;51029:4;51012:21;:57;;;;;51037:24;51050:10;51037:12;:24::i;:::-;:32;;51065:4;51037:32;51012:57;51008:341;;;51136:17;;51098:34;51121:11;51098:20;:34;:::i;:::-;:55;;51090:122;;;;-1:-1:-1;;;51090:122:0;;15245:2:1;51090:122:0;;;15227:21:1;15284:2;15264:18;;;15257:30;15323:34;15303:18;;;15296:62;-1:-1:-1;;;15374:18:1;;;15367:52;15436:19;;51090:122:0;15043:418:1;51090:122:0;51239:1;51231:9;;51008:341;;;51300:5;51289:7;:16;;51281:52;;;;-1:-1:-1;;;51281:52:0;;13295:2:1;51281:52:0;;;13277:21:1;13334:2;13314:18;;;13307:30;13373:25;13353:18;;;13346:53;13416:18;;51281:52:0;13093:347:1;51281:52:0;51389:1;51372:629;51397:11;51392:1;:16;51372:629;;51451:10;51430:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;;51501:13:0;;;;;;;:21;;51518:4;51501:21;:74;;;;;51543:24;51556:10;51543:12;:24::i;:::-;:32;;51571:4;51543:32;51501:74;:152;;;;-1:-1:-1;51636:17:0;;51597:34;51620:11;51597:20;:34;:::i;:::-;51596:57;;51501:152;51479:363;;;51713:10;51688:36;;;;:24;:36;;;;;:38;;;;;;:::i;:::-;;;;;;51479:363;;;51767:12;;:59;;-1:-1:-1;;;51767:59:0;;51793:10;51767:59;;;7782:34:1;51813:4:0;7832:18:1;;;7825:43;7884:18;;;7877:34;;;-1:-1:-1;;;;;51767:12:0;;;;:25;;7717:18:1;;51767:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51479:363;51956:33;51966:10;51978;51987:1;51978:6;:10;:::i;:::-;51956:9;:33::i;:::-;51410:3;;;;:::i;:::-;;;;51372:629;;;;49887:2121;;;;49845:2163;:::o;28908:327::-;-1:-1:-1;;;;;29043:24:0;;24220:10;29043:24;;29035:62;;;;-1:-1:-1;;;29035:62:0;;12528:2:1;29035:62:0;;;12510:21:1;12567:2;12547:18;;;12540:30;12606:27;12586:18;;;12579:55;12651:18;;29035:62:0;12326:349:1;29035:62:0;24220:10;29110:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29110:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29110:53:0;;;;;;;;;;29179:48;;9471:41:1;;;29110:42:0;;24220:10;29179:48;;9444:18:1;29179:48:0;;;;;;;28908:327;;:::o;53732:69::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;53778:8:::1;:15:::0;;-1:-1:-1;;53778:15:0::1;;;::::0;;53732:69::o;54432:120::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;54508:12:::1;:36:::0;;-1:-1:-1;;;;;;54508:36:0::1;-1:-1:-1::0;;;;;54508:36:0;;;::::1;::::0;;;::::1;::::0;;54432:120::o;30290:365::-;30479:41;24220:10;30512:7;30479:18;:41::i;:::-;30457:140;;;;-1:-1:-1;;;30457:140:0;;;;;;;:::i;:::-;30608:39;30622:4;30628:2;30632:7;30641:5;30608:13;:39::i;:::-;30290:365;;;;:::o;49089:37::-;;;;;;;;;;;;48578;;;;;;;:::i;55947:334::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;56036:21;56028:56:::1;;;;-1:-1:-1::0;;;56028:56:0::1;;;;;;;:::i;:::-;56100:9;56095:179;56115:20:::0;;::::1;56095:179;;;56162:26;56175:9;;56185:1;56175:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;56162:26::-;56157:106;;56209:19;56234:9;;56244:1;56234:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56209:38:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;56209:38:0;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;56209:38:0::1;-1:-1:-1::0;;;;;56209:38:0;;::::1;::::0;;;::::1;::::0;;56157:106:::1;56137:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56095:179;;52981:725:::0;32267:4;32291:16;;;:7;:16;;;;;;53099:13;;-1:-1:-1;;;;;32291:16:0;53130:113;;;;-1:-1:-1;;;53130:113:0;;18320:2:1;53130:113:0;;;18302:21:1;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:1;;;18442:45;18504:19;;53130:113:0;18118:411:1;53130:113:0;53260:8;;;;;;;53256:71;;53301:14;53294:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52981:725;;;:::o;53256:71::-;53339:28;53370:10;:8;:10::i;:::-;53339:41;;53442:1;53417:14;53411:28;:32;:287;;;;;;;;;;;;;;;;;53535:14;53576:18;:7;:16;:18::i;:::-;53621:13;53492:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53411:287;53391:307;52981:725;-1:-1:-1;;;52981:725:0:o;53809:110::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;53884:18:::1;:27:::0;53809:110::o;54560:151::-;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;54670:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;54719:126::-:0;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;54805:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;47998:229::-:0;47171:6;;-1:-1:-1;;;;;47171:6:0;24220:10;47318:23;47310:68;;;;-1:-1:-1;;;47310:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48101:22:0;::::1;48079:110;;;::::0;-1:-1:-1;;;48079:110:0;;11002:2:1;48079:110:0::1;::::0;::::1;10984:21:1::0;11041:2;11021:18;;;11014:30;11080:34;11060:18;;;11053:62;-1:-1:-1;;;11131:18:1;;;11124:36;11177:19;;48079:110:0::1;10800:402:1::0;48079:110:0::1;48200:19;48210:8;48200:9;:19::i;:::-;47998:229:::0;:::o;25666:355::-;25813:4;-1:-1:-1;;;;;;25855:40:0;;-1:-1:-1;;;25855:40:0;;:105;;-1:-1:-1;;;;;;;25912:48:0;;-1:-1:-1;;;25912:48:0;25855:105;:158;;;-1:-1:-1;;;;;;;;;;11123:40:0;;;25977:36;10964:207;36325:174;36400:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36400:29:0;-1:-1:-1;;;;;36400:29:0;;;;;;;;:24;;36454:23;36400:24;36454:14;:23::i;:::-;-1:-1:-1;;;;;36445:46:0;;;;;;;;;;;36325:174;;:::o;32496:452::-;32625:4;32291:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32291:16:0;32647:110;;;;-1:-1:-1;;;32647:110:0;;12882:2:1;32647:110:0;;;12864:21:1;12921:2;12901:18;;;12894:30;12960:34;12940:18;;;12933:62;-1:-1:-1;;;13011:18:1;;;13004:42;13063:19;;32647:110:0;12680:408:1;32647:110:0;32768:13;32784:23;32799:7;32784:14;:23::i;:::-;32768:39;;32837:5;-1:-1:-1;;;;;32826:16:0;:7;-1:-1:-1;;;;;32826:16:0;;:64;;;;32883:7;-1:-1:-1;;;;;32859:31:0;:20;32871:7;32859:11;:20::i;:::-;-1:-1:-1;;;;;32859:31:0;;32826:64;:113;;;-1:-1:-1;;;;;;29477:25:0;;;29448:4;29477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32907:32;32818:122;32496:452;-1:-1:-1;;;;32496:452:0:o;35592:615::-;35765:4;-1:-1:-1;;;;;35738:31:0;:23;35753:7;35738:14;:23::i;:::-;-1:-1:-1;;;;;35738:31:0;;35716:122;;;;-1:-1:-1;;;35716:122:0;;17910:2:1;35716:122:0;;;17892:21:1;17949:2;17929:18;;;17922:30;17988:34;17968:18;;;17961:62;-1:-1:-1;;;18039:18:1;;;18032:39;18088:19;;35716:122:0;17708:405:1;35716:122:0;-1:-1:-1;;;;;35857:16:0;;35849:65;;;;-1:-1:-1;;;35849:65:0;;12123:2:1;35849:65:0;;;12105:21:1;12162:2;12142:18;;;12135:30;12201:34;12181:18;;;12174:62;-1:-1:-1;;;12252:18:1;;;12245:34;12296:19;;35849:65:0;11921:400:1;35849:65:0;35927:39;35948:4;35954:2;35958:7;35927:20;:39::i;:::-;36031:29;36048:1;36052:7;36031:8;:29::i;:::-;-1:-1:-1;;;;;36073:15:0;;;;;;:9;:15;;;;;:20;;36092:1;;36073:15;:20;;36092:1;;36073:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36104:13:0;;;;;;:9;:13;;;;;:18;;36121:1;;36104:13;:18;;36121:1;;36104:18;:::i;:::-;;;;-1:-1:-1;;36133:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36133:21:0;-1:-1:-1;;;;;36133:21:0;;;;;;;;;36172:27;;36133:16;;36172:27;;;;;;;35592:615;;;:::o;48235:173::-;48310:6;;;-1:-1:-1;;;;;48327:17:0;;;-1:-1:-1;;;;;;48327:17:0;;;;;;;48360:40;;48310:6;;;48327:17;48310:6;;48360:40;;48291:16;;48360:40;48280:128;48235:173;:::o;33290:110::-;33366:26;33376:2;33380:7;33366:26;;;;;;;;;;;;:9;:26::i;31537:352::-;31694:28;31704:4;31710:2;31714:7;31694:9;:28::i;:::-;31755:48;31778:4;31784:2;31788:7;31797:5;31755:22;:48::i;:::-;31733:148;;;;-1:-1:-1;;;31733:148:0;;;;;;;:::i;49714:108::-;49774:13;49807:7;49800:14;;;;;:::i;11485:723::-;11541:13;11762:10;11758:53;;-1:-1:-1;;11789:10:0;;;;;;;;;;;;-1:-1:-1;;;11789:10:0;;;;;11485:723::o;11758:53::-;11836:5;11821:12;11877:78;11884:9;;11877:78;;11910:8;;;;:::i;:::-;;-1:-1:-1;11933:10:0;;-1:-1:-1;11941:2:0;11933:10;;:::i;:::-;;;11877:78;;;11965:19;11997:6;11987:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11987:17:0;;11965:39;;12015:154;12022:10;;12015:154;;12049:11;12059:1;12049:11;;:::i;:::-;;-1:-1:-1;12118:10:0;12126:2;12118:5;:10;:::i;:::-;12105:24;;:2;:24;:::i;:::-;12092:39;;12075:6;12082;12075:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12075:56:0;;;;;;;;-1:-1:-1;12146:11:0;12155:2;12146:11;;:::i;:::-;;;12015:154;;41597:589;-1:-1:-1;;;;;41803:18:0;;41799:187;;41838:40;41870:7;43013:10;:17;;42986:24;;;;:15;:24;;;;;:44;;;43041:24;;;;;;;;;;;;42909:164;41838:40;41799:187;;;41908:2;-1:-1:-1;;;;;41900:10:0;:4;-1:-1:-1;;;;;41900:10:0;;41896:90;;41927:47;41960:4;41966:7;41927:32;:47::i;:::-;-1:-1:-1;;;;;42000:16:0;;41996:183;;42033:45;42070:7;42033:36;:45::i;41996:183::-;42106:4;-1:-1:-1;;;;;42100:10:0;:2;-1:-1:-1;;;;;42100:10:0;;42096:83;;42127:40;42155:2;42159:7;42127:27;:40::i;33627:321::-;33757:18;33763:2;33767:7;33757:5;:18::i;:::-;33808:54;33839:1;33843:2;33847:7;33856:5;33808:22;:54::i;:::-;33786:154;;;;-1:-1:-1;;;33786:154:0;;;;;;;:::i;37064:980::-;37219:4;-1:-1:-1;;;;;37240:13:0;;14361:20;14409:8;37236:801;;37293:175;;-1:-1:-1;;;37293:175:0;;-1:-1:-1;;;;;37293:36:0;;;;;:175;;24220:10;;37387:4;;37414:7;;37444:5;;37293:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37293:175:0;;;;;;;;-1:-1:-1;;37293:175:0;;;;;;;;;;;;:::i;:::-;;;37272:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37651:13:0;;37647:320;;37694:108;;-1:-1:-1;;;37694:108:0;;;;;;;:::i;37647:320::-;37917:6;37911:13;37902:6;37898:2;37894:15;37887:38;37272:710;-1:-1:-1;;;;;;37532:51:0;-1:-1:-1;;;37532:51:0;;-1:-1:-1;37525:58:0;;37236:801;-1:-1:-1;38021:4:0;37064:980;;;;;;:::o;43700:1002::-;43980:22;44030:1;44005:22;44022:4;44005:16;:22::i;:::-;:26;;;;:::i;:::-;44042:18;44063:26;;;:17;:26;;;;;;43980:51;;-1:-1:-1;44196:28:0;;;44192:328;;-1:-1:-1;;;;;44263:18:0;;44241:19;44263:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44314:30;;;;;;:44;;;44431:30;;:17;:30;;;;;:43;;;44192:328;-1:-1:-1;44616:26:0;;;;:17;:26;;;;;;;;44609:33;;;-1:-1:-1;;;;;44660:18:0;;;;;:12;:18;;;;;:34;;;;;;;44653:41;43700:1002::o;44997:1079::-;45275:10;:17;45250:22;;45275:21;;45295:1;;45275:21;:::i;:::-;45307:18;45328:24;;;:15;:24;;;;;;45701:10;:26;;45250:46;;-1:-1:-1;45328:24:0;;45250:46;;45701:26;;;;;;:::i;:::-;;;;;;;;;45679:48;;45765:11;45740:10;45751;45740:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45845:28;;;:15;:28;;;;;;;:41;;;46017:24;;;;;46010:31;46052:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45068:1008;;;44997:1079;:::o;42487:221::-;42572:14;42589:20;42606:2;42589:16;:20::i;:::-;-1:-1:-1;;;;;42620:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42487:221:0:o;34284:382::-;-1:-1:-1;;;;;34364:16:0;;34356:61;;;;-1:-1:-1;;;34356:61:0;;16424:2:1;34356:61:0;;;16406:21:1;;;16443:18;;;16436:30;16502:34;16482:18;;;16475:62;16554:18;;34356:61:0;16222:356:1;34356:61:0;32267:4;32291:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32291:16:0;:30;34428:58;;;;-1:-1:-1;;;34428:58:0;;11409:2:1;34428:58:0;;;11391:21:1;11448:2;11428:18;;;11421:30;11487;11467:18;;;11460:58;11535:18;;34428:58:0;11207:352:1;34428:58:0;34499:45;34528:1;34532:2;34536:7;34499:20;:45::i;:::-;-1:-1:-1;;;;;34557:13:0;;;;;;:9;:13;;;;;:18;;34574:1;;34557:13;:18;;34574:1;;34557:18;:::i;:::-;;;;-1:-1:-1;;34586:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34586:21:0;-1:-1:-1;;;;;34586:21:0;;;;;;;;34625:33;;34586:16;;;34625:33;;34586:16;;34625:33;34284:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:615::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3070:9;3057:23;3099:18;3140:2;3132:6;3129:14;3126:34;;;3156:1;3153;3146:12;3126:34;3194:6;3183:9;3179:22;3169:32;;3239:7;3232:4;3228:2;3224:13;3220:27;3210:55;;3261:1;3258;3251:12;3210:55;3301:2;3288:16;3327:2;3319:6;3316:14;3313:34;;;3343:1;3340;3333:12;3313:34;3396:7;3391:2;3381:6;3378:1;3374:14;3370:2;3366:23;3362:32;3359:45;3356:65;;;3417:1;3414;3407:12;3356:65;3448:2;3440:11;;;;;3470:6;;-1:-1:-1;2867:615:1;;-1:-1:-1;;;;2867:615:1:o;3487:241::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3651:9;3638:23;3670:28;3692:5;3670:28;:::i;3733:245::-;3800:6;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3901:9;3895:16;3920:28;3942:5;3920:28;:::i;3983:245::-;4041:6;4094:2;4082:9;4073:7;4069:23;4065:32;4062:52;;;4110:1;4107;4100:12;4062:52;4149:9;4136:23;4168:30;4192:5;4168:30;:::i;4233:249::-;4302:6;4355:2;4343:9;4334:7;4330:23;4326:32;4323:52;;;4371:1;4368;4361:12;4323:52;4403:9;4397:16;4422:30;4446:5;4422:30;:::i;4487:450::-;4556:6;4609:2;4597:9;4588:7;4584:23;4580:32;4577:52;;;4625:1;4622;4615:12;4577:52;4665:9;4652:23;4698:18;4690:6;4687:30;4684:50;;;4730:1;4727;4720:12;4684:50;4753:22;;4806:4;4798:13;;4794:27;-1:-1:-1;4784:55:1;;4835:1;4832;4825:12;4784:55;4858:73;4923:7;4918:2;4905:16;4900:2;4896;4892:11;4858:73;:::i;4942:180::-;5001:6;5054:2;5042:9;5033:7;5029:23;5025:32;5022:52;;;5070:1;5067;5060:12;5022:52;-1:-1:-1;5093:23:1;;4942:180;-1:-1:-1;4942:180:1:o;5127:184::-;5197:6;5250:2;5238:9;5229:7;5225:23;5221:32;5218:52;;;5266:1;5263;5256:12;5218:52;-1:-1:-1;5289:16:1;;5127:184;-1:-1:-1;5127:184:1:o;5316:257::-;5357:3;5395:5;5389:12;5422:6;5417:3;5410:19;5438:63;5494:6;5487:4;5482:3;5478:14;5471:4;5464:5;5460:16;5438:63;:::i;:::-;5555:2;5534:15;-1:-1:-1;;5530:29:1;5521:39;;;;5562:4;5517:50;;5316:257;-1:-1:-1;;5316:257:1:o;5578:1527::-;5802:3;5840:6;5834:13;5866:4;5879:51;5923:6;5918:3;5913:2;5905:6;5901:15;5879:51;:::i;:::-;5993:13;;5952:16;;;;6015:55;5993:13;5952:16;6037:15;;;6015:55;:::i;:::-;6159:13;;6092:20;;;6132:1;;6219;6241:18;;;;6294;;;;6321:93;;6399:4;6389:8;6385:19;6373:31;;6321:93;6462:2;6452:8;6449:16;6429:18;6426:40;6423:167;;;-1:-1:-1;;;6489:33:1;;6545:4;6542:1;6535:15;6575:4;6496:3;6563:17;6423:167;6606:18;6633:110;;;;6757:1;6752:328;;;;6599:481;;6633:110;-1:-1:-1;;6668:24:1;;6654:39;;6713:20;;;;-1:-1:-1;6633:110:1;;6752:328;20729:1;20722:14;;;20766:4;20753:18;;6847:1;6861:169;6875:8;6872:1;6869:15;6861:169;;;6957:14;;6942:13;;;6935:37;7000:16;;;;6892:10;;6861:169;;;6865:3;;7061:8;7054:5;7050:20;7043:27;;6599:481;-1:-1:-1;7096:3:1;;5578:1527;-1:-1:-1;;;;;;;;;;;5578:1527:1:o;7922:488::-;-1:-1:-1;;;;;8191:15:1;;;8173:34;;8243:15;;8238:2;8223:18;;8216:43;8290:2;8275:18;;8268:34;;;8338:3;8333:2;8318:18;;8311:31;;;8116:4;;8359:45;;8384:19;;8376:6;8359:45;:::i;:::-;8351:53;7922:488;-1:-1:-1;;;;;;7922:488:1:o;8694:632::-;8865:2;8917:21;;;8987:13;;8890:18;;;9009:22;;;8836:4;;8865:2;9088:15;;;;9062:2;9047:18;;;8836:4;9131:169;9145:6;9142:1;9139:13;9131:169;;;9206:13;;9194:26;;9275:15;;;;9240:12;;;;9167:1;9160:9;9131:169;;;-1:-1:-1;9317:3:1;;8694:632;-1:-1:-1;;;;;;8694:632:1:o;9745:219::-;9894:2;9883:9;9876:21;9857:4;9914:44;9954:2;9943:9;9939:18;9931:6;9914:44;:::i;10381:414::-;10583:2;10565:21;;;10622:2;10602:18;;;10595:30;10661:34;10656:2;10641:18;;10634:62;-1:-1:-1;;;10727:2:1;10712:18;;10705:48;10785:3;10770:19;;10381:414::o;16996:356::-;17198:2;17180:21;;;17217:18;;;17210:30;17276:34;17271:2;17256:18;;17249:62;17343:2;17328:18;;16996:356::o;18936:413::-;19138:2;19120:21;;;19177:2;19157:18;;;19150:30;19216:34;19211:2;19196:18;;19189:62;-1:-1:-1;;;19282:2:1;19267:18;;19260:47;19339:3;19324:19;;18936:413::o;19354:346::-;19556:2;19538:21;;;19595:2;19575:18;;;19568:30;-1:-1:-1;;;19629:2:1;19614:18;;19607:52;19691:2;19676:18;;19354:346::o;20782:128::-;20822:3;20853:1;20849:6;20846:1;20843:13;20840:39;;;20859:18;;:::i;:::-;-1:-1:-1;20895:9:1;;20782:128::o;20915:120::-;20955:1;20981;20971:35;;20986:18;;:::i;:::-;-1:-1:-1;21020:9:1;;20915:120::o;21040:168::-;21080:7;21146:1;21142;21138:6;21134:14;21131:1;21128:21;21123:1;21116:9;21109:17;21105:45;21102:71;;;21153:18;;:::i;:::-;-1:-1:-1;21193:9:1;;21040:168::o;21213:125::-;21253:4;21281:1;21278;21275:8;21272:34;;;21286:18;;:::i;:::-;-1:-1:-1;21323:9:1;;21213:125::o;21343:258::-;21415:1;21425:113;21439:6;21436:1;21433:13;21425:113;;;21515:11;;;21509:18;21496:11;;;21489:39;21461:2;21454:10;21425:113;;;21556:6;21553:1;21550:13;21547:48;;;-1:-1:-1;;21591:1:1;21573:16;;21566:27;21343:258::o;21606:380::-;21685:1;21681:12;;;;21728;;;21749:61;;21803:4;21795:6;21791:17;21781:27;;21749:61;21856:2;21848:6;21845:14;21825:18;21822:38;21819:161;;;21902:10;21897:3;21893:20;21890:1;21883:31;21937:4;21934:1;21927:15;21965:4;21962:1;21955:15;21819:161;;21606:380;;;:::o;21991:135::-;22030:3;-1:-1:-1;;22051:17:1;;22048:43;;;22071:18;;:::i;:::-;-1:-1:-1;22118:1:1;22107:13;;21991:135::o;22131:112::-;22163:1;22189;22179:35;;22194:18;;:::i;:::-;-1:-1:-1;22228:9:1;;22131:112::o;22248:127::-;22309:10;22304:3;22300:20;22297:1;22290:31;22340:4;22337:1;22330:15;22364:4;22361:1;22354:15;22380:127;22441:10;22436:3;22432:20;22429:1;22422:31;22472:4;22469:1;22462:15;22496:4;22493:1;22486:15;22512:127;22573:10;22568:3;22564:20;22561:1;22554:31;22604:4;22601:1;22594:15;22628:4;22625:1;22618:15;22644:127;22705:10;22700:3;22696:20;22693:1;22686:31;22736:4;22733:1;22726:15;22760:4;22757:1;22750:15;22776:127;22837:10;22832:3;22828:20;22825:1;22818:31;22868:4;22865:1;22858:15;22892:4;22889:1;22882:15;22908:118;22994:5;22987:13;22980:21;22973:5;22970:32;22960:60;;23016:1;23013;23006:12;23031:131;-1:-1:-1;;;;;;23105:32:1;;23095:43;;23085:71;;23152:1;23149;23142:12

Swarm Source

ipfs://31990df7fa4c603177ec67bfd74008b686bf4c7720e34dd7e87a813b8d7a6c1a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.