ETH Price: $3,325.39 (-1.42%)
Gas: 2 Gwei

Token

MetaFigure (MF)
 

Overview

Max Total Supply

789 MF

Holders

659

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MF
0xDbEE45aD97ab3F2779043F93a0ff29f89AdaF144
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:
MetaFigure

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: MIT

// ███╗░░░███╗███████╗████████╗░█████╗░███████╗██╗░██████╗░██╗░░░██╗██████╗░███████╗
// ████╗░████║██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║██╔════╝░██║░░░██║██╔══██╗██╔════╝
// ██╔████╔██║█████╗░░░░░██║░░░███████║█████╗░░██║██║░░██╗░██║░░░██║██████╔╝█████╗░░
// ██║╚██╔╝██║██╔══╝░░░░░██║░░░██╔══██║██╔══╝░░██║██║░░╚██╗██║░░░██║██╔══██╗██╔══╝░░
// ██║░╚═╝░██║███████╗░░░██║░░░██║░░██║██║░░░░░██║╚██████╔╝╚██████╔╝██║░░██║███████╗
// ╚═╝░░░░░╚═╝╚══════╝░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░░░░╚═╝░╚═════╝░░╚═════╝░╚═╝░░╚═╝╚══════╝

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect 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);

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MetaFigure.sol



pragma solidity ^0.8.4;








interface InterfaceMetaFigure {
    function getOwnerOf(uint256 tokenId) external view returns (address owner);
	function getTokenIds(address _owner) external view returns (uint[] memory);
}

