ETH Price: $2,290.97 (-2.26%)

Token

Meta Football League (MFL)
 

Overview

Max Total Supply

6 MFL

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MFL
0xb19063815278e7a977b38b9f82cc258bbdba3433
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:
MFL

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-08
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

// 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/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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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/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: contracts/MFL.sol

pragma solidity >=0.7.0 <0.9.0;
pragma experimental ABIEncoderV2;





contract MFL is ERC721, Ownable {

    using SafeMath for mapping(address => uint);
    using SafeMath for uint16;
    using SafeMath for uint256;
    using Strings for uint256;
    bool public isActive = false;
    bool public isPresaleActive = false;
    bool public reveal = false;
    uint8 public constant WHITELIST_MAX_MINT = 2;
    uint8 public MAX_MINT = 5;
    uint16 public MAX_NFT = 8888;
    uint16 private LIMIT_NFT_PRESALE = 0;
    uint16 public totalSupply = 0;
    address public OWNER_WALLET = msg.sender;
    uint256 public NFT_PRICE = 125000000000000000;  // 0.125 ETH //
    uint256 public NFT_LOW_PRICE = 100000000000000000;  // 0.10 ETH //
    string private baseURI;
    string private waitingURI;

    mapping(address => uint) public whiteList;
    mapping(address => uint) public oglist;

    constructor() ERC721("Meta Football League", "MFL"){}

    /*
     *  Check sale is active
     */
    modifier onlyActive(){
        require(isActive == true, "The Sale is not currently Active");
        _;
    }

    /*
     * Check presale is active
     */
    modifier onlyPresaleActive(){
        require(isPresaleActive == true, "The presale is not currently active");
        _;
    }

    /*
     * Check that user is in white list 
     */
    modifier onWhiteList(){
        require(whiteList[msg.sender] > 0, "User not on whiteList or has already mint enough");
        _;
    }

    /*
     * Check user on Og list 
     */
    modifier onlyOG(){
        require(oglist[msg.sender] > 0, "User not on OG list");
        _;
    }

    /*
     * Switch safe mode. Allow for urgent close.
     */
    function switchActive() external onlyOwner{ //
        isActive = !isActive;
    }

    /*
     * Switch presale mode
     */
    function switchPresale() external onlyOwner{
        isPresaleActive = !isPresaleActive;
    }

    /** activate reveal */
    function switchReveal() external onlyOwner {
        reveal = !reveal;
    }

    /**
    Set the Max of Nft to be sold during the presale
    */
    function setPresaleMAX(uint16 PresaleMax) external onlyOwner {
        LIMIT_NFT_PRESALE = PresaleMax;
    }

    /**
    Set base uri to display the NFT image
     */
    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    /**
    Set URI to display until the reveal
     */
    function setWaitingURI(string memory _waitingURI) external onlyOwner {
        waitingURI = _waitingURI;
    }
    
    /**
    return the URI of NFT depending on reveal
     */
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (!reveal) {
            return string(abi.encodePacked(waitingURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }

    /*
     * Withdraw balance from contract
     */
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(address(OWNER_WALLET)).transfer(balance);
    }
    
    /*
     * Add user to white list
     */
    function addOnWhiteList(address[] memory _addresses) external onlyOwner { //
        for (uint256 i = 0; i < _addresses.length; i++) {
            whiteList[_addresses[i]] = WHITELIST_MAX_MINT;
        }
    }

    /*
     * Add user on OG List
     */
    function addOnOGList(address[] memory _addresses) external onlyOwner{
        for (uint256 i = 0; i< _addresses.length; i++){
            oglist[_addresses[i]] = 1;
        }
    }

    /*
     * Remove user on OG List
     */
    function removeOnOGList(address[] memory _addresses) external onlyOwner{
        for (uint256 i = 0; i< _addresses.length; i++){
            oglist[_addresses[i]] = 0;
        }        
    }

    /*
     * Sub function to mint `_numOfTokens` NFTs to `_to`
     */
    function _mintNFT(address _to, uint16 _numOfTokens) private {
        require(totalSupply + _numOfTokens <= MAX_NFT,"Minting would exceed number of existing NFTS");
        for(uint i = 0; i < _numOfTokens; i++){
            _safeMint(_to, totalSupply + i);
        }
        totalSupply += _numOfTokens;
    }
    
    /*
     * Check for required conditions before calling sub function _mint
     */
    function mintNFT(uint16 _numOfTokens) external payable onlyActive { //
        require(NFT_PRICE.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        require(_numOfTokens <= MAX_MINT, "Minting is limited at 5 NFT");
        _mintNFT(msg.sender, _numOfTokens);  
    }
    
    /*
     * mint for OGs, Get OG role on our discord !
     */
    function mintOG(uint16 _numOfTokens) external payable onlyActive onlyOG { 
        require(NFT_LOW_PRICE.mul(_numOfTokens) == msg.value, "Ether value is not correct");
        require(_numOfTokens <= MAX_MINT,"Minting is limited at 5 NFT");
        _mintNFT(msg.sender, _numOfTokens);
    }

    /*
     * Check `msg.sender` is on white list then call sub function _mint 
     */
    function mintWhiteList(uint16 _numOfTokens) external payable onWhiteList { //
        require(NFT_PRICE.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        require(whiteList[msg.sender] >= _numOfTokens,"Can't mint that much");
        whiteList[msg.sender] -= _numOfTokens;
        _mintNFT(msg.sender, _numOfTokens);
    } 
    
    /*
     * Send free NFTs to give away winner
     */
    function mintForGiveAway(address _to, uint16 _numOfTokens) external onlyOwner { //  
        _mintNFT(_to, _numOfTokens);
    }

    /*
     * Function to mint new NFTs during the presale
     */ 
    function mintNFTDuringPresale(uint16 _numOfTokens) external payable onlyPresaleActive {
        require(NFT_LOW_PRICE.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        require(_numOfTokens <= MAX_MINT, "Minting is limited at 5 NFT");
        require(_numOfTokens + totalSupply <= LIMIT_NFT_PRESALE, "Number of token to be minted exceed allowed");
        _mintNFT(msg.sender, _numOfTokens);
    }

    /* 
     * Standard functions to be overridden in ERC721Enumerable
     */
    function supportsInterface( bytes4 _interfaceId ) public view override (ERC721) returns (bool) 
    {
        return super.supportsInterface(_interfaceId);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal override(ERC721) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_LOW_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addOnOGList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addOnWhiteList","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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_numOfTokens","type":"uint16"}],"name":"mintForGiveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_numOfTokens","type":"uint16"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_numOfTokens","type":"uint16"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_numOfTokens","type":"uint16"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_numOfTokens","type":"uint16"}],"name":"mintWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"oglist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeOnOGList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"PresaleMax","type":"uint16"}],"name":"setPresaleMAX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_waitingURI","type":"string"}],"name":"setWaitingURI","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":"switchActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260068054600160a01b600160f01b0319166222b80560b81b179055600780546001600160a01b031916331790556701bc16d674ec800060085567016345785d8a00006009553480156200005657600080fd5b50604080518082018252601481527f4d65746120466f6f7462616c6c204c656167756500000000000000000000000060208083019182528351808501909452600384526213519360ea1b908401528151919291620000b79160009162000146565b508051620000cd90600190602084019062000146565b505050620000ea620000e4620000f060201b60201c565b620000f4565b62000228565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015490620001ec565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b600181811c908216806200020157607f821691505b6020821081036200022257634e487b7160e01b600052602260045260246000fd5b50919050565b612d0780620002386000396000f3fe6080604052600436106102dc5760003560e01c8063715018a611610184578063b88d4fde116100d6578063d0b0b22c1161008a578063f0292a0311610064578063f0292a03146107f8578063f2fde38b14610819578063fae36afb1461083957600080fd5b8063d0b0b22c14610784578063e985e9c51461079a578063ec5a2d45146107e357600080fd5b8063c29ad3ff116100bb578063c29ad3ff1461072f578063c87b56dd14610744578063c9ecf63c1461076457600080fd5b8063b88d4fde146106fa578063bdf05ccc1461071a57600080fd5b806395d89b4111610138578063a475b5dd11610112578063a475b5dd1461069f578063ae969a77146106c0578063aeb16768146106d357600080fd5b806395d89b4114610657578063a22cb4651461066c578063a39e9a2f1461068c57600080fd5b806389ac467b1161016957806389ac467b146105f95780638da5cb5b1461061957806391ee9fbb1461063757600080fd5b8063715018a6146105c457806373b541f1146105d957600080fd5b80633bcc07561161023d57806360d938dc116101f15780636e7a5e9e116101cb5780636e7a5e9e146105625780636fdaddf11461058257806370a08231146105a457600080fd5b806360d938dc1461050b5780636352211e1461052c578063676dd5631461054c57600080fd5b806342842e0e1161022257806342842e0e146104b857806355f804b3146104d85780635701001c146104f857600080fd5b80633bcc0756146104765780633ccfd60b146104a357600080fd5b806318c83f961161029457806322f3e2d41161027957806322f3e2d4146103fa57806323b872dd1461041b578063372c12b11461043b57600080fd5b806318c83f96146103c75780631bb95d56146103e757600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b31461037057806318160ddd1461039257600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612656565b610859565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b61086a565b60405161030d91906126cb565b34801561034457600080fd5b506103586103533660046126de565b6108fc565b6040516001600160a01b03909116815260200161030d565b34801561037c57600080fd5b5061039061038b36600461270e565b610996565b005b34801561039e57600080fd5b506006546103b490600160e01b900461ffff1681565b60405161ffff909116815260200161030d565b3480156103d357600080fd5b506103906103e236600461277f565b610ac7565b6103906103f536600461283e565b610b79565b34801561040657600080fd5b5060065461030190600160a01b900460ff1681565b34801561042757600080fd5b50610390610436366004612859565b610d65565b34801561044757600080fd5b50610468610456366004612895565b600c6020526000908152604090205481565b60405190815260200161030d565b34801561048257600080fd5b50610468610491366004612895565b600d6020526000908152604090205481565b3480156104af57600080fd5b50610390610dec565b3480156104c457600080fd5b506103906104d3366004612859565b610e6e565b3480156104e457600080fd5b506103906104f3366004612908565b610e89565b61039061050636600461283e565b610ee4565b34801561051757600080fd5b5060065461030190600160a81b900460ff1681565b34801561053857600080fd5b506103586105473660046126de565b61105e565b34801561055857600080fd5b5061046860085481565b34801561056e57600080fd5b5061039061057d366004612908565b6110e9565b34801561058e57600080fd5b506006546103b490600160c01b900461ffff1681565b3480156105b057600080fd5b506104686105bf366004612895565b611144565b3480156105d057600080fd5b506103906111de565b3480156105e557600080fd5b506103906105f436600461277f565b611232565b34801561060557600080fd5b50610390610614366004612951565b6112dd565b34801561062557600080fd5b506006546001600160a01b0316610358565b34801561064357600080fd5b5061039061065236600461283e565b61132f565b34801561066357600080fd5b5061032b6113b3565b34801561067857600080fd5b50610390610687366004612984565b6113c2565b61039061069a36600461283e565b6113cd565b3480156106ab57600080fd5b5060065461030190600160b01b900460ff1681565b6103906106ce36600461283e565b61148b565b3480156106df57600080fd5b506106e8600281565b60405160ff909116815260200161030d565b34801561070657600080fd5b506103906107153660046129c0565b611603565b34801561072657600080fd5b50610390611691565b34801561073b57600080fd5b50610390611715565b34801561075057600080fd5b5061032b61075f3660046126de565b611799565b34801561077057600080fd5b5061039061077f36600461277f565b611880565b34801561079057600080fd5b5061046860095481565b3480156107a657600080fd5b506103016107b5366004612a3c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ef57600080fd5b5061039061192b565b34801561080457600080fd5b506006546106e890600160b81b900460ff1681565b34801561082557600080fd5b50610390610834366004612895565b6119af565b34801561084557600080fd5b50600754610358906001600160a01b031681565b600061086482611a7c565b92915050565b60606000805461087990612a66565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590612a66565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661097a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a18261105e565b9050806001600160a01b0316836001600160a01b031603610a2a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610971565b336001600160a01b0382161480610a465750610a4681336107b5565b610ab85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610971565b610ac28383611b17565b505050565b6006546001600160a01b03163314610b0f5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60005b8151811015610b7557600260ff16600c6000848481518110610b3657610b36612aa0565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610b6d90612acc565b915050610b12565b5050565b600654600160a81b900460ff161515600114610bfd5760405162461bcd60e51b815260206004820152602360248201527f5468652070726573616c65206973206e6f742063757272656e746c792061637460448201527f69766500000000000000000000000000000000000000000000000000000000006064820152608401610971565b6009543490610c109061ffff8416611b92565b14610c5d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610971565b600654600160b81b900460ff1661ffff82161115610cbd5760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e67206973206c696d697465642061742035204e465400000000006044820152606401610971565b60065461ffff600160d01b8204811691610ce091600160e01b9091041683612ae5565b61ffff161115610d585760405162461bcd60e51b815260206004820152602b60248201527f4e756d626572206f6620746f6b656e20746f206265206d696e7465642065786360448201527f65656420616c6c6f7765640000000000000000000000000000000000000000006064820152608401610971565b610d623382611ba5565b50565b610d6f3382611cc3565b610de15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b610ac2838383611dba565b6006546001600160a01b03163314610e345760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60075460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610b75573d6000803e3d6000fd5b610ac283838360405180602001604052806000815250611603565b6006546001600160a01b03163314610ed15760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b8051610b7590600a9060208401906125a7565b600654600160a01b900460ff161515600114610f425760405162461bcd60e51b815260206004820181905260248201527f5468652053616c65206973206e6f742063757272656e746c79204163746976656044820152606401610971565b336000908152600d6020526040902054610f9e5760405162461bcd60e51b815260206004820152601360248201527f55736572206e6f74206f6e204f47206c697374000000000000000000000000006044820152606401610971565b6009543490610fb19061ffff8416611b92565b14610ffe5760405162461bcd60e51b815260206004820152601a60248201527f45746865722076616c7565206973206e6f7420636f72726563740000000000006044820152606401610971565b600654600160b81b900460ff1661ffff82161115610d585760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e67206973206c696d697465642061742035204e465400000000006044820152606401610971565b6000818152600260205260408120546001600160a01b0316806108645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610971565b6006546001600160a01b031633146111315760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b8051610b7590600b9060208401906125a7565b60006001600160a01b0382166111c25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610971565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112265760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b6112306000611f94565b565b6006546001600160a01b0316331461127a5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60005b8151811015610b75576001600d600084848151811061129e5761129e612aa0565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806112d590612acc565b91505061127d565b6006546001600160a01b031633146113255760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b610b758282611ba5565b6006546001600160a01b031633146113775760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b6006805461ffff909216600160d01b027fffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606001805461087990612a66565b610b75338383611ff3565b600654600160a01b900460ff16151560011461142b5760405162461bcd60e51b815260206004820181905260248201527f5468652053616c65206973206e6f742063757272656e746c79204163746976656044820152606401610971565b600854349061143e9061ffff8416611b92565b14610ffe5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610971565b336000908152600c602052604090205461150d5760405162461bcd60e51b815260206004820152603060248201527f55736572206e6f74206f6e2077686974654c697374206f722068617320616c7260448201527f65616479206d696e7420656e6f756768000000000000000000000000000000006064820152608401610971565b60085434906115209061ffff8416611b92565b1461156d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610971565b336000908152600c602052604090205461ffff821611156115d05760405162461bcd60e51b815260206004820152601460248201527f43616e2774206d696e742074686174206d7563680000000000000000000000006044820152606401610971565b336000908152600c60205260408120805461ffff841692906115f3908490612b0b565b90915550610d6290503382611ba5565b61160d3383611cc3565b61167f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b61168b848484846120c1565b50505050565b6006546001600160a01b031633146116d95760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6006546001600160a01b0316331461175d5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b600680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff8116600160a81b9182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166118265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610971565b600654600160b01b900460ff1661185f57600b6040516020016118499190612bbb565b6040516020818303038152906040529050919050565b600a61186a8361213f565b604051602001611849929190612bc7565b919050565b6006546001600160a01b031633146118c85760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60005b8151811015610b75576000600d60008484815181106118ec576118ec612aa0565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061192390612acc565b9150506118cb565b6006546001600160a01b031633146119735760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b600680547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff8116600160b01b9182900460ff1615909102179055565b6006546001600160a01b031633146119f75760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b6001600160a01b038116611a735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610971565b610d6281611f94565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611adf57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061086457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610864565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611b598261105e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9e8284612be3565b9392505050565b60065461ffff600160c01b8204811691611bc8918491600160e01b900416612ae5565b61ffff161115611c405760405162461bcd60e51b815260206004820152602c60248201527f4d696e74696e6720776f756c6420657863656564206e756d626572206f66206560448201527f78697374696e67204e46545300000000000000000000000000000000000000006064820152608401610971565b60005b8161ffff16811015611c8557600654611c73908490611c6e908490600160e01b900461ffff16612c02565b612274565b80611c7d81612acc565b915050611c43565b50806006601c8282829054906101000a900461ffff16611ca59190612ae5565b92506101000a81548161ffff021916908361ffff1602179055505050565b6000818152600260205260408120546001600160a01b0316611d3c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610971565b6000611d478361105e565b9050806001600160a01b0316846001600160a01b03161480611d825750836001600160a01b0316611d77846108fc565b6001600160a01b0316145b80611db257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611dcd8261105e565b6001600160a01b031614611e495760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610971565b6001600160a01b038216611ec45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610971565b611ecf600082611b17565b6001600160a01b0383166000908152600360205260408120805460019290611ef8908490612b0b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f26908490612c02565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036120545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610971565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120cc848484611dba565b6120d88484848461228e565b61168b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b60608160000361218257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156121ac578061219681612acc565b91506121a59050600a83612c30565b9150612186565b60008167ffffffffffffffff8111156121c7576121c7612738565b6040519080825280601f01601f1916602001820160405280156121f1576020820181803683370190505b5090505b8415611db257612206600183612b0b565b9150612213600a86612c44565b61221e906030612c02565b60f81b81838151811061223357612233612aa0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061226d600a86612c30565b94506121f5565b610b758282604051806020016040528060008152506123da565b60006001600160a01b0384163b156123cf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122d2903390899088908890600401612c58565b6020604051808303816000875af192505050801561230d575060408051601f3d908101601f1916820190925261230a91810190612c94565b60015b6123b5573d80801561233b576040519150601f19603f3d011682016040523d82523d6000602084013e612340565b606091505b5080516000036123ad5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611db2565b506001949350505050565b6123e48383612458565b6123f1600084848461228e565b610ac25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b6001600160a01b0382166124ae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610971565b6000818152600260205260409020546001600160a01b0316156125135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610971565b6001600160a01b038216600090815260036020526040812080546001929061253c908490612c02565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125b390612a66565b90600052602060002090601f0160209004810192826125d5576000855561261b565b82601f106125ee57805160ff191683800117855561261b565b8280016001018555821561261b579182015b8281111561261b578251825591602001919060010190612600565b5061262792915061262b565b5090565b5b80821115612627576000815560010161262c565b6001600160e01b031981168114610d6257600080fd5b60006020828403121561266857600080fd5b8135611b9e81612640565b60005b8381101561268e578181015183820152602001612676565b8381111561168b5750506000910152565b600081518084526126b7816020860160208601612673565b601f01601f19169290920160200192915050565b602081526000611b9e602083018461269f565b6000602082840312156126f057600080fd5b5035919050565b80356001600160a01b038116811461187b57600080fd5b6000806040838503121561272157600080fd5b61272a836126f7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561277757612777612738565b604052919050565b6000602080838503121561279257600080fd5b823567ffffffffffffffff808211156127aa57600080fd5b818501915085601f8301126127be57600080fd5b8135818111156127d0576127d0612738565b8060051b91506127e184830161274e565b81815291830184019184810190888411156127fb57600080fd5b938501935b8385101561282057612811856126f7565b82529385019390850190612800565b98975050505050505050565b803561ffff8116811461187b57600080fd5b60006020828403121561285057600080fd5b611b9e8261282c565b60008060006060848603121561286e57600080fd5b612877846126f7565b9250612885602085016126f7565b9150604084013590509250925092565b6000602082840312156128a757600080fd5b611b9e826126f7565b600067ffffffffffffffff8311156128ca576128ca612738565b6128dd601f8401601f191660200161274e565b90508281528383830111156128f157600080fd5b828260208301376000602084830101529392505050565b60006020828403121561291a57600080fd5b813567ffffffffffffffff81111561293157600080fd5b8201601f8101841361294257600080fd5b611db2848235602084016128b0565b6000806040838503121561296457600080fd5b61296d836126f7565b915061297b6020840161282c565b90509250929050565b6000806040838503121561299757600080fd5b6129a0836126f7565b9150602083013580151581146129b557600080fd5b809150509250929050565b600080600080608085870312156129d657600080fd5b6129df856126f7565b93506129ed602086016126f7565b925060408501359150606085013567ffffffffffffffff811115612a1057600080fd5b8501601f81018713612a2157600080fd5b612a30878235602084016128b0565b91505092959194509250565b60008060408385031215612a4f57600080fd5b612a58836126f7565b915061297b602084016126f7565b600181811c90821680612a7a57607f821691505b602082108103612a9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612ade57612ade612ab6565b5060010190565b600061ffff808316818516808303821115612b0257612b02612ab6565b01949350505050565b600082821015612b1d57612b1d612ab6565b500390565b8054600090600181811c9080831680612b3c57607f831692505b60208084108203612b5d57634e487b7160e01b600052602260045260246000fd5b818015612b715760018114612b8257612baf565b60ff19861689528489019650612baf565b60008881526020902060005b86811015612ba75781548b820152908501908301612b8e565b505084890196505b50505050505092915050565b6000611b9e8284612b22565b6000612bd38285612b22565b8351612b02818360208801612673565b6000816000190483118215151615612bfd57612bfd612ab6565b500290565b60008219821115612c1557612c15612ab6565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612c3f57612c3f612c1a565b500490565b600082612c5357612c53612c1a565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612c8a608083018461269f565b9695505050505050565b600060208284031215612ca657600080fd5b8151611b9e8161264056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212205da8b89d8346f1dc433d65327e0428c2e783aba5af0914c2e35c361174aa11d164736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102dc5760003560e01c8063715018a611610184578063b88d4fde116100d6578063d0b0b22c1161008a578063f0292a0311610064578063f0292a03146107f8578063f2fde38b14610819578063fae36afb1461083957600080fd5b8063d0b0b22c14610784578063e985e9c51461079a578063ec5a2d45146107e357600080fd5b8063c29ad3ff116100bb578063c29ad3ff1461072f578063c87b56dd14610744578063c9ecf63c1461076457600080fd5b8063b88d4fde146106fa578063bdf05ccc1461071a57600080fd5b806395d89b4111610138578063a475b5dd11610112578063a475b5dd1461069f578063ae969a77146106c0578063aeb16768146106d357600080fd5b806395d89b4114610657578063a22cb4651461066c578063a39e9a2f1461068c57600080fd5b806389ac467b1161016957806389ac467b146105f95780638da5cb5b1461061957806391ee9fbb1461063757600080fd5b8063715018a6146105c457806373b541f1146105d957600080fd5b80633bcc07561161023d57806360d938dc116101f15780636e7a5e9e116101cb5780636e7a5e9e146105625780636fdaddf11461058257806370a08231146105a457600080fd5b806360d938dc1461050b5780636352211e1461052c578063676dd5631461054c57600080fd5b806342842e0e1161022257806342842e0e146104b857806355f804b3146104d85780635701001c146104f857600080fd5b80633bcc0756146104765780633ccfd60b146104a357600080fd5b806318c83f961161029457806322f3e2d41161027957806322f3e2d4146103fa57806323b872dd1461041b578063372c12b11461043b57600080fd5b806318c83f96146103c75780631bb95d56146103e757600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b31461037057806318160ddd1461039257600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612656565b610859565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b61086a565b60405161030d91906126cb565b34801561034457600080fd5b506103586103533660046126de565b6108fc565b6040516001600160a01b03909116815260200161030d565b34801561037c57600080fd5b5061039061038b36600461270e565b610996565b005b34801561039e57600080fd5b506006546103b490600160e01b900461ffff1681565b60405161ffff909116815260200161030d565b3480156103d357600080fd5b506103906103e236600461277f565b610ac7565b6103906103f536600461283e565b610b79565b34801561040657600080fd5b5060065461030190600160a01b900460ff1681565b34801561042757600080fd5b50610390610436366004612859565b610d65565b34801561044757600080fd5b50610468610456366004612895565b600c6020526000908152604090205481565b60405190815260200161030d565b34801561048257600080fd5b50610468610491366004612895565b600d6020526000908152604090205481565b3480156104af57600080fd5b50610390610dec565b3480156104c457600080fd5b506103906104d3366004612859565b610e6e565b3480156104e457600080fd5b506103906104f3366004612908565b610e89565b61039061050636600461283e565b610ee4565b34801561051757600080fd5b5060065461030190600160a81b900460ff1681565b34801561053857600080fd5b506103586105473660046126de565b61105e565b34801561055857600080fd5b5061046860085481565b34801561056e57600080fd5b5061039061057d366004612908565b6110e9565b34801561058e57600080fd5b506006546103b490600160c01b900461ffff1681565b3480156105b057600080fd5b506104686105bf366004612895565b611144565b3480156105d057600080fd5b506103906111de565b3480156105e557600080fd5b506103906105f436600461277f565b611232565b34801561060557600080fd5b50610390610614366004612951565b6112dd565b34801561062557600080fd5b506006546001600160a01b0316610358565b34801561064357600080fd5b5061039061065236600461283e565b61132f565b34801561066357600080fd5b5061032b6113b3565b34801561067857600080fd5b50610390610687366004612984565b6113c2565b61039061069a36600461283e565b6113cd565b3480156106ab57600080fd5b5060065461030190600160b01b900460ff1681565b6103906106ce36600461283e565b61148b565b3480156106df57600080fd5b506106e8600281565b60405160ff909116815260200161030d565b34801561070657600080fd5b506103906107153660046129c0565b611603565b34801561072657600080fd5b50610390611691565b34801561073b57600080fd5b50610390611715565b34801561075057600080fd5b5061032b61075f3660046126de565b611799565b34801561077057600080fd5b5061039061077f36600461277f565b611880565b34801561079057600080fd5b5061046860095481565b3480156107a657600080fd5b506103016107b5366004612a3c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ef57600080fd5b5061039061192b565b34801561080457600080fd5b506006546106e890600160b81b900460ff1681565b34801561082557600080fd5b50610390610834366004612895565b6119af565b34801561084557600080fd5b50600754610358906001600160a01b031681565b600061086482611a7c565b92915050565b60606000805461087990612a66565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590612a66565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661097a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a18261105e565b9050806001600160a01b0316836001600160a01b031603610a2a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610971565b336001600160a01b0382161480610a465750610a4681336107b5565b610ab85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610971565b610ac28383611b17565b505050565b6006546001600160a01b03163314610b0f5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60005b8151811015610b7557600260ff16600c6000848481518110610b3657610b36612aa0565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610b6d90612acc565b915050610b12565b5050565b600654600160a81b900460ff161515600114610bfd5760405162461bcd60e51b815260206004820152602360248201527f5468652070726573616c65206973206e6f742063757272656e746c792061637460448201527f69766500000000000000000000000000000000000000000000000000000000006064820152608401610971565b6009543490610c109061ffff8416611b92565b14610c5d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610971565b600654600160b81b900460ff1661ffff82161115610cbd5760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e67206973206c696d697465642061742035204e465400000000006044820152606401610971565b60065461ffff600160d01b8204811691610ce091600160e01b9091041683612ae5565b61ffff161115610d585760405162461bcd60e51b815260206004820152602b60248201527f4e756d626572206f6620746f6b656e20746f206265206d696e7465642065786360448201527f65656420616c6c6f7765640000000000000000000000000000000000000000006064820152608401610971565b610d623382611ba5565b50565b610d6f3382611cc3565b610de15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b610ac2838383611dba565b6006546001600160a01b03163314610e345760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60075460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610b75573d6000803e3d6000fd5b610ac283838360405180602001604052806000815250611603565b6006546001600160a01b03163314610ed15760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b8051610b7590600a9060208401906125a7565b600654600160a01b900460ff161515600114610f425760405162461bcd60e51b815260206004820181905260248201527f5468652053616c65206973206e6f742063757272656e746c79204163746976656044820152606401610971565b336000908152600d6020526040902054610f9e5760405162461bcd60e51b815260206004820152601360248201527f55736572206e6f74206f6e204f47206c697374000000000000000000000000006044820152606401610971565b6009543490610fb19061ffff8416611b92565b14610ffe5760405162461bcd60e51b815260206004820152601a60248201527f45746865722076616c7565206973206e6f7420636f72726563740000000000006044820152606401610971565b600654600160b81b900460ff1661ffff82161115610d585760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e67206973206c696d697465642061742035204e465400000000006044820152606401610971565b6000818152600260205260408120546001600160a01b0316806108645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610971565b6006546001600160a01b031633146111315760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b8051610b7590600b9060208401906125a7565b60006001600160a01b0382166111c25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610971565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112265760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b6112306000611f94565b565b6006546001600160a01b0316331461127a5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60005b8151811015610b75576001600d600084848151811061129e5761129e612aa0565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806112d590612acc565b91505061127d565b6006546001600160a01b031633146113255760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b610b758282611ba5565b6006546001600160a01b031633146113775760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b6006805461ffff909216600160d01b027fffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606001805461087990612a66565b610b75338383611ff3565b600654600160a01b900460ff16151560011461142b5760405162461bcd60e51b815260206004820181905260248201527f5468652053616c65206973206e6f742063757272656e746c79204163746976656044820152606401610971565b600854349061143e9061ffff8416611b92565b14610ffe5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610971565b336000908152600c602052604090205461150d5760405162461bcd60e51b815260206004820152603060248201527f55736572206e6f74206f6e2077686974654c697374206f722068617320616c7260448201527f65616479206d696e7420656e6f756768000000000000000000000000000000006064820152608401610971565b60085434906115209061ffff8416611b92565b1461156d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610971565b336000908152600c602052604090205461ffff821611156115d05760405162461bcd60e51b815260206004820152601460248201527f43616e2774206d696e742074686174206d7563680000000000000000000000006044820152606401610971565b336000908152600c60205260408120805461ffff841692906115f3908490612b0b565b90915550610d6290503382611ba5565b61160d3383611cc3565b61167f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b61168b848484846120c1565b50505050565b6006546001600160a01b031633146116d95760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6006546001600160a01b0316331461175d5760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b600680547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff8116600160a81b9182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166118265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610971565b600654600160b01b900460ff1661185f57600b6040516020016118499190612bbb565b6040516020818303038152906040529050919050565b600a61186a8361213f565b604051602001611849929190612bc7565b919050565b6006546001600160a01b031633146118c85760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b60005b8151811015610b75576000600d60008484815181106118ec576118ec612aa0565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061192390612acc565b9150506118cb565b6006546001600160a01b031633146119735760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b600680547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff8116600160b01b9182900460ff1615909102179055565b6006546001600160a01b031633146119f75760405162461bcd60e51b81526020600482018190526024820152600080516020612cb28339815191526044820152606401610971565b6001600160a01b038116611a735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610971565b610d6281611f94565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611adf57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061086457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610864565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611b598261105e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9e8284612be3565b9392505050565b60065461ffff600160c01b8204811691611bc8918491600160e01b900416612ae5565b61ffff161115611c405760405162461bcd60e51b815260206004820152602c60248201527f4d696e74696e6720776f756c6420657863656564206e756d626572206f66206560448201527f78697374696e67204e46545300000000000000000000000000000000000000006064820152608401610971565b60005b8161ffff16811015611c8557600654611c73908490611c6e908490600160e01b900461ffff16612c02565b612274565b80611c7d81612acc565b915050611c43565b50806006601c8282829054906101000a900461ffff16611ca59190612ae5565b92506101000a81548161ffff021916908361ffff1602179055505050565b6000818152600260205260408120546001600160a01b0316611d3c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610971565b6000611d478361105e565b9050806001600160a01b0316846001600160a01b03161480611d825750836001600160a01b0316611d77846108fc565b6001600160a01b0316145b80611db257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611dcd8261105e565b6001600160a01b031614611e495760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610971565b6001600160a01b038216611ec45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610971565b611ecf600082611b17565b6001600160a01b0383166000908152600360205260408120805460019290611ef8908490612b0b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f26908490612c02565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036120545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610971565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120cc848484611dba565b6120d88484848461228e565b61168b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b60608160000361218257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156121ac578061219681612acc565b91506121a59050600a83612c30565b9150612186565b60008167ffffffffffffffff8111156121c7576121c7612738565b6040519080825280601f01601f1916602001820160405280156121f1576020820181803683370190505b5090505b8415611db257612206600183612b0b565b9150612213600a86612c44565b61221e906030612c02565b60f81b81838151811061223357612233612aa0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061226d600a86612c30565b94506121f5565b610b758282604051806020016040528060008152506123da565b60006001600160a01b0384163b156123cf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122d2903390899088908890600401612c58565b6020604051808303816000875af192505050801561230d575060408051601f3d908101601f1916820190925261230a91810190612c94565b60015b6123b5573d80801561233b576040519150601f19603f3d011682016040523d82523d6000602084013e612340565b606091505b5080516000036123ad5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611db2565b506001949350505050565b6123e48383612458565b6123f1600084848461228e565b610ac25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b6001600160a01b0382166124ae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610971565b6000818152600260205260409020546001600160a01b0316156125135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610971565b6001600160a01b038216600090815260036020526040812080546001929061253c908490612c02565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125b390612a66565b90600052602060002090601f0160209004810192826125d5576000855561261b565b82601f106125ee57805160ff191683800117855561261b565b8280016001018555821561261b579182015b8281111561261b578251825591602001919060010190612600565b5061262792915061262b565b5090565b5b80821115612627576000815560010161262c565b6001600160e01b031981168114610d6257600080fd5b60006020828403121561266857600080fd5b8135611b9e81612640565b60005b8381101561268e578181015183820152602001612676565b8381111561168b5750506000910152565b600081518084526126b7816020860160208601612673565b601f01601f19169290920160200192915050565b602081526000611b9e602083018461269f565b6000602082840312156126f057600080fd5b5035919050565b80356001600160a01b038116811461187b57600080fd5b6000806040838503121561272157600080fd5b61272a836126f7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561277757612777612738565b604052919050565b6000602080838503121561279257600080fd5b823567ffffffffffffffff808211156127aa57600080fd5b818501915085601f8301126127be57600080fd5b8135818111156127d0576127d0612738565b8060051b91506127e184830161274e565b81815291830184019184810190888411156127fb57600080fd5b938501935b8385101561282057612811856126f7565b82529385019390850190612800565b98975050505050505050565b803561ffff8116811461187b57600080fd5b60006020828403121561285057600080fd5b611b9e8261282c565b60008060006060848603121561286e57600080fd5b612877846126f7565b9250612885602085016126f7565b9150604084013590509250925092565b6000602082840312156128a757600080fd5b611b9e826126f7565b600067ffffffffffffffff8311156128ca576128ca612738565b6128dd601f8401601f191660200161274e565b90508281528383830111156128f157600080fd5b828260208301376000602084830101529392505050565b60006020828403121561291a57600080fd5b813567ffffffffffffffff81111561293157600080fd5b8201601f8101841361294257600080fd5b611db2848235602084016128b0565b6000806040838503121561296457600080fd5b61296d836126f7565b915061297b6020840161282c565b90509250929050565b6000806040838503121561299757600080fd5b6129a0836126f7565b9150602083013580151581146129b557600080fd5b809150509250929050565b600080600080608085870312156129d657600080fd5b6129df856126f7565b93506129ed602086016126f7565b925060408501359150606085013567ffffffffffffffff811115612a1057600080fd5b8501601f81018713612a2157600080fd5b612a30878235602084016128b0565b91505092959194509250565b60008060408385031215612a4f57600080fd5b612a58836126f7565b915061297b602084016126f7565b600181811c90821680612a7a57607f821691505b602082108103612a9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612ade57612ade612ab6565b5060010190565b600061ffff808316818516808303821115612b0257612b02612ab6565b01949350505050565b600082821015612b1d57612b1d612ab6565b500390565b8054600090600181811c9080831680612b3c57607f831692505b60208084108203612b5d57634e487b7160e01b600052602260045260246000fd5b818015612b715760018114612b8257612baf565b60ff19861689528489019650612baf565b60008881526020902060005b86811015612ba75781548b820152908501908301612b8e565b505084890196505b50505050505092915050565b6000611b9e8284612b22565b6000612bd38285612b22565b8351612b02818360208801612673565b6000816000190483118215151615612bfd57612bfd612ab6565b500290565b60008219821115612c1557612c15612ab6565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612c3f57612c3f612c1a565b500490565b600082612c5357612c53612c1a565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612c8a608083018461269f565b9695505050505050565b600060208284031215612ca657600080fd5b8151611b9e8161264056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212205da8b89d8346f1dc433d65327e0428c2e783aba5af0914c2e35c361174aa11d164736f6c634300080d0033

