ETH Price: $2,612.54 (+0.73%)

Token

Mfer Kids (MFER)
 

Overview

Max Total Supply

2,321 MFER

Holders

293

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
weber3.eth
Balance
2 MFER
0xbb771c5a3dcb9633a3bbfb850a66c51a7ad88442
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:
MferNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

contract MferNFT is ERC721, Ownable {
    uint16 public mintCount = 0;
    uint16 supply = totalSupply();

    uint256 public MAX_SUPPLY = 8888;
    uint256 public OWNER_RESERVED = 150;
    uint256 public MAX_ALLOWED = 20;
    uint256 public price = 15000000000000000; //0.015 Ether
    string baseTokenURI;
    
    bool public saleOpen = true;
    
    event NFTMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Mfer Kids", "MFER") {
        setBaseURI(baseURI);
    }

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

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setMaxAllowd(uint256 _maxAllowed) public onlyOwner {
        MAX_ALLOWED = _maxAllowed;
    }

    function setMaxSupply(uint256 _max_supply) public onlyOwner {
        MAX_SUPPLY = _max_supply;
    }
    
    function setMintCount(uint16 _mintCount) public onlyOwner {
        mintCount = _mintCount;
    }

    function setOwnerReserved(uint16 _OwnerReserved) public onlyOwner {
        OWNER_RESERVED = _OwnerReserved;
    }
    
    function totalSupply() public view returns (uint16) {
        return mintCount;
    }

    function burnUnsold() external onlyOwner {
        MAX_SUPPLY = totalSupply();
    }

    function getPrice() external view returns(uint256){
        return price;
    }
    
    //Close sale
    function pauseSale() public onlyOwner {
        saleOpen = false;
    }
    
    //Open sale
    function unpauseSale() public onlyOwner {
        saleOpen = true;
    }

    function withdrawAll() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    
    //mint NFT
    function mintNFT(uint16 _count) public payable {
        supply = totalSupply();

        if (msg.sender != owner()) {
            require((saleOpen == true), "Sale is not open please try again later");
        }
        
        require(
            _count > 0 && (balanceOf(msg.sender)+_count) <= MAX_ALLOWED,
           "You have reached the NFT minting limit per transaction"
        );
        
        require(balanceOf(msg.sender) < MAX_ALLOWED, "You have reached maximum NFT minting limit per account");
        
        if (msg.sender != owner()) {
            require(
                totalSupply() + _count <= (MAX_SUPPLY - OWNER_RESERVED),
                "All NFTs sold"
            );
        }
        
        require(
            msg.value >= price * _count,
            "Ether sent with this transaction is not correct"
        );

        mintCount += _count;

        for (uint256 i = 0; i < _count; i++) {
            _safeMint(_msgSender(), ++supply);
            emit NFTMinted(supply);
        }
    }
    
    function mintReserved(uint16 _count) external onlyOwner{
        require(OWNER_RESERVED > 0,"You have already minted all reserved");
        for (uint16 i = 0; i < _count; i++) {
            _safeMint(msg.sender, ++supply);
        }
        mintCount = mintCount + _count;
        OWNER_RESERVED--;
    }

    function airdrop(address[] calldata _recipients) external onlyOwner {
        supply = totalSupply();
        require(
            totalSupply() + _recipients.length <= MAX_SUPPLY,
            "Airdrop minting will exceed maximum supply"
        );
        require(_recipients.length != 0, "Address not found for minting");
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Minting to Null address");
            _safeMint(_recipients[i], ++supply);
        }
        mintCount = mintCount + uint16(_recipients.length);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"NFTMinted","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_ALLOWED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdrop","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":[],"name":"burnUnsold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowed","type":"uint256"}],"name":"setMaxAllowd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintCount","type":"uint16"}],"name":"setMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_OwnerReserved","type":"uint16"}],"name":"setOwnerReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805461ffff60a01b1916905562000027600654600160a01b900461ffff1690565b6006805461ffff92909216600160b01b0261ffff60b01b199092169190911790556122b86007556096600855601460095566354a6ba7a18000600a55600c805460ff191660011790553480156200007d57600080fd5b506040516200291138038062002911833981016040819052620000a091620002a6565b60408051808201825260098152684d666572204b69647360b81b60208083019182528351808501909452600484526326a322a960e11b908401528151919291620000ed9160009162000200565b5080516200010390600190602084019062000200565b505050620001206200011a6200013260201b60201c565b62000136565b6200012b8162000188565b50620003d5565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001fc90600b90602084019062000200565b5050565b8280546200020e9062000382565b90600052602060002090601f0160209004810192826200023257600085556200027d565b82601f106200024d57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027d57825182559160200191906001019062000260565b506200028b9291506200028f565b5090565b5b808211156200028b576000815560010162000290565b60006020808385031215620002ba57600080fd5b82516001600160401b0380821115620002d257600080fd5b818501915085601f830112620002e757600080fd5b815181811115620002fc57620002fc620003bf565b604051601f8201601f19908116603f01168101908382118183101715620003275762000327620003bf565b8160405282815288868487010111156200034057600080fd5b600093505b8284101562000364578484018601518185018701529285019262000345565b82841115620003765760008684830101525b98975050505050505050565b600181811c908216806200039757607f821691505b60208210811415620003b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61252c80620003e56000396000f3fe60806040526004361061021a5760003560e01c80638da5cb5b11610123578063a39e9a2f116100ab578063c87b56dd1161006f578063c87b56dd146105e5578063d258195f14610605578063dad6bb2c14610625578063e985e9c514610645578063f2fde38b1461068e57600080fd5b8063a39e9a2f14610568578063b52a58511461057b578063b88d4fde14610590578063bb33d729146105b0578063c045c873146105c557600080fd5b806398d5fdca116100f257806398d5fdca146104ed57806399288dbb146105025780639a6a62371461051c578063a035b1fe14610532578063a22cb4651461054857600080fd5b80638da5cb5b1461047857806391b7f5ed1461049657806395d89b41146104b65780639659867e146104cb57600080fd5b806355367ba9116101a65780636f8b44b0116101755780636f8b44b0146103ee57806370a082311461040e578063715018a61461042e578063729ad39e14610443578063853828b61461046357600080fd5b806355367ba91461037957806355f804b31461038e5780636352211e146103ae5780636cf39f84146103ce57600080fd5b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102ff57806332cb6b0c1461031f578063420db8cf1461034357806342842e0e1461035957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046120f7565b6106ae565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610700565b60405161024b919061224f565b34801561028257600080fd5b5061029661029136600461219e565b610792565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612058565b61082c565b005b3480156102dc57600080fd5b50600654600160a01b900461ffff165b60405161ffff909116815260200161024b565b34801561030b57600080fd5b506102ce61031a366004611f64565b610942565b34801561032b57600080fd5b5061033560075481565b60405190815260200161024b565b34801561034f57600080fd5b5061033560085481565b34801561036557600080fd5b506102ce610374366004611f64565b610973565b34801561038557600080fd5b506102ce61098e565b34801561039a57600080fd5b506102ce6103a9366004612131565b6109c4565b3480156103ba57600080fd5b506102966103c936600461219e565b610a05565b3480156103da57600080fd5b506102ce6103e936600461219e565b610a7c565b3480156103fa57600080fd5b506102ce61040936600461219e565b610aab565b34801561041a57600080fd5b50610335610429366004611f16565b610ada565b34801561043a57600080fd5b506102ce610b61565b34801561044f57600080fd5b506102ce61045e366004612082565b610b97565b34801561046f57600080fd5b506102ce610df4565b34801561048457600080fd5b506006546001600160a01b0316610296565b3480156104a257600080fd5b506102ce6104b136600461219e565b610eac565b3480156104c257600080fd5b50610269610edb565b3480156104d757600080fd5b506006546102ec90600160a01b900461ffff1681565b3480156104f957600080fd5b50600a54610335565b34801561050e57600080fd5b50600c5461023f9060ff1681565b34801561052857600080fd5b5061033560095481565b34801561053e57600080fd5b50610335600a5481565b34801561055457600080fd5b506102ce61056336600461201c565b610eea565b6102ce61057636600461217a565b610faf565b34801561058757600080fd5b506102ce6112f8565b34801561059c57600080fd5b506102ce6105ab366004611fa0565b611335565b3480156105bc57600080fd5b506102ce61136d565b3480156105d157600080fd5b506102ce6105e036600461217a565b6113a6565b3480156105f157600080fd5b5061026961060036600461219e565b6113d9565b34801561061157600080fd5b506102ce61062036600461217a565b6114b4565b34801561063157600080fd5b506102ce61064036600461217a565b6115d4565b34801561065157600080fd5b5061023f610660366004611f31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069a57600080fd5b506102ce6106a9366004611f16565b611620565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461070f906123fc565b80601f016020809104026020016040519081016040528092919081815260200182805461073b906123fc565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083782610a05565b9050806001600160a01b0316836001600160a01b031614156108a55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610807565b336001600160a01b03821614806108c157506108c18133610660565b6109335760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610807565b61093d83836116b8565b505050565b61094c3382611726565b6109685760405162461bcd60e51b8152600401610807906122e9565b61093d83838361181d565b61093d83838360405180602001604052806000815250611335565b6006546001600160a01b031633146109b85760405162461bcd60e51b8152600401610807906122b4565b600c805460ff19169055565b6006546001600160a01b031633146109ee5760405162461bcd60e51b8152600401610807906122b4565b8051610a0190600b906020840190611deb565b5050565b6000818152600260205260408120546001600160a01b0316806106fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610807565b6006546001600160a01b03163314610aa65760405162461bcd60e51b8152600401610807906122b4565b600955565b6006546001600160a01b03163314610ad55760405162461bcd60e51b8152600401610807906122b4565b600755565b60006001600160a01b038216610b455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610807565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b8b5760405162461bcd60e51b8152600401610807906122b4565b610b9560006119bd565b565b6006546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610807906122b4565b600654600160a01b900461ffff166006805461ffff60b01b1916600160b01b61ffff938416021790819055600754918391600160a01b90041661ffff16610c089190612357565b1115610c695760405162461bcd60e51b815260206004820152602a60248201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696044820152696d756d20737570706c7960b01b6064820152608401610807565b80610cb65760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e670000006044820152606401610807565b60005b81811015610dba576000838383818110610cd557610cd56124b4565b9050602002016020810190610cea9190611f16565b6001600160a01b03161415610d415760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e6720746f204e756c6c20616464726573730000000000000000006044820152606401610807565b610da8838383818110610d5657610d566124b4565b9050602002016020810190610d6b9190611f16565b60068054601690610d8690600160b01b900461ffff16612437565b91906101000a81548161ffff021916908361ffff160217905561ffff16611a0f565b80610db281612459565b915050610cb9565b50600654610dd4908290600160a01b900461ffff1661233a565b600660146101000a81548161ffff021916908361ffff1602179055505050565b6006546001600160a01b03163314610e1e5760405162461bcd60e51b8152600401610807906122b4565b604051600090339047908381818185875af1925050503d8060008114610e60576040519150601f19603f3d011682016040523d82523d6000602084013e610e65565b606091505b5050905080610ea95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610807565b50565b6006546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610807906122b4565b600a55565b60606001805461070f906123fc565b6001600160a01b038216331415610f435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610807565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60068054600160b01b61ffff600160a01b8304160261ffff60b01b19821681179092556001600160a01b03918216911617331461104d57600c5460ff16151560011461104d5760405162461bcd60e51b815260206004820152602760248201527f53616c65206973206e6f74206f70656e20706c6561736520747279206167616960448201526637103630ba32b960c91b6064820152608401610807565b60008161ffff1611801561107a57506009548161ffff1661106d33610ada565b6110779190612357565b11155b6110e55760405162461bcd60e51b815260206004820152603660248201527f596f752068617665207265616368656420746865204e4654206d696e74696e67604482015275103634b6b4ba103832b9103a3930b739b0b1ba34b7b760511b6064820152608401610807565b6009546110f133610ada565b1061115d5760405162461bcd60e51b815260206004820152603660248201527f596f7520686176652072656163686564206d6178696d756d204e4654206d696e6044820152751d1a5b99c81b1a5b5a5d081c195c881858d8dbdd5b9d60521b6064820152608401610807565b6006546001600160a01b031633146111db5760085460075461117f91906123a2565b6006548290600160a01b900461ffff16611199919061233a565b61ffff1611156111db5760405162461bcd60e51b815260206004820152600d60248201526c105b1b081391951cc81cdbdb19609a1b6044820152606401610807565b8061ffff16600a546111ed9190612383565b3410156112545760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b6064820152608401610807565b80600660148282829054906101000a900461ffff16611273919061233a565b92506101000a81548161ffff021916908361ffff16021790555060005b8161ffff16811015610a01576112a533610d6b565b600654604051600160b01b90910461ffff1681527fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf1598689060200160405180910390a1806112f081612459565b915050611290565b6006546001600160a01b031633146113225760405162461bcd60e51b8152600401610807906122b4565b600654600160a01b900461ffff16600755565b61133f3383611726565b61135b5760405162461bcd60e51b8152600401610807906122e9565b61136784848484611a29565b50505050565b6006546001600160a01b031633146113975760405162461bcd60e51b8152600401610807906122b4565b600c805460ff19166001179055565b6006546001600160a01b031633146113d05760405162461bcd60e51b8152600401610807906122b4565b61ffff16600855565b6000818152600260205260409020546060906001600160a01b03166114585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610807565b6000611462611a5c565b9050600081511161148257604051806020016040528060008152506114ad565b8061148c84611a6b565b60405160200161149d9291906121e3565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114de5760405162461bcd60e51b8152600401610807906122b4565b60006008541161153c5760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520616c7265616479206d696e74656420616c6c20726573656044820152631c9d995960e21b6064820152608401610807565b60005b8161ffff168161ffff1610156115815761156f336006601681819054906101000a900461ffff16610d8690612437565b8061157981612437565b91505061153f565b5060065461159b908290600160a01b900461ffff1661233a565b6006805461ffff92909216600160a01b0261ffff60a01b19909216919091179055600880549060006115cc836123e5565b919050555050565b6006546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610807906122b4565b6006805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6006546001600160a01b0316331461164a5760405162461bcd60e51b8152600401610807906122b4565b6001600160a01b0381166116af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b610ea9816119bd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116ed82610a05565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661179f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610807565b60006117aa83610a05565b9050806001600160a01b0316846001600160a01b031614806117e55750836001600160a01b03166117da84610792565b6001600160a01b0316145b8061181557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183082610a05565b6001600160a01b0316146118985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610807565b6001600160a01b0382166118fa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610807565b6119056000826116b8565b6001600160a01b038316600090815260036020526040812080546001929061192e9084906123a2565b90915550506001600160a01b038216600090815260036020526040812080546001929061195c908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a01828260405180602001604052806000815250611b69565b611a3484848461181d565b611a4084848484611b9c565b6113675760405162461bcd60e51b815260040161080790612262565b6060600b805461070f906123fc565b606081611a8f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ab95780611aa381612459565b9150611ab29050600a8361236f565b9150611a93565b60008167ffffffffffffffff811115611ad457611ad46124ca565b6040519080825280601f01601f191660200182016040528015611afe576020820181803683370190505b5090505b841561181557611b136001836123a2565b9150611b20600a86612474565b611b2b906030612357565b60f81b818381518110611b4057611b406124b4565b60200101906001600160f81b031916908160001a905350611b62600a8661236f565b9450611b02565b611b738383611ca9565b611b806000848484611b9c565b61093d5760405162461bcd60e51b815260040161080790612262565b60006001600160a01b0384163b15611c9e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611be0903390899088908890600401612212565b602060405180830381600087803b158015611bfa57600080fd5b505af1925050508015611c2a575060408051601f3d908101601f19168201909252611c2791810190612114565b60015b611c84573d808015611c58576040519150601f19603f3d011682016040523d82523d6000602084013e611c5d565b606091505b508051611c7c5760405162461bcd60e51b815260040161080790612262565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611815565b506001949350505050565b6001600160a01b038216611cff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610807565b6000818152600260205260409020546001600160a01b031615611d645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610807565b6001600160a01b0382166000908152600360205260408120805460019290611d8d908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611df7906123fc565b90600052602060002090601f016020900481019282611e195760008555611e5f565b82601f10611e3257805160ff1916838001178555611e5f565b82800160010185558215611e5f579182015b82811115611e5f578251825591602001919060010190611e44565b50611e6b929150611e6f565b5090565b5b80821115611e6b5760008155600101611e70565b600067ffffffffffffffff80841115611e9f57611e9f6124ca565b604051601f8501601f19908116603f01168101908282118183101715611ec757611ec76124ca565b81604052809350858152868686011115611ee057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f1157600080fd5b919050565b600060208284031215611f2857600080fd5b6114ad82611efa565b60008060408385031215611f4457600080fd5b611f4d83611efa565b9150611f5b60208401611efa565b90509250929050565b600080600060608486031215611f7957600080fd5b611f8284611efa565b9250611f9060208501611efa565b9150604084013590509250925092565b60008060008060808587031215611fb657600080fd5b611fbf85611efa565b9350611fcd60208601611efa565b925060408501359150606085013567ffffffffffffffff811115611ff057600080fd5b8501601f8101871361200157600080fd5b61201087823560208401611e84565b91505092959194509250565b6000806040838503121561202f57600080fd5b61203883611efa565b91506020830135801515811461204d57600080fd5b809150509250929050565b6000806040838503121561206b57600080fd5b61207483611efa565b946020939093013593505050565b6000806020838503121561209557600080fd5b823567ffffffffffffffff808211156120ad57600080fd5b818501915085601f8301126120c157600080fd5b8135818111156120d057600080fd5b8660208260051b85010111156120e557600080fd5b60209290920196919550909350505050565b60006020828403121561210957600080fd5b81356114ad816124e0565b60006020828403121561212657600080fd5b81516114ad816124e0565b60006020828403121561214357600080fd5b813567ffffffffffffffff81111561215a57600080fd5b8201601f8101841361216b57600080fd5b61181584823560208401611e84565b60006020828403121561218c57600080fd5b813561ffff811681146114ad57600080fd5b6000602082840312156121b057600080fd5b5035919050565b600081518084526121cf8160208601602086016123b9565b601f01601f19169290920160200192915050565b600083516121f58184602088016123b9565b8351908301906122098183602088016123b9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612245908301846121b7565b9695505050505050565b6020815260006114ad60208301846121b7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff80831681851680830382111561220957612209612488565b6000821982111561236a5761236a612488565b500190565b60008261237e5761237e61249e565b500490565b600081600019048311821515161561239d5761239d612488565b500290565b6000828210156123b4576123b4612488565b500390565b60005b838110156123d45781810151838201526020016123bc565b838111156113675750506000910152565b6000816123f4576123f4612488565b506000190190565b600181811c9082168061241057607f821691505b6020821081141561243157634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561244f5761244f612488565b6001019392505050565b600060001982141561246d5761246d612488565b5060010190565b6000826124835761248361249e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ea957600080fdfea264697066735822122014cf55d00e58eb28df94b83fb15458f41c0f16bc2a7490c820a28a53a3d7cbf664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d517557444864644b4a42485253573846616b46587355676e384c45694b79317955696d51544c3432555238562f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638da5cb5b11610123578063a39e9a2f116100ab578063c87b56dd1161006f578063c87b56dd146105e5578063d258195f14610605578063dad6bb2c14610625578063e985e9c514610645578063f2fde38b1461068e57600080fd5b8063a39e9a2f14610568578063b52a58511461057b578063b88d4fde14610590578063bb33d729146105b0578063c045c873146105c557600080fd5b806398d5fdca116100f257806398d5fdca146104ed57806399288dbb146105025780639a6a62371461051c578063a035b1fe14610532578063a22cb4651461054857600080fd5b80638da5cb5b1461047857806391b7f5ed1461049657806395d89b41146104b65780639659867e146104cb57600080fd5b806355367ba9116101a65780636f8b44b0116101755780636f8b44b0146103ee57806370a082311461040e578063715018a61461042e578063729ad39e14610443578063853828b61461046357600080fd5b806355367ba91461037957806355f804b31461038e5780636352211e146103ae5780636cf39f84146103ce57600080fd5b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102ff57806332cb6b0c1461031f578063420db8cf1461034357806342842e0e1461035957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046120f7565b6106ae565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610700565b60405161024b919061224f565b34801561028257600080fd5b5061029661029136600461219e565b610792565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612058565b61082c565b005b3480156102dc57600080fd5b50600654600160a01b900461ffff165b60405161ffff909116815260200161024b565b34801561030b57600080fd5b506102ce61031a366004611f64565b610942565b34801561032b57600080fd5b5061033560075481565b60405190815260200161024b565b34801561034f57600080fd5b5061033560085481565b34801561036557600080fd5b506102ce610374366004611f64565b610973565b34801561038557600080fd5b506102ce61098e565b34801561039a57600080fd5b506102ce6103a9366004612131565b6109c4565b3480156103ba57600080fd5b506102966103c936600461219e565b610a05565b3480156103da57600080fd5b506102ce6103e936600461219e565b610a7c565b3480156103fa57600080fd5b506102ce61040936600461219e565b610aab565b34801561041a57600080fd5b50610335610429366004611f16565b610ada565b34801561043a57600080fd5b506102ce610b61565b34801561044f57600080fd5b506102ce61045e366004612082565b610b97565b34801561046f57600080fd5b506102ce610df4565b34801561048457600080fd5b506006546001600160a01b0316610296565b3480156104a257600080fd5b506102ce6104b136600461219e565b610eac565b3480156104c257600080fd5b50610269610edb565b3480156104d757600080fd5b506006546102ec90600160a01b900461ffff1681565b3480156104f957600080fd5b50600a54610335565b34801561050e57600080fd5b50600c5461023f9060ff1681565b34801561052857600080fd5b5061033560095481565b34801561053e57600080fd5b50610335600a5481565b34801561055457600080fd5b506102ce61056336600461201c565b610eea565b6102ce61057636600461217a565b610faf565b34801561058757600080fd5b506102ce6112f8565b34801561059c57600080fd5b506102ce6105ab366004611fa0565b611335565b3480156105bc57600080fd5b506102ce61136d565b3480156105d157600080fd5b506102ce6105e036600461217a565b6113a6565b3480156105f157600080fd5b5061026961060036600461219e565b6113d9565b34801561061157600080fd5b506102ce61062036600461217a565b6114b4565b34801561063157600080fd5b506102ce61064036600461217a565b6115d4565b34801561065157600080fd5b5061023f610660366004611f31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069a57600080fd5b506102ce6106a9366004611f16565b611620565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461070f906123fc565b80601f016020809104026020016040519081016040528092919081815260200182805461073b906123fc565b80156107885780601f1061075d57610100808354040283529160200191610788565b820191906000526020600020905b81548152906001019060200180831161076b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083782610a05565b9050806001600160a01b0316836001600160a01b031614156108a55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610807565b336001600160a01b03821614806108c157506108c18133610660565b6109335760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610807565b61093d83836116b8565b505050565b61094c3382611726565b6109685760405162461bcd60e51b8152600401610807906122e9565b61093d83838361181d565b61093d83838360405180602001604052806000815250611335565b6006546001600160a01b031633146109b85760405162461bcd60e51b8152600401610807906122b4565b600c805460ff19169055565b6006546001600160a01b031633146109ee5760405162461bcd60e51b8152600401610807906122b4565b8051610a0190600b906020840190611deb565b5050565b6000818152600260205260408120546001600160a01b0316806106fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610807565b6006546001600160a01b03163314610aa65760405162461bcd60e51b8152600401610807906122b4565b600955565b6006546001600160a01b03163314610ad55760405162461bcd60e51b8152600401610807906122b4565b600755565b60006001600160a01b038216610b455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610807565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b8b5760405162461bcd60e51b8152600401610807906122b4565b610b9560006119bd565b565b6006546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610807906122b4565b600654600160a01b900461ffff166006805461ffff60b01b1916600160b01b61ffff938416021790819055600754918391600160a01b90041661ffff16610c089190612357565b1115610c695760405162461bcd60e51b815260206004820152602a60248201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696044820152696d756d20737570706c7960b01b6064820152608401610807565b80610cb65760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e670000006044820152606401610807565b60005b81811015610dba576000838383818110610cd557610cd56124b4565b9050602002016020810190610cea9190611f16565b6001600160a01b03161415610d415760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e6720746f204e756c6c20616464726573730000000000000000006044820152606401610807565b610da8838383818110610d5657610d566124b4565b9050602002016020810190610d6b9190611f16565b60068054601690610d8690600160b01b900461ffff16612437565b91906101000a81548161ffff021916908361ffff160217905561ffff16611a0f565b80610db281612459565b915050610cb9565b50600654610dd4908290600160a01b900461ffff1661233a565b600660146101000a81548161ffff021916908361ffff1602179055505050565b6006546001600160a01b03163314610e1e5760405162461bcd60e51b8152600401610807906122b4565b604051600090339047908381818185875af1925050503d8060008114610e60576040519150601f19603f3d011682016040523d82523d6000602084013e610e65565b606091505b5050905080610ea95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610807565b50565b6006546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610807906122b4565b600a55565b60606001805461070f906123fc565b6001600160a01b038216331415610f435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610807565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60068054600160b01b61ffff600160a01b8304160261ffff60b01b19821681179092556001600160a01b03918216911617331461104d57600c5460ff16151560011461104d5760405162461bcd60e51b815260206004820152602760248201527f53616c65206973206e6f74206f70656e20706c6561736520747279206167616960448201526637103630ba32b960c91b6064820152608401610807565b60008161ffff1611801561107a57506009548161ffff1661106d33610ada565b6110779190612357565b11155b6110e55760405162461bcd60e51b815260206004820152603660248201527f596f752068617665207265616368656420746865204e4654206d696e74696e67604482015275103634b6b4ba103832b9103a3930b739b0b1ba34b7b760511b6064820152608401610807565b6009546110f133610ada565b1061115d5760405162461bcd60e51b815260206004820152603660248201527f596f7520686176652072656163686564206d6178696d756d204e4654206d696e6044820152751d1a5b99c81b1a5b5a5d081c195c881858d8dbdd5b9d60521b6064820152608401610807565b6006546001600160a01b031633146111db5760085460075461117f91906123a2565b6006548290600160a01b900461ffff16611199919061233a565b61ffff1611156111db5760405162461bcd60e51b815260206004820152600d60248201526c105b1b081391951cc81cdbdb19609a1b6044820152606401610807565b8061ffff16600a546111ed9190612383565b3410156112545760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b6064820152608401610807565b80600660148282829054906101000a900461ffff16611273919061233a565b92506101000a81548161ffff021916908361ffff16021790555060005b8161ffff16811015610a01576112a533610d6b565b600654604051600160b01b90910461ffff1681527fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf1598689060200160405180910390a1806112f081612459565b915050611290565b6006546001600160a01b031633146113225760405162461bcd60e51b8152600401610807906122b4565b600654600160a01b900461ffff16600755565b61133f3383611726565b61135b5760405162461bcd60e51b8152600401610807906122e9565b61136784848484611a29565b50505050565b6006546001600160a01b031633146113975760405162461bcd60e51b8152600401610807906122b4565b600c805460ff19166001179055565b6006546001600160a01b031633146113d05760405162461bcd60e51b8152600401610807906122b4565b61ffff16600855565b6000818152600260205260409020546060906001600160a01b03166114585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610807565b6000611462611a5c565b9050600081511161148257604051806020016040528060008152506114ad565b8061148c84611a6b565b60405160200161149d9291906121e3565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114de5760405162461bcd60e51b8152600401610807906122b4565b60006008541161153c5760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520616c7265616479206d696e74656420616c6c20726573656044820152631c9d995960e21b6064820152608401610807565b60005b8161ffff168161ffff1610156115815761156f336006601681819054906101000a900461ffff16610d8690612437565b8061157981612437565b91505061153f565b5060065461159b908290600160a01b900461ffff1661233a565b6006805461ffff92909216600160a01b0261ffff60a01b19909216919091179055600880549060006115cc836123e5565b919050555050565b6006546001600160a01b031633146115fe5760405162461bcd60e51b8152600401610807906122b4565b6006805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6006546001600160a01b0316331461164a5760405162461bcd60e51b8152600401610807906122b4565b6001600160a01b0381166116af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b610ea9816119bd565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116ed82610a05565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661179f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610807565b60006117aa83610a05565b9050806001600160a01b0316846001600160a01b031614806117e55750836001600160a01b03166117da84610792565b6001600160a01b0316145b8061181557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183082610a05565b6001600160a01b0316146118985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610807565b6001600160a01b0382166118fa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610807565b6119056000826116b8565b6001600160a01b038316600090815260036020526040812080546001929061192e9084906123a2565b90915550506001600160a01b038216600090815260036020526040812080546001929061195c908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a01828260405180602001604052806000815250611b69565b611a3484848461181d565b611a4084848484611b9c565b6113675760405162461bcd60e51b815260040161080790612262565b6060600b805461070f906123fc565b606081611a8f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ab95780611aa381612459565b9150611ab29050600a8361236f565b9150611a93565b60008167ffffffffffffffff811115611ad457611ad46124ca565b6040519080825280601f01601f191660200182016040528015611afe576020820181803683370190505b5090505b841561181557611b136001836123a2565b9150611b20600a86612474565b611b2b906030612357565b60f81b818381518110611b4057611b406124b4565b60200101906001600160f81b031916908160001a905350611b62600a8661236f565b9450611b02565b611b738383611ca9565b611b806000848484611b9c565b61093d5760405162461bcd60e51b815260040161080790612262565b60006001600160a01b0384163b15611c9e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611be0903390899088908890600401612212565b602060405180830381600087803b158015611bfa57600080fd5b505af1925050508015611c2a575060408051601f3d908101601f19168201909252611c2791810190612114565b60015b611c84573d808015611c58576040519150601f19603f3d011682016040523d82523d6000602084013e611c5d565b606091505b508051611c7c5760405162461bcd60e51b815260040161080790612262565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611815565b506001949350505050565b6001600160a01b038216611cff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610807565b6000818152600260205260409020546001600160a01b031615611d645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610807565b6001600160a01b0382166000908152600360205260408120805460019290611d8d908490612357565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611df7906123fc565b90600052602060002090601f016020900481019282611e195760008555611e5f565b82601f10611e3257805160ff1916838001178555611e5f565b82800160010185558215611e5f579182015b82811115611e5f578251825591602001919060010190611e44565b50611e6b929150611e6f565b5090565b5b80821115611e6b5760008155600101611e70565b600067ffffffffffffffff80841115611e9f57611e9f6124ca565b604051601f8501601f19908116603f01168101908282118183101715611ec757611ec76124ca565b81604052809350858152868686011115611ee057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f1157600080fd5b919050565b600060208284031215611f2857600080fd5b6114ad82611efa565b60008060408385031215611f4457600080fd5b611f4d83611efa565b9150611f5b60208401611efa565b90509250929050565b600080600060608486031215611f7957600080fd5b611f8284611efa565b9250611f9060208501611efa565b9150604084013590509250925092565b60008060008060808587031215611fb657600080fd5b611fbf85611efa565b9350611fcd60208601611efa565b925060408501359150606085013567ffffffffffffffff811115611ff057600080fd5b8501601f8101871361200157600080fd5b61201087823560208401611e84565b91505092959194509250565b6000806040838503121561202f57600080fd5b61203883611efa565b91506020830135801515811461204d57600080fd5b809150509250929050565b6000806040838503121561206b57600080fd5b61207483611efa565b946020939093013593505050565b6000806020838503121561209557600080fd5b823567ffffffffffffffff808211156120ad57600080fd5b818501915085601f8301126120c157600080fd5b8135818111156120d057600080fd5b8660208260051b85010111156120e557600080fd5b60209290920196919550909350505050565b60006020828403121561210957600080fd5b81356114ad816124e0565b60006020828403121561212657600080fd5b81516114ad816124e0565b60006020828403121561214357600080fd5b813567ffffffffffffffff81111561215a57600080fd5b8201601f8101841361216b57600080fd5b61181584823560208401611e84565b60006020828403121561218c57600080fd5b813561ffff811681146114ad57600080fd5b6000602082840312156121b057600080fd5b5035919050565b600081518084526121cf8160208601602086016123b9565b601f01601f19169290920160200192915050565b600083516121f58184602088016123b9565b8351908301906122098183602088016123b9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612245908301846121b7565b9695505050505050565b6020815260006114ad60208301846121b7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff80831681851680830382111561220957612209612488565b6000821982111561236a5761236a612488565b500190565b60008261237e5761237e61249e565b500490565b600081600019048311821515161561239d5761239d612488565b500290565b6000828210156123b4576123b4612488565b500390565b60005b838110156123d45781810151838201526020016123bc565b838111156113675750506000910152565b6000816123f4576123f4612488565b506000190190565b600181811c9082168061241057607f821691505b6020821081141561243157634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561244f5761244f612488565b6001019392505050565b600060001982141561246d5761246d612488565b5060010190565b6000826124835761248361249e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ea957600080fdfea264697066735822122014cf55d00e58eb28df94b83fb15458f41c0f16bc2a7490c820a28a53a3d7cbf664736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d517557444864644b4a42485253573846616b46587355676e384c45694b79317955696d51544c3432555238562f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmQuWDHddKJBHRSW8FakFXsUgn8LEiKy1yUimQTL42UR8V/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d517557444864644b4a
