ETH Price: $2,391.28 (+2.83%)

Token

Bored Eminape Yacht Club (BEYC)
 

Overview

Max Total Supply

284 BEYC

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 BEYC
0xAe5120523c8Fadf22bF8f0fc04168f2a62c95a01
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:
BoredEminapeYachtClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/IMintableNft.sol



interface IMintableNft{
    /// @dev mint item (only for factories)
    /// @param toAddress receiving address
    function mint(
        address toAddress
    ) external;

    /// @dev total minted tokens
    function mintedCount() external returns(uint256);
}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/BoredEminapeYachtClub.sol





contract BoredEminapeYachtClub is Ownable, ERC721Enumerable, IMintableNft {
    mapping(address => bool) public factories; // factories, that can mint tokens
    uint256 _mintCount;
    uint256 public constant maxMintCount = 2222;
    string public baseURI;
    string public secretMetaURI =
        "ipfs://QmVqyJYUmrkFaeVWxaLsmq4HrTTqtQYoyJjJD6hfbKn8dX";
    bool public mintEnable;

    constructor() ERC721("Bored Eminape Yacht Club", "BEYC") {}

    function addFactory(address newFactory) external onlyOwner {
        factories[newFactory] = true;
    }

    function removeFactory(address factoryToRemove) external onlyOwner {
        factories[factoryToRemove] = false;
    }

    /// @dev mint item (only for factories)
    /// @param toAddress receiving address
    function mint(address toAddress) external override {
        require(factories[msg.sender], "only for factories");
        require(_mintCount < maxMintCount, "all tokens are minted");
        require(mintEnable, "mint is not enabled");
        _mint(toAddress, ++_mintCount);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function setSecretMetaURI(string calldata newSecretMetaURI)
        external
        onlyOwner
    {
        secretMetaURI = newSecretMetaURI;
    }

    function setMintEnable(bool newMintEnable) external onlyOwner{
        mintEnable=newMintEnable;
    }

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

    function mintedCount() external view override returns (uint256) {
        return _mintCount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (bytes(baseURI).length == 0) return secretMetaURI;
        else return super.tokenURI(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"newFactory","type":"address"}],"name":"addFactory","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"factories","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"factoryToRemove","type":"address"}],"name":"removeFactory","outputs":[],"stateMutability":"nonpayable","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":"secretMetaURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newMintEnable","type":"bool"}],"name":"setMintEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSecretMetaURI","type":"string"}],"name":"setSecretMetaURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526035608081815290620021c760a03980516200002991600e916020909101906200012d565b503480156200003757600080fd5b506040518060400160405280601881526020017f426f72656420456d696e61706520596163687420436c75620000000000000000815250604051806040016040528060048152602001634245594360e01b815250620000a56200009f620000d960201b60201c565b620000dd565b8151620000ba9060019060208501906200012d565b508051620000d09060029060208401906200012d565b50505062000210565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013b90620001d3565b90600052602060002090601f0160209004810192826200015f5760008555620001aa565b82601f106200017a57805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001aa5782518255916020019190600101906200018d565b50620001b8929150620001bc565b5090565b5b80821115620001b85760008155600101620001bd565b600181811c90821680620001e857607f821691505b602082108114156200020a57634e487b7160e01b600052602260045260246000fd5b50919050565b611fa780620002206000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063a22cb465116100a2578063cf721b1511610071578063cf721b15146103dd578063e985e9c5146103e5578063f2fde38b14610421578063fab526891461043457600080fd5b8063a22cb46514610397578063b88d4fde146103aa578063c1e1ce29146103bd578063c87b56dd146103ca57600080fd5b8063715018a6116100de578063715018a6146103635780638da5cb5b1461036b57806395d89b411461037c578063981fb0471461038457600080fd5b80636352211e146103225780636a627842146103355780636c0360eb1461034857806370a082311461035057600080fd5b806323b872dd1161018757806342842e0e1161015657806342842e0e146102d65780634b37c73f146102e95780634f6ccce7146102fc57806355f804b31461030f57600080fd5b806323b872dd1461029457806329ce1ec5146102a75780632f745c59146102ba57806332c60eef146102cd57600080fd5b8063081812fc116101c3578063081812fc1461023c578063095ea7b31461026757806318160ddd1461027a5780631b5714b71461028c57600080fd5b806301912133146101ea57806301ffc9a7146101ff57806306fdde0314610227575b600080fd5b6101fd6101f8366004611c06565b610457565b005b61021261020d366004611bcc565b61049b565b60405190151581526020015b60405180910390f35b61022f6104c6565b60405161021e9190611d29565b61024f61024a366004611c78565b610558565b6040516001600160a01b03909116815260200161021e565b6101fd610275366004611b87565b6105ed565b6009545b60405190815260200161021e565b61022f6106fe565b6101fd6102a2366004611a45565b61078c565b6101fd6102b53660046119f7565b6107bd565b61027e6102c8366004611b87565b61080b565b61027e6108ae81565b6101fd6102e4366004611a45565b6108a1565b6101fd6102f73660046119f7565b6108bc565b61027e61030a366004611c78565b610907565b6101fd61031d366004611c06565b61099a565b61024f610330366004611c78565b6109d0565b6101fd6103433660046119f7565b610a47565b61022f610b4e565b61027e61035e3660046119f7565b610b5b565b6101fd610be2565b6000546001600160a01b031661024f565b61022f610c18565b6101fd610392366004611bb1565b610c27565b6101fd6103a5366004611b5d565b610c64565b6101fd6103b8366004611a81565b610c73565b600f546102129060ff1681565b61022f6103d8366004611c78565b610cab565b600c5461027e565b6102126103f3366004611a12565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101fd61042f3660046119f7565b610d62565b6102126104423660046119f7565b600b6020526000908152604090205460ff1681565b6000546001600160a01b0316331461048a5760405162461bcd60e51b815260040161048190611d8e565b60405180910390fd5b610496600e8383611937565b505050565b60006001600160e01b0319821663780e9d6360e01b14806104c057506104c082610dfa565b92915050565b6060600180546104d590611e83565b80601f016020809104026020016040519081016040528092919081815260200182805461050190611e83565b801561054e5780601f106105235761010080835404028352916020019161054e565b820191906000526020600020905b81548152906001019060200180831161053157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610481565b506000908152600560205260409020546001600160a01b031690565b60006105f8826109d0565b9050806001600160a01b0316836001600160a01b031614156106665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610481565b336001600160a01b0382161480610682575061068281336103f3565b6106f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610481565b6104968383610e4a565b600e805461070b90611e83565b80601f016020809104026020016040519081016040528092919081815260200182805461073790611e83565b80156107845780601f1061075957610100808354040283529160200191610784565b820191906000526020600020905b81548152906001019060200180831161076757829003601f168201915b505050505081565b6107963382610eb8565b6107b25760405162461bcd60e51b815260040161048190611dc3565b610496838383610faf565b6000546001600160a01b031633146107e75760405162461bcd60e51b815260040161048190611d8e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b600061081683610b5b565b82106108785760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610481565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61049683838360405180602001604052806000815250610c73565b6000546001600160a01b031633146108e65760405162461bcd60e51b815260040161048190611d8e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b600061091260095490565b82106109755760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610481565b6009828154811061098857610988611f2f565b90600052602060002001549050919050565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260040161048190611d8e565b610496600d8383611937565b6000818152600360205260408120546001600160a01b0316806104c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610481565b336000908152600b602052604090205460ff16610a9b5760405162461bcd60e51b81526020600482015260126024820152716f6e6c7920666f7220666163746f7269657360701b6044820152606401610481565b6108ae600c5410610ae65760405162461bcd60e51b8152602060048201526015602482015274185b1b081d1bdad95b9cc8185c99481b5a5b9d1959605a1b6044820152606401610481565b600f5460ff16610b2e5760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d081a5cc81b9bdd08195b98589b1959606a1b6044820152606401610481565b610b4b81600c60008154610b4190611ebe565b918290555061115a565b50565b600d805461070b90611e83565b60006001600160a01b038216610bc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610481565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161048190611d8e565b610c1660006112a8565b565b6060600280546104d590611e83565b6000546001600160a01b03163314610c515760405162461bcd60e51b815260040161048190611d8e565b600f805460ff1916911515919091179055565b610c6f3383836112f8565b5050565b610c7d3383610eb8565b610c995760405162461bcd60e51b815260040161048190611dc3565b610ca5848484846113c7565b50505050565b6060600d8054610cba90611e83565b15159050610d5457600e8054610ccf90611e83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90611e83565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b50505050509050919050565b6104c0826113fa565b919050565b6000546001600160a01b03163314610d8c5760405162461bcd60e51b815260040161048190611d8e565b6001600160a01b038116610df15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b610b4b816112a8565b60006001600160e01b031982166380ac58cd60e01b1480610e2b57506001600160e01b03198216635b5e139f60e01b145b806104c057506301ffc9a760e01b6001600160e01b03198316146104c0565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e7f826109d0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610f315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610481565b6000610f3c836109d0565b9050806001600160a01b0316846001600160a01b03161480610f775750836001600160a01b0316610f6c84610558565b6001600160a01b0316145b80610fa757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fc2826109d0565b6001600160a01b03161461102a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610481565b6001600160a01b03821661108c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6110978383836114d5565b6110a2600082610e4a565b6001600160a01b03831660009081526004602052604081208054600192906110cb908490611e40565b90915550506001600160a01b03821660009081526004602052604081208054600192906110f9908490611e14565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166111b05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610481565b6000818152600360205260409020546001600160a01b0316156112155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610481565b611221600083836114d5565b6001600160a01b038216600090815260046020526040812080546001929061124a908490611e14565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561135a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610481565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113d2848484610faf565b6113de8484848461158d565b610ca55760405162461bcd60e51b815260040161048190611d3c565b6000818152600360205260409020546060906001600160a01b03166114795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610481565b600061148361169a565b905060008151116114a357604051806020016040528060008152506114ce565b806114ad846116a9565b6040516020016114be929190611cbd565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166115305761152b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611553565b816001600160a01b0316836001600160a01b0316146115535761155383826117a7565b6001600160a01b03821661156a5761049681611844565b826001600160a01b0316826001600160a01b0316146104965761049682826118f3565b60006001600160a01b0384163b1561168f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d1903390899088908890600401611cec565b602060405180830381600087803b1580156115eb57600080fd5b505af192505050801561161b575060408051601f3d908101601f1916820190925261161891810190611be9565b60015b611675573d808015611649576040519150601f19603f3d011682016040523d82523d6000602084013e61164e565b606091505b50805161166d5760405162461bcd60e51b815260040161048190611d3c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa7565b506001949350505050565b6060600d80546104d590611e83565b6060816116cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f757806116e181611ebe565b91506116f09050600a83611e2c565b91506116d1565b60008167ffffffffffffffff81111561171257611712611f45565b6040519080825280601f01601f19166020018201604052801561173c576020820181803683370190505b5090505b8415610fa757611751600183611e40565b915061175e600a86611ed9565b611769906030611e14565b60f81b81838151811061177e5761177e611f2f565b60200101906001600160f81b031916908160001a9053506117a0600a86611e2c565b9450611740565b600060016117b484610b5b565b6117be9190611e40565b600083815260086020526040902054909150808214611811576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061185690600190611e40565b6000838152600a60205260408120546009805493945090928490811061187e5761187e611f2f565b90600052602060002001549050806009838154811061189f5761189f611f2f565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806118d7576118d7611f19565b6001900381819060005260206000200160009055905550505050565b60006118fe83610b5b565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461194390611e83565b90600052602060002090601f01602090048101928261196557600085556119ab565b82601f1061197e5782800160ff198235161785556119ab565b828001600101855582156119ab579182015b828111156119ab578235825591602001919060010190611990565b506119b79291506119bb565b5090565b5b808211156119b757600081556001016119bc565b80356001600160a01b0381168114610d5d57600080fd5b80358015158114610d5d57600080fd5b600060208284031215611a0957600080fd5b6114ce826119d0565b60008060408385031215611a2557600080fd5b611a2e836119d0565b9150611a3c602084016119d0565b90509250929050565b600080600060608486031215611a5a57600080fd5b611a63846119d0565b9250611a71602085016119d0565b9150604084013590509250925092565b60008060008060808587031215611a9757600080fd5b611aa0856119d0565b9350611aae602086016119d0565b925060408501359150606085013567ffffffffffffffff80821115611ad257600080fd5b818701915087601f830112611ae657600080fd5b813581811115611af857611af8611f45565b604051601f8201601f19908116603f01168101908382118183101715611b2057611b20611f45565b816040528281528a6020848701011115611b3957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b7057600080fd5b611b79836119d0565b9150611a3c602084016119e7565b60008060408385031215611b9a57600080fd5b611ba3836119d0565b946020939093013593505050565b600060208284031215611bc357600080fd5b6114ce826119e7565b600060208284031215611bde57600080fd5b81356114ce81611f5b565b600060208284031215611bfb57600080fd5b81516114ce81611f5b565b60008060208385031215611c1957600080fd5b823567ffffffffffffffff80821115611c3157600080fd5b818501915085601f830112611c4557600080fd5b813581811115611c5457600080fd5b866020828501011115611c6657600080fd5b60209290920196919550909350505050565b600060208284031215611c8a57600080fd5b5035919050565b60008151808452611ca9816020860160208601611e57565b601f01601f19169290920160200192915050565b60008351611ccf818460208801611e57565b835190830190611ce3818360208801611e57565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1f90830184611c91565b9695505050505050565b6020815260006114ce6020830184611c91565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e2757611e27611eed565b500190565b600082611e3b57611e3b611f03565b500490565b600082821015611e5257611e52611eed565b500390565b60005b83811015611e72578181015183820152602001611e5a565b83811115610ca55750506000910152565b600181811c90821680611e9757607f821691505b60208210811415611eb857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ed257611ed2611eed565b5060010190565b600082611ee857611ee8611f03565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4b57600080fdfea26469706673582212207fc2a944edc859e582f1ca6a8b7c57d52c2e4dc67f87b364ea0901fb8c5ee2af64736f6c63430008070033697066733a2f2f516d5671794a59556d726b466165565778614c736d713448725454717451596f794a6a4a44366866624b6e386458

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063a22cb465116100a2578063cf721b1511610071578063cf721b15146103dd578063e985e9c5146103e5578063f2fde38b14610421578063fab526891461043457600080fd5b8063a22cb46514610397578063b88d4fde146103aa578063c1e1ce29146103bd578063c87b56dd146103ca57600080fd5b8063715018a6116100de578063715018a6146103635780638da5cb5b1461036b57806395d89b411461037c578063981fb0471461038457600080fd5b80636352211e146103225780636a627842146103355780636c0360eb1461034857806370a082311461035057600080fd5b806323b872dd1161018757806342842e0e1161015657806342842e0e146102d65780634b37c73f146102e95780634f6ccce7146102fc57806355f804b31461030f57600080fd5b806323b872dd1461029457806329ce1ec5146102a75780632f745c59146102ba57806332c60eef146102cd57600080fd5b8063081812fc116101c3578063081812fc1461023c578063095ea7b31461026757806318160ddd1461027a5780631b5714b71461028c57600080fd5b806301912133146101ea57806301ffc9a7146101ff57806306fdde0314610227575b600080fd5b6101fd6101f8366004611c06565b610457565b005b61021261020d366004611bcc565b61049b565b60405190151581526020015b60405180910390f35b61022f6104c6565b60405161021e9190611d29565b61024f61024a366004611c78565b610558565b6040516001600160a01b03909116815260200161021e565b6101fd610275366004611b87565b6105ed565b6009545b60405190815260200161021e565b61022f6106fe565b6101fd6102a2366004611a45565b61078c565b6101fd6102b53660046119f7565b6107bd565b61027e6102c8366004611b87565b61080b565b61027e6108ae81565b6101fd6102e4366004611a45565b6108a1565b6101fd6102f73660046119f7565b6108bc565b61027e61030a366004611c78565b610907565b6101fd61031d366004611c06565b61099a565b61024f610330366004611c78565b6109d0565b6101fd6103433660046119f7565b610a47565b61022f610b4e565b61027e61035e3660046119f7565b610b5b565b6101fd610be2565b6000546001600160a01b031661024f565b61022f610c18565b6101fd610392366004611bb1565b610c27565b6101fd6103a5366004611b5d565b610c64565b6101fd6103b8366004611a81565b610c73565b600f546102129060ff1681565b61022f6103d8366004611c78565b610cab565b600c5461027e565b6102126103f3366004611a12565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101fd61042f3660046119f7565b610d62565b6102126104423660046119f7565b600b6020526000908152604090205460ff1681565b6000546001600160a01b0316331461048a5760405162461bcd60e51b815260040161048190611d8e565b60405180910390fd5b610496600e8383611937565b505050565b60006001600160e01b0319821663780e9d6360e01b14806104c057506104c082610dfa565b92915050565b6060600180546104d590611e83565b80601f016020809104026020016040519081016040528092919081815260200182805461050190611e83565b801561054e5780601f106105235761010080835404028352916020019161054e565b820191906000526020600020905b81548152906001019060200180831161053157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610481565b506000908152600560205260409020546001600160a01b031690565b60006105f8826109d0565b9050806001600160a01b0316836001600160a01b031614156106665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610481565b336001600160a01b0382161480610682575061068281336103f3565b6106f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610481565b6104968383610e4a565b600e805461070b90611e83565b80601f016020809104026020016040519081016040528092919081815260200182805461073790611e83565b80156107845780601f1061075957610100808354040283529160200191610784565b820191906000526020600020905b81548152906001019060200180831161076757829003601f168201915b505050505081565b6107963382610eb8565b6107b25760405162461bcd60e51b815260040161048190611dc3565b610496838383610faf565b6000546001600160a01b031633146107e75760405162461bcd60e51b815260040161048190611d8e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b600061081683610b5b565b82106108785760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610481565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61049683838360405180602001604052806000815250610c73565b6000546001600160a01b031633146108e65760405162461bcd60e51b815260040161048190611d8e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b600061091260095490565b82106109755760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610481565b6009828154811061098857610988611f2f565b90600052602060002001549050919050565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260040161048190611d8e565b610496600d8383611937565b6000818152600360205260408120546001600160a01b0316806104c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610481565b336000908152600b602052604090205460ff16610a9b5760405162461bcd60e51b81526020600482015260126024820152716f6e6c7920666f7220666163746f7269657360701b6044820152606401610481565b6108ae600c5410610ae65760405162461bcd60e51b8152602060048201526015602482015274185b1b081d1bdad95b9cc8185c99481b5a5b9d1959605a1b6044820152606401610481565b600f5460ff16610b2e5760405162461bcd60e51b81526020600482015260136024820152721b5a5b9d081a5cc81b9bdd08195b98589b1959606a1b6044820152606401610481565b610b4b81600c60008154610b4190611ebe565b918290555061115a565b50565b600d805461070b90611e83565b60006001600160a01b038216610bc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610481565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161048190611d8e565b610c1660006112a8565b565b6060600280546104d590611e83565b6000546001600160a01b03163314610c515760405162461bcd60e51b815260040161048190611d8e565b600f805460ff1916911515919091179055565b610c6f3383836112f8565b5050565b610c7d3383610eb8565b610c995760405162461bcd60e51b815260040161048190611dc3565b610ca5848484846113c7565b50505050565b6060600d8054610cba90611e83565b15159050610d5457600e8054610ccf90611e83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90611e83565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b50505050509050919050565b6104c0826113fa565b919050565b6000546001600160a01b03163314610d8c5760405162461bcd60e51b815260040161048190611d8e565b6001600160a01b038116610df15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b610b4b816112a8565b60006001600160e01b031982166380ac58cd60e01b1480610e2b57506001600160e01b03198216635b5e139f60e01b145b806104c057506301ffc9a760e01b6001600160e01b03198316146104c0565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e7f826109d0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610f315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610481565b6000610f3c836109d0565b9050806001600160a01b0316846001600160a01b03161480610f775750836001600160a01b0316610f6c84610558565b6001600160a01b0316145b80610fa757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fc2826109d0565b6001600160a01b03161461102a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610481565b6001600160a01b03821661108c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6110978383836114d5565b6110a2600082610e4a565b6001600160a01b03831660009081526004602052604081208054600192906110cb908490611e40565b90915550506001600160a01b03821660009081526004602052604081208054600192906110f9908490611e14565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166111b05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610481565b6000818152600360205260409020546001600160a01b0316156112155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610481565b611221600083836114d5565b6001600160a01b038216600090815260046020526040812080546001929061124a908490611e14565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561135a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610481565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113d2848484610faf565b6113de8484848461158d565b610ca55760405162461bcd60e51b815260040161048190611d3c565b6000818152600360205260409020546060906001600160a01b03166114795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610481565b600061148361169a565b905060008151116114a357604051806020016040528060008152506114ce565b806114ad846116a9565b6040516020016114be929190611cbd565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166115305761152b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611553565b816001600160a01b0316836001600160a01b0316146115535761155383826117a7565b6001600160a01b03821661156a5761049681611844565b826001600160a01b0316826001600160a01b0316146104965761049682826118f3565b60006001600160a01b0384163b1561168f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d1903390899088908890600401611cec565b602060405180830381600087803b1580156115eb57600080fd5b505af192505050801561161b575060408051601f3d908101601f1916820190925261161891810190611be9565b60015b611675573d808015611649576040519150601f19603f3d011682016040523d82523d6000602084013e61164e565b606091505b50805161166d5760405162461bcd60e51b815260040161048190611d3c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa7565b506001949350505050565b6060600d80546104d590611e83565b6060816116cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f757806116e181611ebe565b91506116f09050600a83611e2c565b91506116d1565b60008167ffffffffffffffff81111561171257611712611f45565b6040519080825280601f01601f19166020018201604052801561173c576020820181803683370190505b5090505b8415610fa757611751600183611e40565b915061175e600a86611ed9565b611769906030611e14565b60f81b81838151811061177e5761177e611f2f565b60200101906001600160f81b031916908160001a9053506117a0600a86611e2c565b9450611740565b600060016117b484610b5b565b6117be9190611e40565b600083815260086020526040902054909150808214611811576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061185690600190611e40565b6000838152600a60205260408120546009805493945090928490811061187e5761187e611f2f565b90600052602060002001549050806009838154811061189f5761189f611f2f565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806118d7576118d7611f19565b6001900381819060005260206000200160009055905550505050565b60006118fe83610b5b565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461194390611e83565b90600052602060002090601f01602090048101928261196557600085556119ab565b82601f1061197e5782800160ff198235161785556119ab565b828001600101855582156119ab579182015b828111156119ab578235825591602001919060010190611990565b506119b79291506119bb565b5090565b5b808211156119b757600081556001016119bc565b80356001600160a01b0381168114610d5d57600080fd5b80358015158114610d5d57600080fd5b600060208284031215611a0957600080fd5b6114ce826119d0565b60008060408385031215611a2557600080fd5b611a2e836119d0565b9150611a3c602084016119d0565b90509250929050565b600080600060608486031215611a5a57600080fd5b611a63846119d0565b9250611a71602085016119d0565b9150604084013590509250925092565b60008060008060808587031215611a9757600080fd5b611aa0856119d0565b9350611aae602086016119d0565b925060408501359150606085013567ffffffffffffffff80821115611ad257600080fd5b818701915087601f830112611ae657600080fd5b813581811115611af857611af8611f45565b604051601f8201601f19908116603f01168101908382118183101715611b2057611b20611f45565b816040528281528a6020848701011115611b3957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b7057600080fd5b611b79836119d0565b9150611a3c602084016119e7565b60008060408385031215611b9a57600080fd5b611ba3836119d0565b946020939093013593505050565b600060208284031215611bc357600080fd5b6114ce826119e7565b600060208284031215611bde57600080fd5b81356114ce81611f5b565b600060208284031215611bfb57600080fd5b81516114ce81611f5b565b60008060208385031215611c1957600080fd5b823567ffffffffffffffff80821115611c3157600080fd5b818501915085601f830112611c4557600080fd5b813581811115611c5457600080fd5b866020828501011115611c6657600080fd5b60209290920196919550909350505050565b600060208284031215611c8a57600080fd5b5035919050565b60008151808452611ca9816020860160208601611e57565b601f01601f19169290920160200192915050565b60008351611ccf818460208801611e57565b835190830190611ce3818360208801611e57565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1f90830184611c91565b9695505050505050565b6020815260006114ce6020830184611c91565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e2757611e27611eed565b500190565b600082611e3b57611e3b611f03565b500490565b600082821015611e5257611e52611eed565b500390565b60005b83811015611e72578181015183820152602001611e5a565b83811115610ca55750506000910152565b600181811c90821680611e9757607f821691505b60208210811415611eb857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ed257611ed2611eed565b5060010190565b600082611ee857611ee8611f03565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4b57600080fdfea26469706673582212207fc2a944edc859e582f1ca6a8b7c57d52c2e4dc67f87b364ea0901fb8c5ee2af64736f6c63430008070033