contract MetaFigure is ERC721, ERC721Enumerable, Pausable, Ownable, ERC721Burnable, ReentrancyGuard {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string baseURI;
    uint256 maxSupply = 9600;
    uint256 maxMint = 1;
    uint256 mintCost = 0 ether;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
		uint256 _initMint
	) ERC721(_name,_symbol) {
        _setBaseURI(_initBaseURI);
		safeMint(_initMint);
	}

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
	
    function _setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function safeMint(uint256 amount) public payable nonReentrant whenNotPaused {
        uint256 supply = totalSupply();
        uint256 senderBalance = ERC721.balanceOf(msg.sender);
        require(amount > 0,"You have to mint at least 1.");
        require(supply + amount <= maxSupply,"Mint would exceed max supply.");
        if(msg.sender != owner())
        {
            require(amount <= maxMint,"Mint would exceed max mint allowance.");
            require(maxMint >= senderBalance + amount,"Mint would exceed max mint allowance.");
        }
        if(mintCost > 0 && msg.sender != owner())
        {
            require(msg.value >= mintCost * amount,"You did not send enough ether to mint.");
        }
        for (uint256 i = 1; i <= amount; i++) {
            _tokenIdCounter.increment();
            _safeMint(msg.sender, _tokenIdCounter.current());
        }
    }

    function changeMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) 
    {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

		string memory _tokenId = Strings.toString(tokenId);
        string memory currentBaseURI = _baseURI();

        if (bytes(currentBaseURI).length == 0) {
            return _tokenId;
        }
		
        if (bytes(_tokenId).length > 0) {
            return string(abi.encodePacked(currentBaseURI, _tokenId, ".json"));
        }

        return super.tokenURI(tokenId);
    }
	
	function getOwnerOf(uint256 tokenId) external view returns (address owner) {
        return (ownerOf(tokenId));
    }
	
	function getTokenIds(address _owner) external view returns (uint[] memory) {
        uint[] memory _tokensOfOwner = new uint[](ERC721.balanceOf(_owner));
        uint i;

        for (i=0;i<ERC721.balanceOf(_owner);i++){
            _tokensOfOwner[i] = ERC721Enumerable.tokenOfOwnerByIndex(_owner, i);
        }
        return (_tokensOfOwner);
    }    

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        whenNotPaused
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"_initMint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"_setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612580600e556001600f5560006010553480156200002157600080fd5b50604051620035b6380380620035b6833981016040819052620000449162000d54565b8351849084906200005d90600090602085019062000bea565b5080516200007390600190602084019062000bea565b5050600a805460ff19169055506200008b33620000b0565b6001600b556200009b826200010a565b620000a68162000189565b5050505062000f80565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03610100909104163314620001705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516200018590600d90602084019062000bea565b5050565b6002600b541415620001de5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640162000167565b6002600b55600a5460ff16156200022b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000167565b60006200023760085490565b905060006200025133620004f860201b62000d761760201c565b905060008311620002a55760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520746f206d696e74206174206c6561737420312e00000000604482015260640162000167565b600e54620002b4848462000e43565b1115620003045760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420776f756c6420657863656564206d617820737570706c792e000000604482015260640162000167565b6200031c600a5461010090046001600160a01b031690565b6001600160a01b0316336001600160a01b031614620003e257600f54831115620003865760405162461bcd60e51b815260206004820152602560248201526000805160206200359683398151915260448201526430b731b29760d91b606482015260840162000167565b62000392838262000e43565b600f541015620003e25760405162461bcd60e51b815260206004820152602560248201526000805160206200359683398151915260448201526430b731b29760d91b606482015260840162000167565b60006010541180156200041e575062000408600a5461010090046001600160a01b031690565b6001600160a01b0316336001600160a01b031614155b1562000494578260105462000434919062000e5e565b341015620004945760405162461bcd60e51b815260206004820152602660248201527f596f7520646964206e6f742073656e6420656e6f75676820657468657220746f6044820152651036b4b73a1760d11b606482015260840162000167565b60015b838111620004ed57620004b6600c6200058160201b620010fc1760201c565b620004d833620004d2600c6200058a60201b620011051760201c565b6200058e565b80620004e48162000f0a565b91505062000497565b50506001600b555050565b60006001600160a01b038216620005655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000167565b506001600160a01b031660009081526003602052604090205490565b80546001019055565b5490565b62000185828260405180602001604052806000815250620005b060201b60201c565b620005bc838362000628565b620005cb60008484846200077e565b620006235760405162461bcd60e51b815260206004820152603260248201526000805160206200357683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000167565b505050565b6001600160a01b038216620006805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000167565b6000818152600260205260409020546001600160a01b031615620006e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000167565b620006f560008383620008e7565b6001600160a01b03821660009081526003602052604081208054600192906200072090849062000e43565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200079f846001600160a01b03166200094760201b620011091760201c565b15620008db57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620007d990339089908890889060040162000ded565b602060405180830381600087803b158015620007f457600080fd5b505af192505050801562000827575060408051601f3d908101601f19168201909252620008249181019062000d21565b60015b620008c0573d80801562000858576040519150601f19603f3d011682016040523d82523d6000602084013e6200085d565b606091505b508051620008b85760405162461bcd60e51b815260206004820152603260248201526000805160206200357683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000167565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620008df565b5060015b949350505050565b600a5460ff16156200092f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000167565b620006238383836200095660201b620011181760201c565b6001600160a01b03163b151590565b6200096e8383836200062360201b620007b21760201c565b6001600160a01b038316620009cc57620009c681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620009f2565b816001600160a01b0316836001600160a01b031614620009f257620009f2838262000a32565b6001600160a01b03821662000a0c57620006238162000adf565b826001600160a01b0316826001600160a01b031614620006235762000623828262000b99565b6000600162000a4c84620004f860201b62000d761760201c565b62000a58919062000e80565b60008381526007602052604090205490915080821462000aac576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000af39060019062000e80565b6000838152600960205260408120546008805493945090928490811062000b1e5762000b1e62000f54565b90600052602060002001549050806008838154811062000b425762000b4262000f54565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b7d5762000b7d62000f3e565b6001900381819060005260206000200160009055905550505050565b600062000bb183620004f860201b62000d761760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805462000bf89062000ecd565b90600052602060002090601f01602090048101928262000c1c576000855562000c67565b82601f1062000c3757805160ff191683800117855562000c67565b8280016001018555821562000c67579182015b8281111562000c6757825182559160200191906001019062000c4a565b5062000c7592915062000c79565b5090565b5b8082111562000c75576000815560010162000c7a565b600082601f83011262000ca257600080fd5b81516001600160401b038082111562000cbf5762000cbf62000f6a565b604051601f8301601f19908116603f0116810190828211818310171562000cea5762000cea62000f6a565b8160405283815286602085880101111562000d0457600080fd5b62000d1784602083016020890162000e9a565b9695505050505050565b60006020828403121562000d3457600080fd5b81516001600160e01b03198116811462000d4d57600080fd5b9392505050565b6000806000806080858703121562000d6b57600080fd5b84516001600160401b038082111562000d8357600080fd5b62000d918883890162000c90565b9550602087015191508082111562000da857600080fd5b62000db68883890162000c90565b9450604087015191508082111562000dcd57600080fd5b5062000ddc8782880162000c90565b606096909601519497939650505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e2c8160a085016020870162000e9a565b601f01601f19169190910160a00195945050505050565b6000821982111562000e595762000e5962000f28565b500190565b600081600019048311821515161562000e7b5762000e7b62000f28565b500290565b60008282101562000e955762000e9562000f28565b500390565b60005b8381101562000eb757818101518382015260200162000e9d565b8381111562000ec7576000848401525b50505050565b600181811c9082168062000ee257607f821691505b6020821081141562000f0457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000f215762000f2162000f28565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6125e68062000f906000396000f3fe6080604052600436106101b75760003560e01c80635c975abb116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd146104ae578063d004b036146104ce578063e985e9c5146104fb578063f2fde38b1461054457600080fd5b806395d89b4114610459578063a22cb4651461046e578063b88d4fde1461048e57600080fd5b8063715018a6116100c6578063715018a6146103ec57806383638710146104015780638456cb59146104215780638da5cb5b1461043657600080fd5b80635c975abb146103945780636352211e146103ac57806370a08231146103cc57600080fd5b806331b5b90711610159578063404c7cdd11610133578063404c7cdd1461031457806342842e0e1461033457806342966c68146103545780634f6ccce71461037457600080fd5b806331b5b907146102cc57806331c864e8146102ec5780633f4ba83a146102ff57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632f745c59146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004612123565b610564565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610575565b6040516101e891906122da565b34801561021f57600080fd5b5061023361022e3660046121a6565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046120f9565b6106a1565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004612005565b6107b7565b3480156102b857600080fd5b5061027e6102c73660046120f9565b6107e9565b3480156102d857600080fd5b5061026b6102e736600461215d565b61087f565b61026b6102fa3660046121a6565b6108c6565b34801561030b57600080fd5b5061026b610b68565b34801561032057600080fd5b5061026b61032f3660046121a6565b610ba2565b34801561034057600080fd5b5061026b61034f366004612005565b610bd7565b34801561036057600080fd5b5061026b61036f3660046121a6565b610bf2565b34801561038057600080fd5b5061027e61038f3660046121a6565b610c6c565b3480156103a057600080fd5b50600a5460ff166101dc565b3480156103b857600080fd5b506102336103c73660046121a6565b610cff565b3480156103d857600080fd5b5061027e6103e7366004611fb7565b610d76565b3480156103f857600080fd5b5061026b610dfd565b34801561040d57600080fd5b5061023361041c3660046121a6565b610e37565b34801561042d57600080fd5b5061026b610e42565b34801561044257600080fd5b50600a5461010090046001600160a01b0316610233565b34801561046557600080fd5b50610206610e7a565b34801561047a57600080fd5b5061026b6104893660046120bd565b610e89565b34801561049a57600080fd5b5061026b6104a9366004612041565b610e94565b3480156104ba57600080fd5b506102066104c93660046121a6565b610ecc565b3480156104da57600080fd5b506104ee6104e9366004611fb7565b610fba565b6040516101e89190612296565b34801561050757600080fd5b506101dc610516366004611fd2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055057600080fd5b5061026b61055f366004611fb7565b61105e565b600061056f826111d0565b92915050565b606060008054610584906124c2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906124c2565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ac82610cff565b9050806001600160a01b0316836001600160a01b0316141561071a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067c565b336001600160a01b038216148061073657506107368133610516565b6107a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067c565b6107b283836111f5565b505050565b6107c2335b82611263565b6107de5760405162461bcd60e51b815260040161067c906123e3565b6107b2838383611359565b60006107f483610d76565b82106108565760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b036101009091041633146108af5760405162461bcd60e51b815260040161067c90612369565b80516108c290600d906020840190611e8c565b5050565b6002600b5414156109195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161067c565b6002600b55600a5460ff16156109415760405162461bcd60e51b815260040161067c9061233f565b600061094c60085490565b9050600061095933610d76565b9050600083116109ab5760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520746f206d696e74206174206c6561737420312e00000000604482015260640161067c565b600e546109b88484612434565b1115610a065760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420776f756c6420657863656564206d617820737570706c792e000000604482015260640161067c565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b031614610a7c57600f54831115610a515760405162461bcd60e51b815260040161067c9061239e565b610a5b8382612434565b600f541015610a7c5760405162461bcd60e51b815260040161067c9061239e565b6000601054118015610ab05750600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b031614155b15610b215782601054610ac39190612460565b341015610b215760405162461bcd60e51b815260206004820152602660248201527f596f7520646964206e6f742073656e6420656e6f75676820657468657220746f6044820152651036b4b73a1760d11b606482015260840161067c565b60015b838111610b5d57610b39600c80546001019055565b610b4b33610b46600c5490565b611500565b80610b55816124fd565b915050610b24565b50506001600b555050565b600a546001600160a01b03610100909104163314610b985760405162461bcd60e51b815260040161067c90612369565b610ba061151a565b565b600a546001600160a01b03610100909104163314610bd25760405162461bcd60e51b815260040161067c90612369565b600e55565b6107b283838360405180602001604052806000815250610e94565b610bfb336107bc565b610c605760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161067c565b610c69816115ad565b50565b6000610c7760085490565b8210610cda5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067c565b60088281548110610ced57610ced61256e565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067c565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610e2d5760405162461bcd60e51b815260040161067c90612369565b610ba06000611654565b600061056f82610cff565b600a546001600160a01b03610100909104163314610e725760405162461bcd60e51b815260040161067c90612369565b610ba06116ae565b606060018054610584906124c2565b6108c2338383611706565b610e9e3383611263565b610eba5760405162461bcd60e51b815260040161067c906123e3565b610ec6848484846117d5565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f4d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161067c565b6000610f5883611808565b90506000610f64611906565b9050805160001415610f77575092915050565b815115610fa9578082604051602001610f9192919061221a565b60405160208183030381529060405292505050919050565b610fb284611915565b949350505050565b60606000610fc783610d76565b67ffffffffffffffff811115610fdf57610fdf612584565b604051908082528060200260200182016040528015611008578160200160208202803683370190505b50905060005b61101784610d76565b8110156110575761102884826107e9565b82828151811061103a5761103a61256e565b60209081029190910101528061104f816124fd565b91505061100e565b5092915050565b600a546001600160a01b0361010090910416331461108e5760405162461bcd60e51b815260040161067c90612369565b6001600160a01b0381166110f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067c565b610c6981611654565b80546001019055565b5490565b6001600160a01b03163b151590565b6001600160a01b0383166111735761116e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611196565b816001600160a01b0316836001600160a01b0316146111965761119683826119f0565b6001600160a01b0382166111ad576107b281611a8d565b826001600160a01b0316826001600160a01b0316146107b2576107b28282611b3c565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f82611b80565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122a82610cff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112dc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067c565b60006112e783610cff565b9050806001600160a01b0316846001600160a01b0316148061132e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610fb25750836001600160a01b031661134784610607565b6001600160a01b031614949350505050565b826001600160a01b031661136c82610cff565b6001600160a01b0316146113d05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067c565b6001600160a01b0382166114325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067c565b61143d838383611bd0565b6114486000826111f5565b6001600160a01b038316600090815260036020526040812080546001929061147190849061247f565b90915550506001600160a01b038216600090815260036020526040812080546001929061149f908490612434565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108c2828260405180602001604052806000815250611bfe565b600a5460ff166115635760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161067c565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006115b882610cff565b90506115c681600084611bd0565b6115d16000836111f5565b6001600160a01b03811660009081526003602052604081208054600192906115fa90849061247f565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156116d15760405162461bcd60e51b815260040161067c9061233f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115903390565b816001600160a01b0316836001600160a01b031614156117685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117e0848484611359565b6117ec84848484611c31565b610ec65760405162461bcd60e51b815260040161067c906122ed565b60608161182c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118565780611840816124fd565b915061184f9050600a8361244c565b9150611830565b60008167ffffffffffffffff81111561187157611871612584565b6040519080825280601f01601f19166020018201604052801561189b576020820181803683370190505b5090505b8415610fb2576118b060018361247f565b91506118bd600a86612518565b6118c8906030612434565b60f81b8183815181106118dd576118dd61256e565b60200101906001600160f81b031916908160001a9053506118ff600a8661244c565b945061189f565b6060600d8054610584906124c2565b6000818152600260205260409020546060906001600160a01b03166119945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067c565b600061199e611906565b905060008151116119be57604051806020016040528060008152506119e9565b806119c884611808565b6040516020016119d99291906121eb565b6040516020818303038152906040525b9392505050565b600060016119fd84610d76565b611a07919061247f565b600083815260076020526040902054909150808214611a5a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a9f9060019061247f565b60008381526009602052604081205460088054939450909284908110611ac757611ac761256e565b906000526020600020015490508060088381548110611ae857611ae861256e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b2057611b20612558565b6001900381819060005260206000200160009055905550505050565b6000611b4783610d76565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611bb157506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600a5460ff1615611bf35760405162461bcd60e51b815260040161067c9061233f565b6107b2838383611118565b611c088383611d3e565b611c156000848484611c31565b6107b25760405162461bcd60e51b815260040161067c906122ed565b60006001600160a01b0384163b15611d3357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c75903390899088908890600401612259565b602060405180830381600087803b158015611c8f57600080fd5b505af1925050508015611cbf575060408051601f3d908101601f19168201909252611cbc91810190612140565b60015b611d19573d808015611ced576040519150601f19603f3d011682016040523d82523d6000602084013e611cf2565b606091505b508051611d115760405162461bcd60e51b815260040161067c906122ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fb2565b506001949350505050565b6001600160a01b038216611d945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067c565b6000818152600260205260409020546001600160a01b031615611df95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067c565b611e0560008383611bd0565b6001600160a01b0382166000908152600360205260408120805460019290611e2e908490612434565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e98906124c2565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50611f0c929150611f10565b5090565b5b80821115611f0c5760008155600101611f11565b600067ffffffffffffffff80841115611f4057611f40612584565b604051601f8501601f19908116603f01168101908282118183101715611f6857611f68612584565b81604052809350858152868686011115611f8157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fb257600080fd5b919050565b600060208284031215611fc957600080fd5b6119e982611f9b565b60008060408385031215611fe557600080fd5b611fee83611f9b565b9150611ffc60208401611f9b565b90509250929050565b60008060006060848603121561201a57600080fd5b61202384611f9b565b925061203160208501611f9b565b9150604084013590509250925092565b6000806000806080858703121561205757600080fd5b61206085611f9b565b935061206e60208601611f9b565b925060408501359150606085013567ffffffffffffffff81111561209157600080fd5b8501601f810187136120a257600080fd5b6120b187823560208401611f25565b91505092959194509250565b600080604083850312156120d057600080fd5b6120d983611f9b565b9150602083013580151581146120ee57600080fd5b809150509250929050565b6000806040838503121561210c57600080fd5b61211583611f9b565b946020939093013593505050565b60006020828403121561213557600080fd5b81356119e98161259a565b60006020828403121561215257600080fd5b81516119e98161259a565b60006020828403121561216f57600080fd5b813567ffffffffffffffff81111561218657600080fd5b8201601f8101841361219757600080fd5b610fb284823560208401611f25565b6000602082840312156121b857600080fd5b5035919050565b600081518084526121d7816020860160208601612496565b601f01601f19169290920160200192915050565b600083516121fd818460208801612496565b835190830190612211818360208801612496565b01949350505050565b6000835161222c818460208801612496565b835190830190612240818360208801612496565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228c908301846121bf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122ce578351835292840192918401916001016122b2565b50909695505050505050565b6020815260006119e960208301846121bf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f4d696e7420776f756c6420657863656564206d6178206d696e7420616c6c6f7760408201526430b731b29760d91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124475761244761252c565b500190565b60008261245b5761245b612542565b500490565b600081600019048311821515161561247a5761247a61252c565b500290565b6000828210156124915761249161252c565b500390565b60005b838110156124b1578181015183820152602001612499565b83811115610ec65750506000910152565b600181811c908216806124d657607f821691505b602082108114156124f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125115761251161252c565b5060010190565b60008261252757612527612542565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c6957600080fdfea2646970667358221220cbfe44343e4e490f4723e89032994df842f2e6da8ecbf842aafd774c9b5516de64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654d696e7420776f756c6420657863656564206d6178206d696e7420616c6c6f77000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000a4d6574614669677572650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58416756527543547a69314335354478426f5446714566564a76316f3151424845656b35796b4431597755542f00000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80635c975abb116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd146104ae578063d004b036146104ce578063e985e9c5146104fb578063f2fde38b1461054457600080fd5b806395d89b4114610459578063a22cb4651461046e578063b88d4fde1461048e57600080fd5b8063715018a6116100c6578063715018a6146103ec57806383638710146104015780638456cb59146104215780638da5cb5b1461043657600080fd5b80635c975abb146103945780636352211e146103ac57806370a08231146103cc57600080fd5b806331b5b90711610159578063404c7cdd11610133578063404c7cdd1461031457806342842e0e1461033457806342966c68146103545780634f6ccce71461037457600080fd5b806331b5b907146102cc57806331c864e8146102ec5780633f4ba83a146102ff57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632f745c59146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004612123565b610564565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610575565b6040516101e891906122da565b34801561021f57600080fd5b5061023361022e3660046121a6565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046120f9565b6106a1565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004612005565b6107b7565b3480156102b857600080fd5b5061027e6102c73660046120f9565b6107e9565b3480156102d857600080fd5b5061026b6102e736600461215d565b61087f565b61026b6102fa3660046121a6565b6108c6565b34801561030b57600080fd5b5061026b610b68565b34801561032057600080fd5b5061026b61032f3660046121a6565b610ba2565b34801561034057600080fd5b5061026b61034f366004612005565b610bd7565b34801561036057600080fd5b5061026b61036f3660046121a6565b610bf2565b34801561038057600080fd5b5061027e61038f3660046121a6565b610c6c565b3480156103a057600080fd5b50600a5460ff166101dc565b3480156103b857600080fd5b506102336103c73660046121a6565b610cff565b3480156103d857600080fd5b5061027e6103e7366004611fb7565b610d76565b3480156103f857600080fd5b5061026b610dfd565b34801561040d57600080fd5b5061023361041c3660046121a6565b610e37565b34801561042d57600080fd5b5061026b610e42565b34801561044257600080fd5b50600a5461010090046001600160a01b0316610233565b34801561046557600080fd5b50610206610e7a565b34801561047a57600080fd5b5061026b6104893660046120bd565b610e89565b34801561049a57600080fd5b5061026b6104a9366004612041565b610e94565b3480156104ba57600080fd5b506102066104c93660046121a6565b610ecc565b3480156104da57600080fd5b506104ee6104e9366004611fb7565b610fba565b6040516101e89190612296565b34801561050757600080fd5b506101dc610516366004611fd2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055057600080fd5b5061026b61055f366004611fb7565b61105e565b600061056f826111d0565b92915050565b606060008054610584906124c2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906124c2565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ac82610cff565b9050806001600160a01b0316836001600160a01b0316141561071a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067c565b336001600160a01b038216148061073657506107368133610516565b6107a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067c565b6107b283836111f5565b505050565b6107c2335b82611263565b6107de5760405162461bcd60e51b815260040161067c906123e3565b6107b2838383611359565b60006107f483610d76565b82106108565760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b036101009091041633146108af5760405162461bcd60e51b815260040161067c90612369565b80516108c290600d906020840190611e8c565b5050565b6002600b5414156109195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161067c565b6002600b55600a5460ff16156109415760405162461bcd60e51b815260040161067c9061233f565b600061094c60085490565b9050600061095933610d76565b9050600083116109ab5760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520746f206d696e74206174206c6561737420312e00000000604482015260640161067c565b600e546109b88484612434565b1115610a065760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420776f756c6420657863656564206d617820737570706c792e000000604482015260640161067c565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b031614610a7c57600f54831115610a515760405162461bcd60e51b815260040161067c9061239e565b610a5b8382612434565b600f541015610a7c5760405162461bcd60e51b815260040161067c9061239e565b6000601054118015610ab05750600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b031614155b15610b215782601054610ac39190612460565b341015610b215760405162461bcd60e51b815260206004820152602660248201527f596f7520646964206e6f742073656e6420656e6f75676820657468657220746f6044820152651036b4b73a1760d11b606482015260840161067c565b60015b838111610b5d57610b39600c80546001019055565b610b4b33610b46600c5490565b611500565b80610b55816124fd565b915050610b24565b50506001600b555050565b600a546001600160a01b03610100909104163314610b985760405162461bcd60e51b815260040161067c90612369565b610ba061151a565b565b600a546001600160a01b03610100909104163314610bd25760405162461bcd60e51b815260040161067c90612369565b600e55565b6107b283838360405180602001604052806000815250610e94565b610bfb336107bc565b610c605760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161067c565b610c69816115ad565b50565b6000610c7760085490565b8210610cda5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067c565b60088281548110610ced57610ced61256e565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067c565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610e2d5760405162461bcd60e51b815260040161067c90612369565b610ba06000611654565b600061056f82610cff565b600a546001600160a01b03610100909104163314610e725760405162461bcd60e51b815260040161067c90612369565b610ba06116ae565b606060018054610584906124c2565b6108c2338383611706565b610e9e3383611263565b610eba5760405162461bcd60e51b815260040161067c906123e3565b610ec6848484846117d5565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f4d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161067c565b6000610f5883611808565b90506000610f64611906565b9050805160001415610f77575092915050565b815115610fa9578082604051602001610f9192919061221a565b60405160208183030381529060405292505050919050565b610fb284611915565b949350505050565b60606000610fc783610d76565b67ffffffffffffffff811115610fdf57610fdf612584565b604051908082528060200260200182016040528015611008578160200160208202803683370190505b50905060005b61101784610d76565b8110156110575761102884826107e9565b82828151811061103a5761103a61256e565b60209081029190910101528061104f816124fd565b91505061100e565b5092915050565b600a546001600160a01b0361010090910416331461108e5760405162461bcd60e51b815260040161067c90612369565b6001600160a01b0381166110f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067c565b610c6981611654565b80546001019055565b5490565b6001600160a01b03163b151590565b6001600160a01b0383166111735761116e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611196565b816001600160a01b0316836001600160a01b0316146111965761119683826119f0565b6001600160a01b0382166111ad576107b281611a8d565b826001600160a01b0316826001600160a01b0316146107b2576107b28282611b3c565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f82611b80565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122a82610cff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112dc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067c565b60006112e783610cff565b9050806001600160a01b0316846001600160a01b0316148061132e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610fb25750836001600160a01b031661134784610607565b6001600160a01b031614949350505050565b826001600160a01b031661136c82610cff565b6001600160a01b0316146113d05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067c565b6001600160a01b0382166114325760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067c565b61143d838383611bd0565b6114486000826111f5565b6001600160a01b038316600090815260036020526040812080546001929061147190849061247f565b90915550506001600160a01b038216600090815260036020526040812080546001929061149f908490612434565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108c2828260405180602001604052806000815250611bfe565b600a5460ff166115635760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161067c565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006115b882610cff565b90506115c681600084611bd0565b6115d16000836111f5565b6001600160a01b03811660009081526003602052604081208054600192906115fa90849061247f565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156116d15760405162461bcd60e51b815260040161067c9061233f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115903390565b816001600160a01b0316836001600160a01b031614156117685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117e0848484611359565b6117ec84848484611c31565b610ec65760405162461bcd60e51b815260040161067c906122ed565b60608161182c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118565780611840816124fd565b915061184f9050600a8361244c565b9150611830565b60008167ffffffffffffffff81111561187157611871612584565b6040519080825280601f01601f19166020018201604052801561189b576020820181803683370190505b5090505b8415610fb2576118b060018361247f565b91506118bd600a86612518565b6118c8906030612434565b60f81b8183815181106118dd576118dd61256e565b60200101906001600160f81b031916908160001a9053506118ff600a8661244c565b945061189f565b6060600d8054610584906124c2565b6000818152600260205260409020546060906001600160a01b03166119945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067c565b600061199e611906565b905060008151116119be57604051806020016040528060008152506119e9565b806119c884611808565b6040516020016119d99291906121eb565b6040516020818303038152906040525b9392505050565b600060016119fd84610d76565b611a07919061247f565b600083815260076020526040902054909150808214611a5a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a9f9060019061247f565b60008381526009602052604081205460088054939450909284908110611ac757611ac761256e565b906000526020600020015490508060088381548110611ae857611ae861256e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b2057611b20612558565b6001900381819060005260206000200160009055905550505050565b6000611b4783610d76565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611bb157506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600a5460ff1615611bf35760405162461bcd60e51b815260040161067c9061233f565b6107b2838383611118565b611c088383611d3e565b611c156000848484611c31565b6107b25760405162461bcd60e51b815260040161067c906122ed565b60006001600160a01b0384163b15611d3357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c75903390899088908890600401612259565b602060405180830381600087803b158015611c8f57600080fd5b505af1925050508015611cbf575060408051601f3d908101601f19168201909252611cbc91810190612140565b60015b611d19573d808015611ced576040519150601f19603f3d011682016040523d82523d6000602084013e611cf2565b606091505b508051611d115760405162461bcd60e51b815260040161067c906122ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fb2565b506001949350505050565b6001600160a01b038216611d945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067c565b6000818152600260205260409020546001600160a01b031615611df95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067c565b611e0560008383611bd0565b6001600160a01b0382166000908152600360205260408120805460019290611e2e908490612434565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e98906124c2565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50611f0c929150611f10565b5090565b5b80821115611f0c5760008155600101611f11565b600067ffffffffffffffff80841115611f4057611f40612584565b604051601f8501601f19908116603f01168101908282118183101715611f6857611f68612584565b81604052809350858152868686011115611f8157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fb257600080fd5b919050565b600060208284031215611fc957600080fd5b6119e982611f9b565b60008060408385031215611fe557600080fd5b611fee83611f9b565b9150611ffc60208401611f9b565b90509250929050565b60008060006060848603121561201a57600080fd5b61202384611f9b565b925061203160208501611f9b565b9150604084013590509250925092565b6000806000806080858703121561205757600080fd5b61206085611f9b565b935061206e60208601611f9b565b925060408501359150606085013567ffffffffffffffff81111561209157600080fd5b8501601f810187136120a257600080fd5b6120b187823560208401611f25565b91505092959194509250565b600080604083850312156120d057600080fd5b6120d983611f9b565b9150602083013580151581146120ee57600080fd5b809150509250929050565b6000806040838503121561210c57600080fd5b61211583611f9b565b946020939093013593505050565b60006020828403121561213557600080fd5b81356119e98161259a565b60006020828403121561215257600080fd5b81516119e98161259a565b60006020828403121561216f57600080fd5b813567ffffffffffffffff81111561218657600080fd5b8201601f8101841361219757600080fd5b610fb284823560208401611f25565b6000602082840312156121b857600080fd5b5035919050565b600081518084526121d7816020860160208601612496565b601f01601f19169290920160200192915050565b600083516121fd818460208801612496565b835190830190612211818360208801612496565b01949350505050565b6000835161222c818460208801612496565b835190830190612240818360208801612496565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228c908301846121bf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122ce578351835292840192918401916001016122b2565b50909695505050505050565b6020815260006119e960208301846121bf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f4d696e7420776f756c6420657863656564206d6178206d696e7420616c6c6f7760408201526430b731b29760d91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124475761244761252c565b500190565b60008261245b5761245b612542565b500490565b600081600019048311821515161561247a5761247a61252c565b500290565b6000828210156124915761249161252c565b500390565b60005b838110156124b1578181015183820152602001612499565b83811115610ec65750506000910152565b600181811c908216806124d657607f821691505b602082108114156124f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125115761251161252c565b5060010190565b60008261252757612527612542565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c6957600080fdfea2646970667358221220cbfe44343e4e490f4723e89032994df842f2e6da8ecbf842aafd774c9b5516de64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000a4d6574614669677572650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58416756527543547a69314335354478426f5446714566564a76316f3151424845656b35796b4431597755542f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MetaFigure
Arg [1] : _symbol (string): MF
Arg [2] : _initBaseURI (string): ipfs://QmXAgVRuCTzi1C55DxBoTFqEfVJv1o1QBHEek5ykD1YwUT/
Arg [3] : _initMint (uint256): 50

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4d65746146696775726500000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4d46000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d58416756527543547a69314335354478426f5446714566
Arg [10] : 564a76316f3151424845656b35796b4431597755542f00000000000000000000