Arg [3] : 42485253573846616b46587355676e384c45694b79317955696d51544c343255
Arg [4] : 5238562f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36557:3986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23443:355;;;;;;;;;;-1:-1:-1;23443:355:0;;;;;:::i;:::-;;:::i;:::-;;;6753:14:1;;6746:22;6728:41;;6716:2;6701:18;23443:355:0;;;;;;;;24612:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26305:308::-;;;;;;;;;;-1:-1:-1;26305:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6051:32:1;;;6033:51;;6021:2;6006:18;26305:308:0;5887:203:1;25828:411:0;;;;;;;;;;-1:-1:-1;25828:411:0;;;;;:::i;:::-;;:::i;:::-;;37747:87;;;;;;;;;;-1:-1:-1;37817:9:0;;-1:-1:-1;;;37817:9:0;;;;37747:87;;;17443:6:1;17431:19;;;17413:38;;17401:2;17386:18;37747:87:0;17269:188:1;27364:376:0;;;;;;;;;;-1:-1:-1;27364:376:0;;;;;:::i;:::-;;:::i;36672:32::-;;;;;;;;;;;;;;;;;;;17802:25:1;;;17790:2;17775:18;36672:32:0;17656:177:1;36711:35:0;;;;;;;;;;;;;;;;27811:185;;;;;;;;;;-1:-1:-1;27811:185:0;;;;;:::i;:::-;;:::i;38047:73::-;;;;;;;;;;;;;:::i;37078:101::-;;;;;;;;;;-1:-1:-1;37078:101:0;;;;;:::i;:::-;;:::i;24219:326::-;;;;;;;;;;-1:-1:-1;24219:326:0;;;;;:::i;:::-;;:::i;37285:104::-;;;;;;;;;;-1:-1:-1;37285:104:0;;;;;:::i;:::-;;:::i;37397:103::-;;;;;;;;;;-1:-1:-1;37397:103:0;;;;;:::i;:::-;;:::i;23862:295::-;;;;;;;;;;-1:-1:-1;23862:295:0;;;;;:::i;:::-;;:::i;8331:94::-;;;;;;;;;;;;;:::i;39822:597::-;;;;;;;;;;-1:-1:-1;39822:597:0;;;;;:::i;:::-;;:::i;38231:174::-;;;;;;;;;;;;;:::i;7680:87::-;;;;;;;;;;-1:-1:-1;7753:6:0;;-1:-1:-1;;;;;7753:6:0;7680:87;;37187:90;;;;;;;;;;-1:-1:-1;37187:90:0;;;;;:::i;:::-;;:::i;24781:104::-;;;;;;;;;;;;;:::i;36600:27::-;;;;;;;;;;-1:-1:-1;36600:27:0;;;;-1:-1:-1;;;36600:27:0;;;;;;37936:81;;;;;;;;;;-1:-1:-1;38004:5:0;;37936:81;;36884:27;;;;;;;;;;-1:-1:-1;36884:27:0;;;;;;;;36753:31;;;;;;;;;;;;;;;;36791:40;;;;;;;;;;;;;;;;26685:327;;;;;;;;;;-1:-1:-1;26685:327:0;;;;;:::i;:::-;;:::i;38433:1057::-;;;;;;:::i;:::-;;:::i;37842:86::-;;;;;;;;;;;;;:::i;28067:365::-;;;;;;;;;;-1:-1:-1;28067:365:0;;;;;:::i;:::-;;:::i;38149:74::-;;;;;;;;;;;;;:::i;37619:116::-;;;;;;;;;;-1:-1:-1;37619:116:0;;;;;:::i;:::-;;:::i;24956:468::-;;;;;;;;;;-1:-1:-1;24956:468:0;;;;;:::i;:::-;;:::i;39502:312::-;;;;;;;;;;-1:-1:-1;39502:312:0;;;;;:::i;:::-;;:::i;37512:99::-;;;;;;;;;;-1:-1:-1;37512:99:0;;;;;:::i;:::-;;:::i;27083:214::-;;;;;;;;;;-1:-1:-1;27083:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27254:25:0;;;27225:4;27254:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27083:214;8580:229;;;;;;;;;;-1:-1:-1;8580:229:0;;;;;:::i;:::-;;:::i;23443:355::-;23590:4;-1:-1:-1;;;;;;23632:40:0;;-1:-1:-1;;;23632:40:0;;:105;;-1:-1:-1;;;;;;;23689:48:0;;-1:-1:-1;;;23689:48:0;23632:105;:158;;;-1:-1:-1;;;;;;;;;;9948:40:0;;;23754:36;23612:178;23443:355;-1:-1:-1;;23443:355:0:o;24612:100::-;24666:13;24699:5;24692:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24612:100;:::o;26305:308::-;26426:7;30068:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30068:16:0;26451:110;;;;-1:-1:-1;;;26451:110:0;;13459:2:1;26451:110:0;;;13441:21:1;13498:2;13478:18;;;13471:30;13537:34;13517:18;;;13510:62;-1:-1:-1;;;13588:18:1;;;13581:42;13640:19;;26451:110:0;;;;;;;;;-1:-1:-1;26581:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26581:24:0;;26305:308::o;25828:411::-;25909:13;25925:23;25940:7;25925:14;:23::i;:::-;25909:39;;25973:5;-1:-1:-1;;;;;25967:11:0;:2;-1:-1:-1;;;;;25967:11:0;;;25959:57;;;;-1:-1:-1;;;25959:57:0;;15475:2:1;25959:57:0;;;15457:21:1;15514:2;15494:18;;;15487:30;15553:34;15533:18;;;15526:62;-1:-1:-1;;;15604:18:1;;;15597:31;15645:19;;25959:57:0;15273:397:1;25959:57:0;733:10;-1:-1:-1;;;;;26051:21:0;;;;:62;;-1:-1:-1;26076:37:0;26093:5;733:10;27083:214;:::i;26076:37::-;26029:168;;;;-1:-1:-1;;;26029:168:0;;10613:2:1;26029:168:0;;;10595:21:1;10652:2;10632:18;;;10625:30;10691:34;10671:18;;;10664:62;10762:26;10742:18;;;10735:54;10806:19;;26029:168:0;10411:420:1;26029:168:0;26210:21;26219:2;26223:7;26210:8;:21::i;:::-;25898:341;25828:411;;:::o;27364:376::-;27573:41;733:10;27606:7;27573:18;:41::i;:::-;27551:140;;;;-1:-1:-1;;;27551:140:0;;;;;;;:::i;:::-;27704:28;27714:4;27720:2;27724:7;27704:9;:28::i;27811:185::-;27949:39;27966:4;27972:2;27976:7;27949:39;;;;;;;;;;;;:16;:39::i;38047:73::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;38096:8:::1;:16:::0;;-1:-1:-1;;38096:16:0::1;::::0;;38047:73::o;37078:101::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37149:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37078:101:::0;:::o;24219:326::-;24336:7;24377:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24377:16:0;24426:19;24404:110;;;;-1:-1:-1;;;24404:110:0;;11860:2:1;24404:110:0;;;11842:21:1;11899:2;11879:18;;;11872:30;11938:34;11918:18;;;11911:62;-1:-1:-1;;;11989:18:1;;;11982:39;12038:19;;24404:110:0;11658:405:1;37285:104:0;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37356:11:::1;:25:::0;37285:104::o;37397:103::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37468:10:::1;:24:::0;37397:103::o;23862:295::-;23979:7;-1:-1:-1;;;;;24026:19:0;;24004:111;;;;-1:-1:-1;;;24004:111:0;;11449:2:1;24004:111:0;;;11431:21:1;11488:2;11468:18;;;11461:30;11527:34;11507:18;;;11500:62;-1:-1:-1;;;11578:18:1;;;11571:40;11628:19;;24004:111:0;11247:406:1;24004:111:0;-1:-1:-1;;;;;;24133:16:0;;;;;:9;:16;;;;;;;23862:295::o;8331:94::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;8396:21:::1;8414:1;8396:9;:21::i;:::-;8331:94::o:0;39822:597::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37817:9;;-1:-1:-1;;;37817:9:0;;;;39901:6:::1;:22:::0;;-1:-1:-1;;;;39901:22:0::1;-1:-1:-1::0;;;39901:22:0::1;::::0;;::::1;;;::::0;;;;39994:10:::1;::::0;;39972:11;;-1:-1:-1;;;37817:9:0;;;39956:34:::1;;;;;;:::i;:::-;:48;;39934:140;;;::::0;-1:-1:-1;;;39934:140:0;;11038:2:1;39934:140:0::1;::::0;::::1;11020:21:1::0;11077:2;11057:18;;;11050:30;11116:34;11096:18;;;11089:62;-1:-1:-1;;;11167:18:1;;;11160:40;11217:19;;39934:140:0::1;10836:406:1::0;39934:140:0::1;40093:23:::0;40085:65:::1;;;::::0;-1:-1:-1;;;40085:65:0;;7206:2:1;40085:65:0::1;::::0;::::1;7188:21:1::0;7245:2;7225:18;;;7218:30;7284:31;7264:18;;;7257:59;7333:18;;40085:65:0::1;7004:353:1::0;40085:65:0::1;40166:9;40161:190;40181:22:::0;;::::1;40161:190;;;40259:1;40233:11:::0;;40245:1;40233:14;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40233:28:0::1;;;40225:64;;;::::0;-1:-1:-1;;;40225:64:0;;7564:2:1;40225:64:0::1;::::0;::::1;7546:21:1::0;7603:2;7583:18;;;7576:30;7642:25;7622:18;;;7615:53;7685:18;;40225:64:0::1;7362:347:1::0;40225:64:0::1;40304:35;40314:11;;40326:1;40314:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;40332:6;40330:8:::0;;40332:6:::1;::::0;40330:8:::1;::::0;-1:-1:-1;;;40330:8:0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;40304:35;;:9;:35::i;:::-;40205:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40161:190;;;-1:-1:-1::0;40373:9:0::1;::::0;:38:::1;::::0;40392:11;;-1:-1:-1;;;40373:9:0;::::1;;;:38;:::i;:::-;40361:9;;:50;;;;;;;;;;;;;;;;;;39822:597:::0;;:::o;38231:174::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;38301:49:::1;::::0;38283:12:::1;::::0;38301:10:::1;::::0;38324:21:::1;::::0;38283:12;38301:49;38283:12;38301:49;38324:21;38301:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38282:68;;;38369:7;38361:36;;;::::0;-1:-1:-1;;;38361:36:0;;15877:2:1;38361:36:0::1;::::0;::::1;15859:21:1::0;15916:2;15896:18;;;15889:30;-1:-1:-1;;;15935:18:1;;;15928:46;15991:18;;38361:36:0::1;15675:340:1::0;38361:36:0::1;38271:134;38231:174::o:0;37187:90::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37252:5:::1;:17:::0;37187:90::o;24781:104::-;24837:13;24870:7;24863:14;;;;;:::i;26685:327::-;-1:-1:-1;;;;;26820:24:0;;733:10;26820:24;;26812:62;;;;-1:-1:-1;;;26812:62:0;;9504:2:1;26812:62:0;;;9486:21:1;9543:2;9523:18;;;9516:30;9582:27;9562:18;;;9555:55;9627:18;;26812:62:0;9302:349:1;26812:62:0;733:10;26887:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26887:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26887:53:0;;;;;;;;;;26956:48;;6728:41:1;;;26887:42:0;;733:10;26956:48;;6701:18:1;26956:48:0;;;;;;;26685:327;;:::o;38433:1057::-;37817:9;;;-1:-1:-1;;;37817:9:0;-1:-1:-1;;;37817:9:0;;;38491:22;-1:-1:-1;;;;38491:22:0;;;;;;;-1:-1:-1;;;;;7753:6:0;;;;;;38530:10;:21;38526:124;;38577:8;;;;:16;;:8;:16;38568:70;;;;-1:-1:-1;;;38568:70:0;;17063:2:1;38568:70:0;;;17045:21:1;17102:2;17082:18;;;17075:30;17141:34;17121:18;;;17114:62;-1:-1:-1;;;17192:18:1;;;17185:37;17239:19;;38568:70:0;16861:403:1;38568:70:0;38701:1;38692:6;:10;;;:59;;;;;38740:11;;38729:6;38707:28;;:21;38717:10;38707:9;:21::i;:::-;:28;;;;:::i;:::-;38706:45;;38692:59;38670:162;;;;-1:-1:-1;;;38670:162:0;;16640:2:1;38670:162:0;;;16622:21:1;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;-1:-1:-1;;;16769:18:1;;;16762:52;16831:19;;38670:162:0;16438:418:1;38670:162:0;38885:11;;38861:21;38871:10;38861:9;:21::i;:::-;:35;38853:102;;;;-1:-1:-1;;;38853:102:0;;12270:2:1;38853:102:0;;;12252:21:1;12309:2;12289:18;;;12282:30;12348:34;12328:18;;;12321:62;-1:-1:-1;;;12399:18:1;;;12392:52;12461:19;;38853:102:0;12068:418:1;38853:102:0;7753:6;;-1:-1:-1;;;;;7753:6:0;38980:10;:21;38976:184;;39084:14;;39071:10;;:27;;;;:::i;:::-;37817:9;;39060:6;;-1:-1:-1;;;37817:9:0;;;;39044:22;;;;:::i;:::-;:55;;;;39018:130;;;;-1:-1:-1;;;39018:130:0;;10271:2:1;39018:130:0;;;10253:21:1;10310:2;10290:18;;;10283:30;-1:-1:-1;;;10329:18:1;;;10322:43;10382:18;;39018:130:0;10069:337:1;39018:130:0;39223:6;39215:14;;:5;;:14;;;;:::i;:::-;39202:9;:27;;39180:124;;;;-1:-1:-1;;;39180:124:0;;13872:2:1;39180:124:0;;;13854:21:1;13911:2;13891:18;;;13884:30;13950:34;13930:18;;;13923:62;-1:-1:-1;;;14001:18:1;;;13994:45;14056:19;;39180:124:0;13670:411:1;39180:124:0;39330:6;39317:9;;:19;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39354:9;39349:134;39373:6;39369:10;;:1;:10;39349:134;;;39401:33;733:10;39411:12;653:98;39401:33;39464:6;;39454:17;;-1:-1:-1;;;39464:6:0;;;;;17413:38:1;;39454:17:0;;17401:2:1;17386:18;39454:17:0;;;;;;;39381:3;;;;:::i;:::-;;;;39349:134;;37842:86;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37817:9;;-1:-1:-1;;;37817:9:0;;;;37894:10:::1;:26:::0;37842:86::o;28067:365::-;28256:41;733:10;28289:7;28256:18;:41::i;:::-;28234:140;;;;-1:-1:-1;;;28234:140:0;;;;;;;:::i;:::-;28385:39;28399:4;28405:2;28409:7;28418:5;28385:13;:39::i;:::-;28067:365;;;;:::o;38149:74::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;38200:8:::1;:15:::0;;-1:-1:-1;;38200:15:0::1;38211:4;38200:15;::::0;;38149:74::o;37619:116::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37696:31:::1;;:14;:31:::0;37619:116::o;24956:468::-;30044:4;30068:16;;;:7;:16;;;;;;25074:13;;-1:-1:-1;;;;;30068:16:0;25105:113;;;;-1:-1:-1;;;25105:113:0;;15059:2:1;25105:113:0;;;15041:21:1;15098:2;15078:18;;;15071:30;15137:34;15117:18;;;15110:62;-1:-1:-1;;;15188:18:1;;;15181:45;15243:19;;25105:113:0;14857:411:1;25105:113:0;25231:21;25255:10;:8;:10::i;:::-;25231:34;;25320:1;25302:7;25296:21;:25;:120;;;;;;;;;;;;;;;;;25365:7;25374:18;:7;:16;:18::i;:::-;25348:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25296:120;25276:140;24956:468;-1:-1:-1;;;24956:468:0:o;39502:312::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;39593:1:::1;39576:14;;:18;39568:66;;;::::0;-1:-1:-1;;;39568:66:0;;13054:2:1;39568:66:0::1;::::0;::::1;13036:21:1::0;13093:2;13073:18;;;13066:30;13132:34;13112:18;;;13105:62;-1:-1:-1;;;13183:18:1;;;13176:34;13227:19;;39568:66:0::1;12852:400:1::0;39568:66:0::1;39650:8;39645:94;39668:6;39664:10;;:1;:10;;;39645:94;;;39696:31;39706:10;39720:6;;39718:8;;;;;;;;;;;;;;:::i;39696:31::-;39676:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39645:94;;;-1:-1:-1::0;39761:9:0::1;::::0;:18:::1;::::0;39773:6;;-1:-1:-1;;;39761:9:0;::::1;;;:18;:::i;:::-;39749:9;:30:::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;39749:30:0::1;-1:-1:-1::0;;;;39749:30:0;;::::1;::::0;;;::::1;::::0;;39790:14:::1;:16:::0;;;-1:-1:-1;39790:16:0::1;::::0;::::1;:::i;:::-;;;;;;39502:312:::0;:::o;37512:99::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;37581:9:::1;:22:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;37581:22:0::1;-1:-1:-1::0;;;;37581:22:0;;::::1;::::0;;;::::1;::::0;;37512:99::o;8580:229::-;7753:6;;-1:-1:-1;;;;;7753:6:0;733:10;7900:23;7892:68;;;;-1:-1:-1;;;7892:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8683:22:0;::::1;8661:110;;;::::0;-1:-1:-1;;;8661:110:0;;8335:2:1;8661:110:0::1;::::0;::::1;8317:21:1::0;8374:2;8354:18;;;8347:30;8413:34;8393:18;;;8386:62;-1:-1:-1;;;8464:18:1;;;8457:36;8510:19;;8661:110:0::1;8133:402:1::0;8661:110:0::1;8782:19;8792:8;8782:9;:19::i;34102:174::-:0;34177:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34177:29:0;-1:-1:-1;;;;;34177:29:0;;;;;;;;:24;;34231:23;34177:24;34231:14;:23::i;:::-;-1:-1:-1;;;;;34222:46:0;;;;;;;;;;;34102:174;;:::o;30273:452::-;30402:4;30068:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30068:16:0;30424:110;;;;-1:-1:-1;;;30424:110:0;;9858:2:1;30424:110:0;;;9840:21:1;9897:2;9877:18;;;9870:30;9936:34;9916:18;;;9909:62;-1:-1:-1;;;9987:18:1;;;9980:42;10039:19;;30424:110:0;9656:408:1;30424:110:0;30545:13;30561:23;30576:7;30561:14;:23::i;:::-;30545:39;;30614:5;-1:-1:-1;;;;;30603:16:0;:7;-1:-1:-1;;;;;30603:16:0;;:64;;;;30660:7;-1:-1:-1;;;;;30636:31:0;:20;30648:7;30636:11;:20::i;:::-;-1:-1:-1;;;;;30636:31:0;;30603:64;:113;;;-1:-1:-1;;;;;;27254:25:0;;;27225:4;27254:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30684:32;30595:122;30273:452;-1:-1:-1;;;;30273:452:0:o;33369:615::-;33542:4;-1:-1:-1;;;;;33515:31:0;:23;33530:7;33515:14;:23::i;:::-;-1:-1:-1;;;;;33515:31:0;;33493:122;;;;-1:-1:-1;;;33493:122:0;;14649:2:1;33493:122:0;;;14631:21:1;14688:2;14668:18;;;14661:30;14727:34;14707:18;;;14700:62;-1:-1:-1;;;14778:18:1;;;14771:39;14827:19;;33493:122:0;14447:405:1;33493:122:0;-1:-1:-1;;;;;33634:16:0;;33626:65;;;;-1:-1:-1;;;33626:65:0;;9099:2:1;33626:65:0;;;9081:21:1;9138:2;9118:18;;;9111:30;9177:34;9157:18;;;9150:62;-1:-1:-1;;;9228:18:1;;;9221:34;9272:19;;33626:65:0;8897:400:1;33626:65:0;33808:29;33825:1;33829:7;33808:8;:29::i;:::-;-1:-1:-1;;;;;33850:15:0;;;;;;:9;:15;;;;;:20;;33869:1;;33850:15;:20;;33869:1;;33850:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33881:13:0;;;;;;:9;:13;;;;;:18;;33898:1;;33881:13;:18;;33898:1;;33881:18;:::i;:::-;;;;-1:-1:-1;;33910:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33910:21:0;-1:-1:-1;;;;;33910:21:0;;;;;;;;;33949:27;;33910:16;;33949:27;;;;;;;33369:615;;;:::o;8817:173::-;8892:6;;;-1:-1:-1;;;;;8909:17:0;;;-1:-1:-1;;;;;;8909:17:0;;;;;;;8942:40;;8892:6;;;8909:17;8892:6;;8942:40;;8873:16;;8942:40;8862:128;8817:173;:::o;31067:110::-;31143:26;31153:2;31157:7;31143:26;;;;;;;;;;;;:9;:26::i;29314:352::-;29471:28;29481:4;29487:2;29491:7;29471:9;:28::i;:::-;29532:48;29555:4;29561:2;29565:7;29574:5;29532:22;:48::i;:::-;29510:148;;;;-1:-1:-1;;;29510:148:0;;;;;;;:::i;40427:113::-;40487:13;40520:12;40513:19;;;;;:::i;10310:723::-;10366:13;10587:10;10583:53;;-1:-1:-1;;10614:10:0;;;;;;;;;;;;-1:-1:-1;;;10614:10:0;;;;;10310:723::o;10583:53::-;10661:5;10646:12;10702:78;10709:9;;10702:78;;10735:8;;;;:::i;:::-;;-1:-1:-1;10758:10:0;;-1:-1:-1;10766:2:0;10758:10;;:::i;:::-;;;10702:78;;;10790:19;10822:6;10812:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10812:17:0;;10790:39;;10840:154;10847:10;;10840:154;;10874:11;10884:1;10874:11;;:::i;:::-;;-1:-1:-1;10943:10:0;10951:2;10943:5;:10;:::i;:::-;10930:24;;:2;:24;:::i;:::-;10917:39;;10900:6;10907;10900:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10900:56:0;;;;;;;;-1:-1:-1;10971:11:0;10980:2;10971:11;;:::i;:::-;;;10840:154;;31404:321;31534:18;31540:2;31544:7;31534:5;:18::i;:::-;31585:54;31616:1;31620:2;31624:7;31633:5;31585:22;:54::i;:::-;31563:154;;;;-1:-1:-1;;;31563:154:0;;;;;;;:::i;34841:984::-;34996:4;-1:-1:-1;;;;;35017:13:0;;13186:20;13234:8;35013:805;;35070:175;;-1:-1:-1;;;35070:175:0;;-1:-1:-1;;;;;35070:36:0;;;;;:175;;733:10;;35164:4;;35191:7;;35221:5;;35070:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35070:175:0;;;;;;;;-1:-1:-1;;35070:175:0;;;;;;;;;;;;:::i;:::-;;;35049:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35432:13:0;;35428:320;;35475:108;;-1:-1:-1;;;35475:108:0;;;;;;;:::i;35428:320::-;35698:6;35692:13;35683:6;35679:2;35675:15;35668:38;35049:714;-1:-1:-1;;;;;;35309:55:0;-1:-1:-1;;;35309:55:0;;-1:-1:-1;35302:62:0;;35013:805;-1:-1:-1;35802:4:0;34841:984;;;;;;:::o;32061:382::-;-1:-1:-1;;;;;32141:16:0;;32133:61;;;;-1:-1:-1;;;32133:61:0;;12693:2:1;32133:61:0;;;12675:21:1;;;12712:18;;;12705:30;12771:34;12751:18;;;12744:62;12823:18;;32133:61:0;12491:356:1;32133:61:0;30044:4;30068:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30068:16:0;:30;32205:58;;;;-1:-1:-1;;;32205:58:0;;8742:2:1;32205:58:0;;;8724:21:1;8781:2;8761:18;;;8754:30;8820;8800:18;;;8793:58;8868:18;;32205:58:0;8540:352:1;32205:58:0;-1:-1:-1;;;;;32334:13:0;;;;;;:9;:13;;;;;:18;;32351:1;;32334:13;:18;;32351:1;;32334:18;:::i;:::-;;;;-1:-1:-1;;32363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32363:21:0;-1:-1:-1;;;;;32363:21:0;;;;;;;;32402:33;;32363:16;;;32402:33;;32363:16;;32402:33;32061:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:272::-;4536:6;4589:2;4577:9;4568:7;4564:23;4560:32;4557:52;;;4605:1;4602;4595:12;4557:52;4644:9;4631:23;4694:6;4687:5;4683:18;4676:5;4673:29;4663:57;;4716:1;4713;4706:12;4755:180;4814:6;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;-1:-1:-1;4906:23:1;;4755:180;-1:-1:-1;4755:180:1:o;4940:257::-;4981:3;5019:5;5013:12;5046:6;5041:3;5034:19;5062:63;5118:6;5111:4;5106:3;5102:14;5095:4;5088:5;5084:16;5062:63;:::i;:::-;5179:2;5158:15;-1:-1:-1;;5154:29:1;5145:39;;;;5186:4;5141:50;;4940:257;-1:-1:-1;;4940:257:1:o;5202:470::-;5381:3;5419:6;5413:13;5435:53;5481:6;5476:3;5469:4;5461:6;5457:17;5435:53;:::i;:::-;5551:13;;5510:16;;;;5573:57;5551:13;5510:16;5607:4;5595:17;;5573:57;:::i;:::-;5646:20;;5202:470;-1:-1:-1;;;;5202:470:1:o;6095:488::-;-1:-1:-1;;;;;6364:15:1;;;6346:34;;6416:15;;6411:2;6396:18;;6389:43;6463:2;6448:18;;6441:34;;;6511:3;6506:2;6491:18;;6484:31;;;6289:4;;6532:45;;6557:19;;6549:6;6532:45;:::i;:::-;6524:53;6095:488;-1:-1:-1;;;;;;6095:488:1:o;6780:219::-;6929:2;6918:9;6911:21;6892:4;6949:44;6989:2;6978:9;6974:18;6966:6;6949:44;:::i;7714:414::-;7916:2;7898:21;;;7955:2;7935:18;;;7928:30;7994:34;7989:2;7974:18;;7967:62;-1:-1:-1;;;8060:2:1;8045:18;;8038:48;8118:3;8103:19;;7714:414::o;14086:356::-;14288:2;14270:21;;;14307:18;;;14300:30;14366:34;14361:2;14346:18;;14339:62;14433:2;14418:18;;14086:356::o;16020:413::-;16222:2;16204:21;;;16261:2;16241:18;;;16234:30;16300:34;16295:2;16280:18;;16273:62;-1:-1:-1;;;16366:2:1;16351:18;;16344:47;16423:3;16408:19;;16020:413::o;17838:224::-;17877:3;17905:6;17938:2;17935:1;17931:10;17968:2;17965:1;17961:10;17999:3;17995:2;17991:12;17986:3;17983:21;17980:47;;;18007:18;;:::i;18067:128::-;18107:3;18138:1;18134:6;18131:1;18128:13;18125:39;;;18144:18;;:::i;:::-;-1:-1:-1;18180:9:1;;18067:128::o;18200:120::-;18240:1;18266;18256:35;;18271:18;;:::i;:::-;-1:-1:-1;18305:9:1;;18200:120::o;18325:168::-;18365:7;18431:1;18427;18423:6;18419:14;18416:1;18413:21;18408:1;18401:9;18394:17;18390:45;18387:71;;;18438:18;;:::i;:::-;-1:-1:-1;18478:9:1;;18325:168::o;18498:125::-;18538:4;18566:1;18563;18560:8;18557:34;;;18571:18;;:::i;:::-;-1:-1:-1;18608:9:1;;18498:125::o;18628:258::-;18700:1;18710:113;18724:6;18721:1;18718:13;18710:113;;;18800:11;;;18794:18;18781:11;;;18774:39;18746:2;18739:10;18710:113;;;18841:6;18838:1;18835:13;18832:48;;;-1:-1:-1;;18876:1:1;18858:16;;18851:27;18628:258::o;18891:136::-;18930:3;18958:5;18948:39;;18967:18;;:::i;:::-;-1:-1:-1;;;19003:18:1;;18891:136::o;19032:380::-;19111:1;19107:12;;;;19154;;;19175:61;;19229:4;19221:6;19217:17;19207:27;;19175:61;19282:2;19274:6;19271:14;19251:18;19248:38;19245:161;;;19328:10;19323:3;19319:20;19316:1;19309:31;19363:4;19360:1;19353:15;19391:4;19388:1;19381:15;19245:161;;19032:380;;;:::o;19417:197::-;19455:3;19483:6;19524:2;19517:5;19513:14;19551:2;19542:7;19539:15;19536:41;;;19557:18;;:::i;:::-;19606:1;19593:15;;19417:197;-1:-1:-1;;;19417:197:1:o;19619:135::-;19658:3;-1:-1:-1;;19679:17:1;;19676:43;;;19699:18;;:::i;:::-;-1:-1:-1;19746:1:1;19735:13;;19619:135::o;19759:112::-;19791:1;19817;19807:35;;19822:18;;:::i;:::-;-1:-1:-1;19856:9:1;;19759:112::o;19876:127::-;19937:10;19932:3;19928:20;19925:1;19918:31;19968:4;19965:1;19958:15;19992:4;19989:1;19982:15;20008:127;20069:10;20064:3;20060:20;20057:1;20050:31;20100:4;20097:1;20090:15;20124:4;20121:1;20114:15;20140:127;20201:10;20196:3;20192:20;20189:1;20182:31;20232:4;20229:1;20222:15;20256:4;20253:1;20246:15;20272:127;20333:10;20328:3;20324:20;20321:1;20314:31;20364:4;20361:1;20354:15;20388:4;20385:1;20378:15;20404:131;-1:-1:-1;;;;;;20478:32:1;;20468:43;;20458:71;;20525:1;20522;20515:12

Swarm Source

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