Deployed Bytecode Sourcemap

44785:1952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45990:153;;;;;;:::i;:::-;;:::i;:::-;;36051:224;;;;;;:::i;:::-;;:::i;:::-;;;5881:14:1;;5874:22;5856:41;;5844:2;5829:18;36051:224:0;;;;;;;;23545:100;;;:::i;:::-;;;;;;;:::i;25104:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5179:32:1;;;5161:51;;5149:2;5134:18;25104:221:0;5015:203:1;24627:411:0;;;;;;:::i;:::-;;:::i;36691:113::-;36779:10;:17;36691:113;;;14530:25:1;;;14518:2;14503:18;36691:113:0;14384:177:1;45052:94:0;;;:::i;25854:339::-;;;;;;:::i;:::-;;:::i;45251:106::-;;;;;;:::i;:::-;;:::i;36359:256::-;;;;;;:::i;:::-;;:::i;44974:43::-;;45013:4;44974:43;;26264:185;;;;;;:::i;:::-;;:::i;45365:120::-;;;;;;:::i;:::-;;:::i;36881:233::-;;;;;;:::i;:::-;;:::i;45876:106::-;;;;;;:::i;:::-;;:::i;23239:239::-;;;;;;:::i;:::-;;:::i;45582:286::-;;;;;;:::i;:::-;;:::i;45024:21::-;;;:::i;22969:208::-;;;;;;:::i;:::-;;:::i;43912:103::-;;;:::i;43261:87::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;43261:87;;23714:104;;;:::i;46151:::-;;;;;;:::i;:::-;;:::i;25397:155::-;;;;;;:::i;:::-;;:::i;26520:328::-;;;;;;:::i;:::-;;:::i;45153:22::-;;;;;;;;;46479:255;;;;;;:::i;:::-;;:::i;46371:100::-;46453:10;;46371:100;;25623:164;;;;;;:::i;:::-;-1:-1:-1;;;;;25744:25:0;;;25720:4;25744:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25623:164;44170:201;;;;;;:::i;:::-;;:::i;44866:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;45990:153;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;;;;;;;;;46103:32:::1;:13;46119:16:::0;;46103:32:::1;:::i;:::-;;45990:153:::0;;:::o;36051:224::-;36153:4;-1:-1:-1;;;;;;36177:50:0;;-1:-1:-1;;;36177:50:0;;:90;;;36231:36;36255:11;36231:23;:36::i;:::-;36170:97;36051:224;-1:-1:-1;;36051:224:0:o;23545:100::-;23599:13;23632:5;23625:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23545:100;:::o;25104:221::-;25180:7;28447:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28447:16:0;25200:73;;;;-1:-1:-1;;;25200:73:0;;11753:2:1;25200:73:0;;;11735:21:1;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:42;11934:19;;25200:73:0;11551:408:1;25200:73:0;-1:-1:-1;25293:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25293:24:0;;25104:221::o;24627:411::-;24708:13;24724:23;24739:7;24724:14;:23::i;:::-;24708:39;;24772:5;-1:-1:-1;;;;;24766:11:0;:2;-1:-1:-1;;;;;24766:11:0;;;24758:57;;;;-1:-1:-1;;;24758:57:0;;13353:2:1;24758:57:0;;;13335:21:1;13392:2;13372:18;;;13365:30;13431:34;13411:18;;;13404:62;-1:-1:-1;;;13482:18:1;;;13475:31;13523:19;;24758:57:0;13151:397:1;24758:57:0;21074:10;-1:-1:-1;;;;;24850:21:0;;;;:62;;-1:-1:-1;24875:37:0;24892:5;21074:10;25623:164;:::i;24875:37::-;24828:168;;;;-1:-1:-1;;;24828:168:0;;9799:2:1;24828:168:0;;;9781:21:1;9838:2;9818:18;;;9811:30;9877:34;9857:18;;;9850:62;9948:26;9928:18;;;9921:54;9992:19;;24828:168:0;9597:420:1;24828:168:0;25009:21;25018:2;25022:7;25009:8;:21::i;45052:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25854:339::-;26049:41;21074:10;26082:7;26049:18;:41::i;:::-;26041:103;;;;-1:-1:-1;;;26041:103:0;;;;;;;:::i;:::-;26157:28;26167:4;26173:2;26177:7;26157:9;:28::i;45251:106::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45321:21:0::1;;::::0;;;:9:::1;:21;::::0;;;;:28;;-1:-1:-1;;45321:28:0::1;45345:4;45321:28;::::0;;45251:106::o;36359:256::-;36456:7;36492:23;36509:5;36492:16;:23::i;:::-;36484:5;:31;36476:87;;;;-1:-1:-1;;;36476:87:0;;6334:2:1;36476:87:0;;;6316:21:1;6373:2;6353:18;;;6346:30;6412:34;6392:18;;;6385:62;-1:-1:-1;;;6463:18:1;;;6456:41;6514:19;;36476:87:0;6132:407:1;36476:87:0;-1:-1:-1;;;;;;36581:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36359:256::o;26264:185::-;26402:39;26419:4;26425:2;26429:7;26402:39;;;;;;;;;;;;:16;:39::i;45365:120::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45443:26:0::1;45472:5;45443:26:::0;;;:9:::1;:26;::::0;;;;:34;;-1:-1:-1;;45443:34:0::1;::::0;;45365:120::o;36881:233::-;36956:7;36992:30;36779:10;:17;;36691:113;36992:30;36984:5;:38;36976:95;;;;-1:-1:-1;;;36976:95:0;;14173:2:1;36976:95:0;;;14155:21:1;14212:2;14192:18;;;14185:30;14251:34;14231:18;;;14224:62;-1:-1:-1;;;14302:18:1;;;14295:42;14354:19;;36976:95:0;13971:408:1;36976:95:0;37089:10;37100:5;37089:17;;;;;;;;:::i;:::-;;;;;;;;;37082:24;;36881:233;;;:::o;45876:106::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;45954:20:::1;:7;45964:10:::0;;45954:20:::1;:::i;23239:239::-:0;23311:7;23347:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23347:16:0;23382:19;23374:73;;;;-1:-1:-1;;;23374:73:0;;10635:2:1;23374:73:0;;;10617:21:1;10674:2;10654:18;;;10647:30;10713:34;10693:18;;;10686:62;-1:-1:-1;;;10764:18:1;;;10757:39;10813:19;;23374:73:0;10433:405:1;45582:286:0;45662:10;45652:21;;;;:9;:21;;;;;;;;45644:52;;;;-1:-1:-1;;;45644:52:0;;11406:2:1;45644:52:0;;;11388:21:1;11445:2;11425:18;;;11418:30;-1:-1:-1;;;11464:18:1;;;11457:48;11522:18;;45644:52:0;11204:342:1;45644:52:0;45013:4;45715:10;;:25;45707:59;;;;-1:-1:-1;;;45707:59:0;;8688:2:1;45707:59:0;;;8670:21:1;8727:2;8707:18;;;8700:30;-1:-1:-1;;;8746:18:1;;;8739:51;8807:18;;45707:59:0;8486:345:1;45707:59:0;45785:10;;;;45777:42;;;;-1:-1:-1;;;45777:42:0;;9451:2:1;45777:42:0;;;9433:21:1;9490:2;9470:18;;;9463:30;-1:-1:-1;;;9509:18:1;;;9502:49;9568:18;;45777:42:0;9249:343:1;45777:42:0;45830:30;45836:9;45849:10;;45847:12;;;;;:::i;:::-;;;;;-1:-1:-1;45830:5:0;:30::i;:::-;45582:286;:::o;45024:21::-;;;;;;;:::i;22969:208::-;23041:7;-1:-1:-1;;;;;23069:19:0;;23061:74;;;;-1:-1:-1;;;23061:74:0;;10224:2:1;23061:74:0;;;10206:21:1;10263:2;10243:18;;;10236:30;10302:34;10282:18;;;10275:62;-1:-1:-1;;;10353:18:1;;;10346:40;10403:19;;23061:74:0;10022:406:1;23061:74:0;-1:-1:-1;;;;;;23153:16:0;;;;;:9;:16;;;;;;;22969:208::o;43912:103::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;43977:30:::1;44004:1;43977:18;:30::i;:::-;43912:103::o:0;23714:104::-;23770:13;23803:7;23796:14;;;;;:::i;46151:104::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;46223:10:::1;:24:::0;;-1:-1:-1;;46223:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46151:104::o;25397:155::-;25492:52;21074:10;25525:8;25535;25492:18;:52::i;:::-;25397:155;;:::o;26520:328::-;26695:41;21074:10;26728:7;26695:18;:41::i;:::-;26687:103;;;;-1:-1:-1;;;26687:103:0;;;;;;;:::i;:::-;26801:39;26815:4;26821:2;26825:7;26834:5;26801:13;:39::i;:::-;26520:328;;;;:::o;46479:255::-;46597:13;46638:7;46632:21;;;;;:::i;:::-;:26;46628:98;;-1:-1:-1;46628:98:0;;46667:13;46660:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46479:255;;;:::o;46628:98::-;46703:23;46718:7;46703:14;:23::i;46628:98::-;46479:255;;;:::o;44170:201::-;43307:7;43334:6;-1:-1:-1;;;;;43334:6:0;21074:10;43481:23;43473:68;;;;-1:-1:-1;;;43473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44259:22:0;::::1;44251:73;;;::::0;-1:-1:-1;;;44251:73:0;;7165:2:1;44251:73:0::1;::::0;::::1;7147:21:1::0;7204:2;7184:18;;;7177:30;7243:34;7223:18;;;7216:62;-1:-1:-1;;;7294:18:1;;;7287:36;7340:19;;44251:73:0::1;6963:402:1::0;44251:73:0::1;44335:28;44354:8;44335:18;:28::i;22600:305::-:0;22702:4;-1:-1:-1;;;;;;22739:40:0;;-1:-1:-1;;;22739:40:0;;:105;;-1:-1:-1;;;;;;;22796:48:0;;-1:-1:-1;;;22796:48:0;22739:105;:158;;;-1:-1:-1;;;;;;;;;;13512:40:0;;;22861:36;13403:157;32340:174;32415:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32415:29:0;-1:-1:-1;;;;;32415:29:0;;;;;;;;:24;;32469:23;32415:24;32469:14;:23::i;:::-;-1:-1:-1;;;;;32460:46:0;;;;;;;;;;;32340:174;;:::o;28652:348::-;28745:4;28447:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28447:16:0;28762:73;;;;-1:-1:-1;;;28762:73:0;;9038:2:1;28762:73:0;;;9020:21:1;9077:2;9057:18;;;9050:30;9116:34;9096:18;;;9089:62;-1:-1:-1;;;9167:18:1;;;9160:42;9219:19;;28762:73:0;8836:408:1;28762:73:0;28846:13;28862:23;28877:7;28862:14;:23::i;:::-;28846:39;;28915:5;-1:-1:-1;;;;;28904:16:0;:7;-1:-1:-1;;;;;28904:16:0;;:51;;;;28948:7;-1:-1:-1;;;;;28924:31:0;:20;28936:7;28924:11;:20::i;:::-;-1:-1:-1;;;;;28924:31:0;;28904:51;:87;;;-1:-1:-1;;;;;;25744:25:0;;;25720:4;25744:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28959:32;28896:96;28652:348;-1:-1:-1;;;;28652:348:0:o;31644:578::-;31803:4;-1:-1:-1;;;;;31776:31:0;:23;31791:7;31776:14;:23::i;:::-;-1:-1:-1;;;;;31776:31:0;;31768:85;;;;-1:-1:-1;;;31768:85:0;;12527:2:1;31768:85:0;;;12509:21:1;12566:2;12546:18;;;12539:30;12605:34;12585:18;;;12578:62;-1:-1:-1;;;12656:18:1;;;12649:39;12705:19;;31768:85:0;12325:405:1;31768:85:0;-1:-1:-1;;;;;31872:16:0;;31864:65;;;;-1:-1:-1;;;31864:65:0;;7929:2:1;31864:65:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:18:1;;;8051:34;8102:19;;31864:65:0;7727:400:1;31864:65:0;31942:39;31963:4;31969:2;31973:7;31942:20;:39::i;:::-;32046:29;32063:1;32067:7;32046:8;:29::i;:::-;-1:-1:-1;;;;;32088:15:0;;;;;;:9;:15;;;;;:20;;32107:1;;32088:15;:20;;32107:1;;32088:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32119:13:0;;;;;;:9;:13;;;;;:18;;32136:1;;32119:13;:18;;32136:1;;32119:18;:::i;:::-;;;;-1:-1:-1;;32148:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32148:21:0;-1:-1:-1;;;;;32148:21:0;;;;;;;;;32187:27;;32148:16;;32187:27;;;;;;;31644:578;;;:::o;30336:382::-;-1:-1:-1;;;;;30416:16:0;;30408:61;;;;-1:-1:-1;;;30408:61:0;;11045:2:1;30408:61:0;;;11027:21:1;;;11064:18;;;11057:30;11123:34;11103:18;;;11096:62;11175:18;;30408:61:0;10843:356:1;30408:61:0;28423:4;28447:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28447:16:0;:30;30480:58;;;;-1:-1:-1;;;30480:58:0;;7572:2:1;30480:58:0;;;7554:21:1;7611:2;7591:18;;;7584:30;7650;7630:18;;;7623:58;7698:18;;30480:58:0;7370:352:1;30480:58:0;30551:45;30580:1;30584:2;30588:7;30551:20;:45::i;:::-;-1:-1:-1;;;;;30609:13:0;;;;;;:9;:13;;;;;:18;;30626:1;;30609:13;:18;;30626:1;;30609:18;:::i;:::-;;;;-1:-1:-1;;30638:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30638:21:0;-1:-1:-1;;;;;30638:21:0;;;;;;;;30677:33;;30638:16;;;30677:33;;30638:16;;30677:33;30336:382;;:::o;44531:191::-;44605:16;44624:6;;-1:-1:-1;;;;;44641:17:0;;;-1:-1:-1;;;;;;44641:17:0;;;;;;44674:40;;44624:6;;;;;;;44674:40;;44605:16;44674:40;44594:128;44531:191;:::o;32656:315::-;32811:8;-1:-1:-1;;;;;32802:17:0;:5;-1:-1:-1;;;;;32802:17:0;;;32794:55;;;;-1:-1:-1;;;32794:55:0;;8334:2:1;32794:55:0;;;8316:21:1;8373:2;8353:18;;;8346:30;8412:27;8392:18;;;8385:55;8457:18;;32794:55:0;8132:349:1;32794:55:0;-1:-1:-1;;;;;32860:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32860:46:0;;;;;;;;;;32922:41;;5856::1;;;32922::0;;5829:18:1;32922:41:0;;;;;;;32656:315;;;:::o;27730:::-;27887:28;27897:4;27903:2;27907:7;27887:9;:28::i;:::-;27934:48;27957:4;27963:2;27967:7;27976:5;27934:22;:48::i;:::-;27926:111;;;;-1:-1:-1;;;27926:111:0;;;;;;;:::i;23889:334::-;28423:4;28447:16;;;:7;:16;;;;;;23962:13;;-1:-1:-1;;;;;28447:16:0;23988:76;;;;-1:-1:-1;;;23988:76:0;;12937:2:1;23988:76:0;;;12919:21:1;12976:2;12956:18;;;12949:30;13015:34;12995:18;;;12988:62;-1:-1:-1;;;13066:18:1;;;13059:45;13121:19;;23988:76:0;12735:411:1;23988:76:0;24077:21;24101:10;:8;:10::i;:::-;24077:34;;24153:1;24135:7;24129:21;:25;:86;;;;;;;;;;;;;;;;;24181:7;24190:18;:7;:16;:18::i;:::-;24164:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24129:86;24122:93;23889:334;-1:-1:-1;;;23889:334:0:o;37727:589::-;-1:-1:-1;;;;;37933:18:0;;37929:187;;37968:40;38000:7;39143:10;:17;;39116:24;;;;:15;:24;;;;;:44;;;39171:24;;;;;;;;;;;;39039:164;37968:40;37929:187;;;38038:2;-1:-1:-1;;;;;38030:10:0;:4;-1:-1:-1;;;;;38030:10:0;;38026:90;;38057:47;38090:4;38096:7;38057:32;:47::i;:::-;-1:-1:-1;;;;;38130:16:0;;38126:183;;38163:45;38200:7;38163:36;:45::i;38126:183::-;38236:4;-1:-1:-1;;;;;38230:10:0;:2;-1:-1:-1;;;;;38230:10:0;;38226:83;;38257:40;38285:2;38289:7;38257:27;:40::i;33536:799::-;33691:4;-1:-1:-1;;;;;33712:13:0;;3582:20;3630:8;33708:620;;33748:72;;-1:-1:-1;;;33748:72:0;;-1:-1:-1;;;;;33748:36:0;;;;;:72;;21074:10;;33799:4;;33805:7;;33814:5;;33748:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33748:72:0;;;;;;;;-1:-1:-1;;33748:72:0;;;;;;;;;;;;:::i;:::-;;;33744:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33990:13:0;;33986:272;;34033:60;;-1:-1:-1;;;34033:60:0;;;;;;;:::i;33986:272::-;34208:6;34202:13;34193:6;34189:2;34185:15;34178:38;33744:529;-1:-1:-1;;;;;;33871:51:0;-1:-1:-1;;;33871:51:0;;-1:-1:-1;33864:58:0;;33708:620;-1:-1:-1;34312:4:0;33536:799;;;;;;:::o;46263:100::-;46315:13;46348:7;46341:14;;;;;:::i;680:723::-;736:13;957:10;953:53;;-1:-1:-1;;984:10:0;;;;;;;;;;;;-1:-1:-1;;;984:10:0;;;;;680:723::o;953:53::-;1031:5;1016:12;1072:78;1079:9;;1072:78;;1105:8;;;;:::i;:::-;;-1:-1:-1;1128:10:0;;-1:-1:-1;1136:2:0;1128:10;;:::i;:::-;;;1072:78;;;1160:19;1192:6;1182:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1182:17:0;;1160:39;;1210:154;1217:10;;1210:154;;1244:11;1254:1;1244:11;;:::i;:::-;;-1:-1:-1;1313:10:0;1321:2;1313:5;:10;:::i;:::-;1300:24;;:2;:24;:::i;:::-;1287:39;;1270:6;1277;1270:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1270:56:0;;;;;;;;-1:-1:-1;1341:11:0;1350:2;1341:11;;:::i;:::-;;;1210:154;;39830:988;40096:22;40146:1;40121:22;40138:4;40121:16;:22::i;:::-;:26;;;;:::i;:::-;40158:18;40179:26;;;:17;:26;;;;;;40096:51;;-1:-1:-1;40312:28:0;;;40308:328;;-1:-1:-1;;;;;40379:18:0;;40357:19;40379:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40430:30;;;;;;:44;;;40547:30;;:17;:30;;;;;:43;;;40308:328;-1:-1:-1;40732:26:0;;;;:17;:26;;;;;;;;40725:33;;;-1:-1:-1;;;;;40776:18:0;;;;;:12;:18;;;;;:34;;;;;;;40769:41;39830:988::o;41113:1079::-;41391:10;:17;41366:22;;41391:21;;41411:1;;41391:21;:::i;:::-;41423:18;41444:24;;;:15;:24;;;;;;41817:10;:26;;41366:46;;-1:-1:-1;41444:24:0;;41366:46;;41817:26;;;;;;:::i;:::-;;;;;;;;;41795:48;;41881:11;41856:10;41867;41856:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41961:28;;;:15;:28;;;;;;;:41;;;42133:24;;;;;42126:31;42168:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41184:1008;;;41113:1079;:::o;38617:221::-;38702:14;38719:20;38736:2;38719:16;:20::i;:::-;-1:-1:-1;;;;;38750:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38795:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38617:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:160;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3713:18;3754:2;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:257::-;4319:3;4357:5;4351:12;4384:6;4379:3;4372:19;4400:63;4456:6;4449:4;4444:3;4440:14;4433:4;4426:5;4422:16;4400:63;:::i;:::-;4517:2;4496:15;-1:-1:-1;;4492:29:1;4483:39;;;;4524:4;4479:50;;4278:257;-1:-1:-1;;4278:257:1:o;4540:470::-;4719:3;4757:6;4751:13;4773:53;4819:6;4814:3;4807:4;4799:6;4795:17;4773:53;:::i;:::-;4889:13;;4848:16;;;;4911:57;4889:13;4848:16;4945:4;4933:17;;4911:57;:::i;:::-;4984:20;;4540:470;-1:-1:-1;;;;4540:470:1:o;5223:488::-;-1:-1:-1;;;;;5492:15:1;;;5474:34;;5544:15;;5539:2;5524:18;;5517:43;5591:2;5576:18;;5569:34;;;5639:3;5634:2;5619:18;;5612:31;;;5417:4;;5660:45;;5685:19;;5677:6;5660:45;:::i;:::-;5652:53;5223:488;-1:-1:-1;;;;;;5223:488:1:o;5908:219::-;6057:2;6046:9;6039:21;6020:4;6077:44;6117:2;6106:9;6102:18;6094:6;6077:44;:::i;6544:414::-;6746:2;6728:21;;;6785:2;6765:18;;;6758:30;6824:34;6819:2;6804:18;;6797:62;-1:-1:-1;;;6890:2:1;6875:18;;6868:48;6948:3;6933:19;;6544:414::o;11964:356::-;12166:2;12148:21;;;12185:18;;;12178:30;12244:34;12239:2;12224:18;;12217:62;12311:2;12296:18;;11964:356::o;13553:413::-;13755:2;13737:21;;;13794:2;13774:18;;;13767:30;13833:34;13828:2;13813:18;;13806:62;-1:-1:-1;;;13899:2:1;13884:18;;13877:47;13956:3;13941:19;;13553:413::o;14566:128::-;14606:3;14637:1;14633:6;14630:1;14627:13;14624:39;;;14643:18;;:::i;:::-;-1:-1:-1;14679:9:1;;14566:128::o;14699:120::-;14739:1;14765;14755:35;;14770:18;;:::i;:::-;-1:-1:-1;14804:9:1;;14699:120::o;14824:125::-;14864:4;14892:1;14889;14886:8;14883:34;;;14897:18;;:::i;:::-;-1:-1:-1;14934:9:1;;14824:125::o;14954:258::-;15026:1;15036:113;15050:6;15047:1;15044:13;15036:113;;;15126:11;;;15120:18;15107:11;;;15100:39;15072:2;15065:10;15036:113;;;15167:6;15164:1;15161:13;15158:48;;;-1:-1:-1;;15202:1:1;15184:16;;15177:27;14954:258::o;15217:380::-;15296:1;15292:12;;;;15339;;;15360:61;;15414:4;15406:6;15402:17;15392:27;;15360:61;15467:2;15459:6;15456:14;15436:18;15433:38;15430:161;;;15513:10;15508:3;15504:20;15501:1;15494:31;15548:4;15545:1;15538:15;15576:4;15573:1;15566:15;15430:161;;15217:380;;;:::o;15602:135::-;15641:3;-1:-1:-1;;15662:17:1;;15659:43;;;15682:18;;:::i;:::-;-1:-1:-1;15729:1:1;15718:13;;15602:135::o;15742:112::-;15774:1;15800;15790:35;;15805:18;;:::i;:::-;-1:-1:-1;15839:9:1;;15742:112::o;15859:127::-;15920:10;15915:3;15911:20;15908:1;15901:31;15951:4;15948:1;15941:15;15975:4;15972:1;15965:15;15991:127;16052:10;16047:3;16043:20;16040:1;16033:31;16083:4;16080:1;16073:15;16107:4;16104:1;16097:15;16123:127;16184:10;16179:3;16175:20;16172:1;16165:31;16215:4;16212:1;16205:15;16239:4;16236:1;16229:15;16255:127;16316:10;16311:3;16307:20;16304:1;16297:31;16347:4;16344:1;16337:15;16371:4;16368:1;16361:15;16387:127;16448:10;16443:3;16439:20;16436:1;16429:31;16479:4;16476:1;16469:15;16503:4;16500:1;16493:15;16519:131;-1:-1:-1;;;;;;16593:32:1;;16583:43;;16573:71;;16640:1;16637;16630:12

Swarm Source

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