Deployed Bytecode Sourcemap

45823:6754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52233:164;;;;;;;;;;-1:-1:-1;52233:164:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;52233:164:0;;;;;;;;31016:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32575:221::-;;;;;;;;;;-1:-1:-1;32575:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;32575:221:0;1574:226:1;32098:411:0;;;;;;;;;;-1:-1:-1;32098:411:0;;;;;:::i;:::-;;:::i;:::-;;46282:29;;;;;;;;;;-1:-1:-1;46282:29:0;;;;-1:-1:-1;;;46282:29:0;;;;;;;;;2439:6:1;2427:19;;;2409:38;;2397:2;2382:18;46282:29:0;2265:188:1;49115:213:0;;;;;;;;;;-1:-1:-1;49115:213:0;;;;;:::i;:::-;;:::i;51716:427::-;;;;;;:::i;:::-;;:::i;46011:28::-;;;;;;;;;;-1:-1:-1;46011:28:0;;;;-1:-1:-1;;;46011:28:0;;;;;;33325:339;;;;;;;;;;-1:-1:-1;33325:339:0;;;;;:::i;:::-;;:::i;46569:41::-;;;;;;;;;;-1:-1:-1;46569:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;4907:25:1;;;4895:2;4880:18;46569:41:0;4761:177:1;46617:38:0;;;;;;;;;;-1:-1:-1;46617:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;48902:153;;;;;;;;;;;;;:::i;33735:185::-;;;;;;;;;;-1:-1:-1;33735:185:0;;;;;:::i;:::-;;:::i;48116:100::-;;;;;;;;;;-1:-1:-1;48116:100:0;;;;;:::i;:::-;;:::i;50690:294::-;;;;;;:::i;:::-;;:::i;46046:35::-;;;;;;;;;;-1:-1:-1;46046:35:0;;;;-1:-1:-1;;;46046:35:0;;;;;;30710:239;;;;;;;;;;-1:-1:-1;30710:239:0;;;;;:::i;:::-;;:::i;46365:45::-;;;;;;;;;;;;;;;;48283:112;;;;;;;;;;-1:-1:-1;48283:112:0;;;;;:::i;:::-;;:::i;46204:28::-;;;;;;;;;;-1:-1:-1;46204:28:0;;;;-1:-1:-1;;;46204:28:0;;;;;;30440:208;;;;;;;;;;-1:-1:-1;30440:208:0;;;;;:::i;:::-;;:::i;44898:103::-;;;;;;;;;;;;;:::i;49381:184::-;;;;;;;;;;-1:-1:-1;49381:184:0;;;;;:::i;:::-;;:::i;51508:129::-;;;;;;;;;;-1:-1:-1;51508:129:0;;;;;:::i;:::-;;:::i;44247:87::-;;;;;;;;;;-1:-1:-1;44320:6:0;;-1:-1:-1;;;;;44320:6:0;44247:87;;47937:110;;;;;;;;;;-1:-1:-1;47937:110:0;;;;;:::i;:::-;;:::i;31185:104::-;;;;;;;;;;;;;:::i;32868:155::-;;;;;;;;;;-1:-1:-1;32868:155:0;;;;;:::i;:::-;;:::i;50316:294::-;;;;;;:::i;:::-;;:::i;46088:26::-;;;;;;;;;;-1:-1:-1;46088:26:0;;;;-1:-1:-1;;;46088:26:0;;;;;;51083:352;;;;;;:::i;:::-;;:::i;46121:44::-;;;;;;;;;;;;46164:1;46121:44;;;;;6598:4:1;6586:17;;;6568:36;;6556:2;6541:18;46121:44:0;6426:184:1;33991:328:0;;;;;;;;;;-1:-1:-1;33991:328:0;;;;;:::i;:::-;;:::i;47511:84::-;;;;;;;;;;;;;:::i;47648:96::-;;;;;;;;;;;;;:::i;48472:366::-;;;;;;;;;;-1:-1:-1;48472:366:0;;;;;:::i;:::-;;:::i;49621:195::-;;;;;;;;;;-1:-1:-1;49621:195:0;;;;;:::i;:::-;;:::i;46434:49::-;;;;;;;;;;;;;;;;33094:164;;;;;;;;;;-1:-1:-1;33094:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33215:25:0;;;33191:4;33215:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33094:164;47780:78;;;;;;;;;;;;;:::i;46172:25::-;;;;;;;;;;-1:-1:-1;46172:25:0;;;;-1:-1:-1;;;46172:25:0;;;;;;45156:201;;;;;;;;;;-1:-1:-1;45156:201:0;;;;;:::i;:::-;;:::i;46318:40::-;;;;;;;;;;-1:-1:-1;46318:40:0;;;;-1:-1:-1;;;;;46318:40:0;;;52233:164;52322:4;52352:37;52376:12;52352:23;:37::i;:::-;52345:44;52233:164;-1:-1:-1;;52233:164:0:o;31016:100::-;31070:13;31103:5;31096:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31016:100;:::o;32575:221::-;32651:7;35918:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35918:16:0;32671:73;;;;-1:-1:-1;;;32671:73:0;;8196:2:1;32671:73:0;;;8178:21:1;8235:2;8215:18;;;8208:30;8274:34;8254:18;;;8247:62;-1:-1:-1;;;8325:18:1;;;8318:42;8377:19;;32671:73:0;;;;;;;;;-1:-1:-1;32764:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32764:24:0;;32575:221::o;32098:411::-;32179:13;32195:23;32210:7;32195:14;:23::i;:::-;32179:39;;32243:5;-1:-1:-1;;;;;32237:11:0;:2;-1:-1:-1;;;;;32237:11:0;;32229:57;;;;-1:-1:-1;;;32229:57:0;;8609:2:1;32229:57:0;;;8591:21:1;8648:2;8628:18;;;8621:30;8687:34;8667:18;;;8660:62;8758:3;8738:18;;;8731:31;8779:19;;32229:57:0;8407:397:1;32229:57:0;28530:10;-1:-1:-1;;;;;32321:21:0;;;;:62;;-1:-1:-1;32346:37:0;32363:5;28530:10;33094:164;:::i;32346:37::-;32299:168;;;;-1:-1:-1;;;32299:168:0;;9011:2:1;32299:168:0;;;8993:21:1;9050:2;9030:18;;;9023:30;9089:34;9069:18;;;9062:62;9160:26;9140:18;;;9133:54;9204:19;;32299:168:0;8809:420:1;32299:168:0;32480:21;32489:2;32493:7;32480:8;:21::i;:::-;32168:341;32098:411;;:::o;49115:213::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;49206:9:::1;49201:120;49225:10;:17;49221:1;:21;49201:120;;;46164:1;49264:45;;:9;:24;49274:10;49285:1;49274:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49264:24:0::1;-1:-1:-1::0;;;;;49264:24:0::1;;;;;;;;;;;;:45;;;;49244:3;;;;;:::i;:::-;;;;49201:120;;;;49115:213:::0;:::o;51716:427::-;46989:15;;-1:-1:-1;;;46989:15:0;;;;:23;;47008:4;46989:23;46981:71;;;;-1:-1:-1;;;46981:71:0;;10315:2:1;46981:71:0;;;10297:21:1;10354:2;10334:18;;;10327:30;10393:34;10373:18;;;10366:62;10464:5;10444:18;;;10437:33;10487:19;;46981:71:0;10113:399:1;46981:71:0;51821:13:::1;::::0;51856:9:::1;::::0;51821:31:::1;::::0;::::1;::::0;::::1;:17;:31::i;:::-;:44;51813:88;;;::::0;-1:-1:-1;;;51813:88:0;;10719:2:1;51813:88:0::1;::::0;::::1;10701:21:1::0;10758:2;10738:18;;;10731:30;10797:33;10777:18;;;10770:61;10848:18;;51813:88:0::1;10517:355:1::0;51813:88:0::1;51936:8;::::0;-1:-1:-1;;;51936:8:0;::::1;;;51920:24;::::0;::::1;;;51912:64;;;::::0;-1:-1:-1;;;51912:64:0;;11079:2:1;51912:64:0::1;::::0;::::1;11061:21:1::0;11118:2;11098:18;;;11091:30;11157:29;11137:18;;;11130:57;11204:18;;51912:64:0::1;10877:351:1::0;51912:64:0::1;52025:17;::::0;::::1;-1:-1:-1::0;;;52025:17:0;::::1;::::0;::::1;::::0;51995:26:::1;::::0;-1:-1:-1;;;52010:11:0;;::::1;;51995:12:::0;:26:::1;:::i;:::-;:47;;;;51987:103;;;::::0;-1:-1:-1;;;51987:103:0;;11664:2:1;51987:103:0::1;::::0;::::1;11646:21:1::0;11703:2;11683:18;;;11676:30;11742:34;11722:18;;;11715:62;11813:13;11793:18;;;11786:41;11844:19;;51987:103:0::1;11462:407:1::0;51987:103:0::1;52101:34;52110:10;52122:12;52101:8;:34::i;:::-;51716:427:::0;:::o;33325:339::-;33520:41;28530:10;33553:7;33520:18;:41::i;:::-;33512:103;;;;-1:-1:-1;;;33512:103:0;;12076:2:1;33512:103:0;;;12058:21:1;12115:2;12095:18;;;12088:30;12154:34;12134:18;;;12127:62;12225:19;12205:18;;;12198:47;12262:19;;33512:103:0;11874:413:1;33512:103:0;33628:28;33638:4;33644:2;33648:7;33628:9;:28::i;48902:153::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;49015:12:::1;::::0;48999:48:::1;::::0;48967:21:::1;::::0;-1:-1:-1;;;;;49015:12:0::1;::::0;48999:48;::::1;;;::::0;48967:21;;48952:12:::1;48999:48:::0;48952:12;48999:48;48967:21;49015:12;48999:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;33735:185:::0;33873:39;33890:4;33896:2;33900:7;33873:39;;;;;;;;;;;;:16;:39::i;48116:100::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;48190:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;50690:294::-:0;46812:8;;-1:-1:-1;;;46812:8:0;;;;:16;;46824:4;46812:16;46804:61;;;;-1:-1:-1;;;46804:61:0;;12494:2:1;46804:61:0;;;12476:21:1;;;12513:18;;;12506:30;12572:34;12552:18;;;12545:62;12624:18;;46804:61:0;12292:356:1;46804:61:0;47377:10:::1;47391:1;47370:18:::0;;;:6:::1;:18;::::0;;;;;47362:54:::1;;;::::0;-1:-1:-1;;;47362:54:0;;12855:2:1;47362:54:0::1;::::0;::::1;12837:21:1::0;12894:2;12874:18;;;12867:30;12933:21;12913:18;;;12906:49;12972:18;;47362:54:0::1;12653:343:1::0;47362:54:0::1;50782:13:::2;::::0;50817:9:::2;::::0;50782:31:::2;::::0;::::2;::::0;::::2;:17;:31::i;:::-;:44;50774:83;;;::::0;-1:-1:-1;;;50774:83:0;;13203:2:1;50774:83:0::2;::::0;::::2;13185:21:1::0;13242:2;13222:18;;;13215:30;13281:28;13261:18;;;13254:56;13327:18;;50774:83:0::2;13001:350:1::0;50774:83:0::2;50892:8;::::0;-1:-1:-1;;;50892:8:0;::::2;;;50876:24;::::0;::::2;;;50868:63;;;::::0;-1:-1:-1;;;50868:63:0;;11079:2:1;50868:63:0::2;::::0;::::2;11061:21:1::0;11118:2;11098:18;;;11091:30;11157:29;11137:18;;;11130:57;11204:18;;50868:63:0::2;10877:351:1::0;30710:239:0;30782:7;30818:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30818:16:0;;30845:73;;;;-1:-1:-1;;;30845:73:0;;13558:2:1;30845:73:0;;;13540:21:1;13597:2;13577:18;;;13570:30;13636:34;13616:18;;;13609:62;13707:11;13687:18;;;13680:39;13736:19;;30845:73:0;13356:405:1;48283:112:0;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;48363:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;30440:208::-:0;30512:7;-1:-1:-1;;;;;30540:19:0;;30532:74;;;;-1:-1:-1;;;30532:74:0;;13968:2:1;30532:74:0;;;13950:21:1;14007:2;13987:18;;;13980:30;14046:34;14026:18;;;14019:62;14117:12;14097:18;;;14090:40;14147:19;;30532:74:0;13766:406:1;30532:74:0;-1:-1:-1;;;;;;30624:16:0;;;;;:9;:16;;;;;;;30440:208::o;44898:103::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;44963:30:::1;44990:1;44963:18;:30::i;:::-;44898:103::o:0;49381:184::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;49465:9:::1;49460:98;49483:10;:17;49480:1;:20;49460:98;;;49545:1;49521:6;:21;49528:10;49539:1;49528:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49521:21:0::1;-1:-1:-1::0;;;;;49521:21:0::1;;;;;;;;;;;;:25;;;;49502:3;;;;;:::i;:::-;;;;49460:98;;51508:129:::0;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;51602:27:::1;51611:3;51616:12;51602:8;:27::i;47937:110::-:0;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;48009:17:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;48009:30:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;47937:110::o;31185:104::-;31241:13;31274:7;31267:14;;;;;:::i;32868:155::-;32963:52;28530:10;32996:8;33006;32963:18;:52::i;50316:294::-;46812:8;;-1:-1:-1;;;46812:8:0;;;;:16;;46824:4;46812:16;46804:61;;;;-1:-1:-1;;;46804:61:0;;12494:2:1;46804:61:0;;;12476:21:1;;;12513:18;;;12506:30;12572:34;12552:18;;;12545:62;12624:18;;46804:61:0;12292:356:1;46804:61:0;50404:9:::1;::::0;50435::::1;::::0;50404:27:::1;::::0;::::1;::::0;::::1;:13;:27::i;:::-;:40;50396:84;;;::::0;-1:-1:-1;;;50396:84:0;;10719:2:1;50396:84:0::1;::::0;::::1;10701:21:1::0;10758:2;10738:18;;;10731:30;10797:33;10777:18;;;10770:61;10848:18;;50396:84:0::1;10517:355:1::0;51083:352:0;47190:10;47204:1;47180:21;;;:9;:21;;;;;;47172:86;;;;-1:-1:-1;;;47172:86:0;;14379:2:1;47172:86:0;;;14361:21:1;14418:2;14398:18;;;14391:30;14457:34;14437:18;;;14430:62;14528:18;14508;;;14501:46;14564:19;;47172:86:0;14177:412:1;47172:86:0;51178:9:::1;::::0;51209::::1;::::0;51178:27:::1;::::0;::::1;::::0;::::1;:13;:27::i;:::-;:40;51170:84;;;::::0;-1:-1:-1;;;51170:84:0;;10719:2:1;51170:84:0::1;::::0;::::1;10701:21:1::0;10758:2;10738:18;;;10731:30;10797:33;10777:18;;;10770:61;10848:18;;51170:84:0::1;10517:355:1::0;51170:84:0::1;51283:10;51273:21;::::0;;;:9:::1;:21;::::0;;;;;:37:::1;::::0;::::1;-1:-1:-1::0;51273:37:0::1;51265:69;;;::::0;-1:-1:-1;;;51265:69:0;;14796:2:1;51265:69:0::1;::::0;::::1;14778:21:1::0;14835:2;14815:18;;;14808:30;14874:22;14854:18;;;14847:50;14914:18;;51265:69:0::1;14594:344:1::0;51265:69:0::1;51355:10;51345:21;::::0;;;:9:::1;:21;::::0;;;;:37;;::::1;::::0;::::1;::::0;:21;:37:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;51393:34:0::1;::::0;-1:-1:-1;51402:10:0::1;51414:12:::0;51393:8:::1;:34::i;33991:328::-:0;34166:41;28530:10;34199:7;34166:18;:41::i;:::-;34158:103;;;;-1:-1:-1;;;34158:103:0;;12076:2:1;34158:103:0;;;12058:21:1;12115:2;12095:18;;;12088:30;12154:34;12134:18;;;12127:62;12225:19;12205:18;;;12198:47;12262:19;;34158:103:0;11874:413:1;34158:103:0;34272:39;34286:4;34292:2;34296:7;34305:5;34272:13;:39::i;:::-;33991:328;;;;:::o;47511:84::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;47579:8:::1;::::0;;47567:20;;::::1;-1:-1:-1::0;;;47579:8:0;;;::::1;;;47578:9;47567:20:::0;;::::1;;::::0;;47511:84::o;47648:96::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;47721:15:::1;::::0;;47702:34;;::::1;-1:-1:-1::0;;;47721:15:0;;;::::1;;;47720:16;47702:34:::0;;::::1;;::::0;;47648:96::o;48472:366::-;35894:4;35918:16;;;:7;:16;;;;;;48538:13;;-1:-1:-1;;;;;35918:16:0;48564:77;;;;-1:-1:-1;;;48564:77:0;;15275:2:1;48564:77:0;;;15257:21:1;15314:2;15294:18;;;15287:30;15353:34;15333:18;;;15326:62;15424:17;15404:18;;;15397:45;15459:19;;48564:77:0;15073:411:1;48564:77:0;48659:6;;-1:-1:-1;;;48659:6:0;;;;48654:177;;48713:10;48696:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48682:43;;48472:366;;;:::o;48654:177::-;48789:7;48798:19;:8;:17;:19::i;:::-;48772:46;;;;;;;;;:::i;48654:177::-;48472:366;;;:::o;49621:195::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;49708:9:::1;49703:98;49726:10;:17;49723:1;:20;49703:98;;;49788:1;49764:6;:21;49771:10;49782:1;49771:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49764:21:0::1;-1:-1:-1::0;;;;;49764:21:0::1;;;;;;;;;;;;:25;;;;49745:3;;;;;:::i;:::-;;;;49703:98;;47780:78:::0;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;47844:6:::1;::::0;;47834:16;;::::1;-1:-1:-1::0;;;47844:6:0;;;::::1;;;47843:7;47834:16:::0;;::::1;;::::0;;47780:78::o;45156:201::-;44320:6;;-1:-1:-1;;;;;44320:6:0;28530:10;44467:23;44459:68;;;;-1:-1:-1;;;44459:68:0;;9436:2:1;44459:68:0;;;9418:21:1;;;9455:18;;;9448:30;-1:-1:-1;;;;;;;;;;;9494:18:1;;;9487:62;9566:18;;44459:68:0;9234:356:1;44459:68:0;-1:-1:-1;;;;;45245:22:0;::::1;45237:73;;;::::0;-1:-1:-1;;;45237:73:0;;17435:2:1;45237:73:0::1;::::0;::::1;17417:21:1::0;17474:2;17454:18;;;17447:30;17513:34;17493:18;;;17486:62;17584:8;17564:18;;;17557:36;17610:19;;45237:73:0::1;17233:402:1::0;45237:73:0::1;45321:28;45340:8;45321:18;:28::i;30071:305::-:0;30173:4;-1:-1:-1;;;;;;30210:40:0;;30225:25;30210:40;;:105;;-1:-1:-1;;;;;;;30267:48:0;;30282:33;30267:48;30210:105;:158;;;-1:-1:-1;22056:25:0;-1:-1:-1;;;;;;22041:40:0;;;30332:36;21932:157;39975:174;40050:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;40050:29:0;-1:-1:-1;;;;;40050:29:0;;;;;;;;:24;;40104:23;40050:24;40104:14;:23::i;:::-;-1:-1:-1;;;;;40095:46:0;;;;;;;;;;;39975:174;;:::o;3600:98::-;3658:7;3685:5;3689:1;3685;:5;:::i;:::-;3678:12;3600:98;-1:-1:-1;;;3600:98:0:o;49899:316::-;50008:7;;;-1:-1:-1;;;50008:7:0;;;;;49978:26;;49992:12;;-1:-1:-1;;;49978:11:0;;;:26;:::i;:::-;:37;;;;49970:93;;;;-1:-1:-1;;;49970:93:0;;18015:2:1;49970:93:0;;;17997:21:1;18054:2;18034:18;;;18027:30;18093:34;18073:18;;;18066:62;18164:14;18144:18;;;18137:42;18196:19;;49970:93:0;17813:408:1;49970:93:0;50078:6;50074:96;50094:12;50090:16;;:1;:16;50074:96;;;50142:11;;50127:31;;50137:3;;50142:15;;50156:1;;-1:-1:-1;;;50142:11:0;;;;:15;:::i;:::-;50127:9;:31::i;:::-;50108:3;;;;:::i;:::-;;;;50074:96;;;;50195:12;50180:11;;:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;49899:316;;:::o;36123:348::-;36216:4;35918:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35918:16:0;36233:73;;;;-1:-1:-1;;;36233:73:0;;18561:2:1;36233:73:0;;;18543:21:1;18600:2;18580:18;;;18573:30;18639:34;18619:18;;;18612:62;-1:-1:-1;;;18690:18:1;;;18683:42;18742:19;;36233:73:0;18359:408:1;36233:73:0;36317:13;36333:23;36348:7;36333:14;:23::i;:::-;36317:39;;36386:5;-1:-1:-1;;;;;36375:16:0;:7;-1:-1:-1;;;;;36375:16:0;;:51;;;;36419:7;-1:-1:-1;;;;;36395:31:0;:20;36407:7;36395:11;:20::i;:::-;-1:-1:-1;;;;;36395:31:0;;36375:51;:87;;;-1:-1:-1;;;;;;33215:25:0;;;33191:4;33215:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36430:32;36367:96;36123:348;-1:-1:-1;;;;36123:348:0:o;39232:625::-;39391:4;-1:-1:-1;;;;;39364:31:0;:23;39379:7;39364:14;:23::i;:::-;-1:-1:-1;;;;;39364:31:0;;39356:81;;;;-1:-1:-1;;;39356:81:0;;18974:2:1;39356:81:0;;;18956:21:1;19013:2;18993:18;;;18986:30;19052:34;19032:18;;;19025:62;19123:7;19103:18;;;19096:35;19148:19;;39356:81:0;18772:401:1;39356:81:0;-1:-1:-1;;;;;39456:16:0;;39448:65;;;;-1:-1:-1;;;39448:65:0;;19380:2:1;39448:65:0;;;19362:21:1;19419:2;19399:18;;;19392:30;19458:34;19438:18;;;19431:62;19529:6;19509:18;;;19502:34;19553:19;;39448:65:0;19178:400:1;39448:65:0;39630:29;39647:1;39651:7;39630:8;:29::i;:::-;-1:-1:-1;;;;;39672:15:0;;;;;;:9;:15;;;;;:20;;39691:1;;39672:15;:20;;39691:1;;39672:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39703:13:0;;;;;;:9;:13;;;;;:18;;39720:1;;39703:13;:18;;39720:1;;39703:18;:::i;:::-;;;;-1:-1:-1;;39732:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;39732:21:0;-1:-1:-1;;;;;39732:21:0;;;;;;;;;39771:27;;39732:16;;39771:27;;;;;;;32168:341;32098:411;;:::o;45517:191::-;45610:6;;;-1:-1:-1;;;;;45627:17:0;;;-1:-1:-1;;45627:17:0;;;;;;;45660:40;;45610:6;;;45627:17;45610:6;;45660:40;;45591:16;;45660:40;45580:128;45517:191;:::o;40291:315::-;40446:8;-1:-1:-1;;;;;40437:17:0;:5;-1:-1:-1;;;;;40437:17:0;;40429:55;;;;-1:-1:-1;;;40429:55:0;;19785:2:1;40429:55:0;;;19767:21:1;19824:2;19804:18;;;19797:30;19863:27;19843:18;;;19836:55;19908:18;;40429:55:0;19583:349:1;40429:55:0;-1:-1:-1;;;;;40495:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;40495:46:0;;;;;;;;;;40557:41;;586::1;;;40557::0;;559:18:1;40557:41:0;;;;;;;40291:315;;;:::o;35201:::-;35358:28;35368:4;35374:2;35378:7;35358:9;:28::i;:::-;35405:48;35428:4;35434:2;35438:7;35447:5;35405:22;:48::i;:::-;35397:111;;;;-1:-1:-1;;;35397:111:0;;20139:2:1;35397:111:0;;;20121:21:1;20178:2;20158:18;;;20151:30;20217:34;20197:18;;;20190:62;-1:-1:-1;;;20268:18:1;;;20261:48;20326:19;;35397:111:0;19937:414:1;8857:723:0;8913:13;9134:5;9143:1;9134:10;9130:53;;-1:-1:-1;;9161:10:0;;;;;;;;;;;;;;;;;;8857:723::o;9130:53::-;9208:5;9193:12;9249:78;9256:9;;9249:78;;9282:8;;;;:::i;:::-;;-1:-1:-1;9305:10:0;;-1:-1:-1;9313:2:0;9305:10;;:::i;:::-;;;9249:78;;;9337:19;9369:6;9359:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9359:17:0;;9337:39;;9387:154;9394:10;;9387:154;;9421:11;9431:1;9421:11;;:::i;:::-;;-1:-1:-1;9490:10:0;9498:2;9490:5;:10;:::i;:::-;9477:24;;:2;:24;:::i;:::-;9464:39;;9447:6;9454;9447:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9518:11:0;9527:2;9518:11;;:::i;:::-;;;9387:154;;36813:110;36889:26;36899:2;36903:7;36889:26;;;;;;;;;;;;:9;:26::i;41171:799::-;41326:4;-1:-1:-1;;;;;41347:13:0;;12144:19;:23;41343:620;;41383:72;;-1:-1:-1;;;41383:72:0;;-1:-1:-1;;;;;41383:36:0;;;;;:72;;28530:10;;41434:4;;41440:7;;41449:5;;41383:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41383:72:0;;;;;;;;-1:-1:-1;;41383:72:0;;;;;;;;;;;;:::i;:::-;;;41379:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41625:6;:13;41642:1;41625:18;41621:272;;41668:60;;-1:-1:-1;;;41668:60:0;;20139:2:1;41668:60:0;;;20121:21:1;20178:2;20158:18;;;20151:30;20217:34;20197:18;;;20190:62;-1:-1:-1;;;20268:18:1;;;20261:48;20326:19;;41668:60:0;19937:414:1;41621:272:0;41843:6;41837:13;41828:6;41824:2;41820:15;41813:38;41379:529;-1:-1:-1;;;;;;41506:51:0;-1:-1:-1;;;41506:51:0;;-1:-1:-1;41499:58:0;;41343:620;-1:-1:-1;41947:4:0;41171:799;;;;;;:::o;37150:321::-;37280:18;37286:2;37290:7;37280:5;:18::i;:::-;37331:54;37362:1;37366:2;37370:7;37379:5;37331:22;:54::i;:::-;37309:154;;;;-1:-1:-1;;;37309:154:0;;20139:2:1;37309:154:0;;;20121:21:1;20178:2;20158:18;;;20151:30;20217:34;20197:18;;;20190:62;-1:-1:-1;;;20268:18:1;;;20261:48;20326:19;;37309:154:0;19937:414:1;37807:439:0;-1:-1:-1;;;;;37887:16:0;;37879:61;;;;-1:-1:-1;;;37879:61:0;;21760:2:1;37879:61:0;;;21742:21:1;;;21779:18;;;21772:30;21838:34;21818:18;;;21811:62;21890:18;;37879:61:0;21558:356:1;37879:61:0;35894:4;35918:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35918:16:0;:30;37951:58;;;;-1:-1:-1;;;37951:58:0;;22121:2:1;37951:58:0;;;22103:21:1;22160:2;22140:18;;;22133:30;22199;22179:18;;;22172:58;22247:18;;37951:58:0;21919:352:1;37951:58:0;-1:-1:-1;;;;;38080:13:0;;;;;;:9;:13;;;;;:18;;38097:1;;38080:13;:18;;38097:1;;38080:18;:::i;:::-;;;;-1:-1:-1;;38109:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;38109:21:0;-1:-1:-1;;;;;38109:21:0;;;;;;;;38148:33;;38109:16;;;38148:33;;38109:16;;38148:33;49201:120:::1;49115:213:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;2006:254;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2458:184::-;-1:-1:-1;;;2507:1:1;2500:88;2607:4;2604:1;2597:15;2631:4;2628:1;2621:15;2647:275;2718:2;2712:9;2783:2;2764:13;;-1:-1:-1;;2760:27:1;2748:40;;2818:18;2803:34;;2839:22;;;2800:62;2797:88;;;2865:18;;:::i;:::-;2901:2;2894:22;2647:275;;-1:-1:-1;2647:275:1:o;2927:952::-;3011:6;3042:2;3085;3073:9;3064:7;3060:23;3056:32;3053:52;;;3101:1;3098;3091:12;3053:52;3141:9;3128:23;3170:18;3211:2;3203:6;3200:14;3197:34;;;3227:1;3224;3217:12;3197:34;3265:6;3254:9;3250:22;3240:32;;3310:7;3303:4;3299:2;3295:13;3291:27;3281:55;;3332:1;3329;3322:12;3281:55;3368:2;3355:16;3390:2;3386;3383:10;3380:36;;;3396:18;;:::i;:::-;3442:2;3439:1;3435:10;3425:20;;3465:28;3489:2;3485;3481:11;3465:28;:::i;:::-;3527:15;;;3597:11;;;3593:20;;;3558:12;;;;3625:19;;;3622:39;;;3657:1;3654;3647:12;3622:39;3681:11;;;;3701:148;3717:6;3712:3;3709:15;3701:148;;;3783:23;3802:3;3783:23;:::i;:::-;3771:36;;3734:12;;;;3827;;;;3701:148;;;3868:5;2927:952;-1:-1:-1;;;;;;;;2927:952:1:o;3884:159::-;3951:20;;4011:6;4000:18;;3990:29;;3980:57;;4033:1;4030;4023:12;4048:184;4106:6;4159:2;4147:9;4138:7;4134:23;4130:32;4127:52;;;4175:1;4172;4165:12;4127:52;4198:28;4216:9;4198:28;:::i;4237:328::-;4314:6;4322;4330;4383:2;4371:9;4362:7;4358:23;4354:32;4351:52;;;4399:1;4396;4389:12;4351:52;4422:29;4441:9;4422:29;:::i;:::-;4412:39;;4470:38;4504:2;4493:9;4489:18;4470:38;:::i;:::-;4460:48;;4555:2;4544:9;4540:18;4527:32;4517:42;;4237:328;;;;;:::o;4570:186::-;4629:6;4682:2;4670:9;4661:7;4657:23;4653:32;4650:52;;;4698:1;4695;4688:12;4650:52;4721:29;4740:9;4721:29;:::i;4943:407::-;5008:5;5042:18;5034:6;5031:30;5028:56;;;5064:18;;:::i;:::-;5102:57;5147:2;5126:15;;-1:-1:-1;;5122:29:1;5153:4;5118:40;5102:57;:::i;:::-;5093:66;;5182:6;5175:5;5168:21;5222:3;5213:6;5208:3;5204:16;5201:25;5198:45;;;5239:1;5236;5229:12;5198:45;5288:6;5283:3;5276:4;5269:5;5265:16;5252:43;5342:1;5335:4;5326:6;5319:5;5315:18;5311:29;5304:40;4943:407;;;;;:::o;5355:451::-;5424:6;5477:2;5465:9;5456:7;5452:23;5448:32;5445:52;;;5493:1;5490;5483:12;5445:52;5533:9;5520:23;5566:18;5558:6;5555:30;5552:50;;;5598:1;5595;5588:12;5552:50;5621:22;;5674:4;5666:13;;5662:27;-1:-1:-1;5652:55:1;;5703:1;5700;5693:12;5652:55;5726:74;5792:7;5787:2;5774:16;5769:2;5765;5761:11;5726:74;:::i;5811:258::-;5878:6;5886;5939:2;5927:9;5918:7;5914:23;5910:32;5907:52;;;5955:1;5952;5945:12;5907:52;5978:29;5997:9;5978:29;:::i;:::-;5968:39;;6026:37;6059:2;6048:9;6044:18;6026:37;:::i;:::-;6016:47;;5811:258;;;;;:::o;6074:347::-;6139:6;6147;6200:2;6188:9;6179:7;6175:23;6171:32;6168:52;;;6216:1;6213;6206:12;6168:52;6239:29;6258:9;6239:29;:::i;:::-;6229:39;;6318:2;6307:9;6303:18;6290:32;6365:5;6358:13;6351:21;6344:5;6341:32;6331:60;;6387:1;6384;6377:12;6331:60;6410:5;6400:15;;;6074:347;;;;;:::o;6615:667::-;6710:6;6718;6726;6734;6787:3;6775:9;6766:7;6762:23;6758:33;6755:53;;;6804:1;6801;6794:12;6755:53;6827:29;6846:9;6827:29;:::i;:::-;6817:39;;6875:38;6909:2;6898:9;6894:18;6875:38;:::i;:::-;6865:48;;6960:2;6949:9;6945:18;6932:32;6922:42;;7015:2;7004:9;7000:18;6987:32;7042:18;7034:6;7031:30;7028:50;;;7074:1;7071;7064:12;7028:50;7097:22;;7150:4;7142:13;;7138:27;-1:-1:-1;7128:55:1;;7179:1;7176;7169:12;7128:55;7202:74;7268:7;7263:2;7250:16;7245:2;7241;7237:11;7202:74;:::i;:::-;7192:84;;;6615:667;;;;;;;:::o;7287:260::-;7355:6;7363;7416:2;7404:9;7395:7;7391:23;7387:32;7384:52;;;7432:1;7429;7422:12;7384:52;7455:29;7474:9;7455:29;:::i;:::-;7445:39;;7503:38;7537:2;7526:9;7522:18;7503:38;:::i;7552:437::-;7631:1;7627:12;;;;7674;;;7695:61;;7749:4;7741:6;7737:17;7727:27;;7695:61;7802:2;7794:6;7791:14;7771:18;7768:38;7765:218;;-1:-1:-1;;;7836:1:1;7829:88;7940:4;7937:1;7930:15;7968:4;7965:1;7958:15;7765:218;;7552:437;;;:::o;9595:184::-;-1:-1:-1;;;9644:1:1;9637:88;9744:4;9741:1;9734:15;9768:4;9765:1;9758:15;9784:184;-1:-1:-1;;;9833:1:1;9826:88;9933:4;9930:1;9923:15;9957:4;9954:1;9947:15;9973:135;10012:3;10033:17;;;10030:43;;10053:18;;:::i;:::-;-1:-1:-1;10100:1:1;10089:13;;9973:135::o;11233:224::-;11272:3;11300:6;11333:2;11330:1;11326:10;11363:2;11360:1;11356:10;11394:3;11390:2;11386:12;11381:3;11378:21;11375:47;;;11402:18;;:::i;:::-;11438:13;;11233:224;-1:-1:-1;;;;11233:224:1:o;14943:125::-;14983:4;15011:1;15008;15005:8;15002:34;;;15016:18;;:::i;:::-;-1:-1:-1;15053:9:1;;14943:125::o;15615:1030::-;15700:12;;15665:3;;15755:1;15775:18;;;;15828;;;;15855:61;;15909:4;15901:6;15897:17;15887:27;;15855:61;15935:2;15983;15975:6;15972:14;15952:18;15949:38;15946:218;;-1:-1:-1;;;16017:1:1;16010:88;16121:4;16118:1;16111:15;16149:4;16146:1;16139:15;15946:218;16180:18;16207:104;;;;16325:1;16320:319;;;;16173:466;;16207:104;-1:-1:-1;;16240:24:1;;16228:37;;16285:16;;;;-1:-1:-1;16207:104:1;;16320:319;15562:1;15555:14;;;15599:4;15586:18;;16414:1;16428:165;16442:6;16439:1;16436:13;16428:165;;;16520:14;;16507:11;;;16500:35;16563:16;;;;16457:10;;16428:165;;;16432:3;;16622:6;16617:3;16613:16;16606:23;;16173:466;;;;;;;15615:1030;;;;:::o;16650:197::-;16778:3;16803:38;16837:3;16829:6;16803:38;:::i;16852:376::-;17028:3;17056:38;17090:3;17082:6;17056:38;:::i;:::-;17123:6;17117:13;17139:52;17184:6;17180:2;17173:4;17165:6;17161:17;17139:52;:::i;17640:168::-;17680:7;17746:1;17742;17738:6;17734:14;17731:1;17728:21;17723:1;17716:9;17709:17;17705:45;17702:71;;;17753:18;;:::i;:::-;-1:-1:-1;17793:9:1;;17640:168::o;18226:128::-;18266:3;18297:1;18293:6;18290:1;18287:13;18284:39;;;18303:18;;:::i;:::-;-1:-1:-1;18339:9:1;;18226:128::o;20356:184::-;-1:-1:-1;;;20405:1:1;20398:88;20505:4;20502:1;20495:15;20529:4;20526:1;20519:15;20545:120;20585:1;20611;20601:35;;20616:18;;:::i;:::-;-1:-1:-1;20650:9:1;;20545:120::o;20670:112::-;20702:1;20728;20718:35;;20733:18;;:::i;:::-;-1:-1:-1;20767:9:1;;20670:112::o;20787:512::-;20981:4;-1:-1:-1;;;;;21091:2:1;21083:6;21079:15;21068:9;21061:34;21143:2;21135:6;21131:15;21126:2;21115:9;21111:18;21104:43;;21183:6;21178:2;21167:9;21163:18;21156:34;21226:3;21221:2;21210:9;21206:18;21199:31;21247:46;21288:3;21277:9;21273:19;21265:6;21247:46;:::i;:::-;21239:54;20787:512;-1:-1:-1;;;;;;20787:512:1:o;21304:249::-;21373:6;21426:2;21414:9;21405:7;21401:23;21397:32;21394:52;;;21442:1;21439;21432:12;21394:52;21474:9;21468:16;21493:30;21517:5;21493:30;:::i

Swarm Source

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