Deployed Bytecode Sourcemap

54635:3445:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57865:212;;;;;;;;;;-1:-1:-1;57865:212:0;;;;;:::i;:::-;;:::i;:::-;;;6925:14:1;;6918:22;6900:41;;6888:2;6873:18;57865:212:0;;;;;;;;34239:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35799:221::-;;;;;;;;;;-1:-1:-1;35799:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5586:32:1;;;5568:51;;5556:2;5541:18;35799:221:0;5422:203:1;35322:411:0;;;;;;;;;;-1:-1:-1;35322:411:0;;;;;:::i;:::-;;:::i;:::-;;48848:113;;;;;;;;;;-1:-1:-1;48936:10:0;:17;48848:113;;;17942:25:1;;;17930:2;17915:18;48848:113:0;17796:177:1;36549:339:0;;;;;;;;;;-1:-1:-1;36549:339:0;;;;;:::i;:::-;;:::i;48516:256::-;;;;;;;;;;-1:-1:-1;48516:256:0;;;;;:::i;:::-;;:::i;55287:105::-;;;;;;;;;;-1:-1:-1;55287:105:0;;;;;:::i;:::-;;:::i;55542:897::-;;;;;;:::i;:::-;;:::i;55469:65::-;;;;;;;;;;;;;:::i;56447:103::-;;;;;;;;;;-1:-1:-1;56447:103:0;;;;;:::i;:::-;;:::i;36959:185::-;;;;;;;;;;-1:-1:-1;36959:185:0;;;;;:::i;:::-;;:::i;46945:245::-;;;;;;;;;;-1:-1:-1;46945:245:0;;;;;:::i;:::-;;:::i;49038:233::-;;;;;;;;;;-1:-1:-1;49038:233:0;;;;;:::i;:::-;;:::i;12428:86::-;;;;;;;;;;-1:-1:-1;12499:7:0;;;;12428:86;;33933:239;;;;;;;;;;-1:-1:-1;33933:239:0;;;;;:::i;:::-;;:::i;33663:208::-;;;;;;;;;;-1:-1:-1;33663:208:0;;;;;:::i;:::-;;:::i;10479:103::-;;;;;;;;;;;;;:::i;57135:119::-;;;;;;;;;;-1:-1:-1;57135:119:0;;;;;:::i;:::-;;:::i;55400:61::-;;;;;;;;;;;;;:::i;9828:87::-;;;;;;;;;;-1:-1:-1;9901:6:0;;;;;-1:-1:-1;;;;;9901:6:0;9828:87;;34408:104;;;;;;;;;;;;;:::i;36092:155::-;;;;;;;;;;-1:-1:-1;36092:155:0;;;;;:::i;:::-;;:::i;37215:328::-;;;;;;;;;;-1:-1:-1;37215:328:0;;;;;:::i;:::-;;:::i;56562:567::-;;;;;;;;;;-1:-1:-1;56562:567:0;;;;;:::i;:::-;;:::i;57260:358::-;;;;;;;;;;-1:-1:-1;57260:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36318:164::-;;;;;;;;;;-1:-1:-1;36318:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36439:25:0;;;36415:4;36439:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36318:164;10737:201;;;;;;;;;;-1:-1:-1;10737:201:0;;;;;:::i;:::-;;:::i;57865:212::-;58004:4;58033:36;58057:11;58033:23;:36::i;:::-;58026:43;57865:212;-1:-1:-1;;57865:212:0:o;34239:100::-;34293:13;34326:5;34319:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34239:100;:::o;35799:221::-;35875:7;39142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39142:16:0;35895:73;;;;-1:-1:-1;;;35895:73:0;;14035:2:1;35895:73:0;;;14017:21:1;14074:2;14054:18;;;14047:30;14113:34;14093:18;;;14086:62;-1:-1:-1;;;14164:18:1;;;14157:42;14216:19;;35895:73:0;;;;;;;;;-1:-1:-1;35988:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35988:24:0;;35799:221::o;35322:411::-;35403:13;35419:23;35434:7;35419:14;:23::i;:::-;35403:39;;35467:5;-1:-1:-1;;;;;35461:11:0;:2;-1:-1:-1;;;;;35461:11:0;;;35453:57;;;;-1:-1:-1;;;35453:57:0;;15225:2:1;35453:57:0;;;15207:21:1;15264:2;15244:18;;;15237:30;15303:34;15283:18;;;15276:62;-1:-1:-1;;;15354:18:1;;;15347:31;15395:19;;35453:57:0;15023:397:1;35453:57:0;8632:10;-1:-1:-1;;;;;35545:21:0;;;;:62;;-1:-1:-1;35570:37:0;35587:5;8632:10;36318:164;:::i;35570:37::-;35523:168;;;;-1:-1:-1;;;35523:168:0;;12010:2:1;35523:168:0;;;11992:21:1;12049:2;12029:18;;;12022:30;12088:34;12068:18;;;12061:62;12159:26;12139:18;;;12132:54;12203:19;;35523:168:0;11808:420:1;35523:168:0;35704:21;35713:2;35717:7;35704:8;:21::i;:::-;35392:341;35322:411;;:::o;36549:339::-;36744:41;8632:10;36763:12;36777:7;36744:18;:41::i;:::-;36736:103;;;;-1:-1:-1;;;36736:103:0;;;;;;;:::i;:::-;36852:28;36862:4;36868:2;36872:7;36852:9;:28::i;48516:256::-;48613:7;48649:23;48666:5;48649:16;:23::i;:::-;48641:5;:31;48633:87;;;;-1:-1:-1;;;48633:87:0;;8085:2:1;48633:87:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:41;8265:19;;48633:87:0;7883:407:1;48633:87:0;-1:-1:-1;;;;;;48738:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48516:256::o;55287:105::-;9901:6;;-1:-1:-1;;;;;9901:6:0;;;;;8632:10;10048:23;10040:68;;;;-1:-1:-1;;;10040:68:0;;;;;;;:::i;:::-;55363:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55287:105:::0;:::o;55542:897::-;3337:1;3935:7;;:19;;3927:63;;;;-1:-1:-1;;;3927:63:0;;16864:2:1;3927:63:0;;;16846:21:1;16903:2;16883:18;;;16876:30;16942:33;16922:18;;;16915:61;16993:18;;3927:63:0;16662:355:1;3927:63:0;3337:1;4068:7;:18;12499:7;;;;12753:9:::1;12745:38;;;;-1:-1:-1::0;;;12745:38:0::1;;;;;;;:::i;:::-;55629:14:::2;55646:13;48936:10:::0;:17;;48848:113;55646:13:::2;55629:30;;55670:21;55694:28;55711:10;55694:16;:28::i;:::-;55670:52;;55750:1;55741:6;:10;55733:50;;;::::0;-1:-1:-1;;;55733:50:0;;17641:2:1;55733:50:0::2;::::0;::::2;17623:21:1::0;17680:2;17660:18;;;17653:30;17719;17699:18;;;17692:58;17767:18;;55733:50:0::2;17439:352:1::0;55733:50:0::2;55821:9;::::0;55802:15:::2;55811:6:::0;55802;:15:::2;:::i;:::-;:28;;55794:69;;;::::0;-1:-1:-1;;;55794:69:0;;7378:2:1;55794:69:0::2;::::0;::::2;7360:21:1::0;7417:2;7397:18;;;7390:30;7456:31;7436:18;;;7429:59;7505:18;;55794:69:0::2;7176:353:1::0;55794:69:0::2;9901:6:::0;;;;;-1:-1:-1;;;;;9901:6:0;-1:-1:-1;;;;;55877:21:0::2;:10;-1:-1:-1::0;;;;;55877:21:0::2;;55874:225;;55942:7;;55932:6;:17;;55924:66;;;;-1:-1:-1::0;;;55924:66:0::2;;;;;;;:::i;:::-;56024:22;56040:6:::0;56024:13;:22:::2;:::i;:::-;56013:7;;:33;;56005:82;;;;-1:-1:-1::0;;;56005:82:0::2;;;;;;;:::i;:::-;56123:1;56112:8;;:12;:37;;;;-1:-1:-1::0;9901:6:0;;;;;-1:-1:-1;;;;;9901:6:0;-1:-1:-1;;;;;56128:21:0::2;:10;-1:-1:-1::0;;;;;56128:21:0::2;;;56112:37;56109:158;;;56207:6;56196:8;;:17;;;;:::i;:::-;56183:9;:30;;56175:80;;;::::0;-1:-1:-1;;;56175:80:0;;10845:2:1;56175:80:0::2;::::0;::::2;10827:21:1::0;10884:2;10864:18;;;10857:30;10923:34;10903:18;;;10896:62;-1:-1:-1;;;10974:18:1;;;10967:36;11020:19;;56175:80:0::2;10643:402:1::0;56175:80:0::2;56294:1;56277:155;56302:6;56297:1;:11;56277:155;;56330:27;:15;5367:19:::0;;5385:1;5367:19;;;5278:127;56330:27:::2;56372:48;56382:10;56394:25;:15;5248:14:::0;;5156:114;56394:25:::2;56372:9;:48::i;:::-;56310:3:::0;::::2;::::0;::::2;:::i;:::-;;;;56277:155;;;-1:-1:-1::0;;3293:1:0;4247:7;:22;-1:-1:-1;;55542:897:0:o;55469:65::-;9901:6;;-1:-1:-1;;;;;9901:6:0;;;;;8632:10;10048:23;10040:68;;;;-1:-1:-1;;;10040:68:0;;;;;;;:::i;:::-;55516:10:::1;:8;:10::i;:::-;55469:65::o:0;56447:103::-;9901:6;;-1:-1:-1;;;;;9901:6:0;;;;;8632:10;10048:23;10040:68;;;;-1:-1:-1;;;10040:68:0;;;;;;;:::i;:::-;56520:9:::1;:22:::0;56447:103::o;36959:185::-;37097:39;37114:4;37120:2;37124:7;37097:39;;;;;;;;;;;;:16;:39::i;46945:245::-;47063:41;8632:10;47082:12;8552:98;47063:41;47055:102;;;;-1:-1:-1;;;47055:102:0;;17224:2:1;47055:102:0;;;17206:21:1;17263:2;17243:18;;;17236:30;17302:34;17282:18;;;17275:62;-1:-1:-1;;;17353:18:1;;;17346:46;17409:19;;47055:102:0;17022:412:1;47055:102:0;47168:14;47174:7;47168:5;:14::i;:::-;46945:245;:::o;49038:233::-;49113:7;49149:30;48936:10;:17;;48848:113;49149:30;49141:5;:38;49133:95;;;;-1:-1:-1;;;49133:95:0;;16451:2:1;49133:95:0;;;16433:21:1;16490:2;16470:18;;;16463:30;16529:34;16509:18;;;16502:62;-1:-1:-1;;;16580:18:1;;;16573:42;16632:19;;49133:95:0;16249:408:1;49133:95:0;49246:10;49257:5;49246:17;;;;;;;;:::i;:::-;;;;;;;;;49239:24;;49038:233;;;:::o;33933:239::-;34005:7;34041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34041:16:0;34076:19;34068:73;;;;-1:-1:-1;;;34068:73:0;;12846:2:1;34068:73:0;;;12828:21:1;12885:2;12865:18;;;12858:30;12924:34;12904:18;;;12897:62;-1:-1:-1;;;12975:18:1;;;12968:39;13024:19;;34068:73:0;12644:405:1;33663:208:0;33735:7;-1:-1:-1;;;;;33763:19:0;;33755:74;;;;-1:-1:-1;;;33755:74:0;;12435:2:1;33755:74:0;;;12417:21:1;12474:2;12454:18;;;12447:30;12513:34;12493:18;;;12486:62;-1:-1:-1;;;12564:18:1;;;12557:40;12614:19;;33755:74:0;12233:406:1;33755:74:0;-1:-1:-1;;;;;;33847:16:0;;;;;:9;:16;;;;;;;33663:208::o;10479:103::-;9901:6;;-1:-1:-1;;;;;9901:6:0;;;;;8632:10;10048:23;10040:68;;;;-1:-1:-1;;;10040:68:0;;;;;;;:::i;:::-;10544:30:::1;10571:1;10544:18;:30::i;57135:119::-:0;57195:13;57229:16;57237:7;57229;:16::i;55400:61::-;9901:6;;-1:-1:-1;;;;;9901:6:0;;;;;8632:10;10048:23;10040:68;;;;-1:-1:-1;;;10040:68:0;;;;;;;:::i;:::-;55445:8:::1;:6;:8::i;34408:104::-:0;34464:13;34497:7;34490:14;;;;;:::i;36092:155::-;36187:52;8632:10;36220:8;36230;36187:18;:52::i;37215:328::-;37390:41;8632:10;37423:7;37390:18;:41::i;:::-;37382:103;;;;-1:-1:-1;;;37382:103:0;;;;;;;:::i;:::-;37496:39;37510:4;37516:2;37520:7;37529:5;37496:13;:39::i;:::-;37215:328;;;;:::o;56562:567::-;39118:4;39142:16;;;:7;:16;;;;;;56627:13;;-1:-1:-1;;;;;39142:16:0;56659:78;;;;-1:-1:-1;;;56659:78:0;;13617:2:1;56659:78:0;;;13599:21:1;13656:2;13636:18;;;13629:30;13695:34;13675:18;;;13668:62;-1:-1:-1;;;13746:18:1;;;13739:47;13803:19;;56659:78:0;13415:413:1;56659:78:0;56744:22;56769:25;56786:7;56769:16;:25::i;:::-;56744:50;;56805:28;56836:10;:8;:10::i;:::-;56805:41;;56869:14;56863:28;56895:1;56863:33;56859:81;;;-1:-1:-1;56920:8:0;56562:567;-1:-1:-1;;56562:567:0:o;56859:81::-;56958:22;;:26;56954:125;;57032:14;57048:8;57015:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57001:66;;;;56562:567;;;:::o;56954:125::-;57098:23;57113:7;57098:14;:23::i;:::-;57091:30;56562:567;-1:-1:-1;;;;56562:567:0:o;57260:358::-;57320:13;57346:28;57388:24;57405:6;57388:16;:24::i;:::-;57377:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57377:36:0;;57346:67;;57424:6;57443:134;57454:24;57471:6;57454:16;:24::i;:::-;57452:1;:26;57443:134;;;57518:47;57555:6;57563:1;57518:36;:47::i;:::-;57498:14;57513:1;57498:17;;;;;;;;:::i;:::-;;;;;;;;;;:67;57479:3;;;;:::i;:::-;;;;57443:134;;;-1:-1:-1;57595:14:0;57260:358;-1:-1:-1;;57260:358:0:o;10737:201::-;9901:6;;-1:-1:-1;;;;;9901:6:0;;;;;8632:10;10048:23;10040:68;;;;-1:-1:-1;;;10040:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10826:22:0;::::1;10818:73;;;::::0;-1:-1:-1;;;10818:73:0;;8916:2:1;10818:73:0::1;::::0;::::1;8898:21:1::0;8955:2;8935:18;;;8928:30;8994:34;8974:18;;;8967:62;-1:-1:-1;;;9045:18:1;;;9038:36;9091:19;;10818:73:0::1;8714:402:1::0;10818:73:0::1;10902:28;10921:8;10902:18;:28::i;5278:127::-:0;5367:19;;5385:1;5367:19;;;5278:127::o;5156:114::-;5248:14;;5156:114::o;14847:326::-;-1:-1:-1;;;;;15142:19:0;;:23;;;14847:326::o;49884:589::-;-1:-1:-1;;;;;50090:18:0;;50086:187;;50125:40;50157:7;51300:10;:17;;51273:24;;;;:15;:24;;;;;:44;;;51328:24;;;;;;;;;;;;51196:164;50125:40;50086:187;;;50195:2;-1:-1:-1;;;;;50187:10:0;:4;-1:-1:-1;;;;;50187:10:0;;50183:90;;50214:47;50247:4;50253:7;50214:32;:47::i;:::-;-1:-1:-1;;;;;50287:16:0;;50283:183;;50320:45;50357:7;50320:36;:45::i;50283:183::-;50393:4;-1:-1:-1;;;;;50387:10:0;:2;-1:-1:-1;;;;;50387:10:0;;50383:83;;50414:40;50442:2;50446:7;50414:27;:40::i;48208:224::-;48310:4;-1:-1:-1;;;;;;48334:50:0;;-1:-1:-1;;;48334:50:0;;:90;;;48388:36;48412:11;48388:23;:36::i;43199:174::-;43274:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43274:29:0;-1:-1:-1;;;;;43274:29:0;;;;;;;;:24;;43328:23;43274:24;43328:14;:23::i;:::-;-1:-1:-1;;;;;43319:46:0;;;;;;;;;;;43199:174;;:::o;39347:348::-;39440:4;39142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39142:16:0;39457:73;;;;-1:-1:-1;;;39457:73:0;;11252:2:1;39457:73:0;;;11234:21:1;11291:2;11271:18;;;11264:30;11330:34;11310:18;;;11303:62;-1:-1:-1;;;11381:18:1;;;11374:42;11433:19;;39457:73:0;11050:408:1;39457:73:0;39541:13;39557:23;39572:7;39557:14;:23::i;:::-;39541:39;;39610:5;-1:-1:-1;;;;;39599:16:0;:7;-1:-1:-1;;;;;39599:16:0;;:52;;;-1:-1:-1;;;;;;36439:25:0;;;36415:4;36439:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39619:32;39599:87;;;;39679:7;-1:-1:-1;;;;;39655:31:0;:20;39667:7;39655:11;:20::i;:::-;-1:-1:-1;;;;;39655:31:0;;39591:96;39347:348;-1:-1:-1;;;;39347:348:0:o;42456:625::-;42615:4;-1:-1:-1;;;;;42588:31:0;:23;42603:7;42588:14;:23::i;:::-;-1:-1:-1;;;;;42588:31:0;;42580:81;;;;-1:-1:-1;;;42580:81:0;;9323:2:1;42580:81:0;;;9305:21:1;9362:2;9342:18;;;9335:30;9401:34;9381:18;;;9374:62;-1:-1:-1;;;9452:18:1;;;9445:35;9497:19;;42580:81:0;9121:401:1;42580:81:0;-1:-1:-1;;;;;42680:16:0;;42672:65;;;;-1:-1:-1;;;42672:65:0;;10086:2:1;42672:65:0;;;10068:21:1;10125:2;10105:18;;;10098:30;10164:34;10144:18;;;10137:62;-1:-1:-1;;;10215:18:1;;;10208:34;10259:19;;42672:65:0;9884:400:1;42672:65:0;42750:39;42771:4;42777:2;42781:7;42750:20;:39::i;:::-;42854:29;42871:1;42875:7;42854:8;:29::i;:::-;-1:-1:-1;;;;;42896:15:0;;;;;;:9;:15;;;;;:20;;42915:1;;42896:15;:20;;42915:1;;42896:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42927:13:0;;;;;;:9;:13;;;;;:18;;42944:1;;42927:13;:18;;42944:1;;42927:18;:::i;:::-;;;;-1:-1:-1;;42956:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42956:21:0;-1:-1:-1;;;;;42956:21:0;;;;;;;;;42995:27;;42956:16;;42995:27;;;;;;;35392:341;35322:411;;:::o;40037:110::-;40113:26;40123:2;40127:7;40113:26;;;;;;;;;;;;:9;:26::i;13487:120::-;12499:7;;;;13023:41;;;;-1:-1:-1;;;13023:41:0;;7736:2:1;13023:41:0;;;7718:21:1;7775:2;7755:18;;;7748:30;-1:-1:-1;;;7794:18:1;;;7787:50;7854:18;;13023:41:0;7534:344:1;13023:41:0;13546:7:::1;:15:::0;;-1:-1:-1;;13546:15:0::1;::::0;;13577:22:::1;8632:10:::0;13586:12:::1;13577:22;::::0;-1:-1:-1;;;;;5586:32:1;;;5568:51;;5556:2;5541:18;13577:22:0::1;;;;;;;13487:120::o:0;41699:420::-;41759:13;41775:23;41790:7;41775:14;:23::i;:::-;41759:39;;41811:48;41832:5;41847:1;41851:7;41811:20;:48::i;:::-;41900:29;41917:1;41921:7;41900:8;:29::i;:::-;-1:-1:-1;;;;;41942:16:0;;;;;;:9;:16;;;;;:21;;41962:1;;41942:16;:21;;41962:1;;41942:21;:::i;:::-;;;;-1:-1:-1;;41981:16:0;;;;:7;:16;;;;;;41974:23;;-1:-1:-1;;;;;;41974:23:0;;;42015:36;41989:7;;41981:16;-1:-1:-1;;;;;42015:36:0;;;;;41981:16;;42015:36;55363:21:::1;55287:105:::0;:::o;11098:191::-;11191:6;;;-1:-1:-1;;;;;11208:17:0;;;11191:6;11208:17;;;-1:-1:-1;;;;;;11208:17:0;;;;;;11241:40;;11191:6;;;;;;;;11241:40;;11172:16;;11241:40;11161:128;11098:191;:::o;13228:118::-;12499:7;;;;12753:9;12745:38;;;;-1:-1:-1;;;12745:38:0;;;;;;;:::i;:::-;13288:7:::1;:14:::0;;-1:-1:-1;;13288:14:0::1;13298:4;13288:14;::::0;;13318:20:::1;13325:12;8632:10:::0;;8552:98;43515:315;43670:8;-1:-1:-1;;;;;43661:17:0;:5;-1:-1:-1;;;;;43661:17:0;;;43653:55;;;;-1:-1:-1;;;43653:55:0;;10491:2:1;43653:55:0;;;10473:21:1;10530:2;10510:18;;;10503:30;10569:27;10549:18;;;10542:55;10614:18;;43653:55:0;10289:349:1;43653:55:0;-1:-1:-1;;;;;43719:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43719:46:0;;;;;;;;;;43781:41;;6900::1;;;43781::0;;6873:18:1;43781:41:0;;;;;;;43515:315;;;:::o;38425:::-;38582:28;38592:4;38598:2;38602:7;38582:9;:28::i;:::-;38629:48;38652:4;38658:2;38662:7;38671:5;38629:22;:48::i;:::-;38621:111;;;;-1:-1:-1;;;38621:111:0;;;;;;;:::i;6114:723::-;6170:13;6391:10;6387:53;;-1:-1:-1;;6418:10:0;;;;;;;;;;;;-1:-1:-1;;;6418:10:0;;;;;6114:723::o;6387:53::-;6465:5;6450:12;6506:78;6513:9;;6506:78;;6539:8;;;;:::i;:::-;;-1:-1:-1;6562:10:0;;-1:-1:-1;6570:2:0;6562:10;;:::i;:::-;;;6506:78;;;6594:19;6626:6;6616:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6616:17:0;;6594:39;;6644:154;6651:10;;6644:154;;6678:11;6688:1;6678:11;;:::i;:::-;;-1:-1:-1;6747:10:0;6755:2;6747:5;:10;:::i;:::-;6734:24;;:2;:24;:::i;:::-;6721:39;;6704:6;6711;6704:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6704:56:0;;;;;;;;-1:-1:-1;6775:11:0;6784:2;6775:11;;:::i;:::-;;;6644:154;;55178:100;55230:13;55263:7;55256:14;;;;;:::i;34583:334::-;39118:4;39142:16;;;:7;:16;;;;;;34656:13;;-1:-1:-1;;;;;39142:16:0;34682:76;;;;-1:-1:-1;;;34682:76:0;;14809:2:1;34682:76:0;;;14791:21:1;14848:2;14828:18;;;14821:30;14887:34;14867:18;;;14860:62;-1:-1:-1;;;14938:18:1;;;14931:45;14993:19;;34682:76:0;14607:411:1;34682:76:0;34771:21;34795:10;:8;:10::i;:::-;34771:34;;34847:1;34829:7;34823:21;:25;:86;;;;;;;;;;;;;;;;;34875:7;34884:18;:7;:16;:18::i;:::-;34858:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34823:86;34816:93;34583:334;-1:-1:-1;;;34583:334:0:o;51987:988::-;52253:22;52303:1;52278:22;52295:4;52278:16;:22::i;:::-;:26;;;;:::i;:::-;52315:18;52336:26;;;:17;:26;;;;;;52253:51;;-1:-1:-1;52469:28:0;;;52465:328;;-1:-1:-1;;;;;52536:18:0;;52514:19;52536:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52587:30;;;;;;:44;;;52704:30;;:17;:30;;;;;:43;;;52465:328;-1:-1:-1;52889:26:0;;;;:17;:26;;;;;;;;52882:33;;;-1:-1:-1;;;;;52933:18:0;;;;;:12;:18;;;;;:34;;;;;;;52926:41;51987:988::o;53270:1079::-;53548:10;:17;53523:22;;53548:21;;53568:1;;53548:21;:::i;:::-;53580:18;53601:24;;;:15;:24;;;;;;53974:10;:26;;53523:46;;-1:-1:-1;53601:24:0;;53523:46;;53974:26;;;;;;:::i;:::-;;;;;;;;;53952:48;;54038:11;54013:10;54024;54013:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54118:28;;;:15;:28;;;;;;;:41;;;54290:24;;;;;54283:31;54325:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53341:1008;;;53270:1079;:::o;50774:221::-;50859:14;50876:20;50893:2;50876:16;:20::i;:::-;-1:-1:-1;;;;;50907:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50952:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50774:221:0:o;33294:305::-;33396:4;-1:-1:-1;;;;;;33433:40:0;;-1:-1:-1;;;33433:40:0;;:105;;-1:-1:-1;;;;;;;33490:48:0;;-1:-1:-1;;;33490:48:0;33433:105;:158;;;-1:-1:-1;;;;;;;;;;25062:40:0;;;33555:36;24953:157;57630:227;12499:7;;;;12753:9;12745:38;;;;-1:-1:-1;;;12745:38:0;;;;;;;:::i;:::-;57804:45:::1;57831:4;57837:2;57841:7;57804:26;:45::i;40374:321::-:0;40504:18;40510:2;40514:7;40504:5;:18::i;:::-;40555:54;40586:1;40590:2;40594:7;40603:5;40555:22;:54::i;:::-;40533:154;;;;-1:-1:-1;;;40533:154:0;;;;;;;:::i;44395:799::-;44550:4;-1:-1:-1;;;;;44571:13:0;;15142:19;:23;44567:620;;44607:72;;-1:-1:-1;;;44607:72:0;;-1:-1:-1;;;;;44607:36:0;;;;;:72;;8632:10;;44658:4;;44664:7;;44673:5;;44607:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44607:72:0;;;;;;;;-1:-1:-1;;44607:72:0;;;;;;;;;;;;:::i;:::-;;;44603:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44849:13:0;;44845:272;;44892:60;;-1:-1:-1;;;44892:60:0;;;;;;;:::i;44845:272::-;45067:6;45061:13;45052:6;45048:2;45044:15;45037:38;44603:529;-1:-1:-1;;;;;;44730:51:0;-1:-1:-1;;;44730:51:0;;-1:-1:-1;44723:58:0;;44567:620;-1:-1:-1;45171:4:0;44395:799;;;;;;:::o;41031:439::-;-1:-1:-1;;;;;41111:16:0;;41103:61;;;;-1:-1:-1;;;41103:61:0;;13256:2:1;41103:61:0;;;13238:21:1;;;13275:18;;;13268:30;13334:34;13314:18;;;13307:62;13386:18;;41103:61:0;13054:356:1;41103:61:0;39118:4;39142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39142:16:0;:30;41175:58;;;;-1:-1:-1;;;41175:58:0;;9729:2:1;41175:58:0;;;9711:21:1;9768:2;9748:18;;;9741:30;9807;9787:18;;;9780:58;9855:18;;41175:58:0;9527:352:1;41175:58:0;41246:45;41275:1;41279:2;41283:7;41246:20;:45::i;:::-;-1:-1:-1;;;;;41304:13:0;;;;;;:9;:13;;;;;:18;;41321:1;;41304:13;:18;;41321:1;;41304:18;:::i;:::-;;;;-1:-1:-1;;41333:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41333:21:0;-1:-1:-1;;;;;41333:21:0;;;;;;;;41372:33;;41333:16;;;41372:33;;41333:16;;41372:33;55363:21:::1;55287:105:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4780:637::-;5060:3;5098:6;5092:13;5114:53;5160:6;5155:3;5148:4;5140:6;5136:17;5114:53;:::i;:::-;5230:13;;5189:16;;;;5252:57;5230:13;5189:16;5286:4;5274:17;;5252:57;:::i;:::-;-1:-1:-1;;;5331:20:1;;5360:22;;;5409:1;5398:13;;4780:637;-1:-1:-1;;;;4780:637:1:o;5630:488::-;-1:-1:-1;;;;;5899:15:1;;;5881:34;;5951:15;;5946:2;5931:18;;5924:43;5998:2;5983:18;;5976:34;;;6046:3;6041:2;6026:18;;6019:31;;;5824:4;;6067:45;;6092:19;;6084:6;6067:45;:::i;:::-;6059:53;5630:488;-1:-1:-1;;;;;;5630:488:1:o;6123:632::-;6294:2;6346:21;;;6416:13;;6319:18;;;6438:22;;;6265:4;;6294:2;6517:15;;;;6491:2;6476:18;;;6265:4;6560:169;6574:6;6571:1;6568:13;6560:169;;;6635:13;;6623:26;;6704:15;;;;6669:12;;;;6596:1;6589:9;6560:169;;;-1:-1:-1;6746:3:1;;6123:632;-1:-1:-1;;;;;;6123:632:1:o;6952:219::-;7101:2;7090:9;7083:21;7064:4;7121:44;7161:2;7150:9;7146:18;7138:6;7121:44;:::i;8295:414::-;8497:2;8479:21;;;8536:2;8516:18;;;8509:30;8575:34;8570:2;8555:18;;8548:62;-1:-1:-1;;;8641:2:1;8626:18;;8619:48;8699:3;8684:19;;8295:414::o;11463:340::-;11665:2;11647:21;;;11704:2;11684:18;;;11677:30;-1:-1:-1;;;11738:2:1;11723:18;;11716:46;11794:2;11779:18;;11463:340::o;14246:356::-;14448:2;14430:21;;;14467:18;;;14460:30;14526:34;14521:2;14506:18;;14499:62;14593:2;14578:18;;14246:356::o;15425:401::-;15627:2;15609:21;;;15666:2;15646:18;;;15639:30;15705:34;15700:2;15685:18;;15678:62;-1:-1:-1;;;15771:2:1;15756:18;;15749:35;15816:3;15801:19;;15425:401::o;15831:413::-;16033:2;16015:21;;;16072:2;16052:18;;;16045:30;16111:34;16106:2;16091:18;;16084:62;-1:-1:-1;;;16177:2:1;16162:18;;16155:47;16234:3;16219:19;;15831:413::o;17978:128::-;18018:3;18049:1;18045:6;18042:1;18039:13;18036:39;;;18055:18;;:::i;:::-;-1:-1:-1;18091:9:1;;17978:128::o;18111:120::-;18151:1;18177;18167:35;;18182:18;;:::i;:::-;-1:-1:-1;18216:9:1;;18111:120::o;18236:168::-;18276:7;18342:1;18338;18334:6;18330:14;18327:1;18324:21;18319:1;18312:9;18305:17;18301:45;18298:71;;;18349:18;;:::i;:::-;-1:-1:-1;18389:9:1;;18236:168::o;18409:125::-;18449:4;18477:1;18474;18471:8;18468:34;;;18482:18;;:::i;:::-;-1:-1:-1;18519:9:1;;18409:125::o;18539:258::-;18611:1;18621:113;18635:6;18632:1;18629:13;18621:113;;;18711:11;;;18705:18;18692:11;;;18685:39;18657:2;18650:10;18621:113;;;18752:6;18749:1;18746:13;18743:48;;;-1:-1:-1;;18787:1:1;18769:16;;18762:27;18539:258::o;18802:380::-;18881:1;18877:12;;;;18924;;;18945:61;;18999:4;18991:6;18987:17;18977:27;;18945:61;19052:2;19044:6;19041:14;19021:18;19018:38;19015:161;;;19098:10;19093:3;19089:20;19086:1;19079:31;19133:4;19130:1;19123:15;19161:4;19158:1;19151:15;19015:161;;18802:380;;;:::o;19187:135::-;19226:3;-1:-1:-1;;19247:17:1;;19244:43;;;19267:18;;:::i;:::-;-1:-1:-1;19314:1:1;19303:13;;19187:135::o;19327:112::-;19359:1;19385;19375:35;;19390:18;;:::i;:::-;-1:-1:-1;19424:9:1;;19327:112::o;19444:127::-;19505:10;19500:3;19496:20;19493:1;19486:31;19536:4;19533:1;19526:15;19560:4;19557:1;19550:15;19576:127;19637:10;19632:3;19628:20;19625:1;19618:31;19668:4;19665:1;19658:15;19692:4;19689:1;19682:15;19708:127;19769:10;19764:3;19760:20;19757:1;19750:31;19800:4;19797:1;19790:15;19824:4;19821:1;19814:15;19840:127;19901:10;19896:3;19892:20;19889:1;19882:31;19932:4;19929:1;19922:15;19956:4;19953:1;19946:15;19972:127;20033:10;20028:3;20024:20;20021:1;20014:31;20064:4;20061:1;20054:15;20088:4;20085:1;20078:15;20104:131;-1:-1:-1;;;;;;20178:32:1;;20168:43;;20158:71;;20225:1;20222;20215:12

Swarm Source

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