ETH Price: $2,746.84 (+1.16%)

Token

MonstaVerse NFTs (MONSTA)
 

Overview

Max Total Supply

15 MONSTA

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MONSTA
0xBFf5825A8a54861eBd0FA3285d99ABa49bB6B555
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
monster

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity >=0.6.0 <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.6.2 <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/ERC721/IERC721Metadata.sol



pragma solidity >=0.6.2 <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/IERC721Enumerable.sol



pragma solidity >=0.6.2 <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/token/ERC721/IERC721Receiver.sol



pragma solidity >=0.6.0 <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/introspection/ERC165.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solipragma solidity >=0.6.0 <0.8.0;dity 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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // 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;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity >=0.6.0 <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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    

}


pragma solidity ^0.7.0;



/**
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract monster is ERC721, Ownable {
    using SafeMath for uint256;

    string public LASD_PROVENANCE = "";

    uint256 public startingIndexBlock;

    uint256 public startingIndex;

    uint256 public monsterPrice = 200000000000000000000; //the minimum amount of saletoken required to buy MonstaNFTs

    uint256 public MAX_monster;

    bool public saleIsActive = false;

    bool public whiteListIsActive = false;

    IERC20 public saletoken;

    bytes32 treeRoot;
    
   address walletToRecieveToken=0x000000000000000000000000000000000000dEaD;

    uint256 public REVEAL_TIMESTAMP;

    event minted(address indexed to, uint256 indexed tokenId, string message);

    constructor(string memory name, string memory symbol, uint256 maxNftSupply, uint256 saleStart)  ERC721(name, symbol) {
        MAX_monster = maxNftSupply;
        REVEAL_TIMESTAMP = saleStart + (86400 * 5);
    }

    function withdrawToken() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
        saletoken.transfer(msg.sender, saletoken.balanceOf(address(this)));
    }


    function setPurchaseToken(IERC20 token) public onlyOwner {
        saletoken = token;
    }

    function setNFTprice(uint newPrice) public onlyOwner {
        monsterPrice=newPrice;
    }

    function setWalletToRecieveToken(address deadwallet) public onlyOwner {
        walletToRecieveToken = deadwallet;
    }

    /**
     * Set monster aside
     */
    function reservemonster(uint256 _count) public onlyOwner {        
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < _count; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function setRevealTimestamp(uint256 revealTimeStamp) public onlyOwner {
        REVEAL_TIMESTAMP = revealTimeStamp;
    } 
    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        LASD_PROVENANCE = provenanceHash;
    }

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

    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public onlyOwner {
        whiteListIsActive=!whiteListIsActive;
    }

    // Merkle Verification

    function setRoot(bytes32 newRoot) public onlyOwner {
        treeRoot=newRoot;
    }

        function verify(
        bytes32 root,
        bytes32 leaf,
        bytes32[] memory proof
    )
        public
        pure
        returns (bool)
    {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
        bytes32 proofElement = proof[i];

        if (computedHash < proofElement) {
            // Hash(current computed hash + current element of the proof)
            computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
        } else {
            // Hash(current element of the proof + current computed hash)
            computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
        }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
    
    function claim(bytes32 leaf,bytes32[] memory proof) public view returns (bool){
    return verify(treeRoot, leaf, proof);
    }


    /**
    * Mints monster
    */
    function mintmonster( string calldata message) public {
        require(saleIsActive, "Sale must be active to mint monster");
        require((totalSupply()+1) <= MAX_monster, "Purchase would exceed max supply of monster");
        require(saletoken.allowance(msg.sender, address(this)) >= monsterPrice, "This contract is not approved to spend your token" );
        saletoken.approve(walletToRecieveToken, monsterPrice);
        saletoken.transferFrom(msg.sender, walletToRecieveToken, monsterPrice);
        
        uint mintIndex = totalSupply();
            if (totalSupply() < MAX_monster) {
                super._safeMint(msg.sender, mintIndex+1);
                super._setTokenURI(mintIndex+1,message);
                emit minted(msg.sender, mintIndex+1, message);
            }
        
        // If we haven't set the starting index and this is either 1) the last saleable token or 2) the first token to be sold after
        // the end of pre-sale, set the starting index block
        if (startingIndexBlock == 0 && (totalSupply() == MAX_monster || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        } 
    }


    function whiteListMintMonster( bytes32 leaf, bytes32[] memory proof, string calldata message) public {
        require(whiteListIsActive, "Presale must be active to mint monster");
        require(claim(leaf,proof), "Presale must be active to mint monster");
        require((totalSupply()+1) <= MAX_monster, "Purchase would exceed max supply of monster");
        require(saletoken.allowance(msg.sender, address(this)) >= monsterPrice, "This contract is not approved to spend your token" );
        saletoken.approve(walletToRecieveToken, monsterPrice);
        saletoken.transferFrom(msg.sender, walletToRecieveToken, monsterPrice);
        
        uint mintIndex = totalSupply();
            if (totalSupply() < MAX_monster) {
                super._safeMint(msg.sender, mintIndex+1);
                super._setTokenURI(mintIndex+1,message);
                emit minted(msg.sender, mintIndex+1, message);
            }
        
        // If we haven't set the starting index and this is either 1) the last saleable token or 2) the first token to be sold after
        // the end of pre-sale, set the starting index block
        if (startingIndexBlock == 0 && (totalSupply() == MAX_monster || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        } 
    }


    function giftmonster(address giftAddress, string calldata message) public onlyOwner {
        // require(saleIsActive, "Sale must be active to mint monster");
        require((totalSupply()+1) <= MAX_monster, "Purchase would exceed max supply of monster");
        require(saletoken.allowance(msg.sender, address(this)) >= monsterPrice, "This contract is not approved to spend your token" );
        saletoken.approve(walletToRecieveToken, monsterPrice);
        saletoken.transferFrom(msg.sender, walletToRecieveToken, monsterPrice);
        
        uint mintIndex = totalSupply();
            if (totalSupply() < MAX_monster) {
                super._safeMint(giftAddress, mintIndex+1);
                super._setTokenURI(mintIndex+1,message);
                emit minted(giftAddress, mintIndex+1, message);
            }
        
        // If we haven't set the starting index and this is either 1) the last saleable token or 2) the first token to be sold after
        // the end of pre-sale, set the starting index block
        if (startingIndexBlock == 0 && (totalSupply() == MAX_monster || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        } 
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_monster;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_monster;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    /**
     * Set the starting index block for the collection, essentially unblocking
     * setting starting index
     */
    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"},{"internalType":"uint256","name":"saleStart","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"minted","type":"event"},{"inputs":[],"name":"LASD_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_monster","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"giftAddress","type":"address"},{"internalType":"string","name":"message","type":"string"}],"name":"giftmonster","outputs":[],"stateMutability":"nonpayable","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":"string","name":"message","type":"string"}],"name":"mintmonster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"monsterPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reservemonster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saletoken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setNFTprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"setPurchaseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"deadwallet","type":"address"}],"name":"setWalletToRecieveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"whiteListIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"string","name":"message","type":"string"}],"name":"whiteListMintMonster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620004ef565b50680ad78ebc5ac6200000600e556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555061dead601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bf57600080fd5b50604051620060143803806200601483398181016040526080811015620000e557600080fd5b81019080805160405193929190846401000000008211156200010657600080fd5b838201915060208201858111156200011d57600080fd5b82518660018202830111640100000000821117156200013b57600080fd5b8083526020830192505050908051906020019080838360005b838110156200017157808201518184015260208101905062000154565b50505050905090810190601f1680156200019f5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001c357600080fd5b83820191506020820185811115620001da57600080fd5b8251866001820283011164010000000082111715620001f857600080fd5b8083526020830192505050908051906020019080838360005b838110156200022e57808201518184015260208101905062000211565b50505050905090810190601f1680156200025c5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291905050508383620002946301ffc9a760e01b620003de60201b60201c565b8160069080519060200190620002ac929190620004ef565b508060079080519060200190620002c5929190620004ef565b50620002de6380ac58cd60e01b620003de60201b60201c565b620002f6635b5e139f60e01b620003de60201b60201c565b6200030e63780e9d6360e01b620003de60201b60201c565b5050600062000322620004e760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600f819055506206978081016013819055505050505062000595565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200047b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200053257805160ff191683800117855562000563565b8280016001018555821562000563579182015b828111156200056257825182559160200191906001019062000545565b5b50905062000572919062000576565b5090565b5b808211156200059157600081600090555060010162000577565b5090565b615a6f80620005a56000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80636f18576d11610167578063c279726f116100ce578063e985e9c511610087578063e985e9c514611100578063e98665501461117a578063eb8d244414611184578063f0325549146111a4578063f2fde38b146111ae578063f5c05eb7146111f257610295565b8063c279726f14610fc5578063c87b56dd14610fe5578063ca628c781461108c578063cb774d4714611096578063dab5f340146110b4578063e36d6498146110e257610295565b80638da5cb5b116101205780638da5cb5b14610d2257806395d89b4114610d5657806399e263b914610dd9578063a22cb46514610df7578063b68cabd014610e47578063b88d4fde14610ec057610295565b80636f18576d14610c0057806370a0823114610c44578063715018a614610c9c5780637d17fcbe14610ca6578063827341ea14610cb05780638456bd2e14610cde57610295565b80632f745c591161020b57806355f804b3116101c457806355f804b31461093057806356a43414146109eb5780636352211e14610a6e5780636620c46414610ac6578063686f205c14610ae45780636c0360eb14610b7d57610295565b80632f745c59146107045780633423e5481461076657806334918dfd1461084857806336de51f01461085257806342842e0e146108805780634f6ccce7146108ee57610295565b8063095ea7b31161025d578063095ea7b31461051d57806310274fac1461056b578063109695231461059f57806318160ddd1461065a57806318e20a381461067857806323b872dd1461069657610295565b8063018a2c371461029a57806301ffc9a7146102c85780630334c6c51461032b57806306fdde0314610442578063081812fc146104c5575b600080fd5b6102c6600480360360208110156102b057600080fd5b81019080803590602001909291905050506112ca565b005b610313600480360360208110156102de57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611383565b60405180821515815260200191505060405180910390f35b6104406004803603606081101561034157600080fd5b81019080803590602001909291908035906020019064010000000081111561036857600080fd5b82018360208201111561037a57600080fd5b8035906020019184602083028401116401000000008311171561039c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156103fc57600080fd5b82018360208201111561040e57600080fd5b8035906020019184600183028401116401000000008311171561043057600080fd5b90919293919293905050506113ea565b005b61044a611988565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561048a57808201518184015260208101905061046f565b50505050905090810190601f1680156104b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104f1600480360360208110156104db57600080fd5b8101908080359060200190929190505050611a2a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105696004803603604081101561053357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac5565b005b610573611c09565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610658600480360360208110156105b557600080fd5b81019080803590602001906401000000008111156105d257600080fd5b8201836020820111156105e457600080fd5b8035906020019184600183028401116401000000008311171561060657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c2f565b005b610662611cf8565b6040518082815260200191505060405180910390f35b610680611d09565b6040518082815260200191505060405180910390f35b610702600480360360608110156106ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d0f565b005b6107506004803603604081101561071a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d85565b6040518082815260200191505060405180910390f35b6108306004803603606081101561077c57600080fd5b810190808035906020019092919080359060200190929190803590602001906401000000008111156107ad57600080fd5b8201836020820111156107bf57600080fd5b803590602001918460208302840111640100000000831117156107e157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611de0565b60405180821515815260200191505060405180910390f35b610850611e96565b005b61087e6004803603602081101561086857600080fd5b8101908080359060200190929190505050611f71565b005b6108ec6004803603606081101561089657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612055565b005b61091a6004803603602081101561090457600080fd5b8101908080359060200190929190505050612075565b6040518082815260200191505060405180910390f35b6109e96004803603602081101561094657600080fd5b810190808035906020019064010000000081111561096357600080fd5b82018360208201111561097557600080fd5b8035906020019184600183028401116401000000008311171561099757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612098565b005b6109f3612153565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a33578082015181840152602081019050610a18565b50505050905090810190601f168015610a605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a9a60048036036020811015610a8457600080fd5b81019080803590602001909291905050506121f1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ace612228565b6040518082815260200191505060405180910390f35b610b7b60048036036040811015610afa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610b3757600080fd5b820183602082011115610b4957600080fd5b80359060200191846001830284011164010000000083111715610b6b57600080fd5b909192939192939050505061222e565b005b610b856127b6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc5578082015181840152602081019050610baa565b50505050905090810190601f168015610bf25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c4260048036036020811015610c1657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612858565b005b610c8660048036036020811015610c5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061294b565b6040518082815260200191505060405180910390f35b610ca4612a20565b005b610cae612b90565b005b610cdc60048036036020811015610cc657600080fd5b8101908080359060200190929190505050612cc0565b005b610d2060048036036020811015610cf457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d79565b005b610d2a612e6c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d5e612e96565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d9e578082015181840152602081019050610d83565b50505050905090810190601f168015610dcb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610de1612f38565b6040518082815260200191505060405180910390f35b610e4560048036036040811015610e0d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612f3e565b005b610ebe60048036036020811015610e5d57600080fd5b8101908080359060200190640100000000811115610e7a57600080fd5b820183602082011115610e8c57600080fd5b80359060200191846001830284011164010000000083111715610eae57600080fd5b90919293919293905050506130f4565b005b610fc360048036036080811015610ed657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f3d57600080fd5b820183602082011115610f4f57600080fd5b80359060200191846001830284011164010000000083111715610f7157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613631565b005b610fcd6136a9565b60405180821515815260200191505060405180910390f35b61101160048036036020811015610ffb57600080fd5b81019080803590602001909291905050506136bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611051578082015181840152602081019050611036565b50505050905090810190601f16801561107e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61109461398d565b005b61109e613c1d565b6040518082815260200191505060405180910390f35b6110e0600480360360208110156110ca57600080fd5b8101908080359060200190929190505050613c23565b005b6110ea613cdc565b6040518082815260200191505060405180910390f35b6111626004803603604081101561111657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613ce2565b60405180821515815260200191505060405180910390f35b611182613d76565b005b61118c613ee0565b60405180821515815260200191505060405180910390f35b6111ac613ef3565b005b6111f0600480360360208110156111c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613fce565b005b6112b26004803603604081101561120857600080fd5b81019080803590602001909291908035906020019064010000000081111561122f57600080fd5b82018360208201111561124157600080fd5b8035906020019184602083028401116401000000008311171561126357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506141c3565b60405180821515815260200191505060405180910390f35b6112d26141da565b73ffffffffffffffffffffffffffffffffffffffff166112f0612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b601060019054906101000a900460ff1661144f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157706026913960400191505060405180910390fd5b61145984846141c3565b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157706026913960400191505060405180910390fd5b600f5460016114bb611cf8565b011115611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806157eb602b913960400191505060405180910390fd5b600e54601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156115bd57600080fd5b505afa1580156115d1573d6000803e3d6000fd5b505050506040513d60208110156115e757600080fd5b8101908080519060200190929190505050101561164f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806157ba6031913960400191505060405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561170657600080fd5b505af115801561171a573d6000803e3d6000fd5b505050506040513d602081101561173057600080fd5b810190808051906020019092919050505050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561181757600080fd5b505af115801561182b573d6000803e3d6000fd5b505050506040513d602081101561184157600080fd5b810190808051906020019092919050505050600061185d611cf8565b9050600f5461186a611cf8565b101561194d5761187d33600183016141e2565b6118ce6001820184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614200565b600181013373ffffffffffffffffffffffffffffffffffffffff167fe35f58f3dd0de0dcb7ee3d146839df1d43b2cd37944051e1767d6676c30cbc34858560405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a35b6000600c541480156119745750600f54611965611cf8565b148061197357506013544210155b5b156119815743600c819055505b5050505050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b5050505050905090565b6000611a358261428a565b611a8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615938602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611ad0826121f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806159e86021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611b766141da565b73ffffffffffffffffffffffffffffffffffffffff161480611ba55750611ba481611b9f6141da565b613ce2565b5b611bfa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806158686038913960400191505060405180910390fd5b611c0483836142a7565b505050565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c376141da565b73ffffffffffffffffffffffffffffffffffffffff16611c55612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b9080519060200190611cf4929190615658565b5050565b6000611d046002614360565b905090565b60135481565b611d20611d1a6141da565b82614375565b611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a096031913960400191505060405180910390fd5b611d80838383614469565b505050565b6000611dd882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206146ac90919063ffffffff16565b905092915050565b60008083905060005b8351811015611e88576000848281518110611e0057fe5b6020026020010151905080831015611e485782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250611e7a565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b508080600101915050611de9565b508481149150509392505050565b611e9e6141da565b73ffffffffffffffffffffffffffffffffffffffff16611ebc612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614611f45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b611f796141da565b73ffffffffffffffffffffffffffffffffffffffff16611f97612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061202a611cf8565b905060005b8281101561205057612043338284016141e2565b808060010191505061202f565b505050565b61207083838360405180602001604052806000815250613631565b505050565b60008061208c8360026146c690919063ffffffff16565b50905080915050919050565b6120a06141da565b73ffffffffffffffffffffffffffffffffffffffff166120be612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612147576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612150816146f2565b50565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121e95780601f106121be576101008083540402835291602001916121e9565b820191906000526020600020905b8154815290600101906020018083116121cc57829003601f168201915b505050505081565b6000612221826040518060600160405280602981526020016158ca60299139600261470c9092919063ffffffff16565b9050919050565b600e5481565b6122366141da565b73ffffffffffffffffffffffffffffffffffffffff16612254612e6c565b73ffffffffffffffffffffffffffffffffffffffff16146122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f5460016122ea611cf8565b011115612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806157eb602b913960400191505060405180910390fd5b600e54601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156123ec57600080fd5b505afa158015612400573d6000803e3d6000fd5b505050506040513d602081101561241657600080fd5b8101908080519060200190929190505050101561247e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806157ba6031913960400191505060405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561253557600080fd5b505af1158015612549573d6000803e3d6000fd5b505050506040513d602081101561255f57600080fd5b810190808051906020019092919050505050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561264657600080fd5b505af115801561265a573d6000803e3d6000fd5b505050506040513d602081101561267057600080fd5b810190808051906020019092919050505050600061268c611cf8565b9050600f54612699611cf8565b101561277c576126ac84600183016141e2565b6126fd6001820184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614200565b600181018473ffffffffffffffffffffffffffffffffffffffff167fe35f58f3dd0de0dcb7ee3d146839df1d43b2cd37944051e1767d6676c30cbc34858560405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a35b6000600c541480156127a35750600f54612794611cf8565b14806127a257506013544210155b5b156127b05743600c819055505b50505050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561284e5780601f106128235761010080835404028352916020019161284e565b820191906000526020600020905b81548152906001019060200180831161283157829003601f168201915b5050505050905090565b6128606141da565b73ffffffffffffffffffffffffffffffffffffffff1661287e612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806158a0602a913960400191505060405180910390fd5b612a19600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061472b565b9050919050565b612a286141da565b73ffffffffffffffffffffffffffffffffffffffff16612a46612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612acf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612b986141da565b73ffffffffffffffffffffffffffffffffffffffff16612bb6612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612c3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600d5414612cb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b43600c81905550565b612cc86141da565b73ffffffffffffffffffffffffffffffffffffffff16612ce6612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612d6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e8190555050565b612d816141da565b73ffffffffffffffffffffffffffffffffffffffff16612d9f612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612e28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612f2e5780601f10612f0357610100808354040283529160200191612f2e565b820191906000526020600020905b815481529060010190602001808311612f1157829003601f168201915b5050505050905090565b600f5481565b612f466141da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fe7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000612ff46141da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166130a16141da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b601060009054906101000a900460ff16613159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806159156023913960400191505060405180910390fd5b600f546001613166611cf8565b0111156131be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806157eb602b913960400191505060405180910390fd5b600e54601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561326857600080fd5b505afa15801561327c573d6000803e3d6000fd5b505050506040513d602081101561329257600080fd5b810190808051906020019092919050505010156132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806157ba6031913960400191505060405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156133b157600080fd5b505af11580156133c5573d6000803e3d6000fd5b505050506040513d60208110156133db57600080fd5b810190808051906020019092919050505050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156134c257600080fd5b505af11580156134d6573d6000803e3d6000fd5b505050506040513d60208110156134ec57600080fd5b8101908080519060200190929190505050506000613508611cf8565b9050600f54613515611cf8565b10156135f85761352833600183016141e2565b6135796001820184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614200565b600181013373ffffffffffffffffffffffffffffffffffffffff167fe35f58f3dd0de0dcb7ee3d146839df1d43b2cd37944051e1767d6676c30cbc34858560405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a35b6000600c5414801561361f5750600f54613610611cf8565b148061361e57506013544210155b5b1561362c5743600c819055505b505050565b61364261363c6141da565b83614375565b613697576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a096031913960400191505060405180910390fd5b6136a384848484614740565b50505050565b601060019054906101000a900460ff1681565b60606136c78261428a565b61371c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806159b9602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156137c55780601f1061379a576101008083540402835291602001916137c5565b820191906000526020600020905b8154815290600101906020018083116137a857829003601f168201915b5050505050905060606137d66127b6565b90506000815114156137ec578192505050613988565b6000825111156138bd5780826040516020018083805190602001908083835b6020831061382e578051825260208201915060208101905060208303925061380b565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061387f578051825260208201915060208101905060208303925061385c565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613988565b806138c7856147b2565b6040516020018083805190602001908083835b602083106138fd57805182526020820191506020810190506020830392506138da565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061394e578051825260208201915060208101905060208303925061392b565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6139956141da565b73ffffffffffffffffffffffffffffffffffffffff166139b3612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614613a3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613a87573d6000803e3d6000fd5b50601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613b5057600080fd5b505afa158015613b64573d6000803e3d6000fd5b505050506040513d6020811015613b7a57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613bde57600080fd5b505af1158015613bf2573d6000803e3d6000fd5b505050506040513d6020811015613c0857600080fd5b81019080805190602001909291905050505050565b600d5481565b613c2b6141da565b73ffffffffffffffffffffffffffffffffffffffff16613c49612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614613cd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d5414613dee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b6000600c541415613e67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374617274696e6720696e64657820626c6f636b206d7573742062652073657481525060200191505060405180910390fd5b600f54600c544060001c81613e7857fe5b06600d8190555060ff613e96600c54436148f990919063ffffffff16565b1115613eb657600f54600143034060001c81613eae57fe5b06600d819055505b6000600d541415613ede57613ed76001600d5461497c90919063ffffffff16565b600d819055505b565b601060009054906101000a900460ff1681565b613efb6141da565b73ffffffffffffffffffffffffffffffffffffffff16613f19612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614613fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b613fd66141da565b73ffffffffffffffffffffffffffffffffffffffff16613ff4612e6c565b73ffffffffffffffffffffffffffffffffffffffff161461407d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415614103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061574a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006141d26011548484611de0565b905092915050565b600033905090565b6141fc828260405180602001604052806000815250614a04565b5050565b6142098261428a565b61425e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615964602c913960400191505060405180910390fd5b80600860008481526020019081526020016000209080519060200190614285929190615658565b505050565b60006142a0826002614a7590919063ffffffff16565b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661431a836121f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061436e82600001614a8f565b9050919050565b60006143808261428a565b6143d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061583c602c913960400191505060405180910390fd5b60006143e0836121f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061444f57508373ffffffffffffffffffffffffffffffffffffffff1661443784611a2a565b73ffffffffffffffffffffffffffffffffffffffff16145b80614460575061445f8185613ce2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16614489826121f1565b73ffffffffffffffffffffffffffffffffffffffff16146144f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806159906029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561457b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806157966024913960400191505060405180910390fd5b614586838383614aa0565b6145916000826142a7565b6145e281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614aa590919063ffffffff16565b5061463481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614abf90919063ffffffff16565b5061464b81836002614ad99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006146bb8360000183614b0e565b60001c905092915050565b6000806000806146d98660000186614b91565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190614708929190615658565b5050565b600061471f846000018460001b84614c2a565b60001c90509392505050565b600061473982600001614d20565b9050919050565b61474b848484614469565b61475784848484614d31565b6147ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157186032913960400191505060405180910390fd5b50505050565b606060008214156147fa576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506148f4565b600082905060005b60008214614824578080600101915050600a828161481c57fe5b049150614802565b60608167ffffffffffffffff8111801561483d57600080fd5b506040519080825280601f01601f1916602001820160405280156148705781602001600182028036833780820191505090505b50905060006001830390508593505b600084146148ec57600a848161489157fe5b0660300160f81b828280600190039350815181106148ab57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816148e457fe5b04935061487f565b819450505050505b919050565b600082821115614971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808284019050838110156149fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b614a0e8383614f4a565b614a1b6000848484614d31565b614a70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157186032913960400191505060405180910390fd5b505050565b6000614a87836000018360001b61513e565b905092915050565b600081600001805490509050919050565b505050565b6000614ab7836000018360001b615161565b905092915050565b6000614ad1836000018360001b615249565b905092915050565b6000614b05846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6152b9565b90509392505050565b600081836000018054905011614b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806156f66022913960400191505060405180910390fd5b826000018281548110614b7e57fe5b9060005260206000200154905092915050565b60008082846000018054905011614bf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158f36022913960400191505060405180910390fd5b6000846000018481548110614c0457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614cb6578082015181840152602081019050614c9b565b50505050905090810190601f168015614ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614d0457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000614d528473ffffffffffffffffffffffffffffffffffffffff16615395565b614d5f5760019050614f42565b6060614ec963150b7a0260e01b614d746141da565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614df8578082015181840152602081019050614ddd565b50505050905090810190601f168015614e255780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615718603291398773ffffffffffffffffffffffffffffffffffffffff166153a89092919063ffffffff16565b90506000818060200190516020811015614ee257600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614fed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614ff68161428a565b15615069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61507560008383614aa0565b6150c681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614abf90919063ffffffff16565b506150dd81836002614ad99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461523d57600060018203905060006001866000018054905003905060008660000182815481106151ac57fe5b90600052602060002001549050808760000184815481106151c957fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061520157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050615243565b60009150505b92915050565b600061525583836153c0565b6152ae5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506152b3565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156153605784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061538e565b8285600001600183038154811061537357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606153b784846000856153e3565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561543e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158166026913960400191505060405180910390fd5b61544785615395565b6154b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061550957805182526020820191506020810190506020830392506154e6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461556b576040519150601f19603f3d011682016040523d82523d6000602084013e615570565b606091505b509150915061558082828661558c565b92505050949350505050565b6060831561559c57829050615651565b6000835111156155af5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156156165780820151818401526020810190506155fb565b50505050905090810190601f1680156156435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061569957805160ff19168380011785556156c7565b828001600101855582156156c7579182015b828111156156c65782518255916020019190600101906156ab565b5b5090506156d491906156d8565b5090565b5b808211156156f15760008160009055506001016156d9565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737350726573616c65206d7573742062652061637469766520746f206d696e74206d6f6e737465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573735468697320636f6e7472616374206973206e6f7420617070726f76656420746f207370656e6420796f757220746f6b656e507572636861736520776f756c6420657863656564206d617820737570706c79206f66206d6f6e73746572416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e647353616c65206d7573742062652061637469766520746f206d696e74206d6f6e737465724552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220e287a8579a25afc39abe106a9556ec54e7c6c2c10c3b37bb303c2f4c357d22ee64736f6c63430007000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000029aa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d6f6e7374615665727365204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4f4e5354410000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c80636f18576d11610167578063c279726f116100ce578063e985e9c511610087578063e985e9c514611100578063e98665501461117a578063eb8d244414611184578063f0325549146111a4578063f2fde38b146111ae578063f5c05eb7146111f257610295565b8063c279726f14610fc5578063c87b56dd14610fe5578063ca628c781461108c578063cb774d4714611096578063dab5f340146110b4578063e36d6498146110e257610295565b80638da5cb5b116101205780638da5cb5b14610d2257806395d89b4114610d5657806399e263b914610dd9578063a22cb46514610df7578063b68cabd014610e47578063b88d4fde14610ec057610295565b80636f18576d14610c0057806370a0823114610c44578063715018a614610c9c5780637d17fcbe14610ca6578063827341ea14610cb05780638456bd2e14610cde57610295565b80632f745c591161020b57806355f804b3116101c457806355f804b31461093057806356a43414146109eb5780636352211e14610a6e5780636620c46414610ac6578063686f205c14610ae45780636c0360eb14610b7d57610295565b80632f745c59146107045780633423e5481461076657806334918dfd1461084857806336de51f01461085257806342842e0e146108805780634f6ccce7146108ee57610295565b8063095ea7b31161025d578063095ea7b31461051d57806310274fac1461056b578063109695231461059f57806318160ddd1461065a57806318e20a381461067857806323b872dd1461069657610295565b8063018a2c371461029a57806301ffc9a7146102c85780630334c6c51461032b57806306fdde0314610442578063081812fc146104c5575b600080fd5b6102c6600480360360208110156102b057600080fd5b81019080803590602001909291905050506112ca565b005b610313600480360360208110156102de57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611383565b60405180821515815260200191505060405180910390f35b6104406004803603606081101561034157600080fd5b81019080803590602001909291908035906020019064010000000081111561036857600080fd5b82018360208201111561037a57600080fd5b8035906020019184602083028401116401000000008311171561039c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156103fc57600080fd5b82018360208201111561040e57600080fd5b8035906020019184600183028401116401000000008311171561043057600080fd5b90919293919293905050506113ea565b005b61044a611988565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561048a57808201518184015260208101905061046f565b50505050905090810190601f1680156104b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104f1600480360360208110156104db57600080fd5b8101908080359060200190929190505050611a2a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105696004803603604081101561053357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac5565b005b610573611c09565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610658600480360360208110156105b557600080fd5b81019080803590602001906401000000008111156105d257600080fd5b8201836020820111156105e457600080fd5b8035906020019184600183028401116401000000008311171561060657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c2f565b005b610662611cf8565b6040518082815260200191505060405180910390f35b610680611d09565b6040518082815260200191505060405180910390f35b610702600480360360608110156106ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d0f565b005b6107506004803603604081101561071a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d85565b6040518082815260200191505060405180910390f35b6108306004803603606081101561077c57600080fd5b810190808035906020019092919080359060200190929190803590602001906401000000008111156107ad57600080fd5b8201836020820111156107bf57600080fd5b803590602001918460208302840111640100000000831117156107e157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611de0565b60405180821515815260200191505060405180910390f35b610850611e96565b005b61087e6004803603602081101561086857600080fd5b8101908080359060200190929190505050611f71565b005b6108ec6004803603606081101561089657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612055565b005b61091a6004803603602081101561090457600080fd5b8101908080359060200190929190505050612075565b6040518082815260200191505060405180910390f35b6109e96004803603602081101561094657600080fd5b810190808035906020019064010000000081111561096357600080fd5b82018360208201111561097557600080fd5b8035906020019184600183028401116401000000008311171561099757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612098565b005b6109f3612153565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a33578082015181840152602081019050610a18565b50505050905090810190601f168015610a605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a9a60048036036020811015610a8457600080fd5b81019080803590602001909291905050506121f1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ace612228565b6040518082815260200191505060405180910390f35b610b7b60048036036040811015610afa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610b3757600080fd5b820183602082011115610b4957600080fd5b80359060200191846001830284011164010000000083111715610b6b57600080fd5b909192939192939050505061222e565b005b610b856127b6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc5578082015181840152602081019050610baa565b50505050905090810190601f168015610bf25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c4260048036036020811015610c1657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612858565b005b610c8660048036036020811015610c5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061294b565b6040518082815260200191505060405180910390f35b610ca4612a20565b005b610cae612b90565b005b610cdc60048036036020811015610cc657600080fd5b8101908080359060200190929190505050612cc0565b005b610d2060048036036020811015610cf457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d79565b005b610d2a612e6c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d5e612e96565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d9e578082015181840152602081019050610d83565b50505050905090810190601f168015610dcb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610de1612f38565b6040518082815260200191505060405180910390f35b610e4560048036036040811015610e0d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612f3e565b005b610ebe60048036036020811015610e5d57600080fd5b8101908080359060200190640100000000811115610e7a57600080fd5b820183602082011115610e8c57600080fd5b80359060200191846001830284011164010000000083111715610eae57600080fd5b90919293919293905050506130f4565b005b610fc360048036036080811015610ed657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f3d57600080fd5b820183602082011115610f4f57600080fd5b80359060200191846001830284011164010000000083111715610f7157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613631565b005b610fcd6136a9565b60405180821515815260200191505060405180910390f35b61101160048036036020811015610ffb57600080fd5b81019080803590602001909291905050506136bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611051578082015181840152602081019050611036565b50505050905090810190601f16801561107e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61109461398d565b005b61109e613c1d565b6040518082815260200191505060405180910390f35b6110e0600480360360208110156110ca57600080fd5b8101908080359060200190929190505050613c23565b005b6110ea613cdc565b6040518082815260200191505060405180910390f35b6111626004803603604081101561111657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613ce2565b60405180821515815260200191505060405180910390f35b611182613d76565b005b61118c613ee0565b60405180821515815260200191505060405180910390f35b6111ac613ef3565b005b6111f0600480360360208110156111c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613fce565b005b6112b26004803603604081101561120857600080fd5b81019080803590602001909291908035906020019064010000000081111561122f57600080fd5b82018360208201111561124157600080fd5b8035906020019184602083028401116401000000008311171561126357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506141c3565b60405180821515815260200191505060405180910390f35b6112d26141da565b73ffffffffffffffffffffffffffffffffffffffff166112f0612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b601060019054906101000a900460ff1661144f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157706026913960400191505060405180910390fd5b61145984846141c3565b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157706026913960400191505060405180910390fd5b600f5460016114bb611cf8565b011115611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806157eb602b913960400191505060405180910390fd5b600e54601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156115bd57600080fd5b505afa1580156115d1573d6000803e3d6000fd5b505050506040513d60208110156115e757600080fd5b8101908080519060200190929190505050101561164f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806157ba6031913960400191505060405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561170657600080fd5b505af115801561171a573d6000803e3d6000fd5b505050506040513d602081101561173057600080fd5b810190808051906020019092919050505050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561181757600080fd5b505af115801561182b573d6000803e3d6000fd5b505050506040513d602081101561184157600080fd5b810190808051906020019092919050505050600061185d611cf8565b9050600f5461186a611cf8565b101561194d5761187d33600183016141e2565b6118ce6001820184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614200565b600181013373ffffffffffffffffffffffffffffffffffffffff167fe35f58f3dd0de0dcb7ee3d146839df1d43b2cd37944051e1767d6676c30cbc34858560405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a35b6000600c541480156119745750600f54611965611cf8565b148061197357506013544210155b5b156119815743600c819055505b5050505050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b5050505050905090565b6000611a358261428a565b611a8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615938602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611ad0826121f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806159e86021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611b766141da565b73ffffffffffffffffffffffffffffffffffffffff161480611ba55750611ba481611b9f6141da565b613ce2565b5b611bfa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806158686038913960400191505060405180910390fd5b611c0483836142a7565b505050565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c376141da565b73ffffffffffffffffffffffffffffffffffffffff16611c55612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b9080519060200190611cf4929190615658565b5050565b6000611d046002614360565b905090565b60135481565b611d20611d1a6141da565b82614375565b611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a096031913960400191505060405180910390fd5b611d80838383614469565b505050565b6000611dd882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206146ac90919063ffffffff16565b905092915050565b60008083905060005b8351811015611e88576000848281518110611e0057fe5b6020026020010151905080831015611e485782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250611e7a565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b508080600101915050611de9565b508481149150509392505050565b611e9e6141da565b73ffffffffffffffffffffffffffffffffffffffff16611ebc612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614611f45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b611f796141da565b73ffffffffffffffffffffffffffffffffffffffff16611f97612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061202a611cf8565b905060005b8281101561205057612043338284016141e2565b808060010191505061202f565b505050565b61207083838360405180602001604052806000815250613631565b505050565b60008061208c8360026146c690919063ffffffff16565b50905080915050919050565b6120a06141da565b73ffffffffffffffffffffffffffffffffffffffff166120be612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612147576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612150816146f2565b50565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121e95780601f106121be576101008083540402835291602001916121e9565b820191906000526020600020905b8154815290600101906020018083116121cc57829003601f168201915b505050505081565b6000612221826040518060600160405280602981526020016158ca60299139600261470c9092919063ffffffff16565b9050919050565b600e5481565b6122366141da565b73ffffffffffffffffffffffffffffffffffffffff16612254612e6c565b73ffffffffffffffffffffffffffffffffffffffff16146122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f5460016122ea611cf8565b011115612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806157eb602b913960400191505060405180910390fd5b600e54601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156123ec57600080fd5b505afa158015612400573d6000803e3d6000fd5b505050506040513d602081101561241657600080fd5b8101908080519060200190929190505050101561247e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806157ba6031913960400191505060405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561253557600080fd5b505af1158015612549573d6000803e3d6000fd5b505050506040513d602081101561255f57600080fd5b810190808051906020019092919050505050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561264657600080fd5b505af115801561265a573d6000803e3d6000fd5b505050506040513d602081101561267057600080fd5b810190808051906020019092919050505050600061268c611cf8565b9050600f54612699611cf8565b101561277c576126ac84600183016141e2565b6126fd6001820184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614200565b600181018473ffffffffffffffffffffffffffffffffffffffff167fe35f58f3dd0de0dcb7ee3d146839df1d43b2cd37944051e1767d6676c30cbc34858560405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a35b6000600c541480156127a35750600f54612794611cf8565b14806127a257506013544210155b5b156127b05743600c819055505b50505050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561284e5780601f106128235761010080835404028352916020019161284e565b820191906000526020600020905b81548152906001019060200180831161283157829003601f168201915b5050505050905090565b6128606141da565b73ffffffffffffffffffffffffffffffffffffffff1661287e612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806158a0602a913960400191505060405180910390fd5b612a19600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061472b565b9050919050565b612a286141da565b73ffffffffffffffffffffffffffffffffffffffff16612a46612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612acf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612b986141da565b73ffffffffffffffffffffffffffffffffffffffff16612bb6612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612c3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600d5414612cb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b43600c81905550565b612cc86141da565b73ffffffffffffffffffffffffffffffffffffffff16612ce6612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612d6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e8190555050565b612d816141da565b73ffffffffffffffffffffffffffffffffffffffff16612d9f612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614612e28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612f2e5780601f10612f0357610100808354040283529160200191612f2e565b820191906000526020600020905b815481529060010190602001808311612f1157829003601f168201915b5050505050905090565b600f5481565b612f466141da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fe7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000612ff46141da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166130a16141da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b601060009054906101000a900460ff16613159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806159156023913960400191505060405180910390fd5b600f546001613166611cf8565b0111156131be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806157eb602b913960400191505060405180910390fd5b600e54601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561326857600080fd5b505afa15801561327c573d6000803e3d6000fd5b505050506040513d602081101561329257600080fd5b810190808051906020019092919050505010156132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806157ba6031913960400191505060405180910390fd5b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156133b157600080fd5b505af11580156133c5573d6000803e3d6000fd5b505050506040513d60208110156133db57600080fd5b810190808051906020019092919050505050601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156134c257600080fd5b505af11580156134d6573d6000803e3d6000fd5b505050506040513d60208110156134ec57600080fd5b8101908080519060200190929190505050506000613508611cf8565b9050600f54613515611cf8565b10156135f85761352833600183016141e2565b6135796001820184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050614200565b600181013373ffffffffffffffffffffffffffffffffffffffff167fe35f58f3dd0de0dcb7ee3d146839df1d43b2cd37944051e1767d6676c30cbc34858560405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a35b6000600c5414801561361f5750600f54613610611cf8565b148061361e57506013544210155b5b1561362c5743600c819055505b505050565b61364261363c6141da565b83614375565b613697576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a096031913960400191505060405180910390fd5b6136a384848484614740565b50505050565b601060019054906101000a900460ff1681565b60606136c78261428a565b61371c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806159b9602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156137c55780601f1061379a576101008083540402835291602001916137c5565b820191906000526020600020905b8154815290600101906020018083116137a857829003601f168201915b5050505050905060606137d66127b6565b90506000815114156137ec578192505050613988565b6000825111156138bd5780826040516020018083805190602001908083835b6020831061382e578051825260208201915060208101905060208303925061380b565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061387f578051825260208201915060208101905060208303925061385c565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613988565b806138c7856147b2565b6040516020018083805190602001908083835b602083106138fd57805182526020820191506020810190506020830392506138da565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061394e578051825260208201915060208101905060208303925061392b565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6139956141da565b73ffffffffffffffffffffffffffffffffffffffff166139b3612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614613a3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613a87573d6000803e3d6000fd5b50601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613b5057600080fd5b505afa158015613b64573d6000803e3d6000fd5b505050506040513d6020811015613b7a57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613bde57600080fd5b505af1158015613bf2573d6000803e3d6000fd5b505050506040513d6020811015613c0857600080fd5b81019080805190602001909291905050505050565b600d5481565b613c2b6141da565b73ffffffffffffffffffffffffffffffffffffffff16613c49612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614613cd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600d5414613dee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b6000600c541415613e67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374617274696e6720696e64657820626c6f636b206d7573742062652073657481525060200191505060405180910390fd5b600f54600c544060001c81613e7857fe5b06600d8190555060ff613e96600c54436148f990919063ffffffff16565b1115613eb657600f54600143034060001c81613eae57fe5b06600d819055505b6000600d541415613ede57613ed76001600d5461497c90919063ffffffff16565b600d819055505b565b601060009054906101000a900460ff1681565b613efb6141da565b73ffffffffffffffffffffffffffffffffffffffff16613f19612e6c565b73ffffffffffffffffffffffffffffffffffffffff1614613fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b613fd66141da565b73ffffffffffffffffffffffffffffffffffffffff16613ff4612e6c565b73ffffffffffffffffffffffffffffffffffffffff161461407d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415614103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061574a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006141d26011548484611de0565b905092915050565b600033905090565b6141fc828260405180602001604052806000815250614a04565b5050565b6142098261428a565b61425e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615964602c913960400191505060405180910390fd5b80600860008481526020019081526020016000209080519060200190614285929190615658565b505050565b60006142a0826002614a7590919063ffffffff16565b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661431a836121f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061436e82600001614a8f565b9050919050565b60006143808261428a565b6143d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061583c602c913960400191505060405180910390fd5b60006143e0836121f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061444f57508373ffffffffffffffffffffffffffffffffffffffff1661443784611a2a565b73ffffffffffffffffffffffffffffffffffffffff16145b80614460575061445f8185613ce2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16614489826121f1565b73ffffffffffffffffffffffffffffffffffffffff16146144f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806159906029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561457b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806157966024913960400191505060405180910390fd5b614586838383614aa0565b6145916000826142a7565b6145e281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614aa590919063ffffffff16565b5061463481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614abf90919063ffffffff16565b5061464b81836002614ad99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006146bb8360000183614b0e565b60001c905092915050565b6000806000806146d98660000186614b91565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190614708929190615658565b5050565b600061471f846000018460001b84614c2a565b60001c90509392505050565b600061473982600001614d20565b9050919050565b61474b848484614469565b61475784848484614d31565b6147ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157186032913960400191505060405180910390fd5b50505050565b606060008214156147fa576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506148f4565b600082905060005b60008214614824578080600101915050600a828161481c57fe5b049150614802565b60608167ffffffffffffffff8111801561483d57600080fd5b506040519080825280601f01601f1916602001820160405280156148705781602001600182028036833780820191505090505b50905060006001830390508593505b600084146148ec57600a848161489157fe5b0660300160f81b828280600190039350815181106148ab57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816148e457fe5b04935061487f565b819450505050505b919050565b600082821115614971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808284019050838110156149fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b614a0e8383614f4a565b614a1b6000848484614d31565b614a70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157186032913960400191505060405180910390fd5b505050565b6000614a87836000018360001b61513e565b905092915050565b600081600001805490509050919050565b505050565b6000614ab7836000018360001b615161565b905092915050565b6000614ad1836000018360001b615249565b905092915050565b6000614b05846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6152b9565b90509392505050565b600081836000018054905011614b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806156f66022913960400191505060405180910390fd5b826000018281548110614b7e57fe5b9060005260206000200154905092915050565b60008082846000018054905011614bf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158f36022913960400191505060405180910390fd5b6000846000018481548110614c0457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614cb6578082015181840152602081019050614c9b565b50505050905090810190601f168015614ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614d0457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000614d528473ffffffffffffffffffffffffffffffffffffffff16615395565b614d5f5760019050614f42565b6060614ec963150b7a0260e01b614d746141da565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614df8578082015181840152602081019050614ddd565b50505050905090810190601f168015614e255780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615718603291398773ffffffffffffffffffffffffffffffffffffffff166153a89092919063ffffffff16565b90506000818060200190516020811015614ee257600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614fed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614ff68161428a565b15615069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61507560008383614aa0565b6150c681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614abf90919063ffffffff16565b506150dd81836002614ad99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461523d57600060018203905060006001866000018054905003905060008660000182815481106151ac57fe5b90600052602060002001549050808760000184815481106151c957fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061520157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050615243565b60009150505b92915050565b600061525583836153c0565b6152ae5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506152b3565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156153605784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061538e565b8285600001600183038154811061537357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606153b784846000856153e3565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561543e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158166026913960400191505060405180910390fd5b61544785615395565b6154b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061550957805182526020820191506020810190506020830392506154e6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461556b576040519150601f19603f3d011682016040523d82523d6000602084013e615570565b606091505b509150915061558082828661558c565b92505050949350505050565b6060831561559c57829050615651565b6000835111156155af5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156156165780820151818401526020810190506155fb565b50505050905090810190601f1680156156435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061569957805160ff19168380011785556156c7565b828001600101855582156156c7579182015b828111156156c65782518255916020019190600101906156ab565b5b5090506156d491906156d8565b5090565b5b808211156156f15760008160009055506001016156d9565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737350726573616c65206d7573742062652061637469766520746f206d696e74206d6f6e737465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573735468697320636f6e7472616374206973206e6f7420617070726f76656420746f207370656e6420796f757220746f6b656e507572636861736520776f756c6420657863656564206d617820737570706c79206f66206d6f6e73746572416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e647353616c65206d7573742062652061637469766520746f206d696e74206d6f6e737465724552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220e287a8579a25afc39abe106a9556ec54e7c6c2c10c3b37bb303c2f4c357d22ee64736f6c63430007000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000029aa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d6f6e7374615665727365204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d4f4e5354410000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): MonstaVerse NFTs
Arg [1] : symbol (string): MONSTA
Arg [2] : maxNftSupply (uint256): 10666
Arg [3] : saleStart (uint256): 0

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000029aa
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d6f6e7374615665727365204e46547300000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 4d4f4e5354410000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67538:8452:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69300:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10172:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72347:1321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51479:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54265:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53795:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67981:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69494:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53273:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68121:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55155:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53035:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70134:827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69801:89;;;:::i;:::-;;69065:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55531:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53561:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69627:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67616:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51235:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67738:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73678:1222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52854:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68891:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50952:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66181:148;;;:::i;:::-;;75795:192;;;:::i;:::-;;68790:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68689;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65530:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51648:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67859:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54558:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71150:1187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55753:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67935:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51823:792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68466:213;;;:::i;:::-;;67701:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70036:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67659:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54924:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74976:682;;;:::i;:::-;;67894:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69898:100;;;:::i;:::-;;66484:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70973:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69300:123;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69400:15:::1;69381:16;:34;;;;69300:123:::0;:::o;10172:150::-;10257:4;10281:20;:33;10302:11;10281:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10274:40;;10172:150;;;:::o;72347:1321::-;72467:17;;;;;;;;;;;72459:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72546:17;72552:4;72557:5;72546;:17::i;:::-;72538:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72646:11;;72640:1;72626:13;:11;:13::i;:::-;:15;72625:32;;72617:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72774:12;;72724:9;;;;;;;;;;;:19;;;72744:10;72764:4;72724:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:62;;72716:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72852:9;;;;;;;;;;;:17;;;72870:20;;;;;;;;;;;72892:12;;72852:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72916:9;;;;;;;;;;;:22;;;72939:10;72951:20;;;;;;;;;;;72973:12;;72916:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73007:14;73024:13;:11;:13::i;:::-;73007:30;;73072:11;;73056:13;:11;:13::i;:::-;:27;73052:230;;;73104:40;73120:10;73142:1;73132:9;:11;73104:15;:40::i;:::-;73163:39;73192:1;73182:9;:11;73194:7;;73163:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:39::i;:::-;73255:1;73245:9;:11;73233:10;73226:40;;;73258:7;;73226:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73052:230;73524:1;73502:18;;:23;:96;;;;;73547:11;;73530:13;:11;:13::i;:::-;:28;:67;;;;73581:16;;73562:15;:35;;73530:67;73502:96;73498:162;;;73636:12;73615:18;:33;;;;73498:162;72347:1321;;;;;:::o;51479:100::-;51533:13;51566:5;51559:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51479:100;:::o;54265:221::-;54341:7;54369:16;54377:7;54369;:16::i;:::-;54361:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54454:15;:24;54470:7;54454:24;;;;;;;;;;;;;;;;;;;;;54447:31;;54265:221;;;:::o;53795:404::-;53876:13;53892:23;53907:7;53892:14;:23::i;:::-;53876:39;;53940:5;53934:11;;:2;:11;;;;53926:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54020:5;54004:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54029:44;54053:5;54060:12;:10;:12::i;:::-;54029:23;:44::i;:::-;54004:69;53996:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54170:21;54179:2;54183:7;54170:8;:21::i;:::-;53795:404;;;:::o;67981:23::-;;;;;;;;;;;;;:::o;69494:125::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69597:14:::1;69579:15;:32;;;;;;;;;;;;:::i;:::-;;69494:125:::0;:::o;53273:211::-;53334:7;53455:21;:12;:19;:21::i;:::-;53448:28;;53273:211;:::o;68121:31::-;;;;:::o;55155:305::-;55316:41;55335:12;:10;:12::i;:::-;55349:7;55316:18;:41::i;:::-;55308:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55424:28;55434:4;55440:2;55444:7;55424:9;:28::i;:::-;55155:305;;;:::o;53035:162::-;53132:7;53159:30;53183:5;53159:13;:20;53173:5;53159:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53152:37;;53035:162;;;;:::o;70134:827::-;70284:4;70306:20;70329:4;70306:27;;70351:9;70346:492;70370:5;:12;70366:1;:16;70346:492;;;70400:20;70423:5;70429:1;70423:8;;;;;;;;;;;;;;70400:31;;70463:12;70448;:27;70444:383;;;70609:12;70623;70592:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70582:55;;;;;;70567:70;;70444:383;;;70787:12;70801;70770:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70760:55;;;;;;70745:70;;70444:383;70346:492;70384:3;;;;;;;70346:492;;;;70949:4;70933:12;:20;70926:27;;;70134:827;;;;;:::o;69801:89::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69870:12:::1;;;;;;;;;;;69869:13;69854:12;;:28;;;;;;;;;;;;;;;;;;69801:89::o:0;69065:227::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69141:11:::1;69155:13;:11;:13::i;:::-;69141:27;;69179:6;69196:89;69212:6;69208:1;:10;69196:89;;;69240:33;69250:10;69271:1;69262:6;:10;69240:9;:33::i;:::-;69220:3;;;;;;;69196:89;;;65821:1;;69065:227:::0;:::o;55531:151::-;55635:39;55652:4;55658:2;55662:7;55635:39;;;;;;;;;;;;:16;:39::i;:::-;55531:151;;;:::o;53561:172::-;53636:7;53657:15;53678:22;53694:5;53678:12;:15;;:22;;;;:::i;:::-;53656:44;;;53718:7;53711:14;;;53561:172;;;:::o;69627:99::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69698:20:::1;69710:7;69698:11;:20::i;:::-;69627:99:::0;:::o;67616:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51235:177::-;51307:7;51334:70;51351:7;51334:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51327:77;;51235:177;;;:::o;67738:51::-;;;;:::o;73678:1222::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73876:11:::1;;73870:1;73856:13;:11;:13::i;:::-;:15;73855:32;;73847:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74004:12;;73954:9;;;;;;;;;;;:19;;;73974:10;73994:4;73954:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:62;;73946:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74082:9;;;;;;;;;;;:17;;;74100:20;;;;;;;;;;;74122:12;;74082:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;74146:9;;;;;;;;;;;:22;;;74169:10;74181:20;;;;;;;;;;;74203:12;;74146:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;74237:14;74254:13;:11;:13::i;:::-;74237:30;;74302:11;;74286:13;:11;:13::i;:::-;:27;74282:232;;;74334:41;74350:11;74373:1;74363:9;:11;74334:15;:41::i;:::-;74394:39;74423:1;74413:9;:11;74425:7;;74394:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:39::i;:::-;74487:1;74477:9;:11;74464;74457:41;;;74490:7;;74457:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74282:232;74756:1;74734:18;;:23;:96;;;;;74779:11;;74762:13;:11;:13::i;:::-;:28;:67;;;;74813:16;;74794:15;:35;;74762:67;74734:96;74730:162;;;74868:12;74847:18;:33;;;;74730:162;65821:1;73678:1222:::0;;;:::o;52854:97::-;52902:13;52935:8;52928:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52854:97;:::o;68891:122::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68995:10:::1;68972:20;;:33;;;;;;;;;;;;;;;;;;68891:122:::0;:::o;50952:221::-;51024:7;51069:1;51052:19;;:5;:19;;;;51044:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51136:29;:13;:20;51150:5;51136:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51129:36;;50952:221;;;:::o;66181:148::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66288:1:::1;66251:40;;66272:6;;;;;;;;;;;66251:40;;;;;;;;;;;;66319:1;66302:6;;:19;;;;;;;;;;;;;;;;;;66181:148::o:0;75795:192::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75890:1:::1;75873:13;;:18;75865:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75967:12;75946:18;:33;;;;75795:192::o:0;68790:93::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68867:8:::1;68854:12;:21;;;;68790:93:::0;:::o;68689:::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68769:5:::1;68757:9;;:17;;;;;;;;;;;;;;;;;;68689:93:::0;:::o;65530:87::-;65576:7;65603:6;;;;;;;;;;;65596:13;;65530:87;:::o;51648:104::-;51704:13;51737:7;51730:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51648:104;:::o;67859:26::-;;;;:::o;54558:295::-;54673:12;:10;:12::i;:::-;54661:24;;:8;:24;;;;54653:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54773:8;54728:18;:32;54747:12;:10;:12::i;:::-;54728:32;;;;;;;;;;;;;;;:42;54761:8;54728:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54826:8;54797:48;;54812:12;:10;:12::i;:::-;54797:48;;;54836:8;54797:48;;;;;;;;;;;;;;;;;;;;54558:295;;:::o;71150:1187::-;71223:12;;;;;;;;;;;71215:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71315:11;;71309:1;71295:13;:11;:13::i;:::-;:15;71294:32;;71286:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71443:12;;71393:9;;;;;;;;;;;:19;;;71413:10;71433:4;71393:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:62;;71385:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71521:9;;;;;;;;;;;:17;;;71539:20;;;;;;;;;;;71561:12;;71521:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71585:9;;;;;;;;;;;:22;;;71608:10;71620:20;;;;;;;;;;;71642:12;;71585:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71676:14;71693:13;:11;:13::i;:::-;71676:30;;71741:11;;71725:13;:11;:13::i;:::-;:27;71721:230;;;71773:40;71789:10;71811:1;71801:9;:11;71773:15;:40::i;:::-;71832:39;71861:1;71851:9;:11;71863:7;;71832:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:39::i;:::-;71924:1;71914:9;:11;71902:10;71895:40;;;71927:7;;71895:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71721:230;72193:1;72171:18;;:23;:96;;;;;72216:11;;72199:13;:11;:13::i;:::-;:28;:67;;;;72250:16;;72231:15;:35;;72199:67;72171:96;72167:162;;;72305:12;72284:18;:33;;;;72167:162;71150:1187;;;:::o;55753:285::-;55885:41;55904:12;:10;:12::i;:::-;55918:7;55885:18;:41::i;:::-;55877:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55991:39;56005:4;56011:2;56015:7;56024:5;55991:13;:39::i;:::-;55753:285;;;;:::o;67935:37::-;;;;;;;;;;;;;:::o;51823:792::-;51896:13;51930:16;51938:7;51930;:16::i;:::-;51922:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52011:23;52037:10;:19;52048:7;52037:19;;;;;;;;;;;52011:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52067:18;52088:9;:7;:9::i;:::-;52067:30;;52195:1;52179:4;52173:18;:23;52169:72;;;52220:9;52213:16;;;;;;52169:72;52371:1;52351:9;52345:23;:27;52341:108;;;52420:4;52426:9;52403:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52389:48;;;;;;52341:108;52581:4;52587:18;:7;:16;:18::i;:::-;52564:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52550:57;;;;51823:792;;;;:::o;68466:213::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68519:12:::1;68534:21;68519:36;;68566:10;:19;;:28;68586:7;68566:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68605:9;;;;;;;;;;;:18;;;68624:10;68636:9;;;;;;;;;;;:19;;;68664:4;68636:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;68605:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;65821:1;68466:213::o:0;67701:28::-;;;;:::o;70036:86::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70107:7:::1;70098:8;:16;;;;70036:86:::0;:::o;67659:33::-;;;;:::o;54924:164::-;55021:4;55045:18;:25;55064:5;55045:25;;;;;;;;;;;;;;;:35;55071:8;55045:35;;;;;;;;;;;;;;;;;;;;;;;;;55038:42;;54924:164;;;;:::o;74976:682::-;75047:1;75030:13;;:18;75022:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75123:1;75101:18;;:23;;75093:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75236:11;;75213:18;;75203:29;75198:35;;:49;;;;;;75182:13;:65;;;;75422:3;75383:36;75400:18;;75383:12;:16;;:36;;;;:::i;:::-;:42;75379:138;;;75494:11;;75488:1;75473:12;:16;75463:27;75458:33;;:47;;;;;;75442:13;:63;;;;75379:138;75585:1;75568:13;;:18;75564:87;;;75619:20;75637:1;75619:13;;:17;;:20;;;;:::i;:::-;75603:13;:36;;;;75564:87;74976:682::o;67894:32::-;;;;;;;;;;;;;:::o;69898:100::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69973:17:::1;;;;;;;;;;;69972:18;69954:17;;:36;;;;;;;;;;;;;;;;;;69898:100::o:0;66484:244::-;65761:12;:10;:12::i;:::-;65750:23;;:7;:5;:7::i;:::-;:23;;;65742:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66593:1:::1;66573:22;;:8;:22;;;;66565:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66683:8;66654:38;;66675:6;;;;;;;;;;;66654:38;;;;;;;;;;;;66712:8;66703:6;;:17;;;;;;;;;;;;;;;;;;66484:244:::0;:::o;70973:129::-;71046:4;71065:29;71072:8;;71082:4;71088:5;71065:6;:29::i;:::-;71058:36;;70973:129;;;;:::o;613:106::-;666:15;701:10;694:17;;613:106;:::o;58497:110::-;58573:26;58583:2;58587:7;58573:26;;;;;;;;;;;;:9;:26::i;:::-;58497:110;;:::o;61690:215::-;61790:16;61798:7;61790;:16::i;:::-;61782:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61888:9;61866:10;:19;61877:7;61866:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;61690:215;;:::o;57505:127::-;57570:4;57594:30;57616:7;57594:12;:21;;:30;;;;:::i;:::-;57587:37;;57505:127;;;:::o;63523:192::-;63625:2;63598:15;:24;63614:7;63598:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63681:7;63677:2;63643:46;;63652:23;63667:7;63652:14;:23::i;:::-;63643:46;;;;;;;;;;;;63523:192;;:::o;44246:123::-;44315:7;44342:19;44350:3;:10;;44342:7;:19::i;:::-;44335:26;;44246:123;;;:::o;57799:355::-;57892:4;57917:16;57925:7;57917;:16::i;:::-;57909:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57993:13;58009:23;58024:7;58009:14;:23::i;:::-;57993:39;;58062:5;58051:16;;:7;:16;;;:51;;;;58095:7;58071:31;;:20;58083:7;58071:11;:20::i;:::-;:31;;;58051:51;:94;;;;58106:39;58130:5;58137:7;58106:23;:39::i;:::-;58051:94;58043:103;;;57799:355;;;;:::o;60935:599::-;61060:4;61033:31;;:23;61048:7;61033:14;:23::i;:::-;:31;;;61025:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61161:1;61147:16;;:2;:16;;;;61139:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61217:39;61238:4;61244:2;61248:7;61217:20;:39::i;:::-;61321:29;61338:1;61342:7;61321:8;:29::i;:::-;61363:35;61390:7;61363:13;:19;61377:4;61363:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61409:30;61431:7;61409:13;:17;61423:2;61409:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61452:29;61469:7;61478:2;61452:12;:16;;:29;;;;;:::i;:::-;;61518:7;61514:2;61499:27;;61508:4;61499:27;;;;;;;;;;;;60935:599;;;:::o;36037:137::-;36108:7;36143:22;36147:3;:10;;36159:5;36143:3;:22::i;:::-;36135:31;;36128:38;;36037:137;;;;:::o;44708:236::-;44788:7;44797;44818:11;44831:13;44848:22;44852:3;:10;;44864:5;44848:3;:22::i;:::-;44817:53;;;;44897:3;44889:12;;44927:5;44919:14;;44881:55;;;;;;44708:236;;;;;:::o;62135:100::-;62219:8;62208;:19;;;;;;;;;;;;:::i;:::-;;62135:100;:::o;45994:213::-;46101:7;46152:44;46157:3;:10;;46177:3;46169:12;;46183;46152:4;:44::i;:::-;46144:53;;46121:78;;45994:213;;;;;:::o;35579:114::-;35639:7;35666:19;35674:3;:10;;35666:7;:19::i;:::-;35659:26;;35579:114;;;:::o;56920:272::-;57034:28;57044:4;57050:2;57054:7;57034:9;:28::i;:::-;57081:48;57104:4;57110:2;57114:7;57123:5;57081:22;:48::i;:::-;57073:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56920:272;;;;:::o;46458:746::-;46514:13;46744:1;46735:5;:10;46731:53;;;46762:10;;;;;;;;;;;;;;;;;;;;;46731:53;46794:12;46809:5;46794:20;;46825:14;46850:78;46865:1;46857:4;:9;46850:78;;46883:8;;;;;;;46914:2;46906:10;;;;;;;;;46850:78;;;46938:19;46970:6;46960:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46938:39;;46988:13;47013:1;47004:6;:10;46988:26;;47032:5;47025:12;;47048:117;47063:1;47055:4;:9;47048:117;;47124:2;47117:4;:9;;;;;;47112:2;:14;47099:29;;47081:6;47088:7;;;;;;;47081:15;;;;;;;;;;;:47;;;;;;;;;;;47151:2;47143:10;;;;;;;;;47048:117;;;47189:6;47175:21;;;;;;46458:746;;;;:::o;14196:158::-;14254:7;14287:1;14282;:6;;14274:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14345:1;14341;:5;14334:12;;14196:158;;;;:::o;13734:179::-;13792:7;13812:9;13828:1;13824;:5;13812:17;;13853:1;13848;:6;;13840:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13904:1;13897:8;;;13734:179;;;;:::o;58834:250::-;58930:18;58936:2;58940:7;58930:5;:18::i;:::-;58967:54;58998:1;59002:2;59006:7;59015:5;58967:22;:54::i;:::-;58959:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58834:250;;;:::o;44007:151::-;44091:4;44115:35;44125:3;:10;;44145:3;44137:12;;44115:9;:35::i;:::-;44108:42;;44007:151;;;;:::o;40825:110::-;40881:7;40908:3;:12;;:19;;;;40901:26;;40825:110;;;:::o;64328:93::-;;;;:::o;35124:137::-;35194:4;35218:35;35226:3;:10;;35246:5;35238:14;;35218:7;:35::i;:::-;35211:42;;35124:137;;;;:::o;34817:131::-;34884:4;34908:32;34913:3;:10;;34933:5;34925:14;;34908:4;:32::i;:::-;34901:39;;34817:131;;;;:::o;43430:185::-;43519:4;43543:64;43548:3;:10;;43568:3;43560:12;;43598:5;43582:23;;43574:32;;43543:4;:64::i;:::-;43536:71;;43430:185;;;;;:::o;31075:204::-;31142:7;31191:5;31170:3;:11;;:18;;;;:26;31162:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31253:3;:11;;31265:5;31253:18;;;;;;;;;;;;;;;;31246:25;;31075:204;;;;:::o;41290:279::-;41357:7;41366;41416:5;41394:3;:12;;:19;;;;:27;41386:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41473:22;41498:3;:12;;41511:5;41498:19;;;;;;;;;;;;;;;;;;41473:44;;41536:5;:10;;;41548:5;:12;;;41528:33;;;;;41290:279;;;;;:::o;42787:319::-;42881:7;42901:16;42920:3;:12;;:17;42933:3;42920:17;;;;;;;;;;;;42901:36;;42968:1;42956:8;:13;;42971:12;42948:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43038:3;:12;;43062:1;43051:8;:12;43038:26;;;;;;;;;;;;;;;;;;:33;;;43031:40;;;42787:319;;;;;:::o;30622:109::-;30678:7;30705:3;:11;;:18;;;;30698:25;;30622:109;;;:::o;62800:604::-;62921:4;62948:15;:2;:13;;;:15::i;:::-;62943:60;;62987:4;62980:11;;;;62943:60;63013:23;63039:252;63092:45;;;63152:12;:10;:12::i;:::-;63179:4;63198:7;63220:5;63055:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63039:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63013:278;;63302:13;63329:10;63318:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63302:48;;47955:10;63379:16;;63369:26;;;:6;:26;;;;63361:35;;;;62800:604;;;;;;;:::o;59420:404::-;59514:1;59500:16;;:2;:16;;;;59492:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59573:16;59581:7;59573;:16::i;:::-;59572:17;59564:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59635:45;59664:1;59668:2;59672:7;59635:20;:45::i;:::-;59693:30;59715:7;59693:13;:17;59707:2;59693:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59736:29;59753:7;59762:2;59736:12;:16;;:29;;;;;:::i;:::-;;59808:7;59804:2;59783:33;;59800:1;59783:33;;;;;;;;;;;;59420:404;;:::o;40605:125::-;40676:4;40721:1;40700:3;:12;;:17;40713:3;40700:17;;;;;;;;;;;;:22;;40693:29;;40605:125;;;;:::o;28777:1544::-;28843:4;28961:18;28982:3;:12;;:19;28995:5;28982:19;;;;;;;;;;;;28961:40;;29032:1;29018:10;:15;29014:1300;;29380:21;29417:1;29404:10;:14;29380:38;;29433:17;29474:1;29453:3;:11;;:18;;;;:22;29433:42;;29720:17;29740:3;:11;;29752:9;29740:22;;;;;;;;;;;;;;;;29720:42;;29886:9;29857:3;:11;;29869:13;29857:26;;;;;;;;;;;;;;;:38;;;;30005:1;29989:13;:17;29963:3;:12;;:23;29976:9;29963:23;;;;;;;;;;;:43;;;;30115:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30210:3;:12;;:19;30223:5;30210:19;;;;;;;;;;;30203:26;;;30253:4;30246:11;;;;;;;;29014:1300;30297:5;30290:12;;;28777:1544;;;;;:::o;28187:414::-;28250:4;28272:21;28282:3;28287:5;28272:9;:21::i;:::-;28267:327;;28310:3;:11;;28327:5;28310:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28493:3;:11;;:18;;;;28471:3;:12;;:19;28484:5;28471:19;;;;;;;;;;;:40;;;;28533:4;28526:11;;;;28267:327;28577:5;28570:12;;28187:414;;;;;:::o;38105:692::-;38181:4;38297:16;38316:3;:12;;:17;38329:3;38316:17;;;;;;;;;;;;38297:36;;38362:1;38350:8;:13;38346:444;;;38417:3;:12;;38435:38;;;;;;;;38452:3;38435:38;;;;38465:5;38435:38;;;38417:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38632:3;:12;;:19;;;;38612:3;:12;;:17;38625:3;38612:17;;;;;;;;;;;:39;;;;38673:4;38666:11;;;;;38346:444;38746:5;38710:3;:12;;38734:1;38723:8;:12;38710:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38773:5;38766:12;;;38105:692;;;;;;:::o;19175:422::-;19235:4;19443:12;19554:7;19542:20;19534:28;;19588:1;19581:4;:8;19574:15;;;19175:422;;;:::o;22124:195::-;22227:12;22259:52;22281:6;22289:4;22295:1;22298:12;22259:21;:52::i;:::-;22252:59;;22124:195;;;;;:::o;30407:129::-;30480:4;30527:1;30504:3;:12;;:19;30517:5;30504:19;;;;;;;;;;;;:24;;30497:31;;30407:129;;;;:::o;23176:530::-;23303:12;23361:5;23336:21;:30;;23328:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23428:18;23439:6;23428:10;:18::i;:::-;23420:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23554:12;23568:23;23595:6;:11;;23615:5;23623:4;23595:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23553:75;;;;23646:52;23664:7;23673:10;23685:12;23646:17;:52::i;:::-;23639:59;;;;23176:530;;;;;;:::o;25716:742::-;25831:12;25860:7;25856:595;;;25891:10;25884:17;;;;25856:595;26025:1;26005:10;:17;:21;26001:439;;;26268:10;26262:17;26329:15;26316:10;26312:2;26308:19;26301:44;26216:148;26411:12;26404:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25716:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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

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