Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,393 MOE
Holders
381
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 MOELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MOE
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-10 */ // SPDX-License-Identifier: MIT // Sources flattened with hardhat v2.9.1 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/token/ERC721/[email protected] // 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/[email protected] // 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/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // 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/utils/[email protected] // 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/introspection/[email protected] // 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 erc721a/contracts/[email protected] // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ├╖ 2 + 1, and for v in (302): v Γêê {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File contracts/contract.sol pragma solidity ^0.8.12; contract MOE is ERC721A, Ownable { using Strings for uint256; enum MINT_STAGES { STOPPED, PRESALE, SALE } uint256 public maxTokensPresale = 4; uint256 public maxTokensPublic = 10; uint256 public tokenPricePresale = 0.075 ether; uint256 public tokenPricePublicSale = 0.075 ether; string public tokenBaseURI = ""; string public unrevealedURI = "ipfs://QmYXEsJpP7SGZpSZnUw7cVD84U1MHf4V21bgxTS7jUwjWQ/"; string public URIExtension = ".json"; MINT_STAGES public mintStage = MINT_STAGES.STOPPED; // 0 stopped 1 presale 2 sale uint256 public constant TEAM_LIMIT = 444; uint256 public teamMintedAmount = 0; uint256 public constant BUY_TOTAL_AMOUNT = 4444; uint256 public boughtAmount = 0; bytes32 public whitelistRoot; mapping(address => uint256) public purchased; constructor() ERC721A("WaifuMOE", "MOE") { } function _startTokenId() internal pure override(ERC721A) returns (uint256) { return 1; } function hasPresaleStarted() private view returns (bool) { return mintStage == MINT_STAGES.PRESALE; } function hasPublicSaleStarted() private view returns (bool) { return mintStage == MINT_STAGES.SALE; } function tokenPrice() public view returns (uint256) { if (mintStage == MINT_STAGES.SALE) { return tokenPricePublicSale; } else { return tokenPricePresale; } } function min(uint256 a, uint256 b) public pure returns (uint256) { return a > b ? b : a; } function safeSubtract(uint256 a, uint256 b) public pure returns (uint256) { if (a < b) { return 0; } return a - b; } function getMaxTokensAllowed(address target, bytes32[] memory proof) public view returns (uint256) { uint256 tokensAllowed = 0; if (hasPublicSaleStarted()) { if(verify(target, proof)) { tokensAllowed = safeSubtract(maxTokensPresale + maxTokensPublic, purchased[target]); } else { tokensAllowed = safeSubtract(maxTokensPublic, purchased[target]); } } else if (hasPresaleStarted() && verify(target, proof)) { tokensAllowed = safeSubtract(maxTokensPresale, purchased[target]); } uint256 publicSaleTokensLeft = safeSubtract(BUY_TOTAL_AMOUNT, boughtAmount); tokensAllowed = min(tokensAllowed, publicSaleTokensLeft); return tokensAllowed; } function getContractInfo(address target, bytes32[] memory proof) external view returns ( bool _hasPresaleStarted, bool _hasPublicSaleStarted, uint256 _maxTokensAllowed, uint256 _tokenPrice, uint256 _boughtAmount, uint256 _purchasedAmount, uint256 _presaleTotalLimit, bytes32 _whitelistRoot ) { _hasPresaleStarted = hasPresaleStarted(); _hasPublicSaleStarted = hasPublicSaleStarted(); _maxTokensAllowed = getMaxTokensAllowed(target, proof); _tokenPrice = tokenPrice(); _boughtAmount = boughtAmount; _presaleTotalLimit = maxTokensPresale; _whitelistRoot = whitelistRoot; _purchasedAmount = purchased[target]; } function setWhitelistRoot(bytes32 _whitelistRoot) public onlyOwner { whitelistRoot = _whitelistRoot; } function setTokenPricePresale(uint256 val) external onlyOwner { tokenPricePresale = val; } function setTokenPricePublicSale(uint256 val) external onlyOwner { tokenPricePublicSale = val; } function verify(address account, bytes32[] memory proof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(account)); return MerkleProof.verify(proof, whitelistRoot, leaf); } function setMaxTokensPresale(uint256 val) external onlyOwner { maxTokensPresale = val; } function setMaxTokensPublic(uint256 val) external onlyOwner{ maxTokensPublic = val; } function stopSale() external onlyOwner { mintStage = MINT_STAGES.STOPPED; } function startPresale() external onlyOwner { mintStage = MINT_STAGES.PRESALE; } function startPublicSale() external onlyOwner { mintStage = MINT_STAGES.SALE; } function mintTeam(uint256 amount, address to) external onlyOwner { require(teamMintedAmount + amount <= TEAM_LIMIT, "Minting more than the team limit"); _safeMint(to, amount); teamMintedAmount += amount; boughtAmount += amount; } function mint(uint256 amount, bytes32[] memory proof) external payable { require(msg.value >= tokenPrice() * amount, "Incorrect ETH sent"); require(amount <= getMaxTokensAllowed(msg.sender, proof), "Cannot mint more than the max allowed tokens"); _safeMint(msg.sender, amount); purchased[msg.sender] += amount; boughtAmount += amount; } function _baseURI() internal view override(ERC721A) returns (string memory) { return tokenBaseURI; } function tokenURI(uint256 tokenId) public view override(ERC721A) 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(), URIExtension)) : unrevealedURI; } function setBaseURI(string calldata URI) external onlyOwner { tokenBaseURI = URI; } function setUnrevealedURI(string calldata URI) external onlyOwner { unrevealedURI = URI; } function setURIExtension(string calldata URI) external onlyOwner { URIExtension = URI; } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_TOTAL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URIExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boughtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getContractInfo","outputs":[{"internalType":"bool","name":"_hasPresaleStarted","type":"bool"},{"internalType":"bool","name":"_hasPublicSaleStarted","type":"bool"},{"internalType":"uint256","name":"_maxTokensAllowed","type":"uint256"},{"internalType":"uint256","name":"_tokenPrice","type":"uint256"},{"internalType":"uint256","name":"_boughtAmount","type":"uint256"},{"internalType":"uint256","name":"_purchasedAmount","type":"uint256"},{"internalType":"uint256","name":"_presaleTotalLimit","type":"uint256"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getMaxTokensAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStage","outputs":[{"internalType":"enum MOE.MINT_STAGES","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"safeSubtract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setURIExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":[],"name":"teamMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6004600955600a805567010a741a46278000600b819055600c5560a06040819052600060808190526200003591600d9162000184565b506040518060600160405280603681526020016200289e6036913980516200006691600e9160209091019062000184565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200009591600f9162000184565b506010805460ff1916905560006011819055601255348015620000b757600080fd5b50604080518082018252600881526757616966754d4f4560c01b6020808301918252835180850190945260038452624d4f4560e81b908401528151919291620001039160029162000184565b5080516200011990600390602084019062000184565b50506001600055506200012c3362000132565b62000267565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000192906200022a565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b600181811c908216806200023f57607f821691505b602082108114156200026157634e487b7160e01b600052602260045260246000fd5b50919050565b61262780620002776000396000f3fe6080604052600436106102e45760003560e01c80637035bf1811610190578063b88d4fde116100dc578063e316380811610095578063f150a0491161006f578063f150a0491461089d578063f2fde38b146108c4578063f5aa406d146108e4578063fe2c7fee1461090457600080fd5b8063e316380814610829578063e36b0b371461083f578063e985e9c51461085457600080fd5b8063b88d4fde14610780578063b8de970a146107a0578063ba41b0c6146107b6578063c87b56dd146107c9578063d30fbd0d146107e9578063d70c3dba1461080957600080fd5b80637ff9b5961161014957806395d89b411161012357806395d89b4114610715578063a22cb4651461072a578063a6d21bc61461074a578063b76a0df41461076057600080fd5b80637ff9b596146106c25780638da5cb5b146106d757806390709751146106f557600080fd5b80637035bf181461062257806370a0823114610637578063715018a61461065757806378c5fe371461066c5780637ae2b5c7146106825780637bffd755146106a257600080fd5b8063386bfc981161024f57806346ca1ab81161020857806355f804b3116101e257806355f804b3146105b757806359aefc59146105d75780635cfbd28b146105ed5780636352211e1461060257600080fd5b806346ca1ab8146105555780634e99b80014610575578063522fe98e1461058a57600080fd5b8063386bfc98146104b45780633ccfd60b146104ca57806342842e0e146104df5780634324851a146104ff57806345c3274f1461051f57806346c4dc271461053557600080fd5b806318160ddd116102a157806318160ddd146103c457806323b872dd146103eb5780632b0384111461040b5780632d84a94c14610421578063311df29a1461047e578063368bf74e1461049e57600080fd5b806301ffc9a7146102e957806304c98b2b1461031e57806306fdde0314610335578063081812fc14610357578063095ea7b31461038f5780630c1c972a146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004611eee565b610924565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610976565b005b34801561034157600080fd5b5061034a6109bf565b6040516103159190611f63565b34801561036357600080fd5b50610377610372366004611f76565b610a51565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103336103aa366004611fab565b610a95565b3480156103bb57600080fd5b50610333610b23565b3480156103d057600080fd5b5060015460005403600019015b604051908152602001610315565b3480156103f757600080fd5b50610333610406366004611fd5565b610b61565b34801561041757600080fd5b506103dd600b5481565b34801561042d57600080fd5b5061044161043c3660046120d6565b610b6c565b6040805198151589529615156020890152958701949094526060860192909252608085015260a084015260c083015260e082015261010001610315565b34801561048a57600080fd5b50610333610499366004611f76565b610bdc565b3480156104aa57600080fd5b506103dd6101bc81565b3480156104c057600080fd5b506103dd60135481565b3480156104d657600080fd5b50610333610c0b565b3480156104eb57600080fd5b506103336104fa366004611fd5565b610c5b565b34801561050b57600080fd5b506103dd61051a3660046120d6565b610c76565b34801561052b57600080fd5b506103dd60125481565b34801561054157600080fd5b50610333610550366004611f76565b610d5f565b34801561056157600080fd5b50610333610570366004611f76565b610d8e565b34801561058157600080fd5b5061034a610dbd565b34801561059657600080fd5b506103dd6105a5366004612123565b60146020526000908152604090205481565b3480156105c357600080fd5b506103336105d236600461213e565b610e4b565b3480156105e357600080fd5b506103dd600a5481565b3480156105f957600080fd5b5061034a610e81565b34801561060e57600080fd5b5061037761061d366004611f76565b610e8e565b34801561062e57600080fd5b5061034a610ea0565b34801561064357600080fd5b506103dd610652366004612123565b610ead565b34801561066357600080fd5b50610333610efb565b34801561067857600080fd5b506103dd600c5481565b34801561068e57600080fd5b506103dd61069d3660046121af565b610f2f565b3480156106ae57600080fd5b506103336106bd3660046121d1565b610f47565b3480156106ce57600080fd5b506103dd61100e565b3480156106e357600080fd5b506008546001600160a01b0316610377565b34801561070157600080fd5b5061033361071036600461213e565b61103d565b34801561072157600080fd5b5061034a611073565b34801561073657600080fd5b506103336107453660046121fd565b611082565b34801561075657600080fd5b506103dd61115c81565b34801561076c57600080fd5b5061030961077b3660046120d6565b611118565b34801561078c57600080fd5b5061033361079b366004612239565b611169565b3480156107ac57600080fd5b506103dd60095481565b6103336107c43660046122f8565b6111ba565b3480156107d557600080fd5b5061034a6107e4366004611f76565b6112a8565b3480156107f557600080fd5b506103dd6108043660046121af565b6113f0565b34801561081557600080fd5b50610333610824366004611f76565b61140c565b34801561083557600080fd5b506103dd60115481565b34801561084b57600080fd5b5061033361143b565b34801561086057600080fd5b5061030961086f366004612328565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108a957600080fd5b506010546108b79060ff1681565b6040516103159190612368565b3480156108d057600080fd5b506103336108df366004612123565b611479565b3480156108f057600080fd5b506103336108ff366004611f76565b611514565b34801561091057600080fd5b5061033361091f36600461213e565b611543565b60006001600160e01b031982166380ac58cd60e01b148061095557506001600160e01b03198216635b5e139f60e01b145b8061097057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109a95760405162461bcd60e51b81526004016109a090612390565b60405180910390fd5b601080546001919060ff191682805b0217905550565b6060600280546109ce906123c5565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906123c5565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000610a5c82611579565b610a79576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610aa082610e8e565b9050806001600160a01b0316836001600160a01b03161415610ad55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610af55750610af3813361086f565b155b15610b13576040516367d9dca160e11b815260040160405180910390fd5b610b1e8383836115b2565b505050565b6008546001600160a01b03163314610b4d5760405162461bcd60e51b81526004016109a090612390565b601080546002919060ff19166001836109b8565b610b1e83838361160e565b600080600080600080600080610b80611822565b9750610b8a611844565b9650610b968a8a610c76565b9550610ba061100e565b6012546009546013546001600160a01b03909d166000908152601460205260409020549a9d999c989b5091999098909791965090945092505050565b6008546001600160a01b03163314610c065760405162461bcd60e51b81526004016109a090612390565b600b55565b6008546001600160a01b03163314610c355760405162461bcd60e51b81526004016109a090612390565b60405133904780156108fc02916000818181858888f19350505050610c5957600080fd5b565b610b1e83838360405180602001604052806000815250611169565b600080610c81611844565b15610cf357610c908484611118565b15610ccd57610cc6600a54600954610ca89190612416565b6001600160a01b0386166000908152601460205260409020546113f0565b9050610d3a565b600a546001600160a01b038516600090815260146020526040902054610cc691906113f0565b610cfb611822565b8015610d0c5750610d0c8484611118565b15610d3a576009546001600160a01b038516600090815260146020526040902054610d3791906113f0565b90505b6000610d4a61115c6012546113f0565b9050610d568282610f2f565b95945050505050565b6008546001600160a01b03163314610d895760405162461bcd60e51b81526004016109a090612390565b600c55565b6008546001600160a01b03163314610db85760405162461bcd60e51b81526004016109a090612390565b600955565b600d8054610dca906123c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610df6906123c5565b8015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b505050505081565b6008546001600160a01b03163314610e755760405162461bcd60e51b81526004016109a090612390565b610b1e600d8383611e3f565b600f8054610dca906123c5565b6000610e998261184d565b5192915050565b600e8054610dca906123c5565b60006001600160a01b038216610ed6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f255760405162461bcd60e51b81526004016109a090612390565b610c596000611974565b6000818311610f3e5782610f40565b815b9392505050565b6008546001600160a01b03163314610f715760405162461bcd60e51b81526004016109a090612390565b6101bc82601154610f829190612416565b1115610fd05760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206d6f7265207468616e20746865207465616d206c696d697460448201526064016109a0565b610fda81836119c6565b8160116000828254610fec9190612416565b9250508190555081601260008282546110059190612416565b90915550505050565b6000600260105460ff16600281111561102957611029612352565b14156110365750600c5490565b50600b5490565b6008546001600160a01b031633146110675760405162461bcd60e51b81526004016109a090612390565b610b1e600f8383611e3f565b6060600380546109ce906123c5565b6001600160a01b0382163314156110ac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905061116183601354836119e4565b949350505050565b61117484848461160e565b6001600160a01b0383163b151580156111965750611194848484846119fa565b155b156111b4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b816111c361100e565b6111cd919061242e565b3410156112115760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c9958dd08115512081cd95b9d60721b60448201526064016109a0565b61121b3382610c76565b82111561127f5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820616c60448201526b6c6f77656420746f6b656e7360a01b60648201526084016109a0565b61128933836119c6565b3360009081526014602052604081208054849290610fec908490612416565b60606112b382611579565b6113175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a0565b6000611321611ae2565b905060008151116113bc57600e8054611339906123c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611365906123c5565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b5050505050610f40565b806113c684611af1565b600f6040516020016113da9392919061244d565b6040516020818303038152906040529392505050565b60008183101561140257506000610970565b610f408284612511565b6008546001600160a01b031633146114365760405162461bcd60e51b81526004016109a090612390565b600a55565b6008546001600160a01b031633146114655760405162461bcd60e51b81526004016109a090612390565b601080546000919060ff19166001836109b8565b6008546001600160a01b031633146114a35760405162461bcd60e51b81526004016109a090612390565b6001600160a01b0381166115085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a0565b61151181611974565b50565b6008546001600160a01b0316331461153e5760405162461bcd60e51b81526004016109a090612390565b601355565b6008546001600160a01b0316331461156d5760405162461bcd60e51b81526004016109a090612390565b610b1e600e8383611e3f565b60008160011115801561158d575060005482105b8015610970575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116198261184d565b80519091506000906001600160a01b0316336001600160a01b0316148061164757508151611647903361086f565b8061166257503361165784610a51565b6001600160a01b0316145b90508061168257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116b75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116de57604051633a954ecd60e21b815260040160405180910390fd5b6116ee60008484600001516115b2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117d8576000548110156117d857825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600060015b60105460ff16600281111561183e5761183e612352565b14905090565b60006002611827565b6040805160608101825260008082526020820181905291810191909152818060011115801561187d575060005481105b1561195b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119595780516001600160a01b0316156118f0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611954579392505050565b6118f0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119e0828260405180602001604052806000815250611bee565b5050565b6000826119f18584611bfb565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a2f903390899088908890600401612528565b6020604051808303816000875af1925050508015611a6a575060408051601f3d908101601f19168201909252611a6791810190612565565b60015b611ac5573d808015611a98576040519150601f19603f3d011682016040523d82523d6000602084013e611a9d565b606091505b508051611abd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d80546109ce906123c5565b606081611b155750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3f5780611b2981612582565b9150611b389050600a836125b3565b9150611b19565b6000816001600160401b03811115611b5957611b59612011565b6040519080825280601f01601f191660200182016040528015611b83576020820181803683370190505b5090505b841561116157611b98600183612511565b9150611ba5600a866125c7565b611bb0906030612416565b60f81b818381518110611bc557611bc56125db565b60200101906001600160f81b031916908160001a905350611be7600a866125b3565b9450611b87565b610b1e8383836001611c6f565b600081815b8451811015611c67576000858281518110611c1d57611c1d6125db565b60200260200101519050808311611c435760008381526020829052604090209250611c54565b600081815260208490526040902092505b5080611c5f81612582565b915050611c00565b509392505050565b6000546001600160a01b038516611c9857604051622e076360e81b815260040160405180910390fd5b83611cb65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d6757506001600160a01b0387163b15155b15611df0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611db860008884806001019550886119fa565b611dd5576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d6d578260005414611deb57600080fd5b611e36565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611df1575b5060005561181b565b828054611e4b906123c5565b90600052602060002090601f016020900481019282611e6d5760008555611eb3565b82601f10611e865782800160ff19823516178555611eb3565b82800160010185558215611eb3579182015b82811115611eb3578235825591602001919060010190611e98565b50611ebf929150611ec3565b5090565b5b80821115611ebf5760008155600101611ec4565b6001600160e01b03198116811461151157600080fd5b600060208284031215611f0057600080fd5b8135610f4081611ed8565b60005b83811015611f26578181015183820152602001611f0e565b838111156111b45750506000910152565b60008151808452611f4f816020860160208601611f0b565b601f01601f19169290920160200192915050565b602081526000610f406020830184611f37565b600060208284031215611f8857600080fd5b5035919050565b80356001600160a01b0381168114611fa657600080fd5b919050565b60008060408385031215611fbe57600080fd5b611fc783611f8f565b946020939093013593505050565b600080600060608486031215611fea57600080fd5b611ff384611f8f565b925061200160208501611f8f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561204f5761204f612011565b604052919050565b600082601f83011261206857600080fd5b813560206001600160401b0382111561208357612083612011565b8160051b612092828201612027565b92835284810182019282810190878511156120ac57600080fd5b83870192505b848310156120cb578235825291830191908301906120b2565b979650505050505050565b600080604083850312156120e957600080fd5b6120f283611f8f565b915060208301356001600160401b0381111561210d57600080fd5b61211985828601612057565b9150509250929050565b60006020828403121561213557600080fd5b610f4082611f8f565b6000806020838503121561215157600080fd5b82356001600160401b038082111561216857600080fd5b818501915085601f83011261217c57600080fd5b81358181111561218b57600080fd5b86602082850101111561219d57600080fd5b60209290920196919550909350505050565b600080604083850312156121c257600080fd5b50508035926020909101359150565b600080604083850312156121e457600080fd5b823591506121f460208401611f8f565b90509250929050565b6000806040838503121561221057600080fd5b61221983611f8f565b91506020830135801515811461222e57600080fd5b809150509250929050565b6000806000806080858703121561224f57600080fd5b61225885611f8f565b93506020612267818701611f8f565b93506040860135925060608601356001600160401b038082111561228a57600080fd5b818801915088601f83011261229e57600080fd5b8135818111156122b0576122b0612011565b6122c2601f8201601f19168501612027565b915080825289848285010111156122d857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561230b57600080fd5b8235915060208301356001600160401b0381111561210d57600080fd5b6000806040838503121561233b57600080fd5b61234483611f8f565b91506121f460208401611f8f565b634e487b7160e01b600052602160045260246000fd5b602081016003831061238a57634e487b7160e01b600052602160045260246000fd5b91905290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123d957607f821691505b602082108114156123fa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561242957612429612400565b500190565b600081600019048311821515161561244857612448612400565b500290565b6000845160206124608285838a01611f0b565b8551918401916124738184848a01611f0b565b8554920191600090600181811c908083168061249057607f831692505b8583108114156124ae57634e487b7160e01b85526022600452602485fd5b8080156124c257600181146124d357612500565b60ff19851688528388019550612500565b60008b81526020902060005b858110156124f85781548a8201529084019088016124df565b505083880195505b50939b9a5050505050505050505050565b60008282101561252357612523612400565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255b90830184611f37565b9695505050505050565b60006020828403121561257757600080fd5b8151610f4081611ed8565b600060001982141561259657612596612400565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125c2576125c261259d565b500490565b6000826125d6576125d661259d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fb5e2941276947832c8e366e4d209174b26939f57ba3d35803c90eb6cf2932c764736f6c634300080c0033697066733a2f2f516d595845734a70503753475a70535a6e557737635644383455314d4866345632316267785453376a55776a57512f
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80637035bf1811610190578063b88d4fde116100dc578063e316380811610095578063f150a0491161006f578063f150a0491461089d578063f2fde38b146108c4578063f5aa406d146108e4578063fe2c7fee1461090457600080fd5b8063e316380814610829578063e36b0b371461083f578063e985e9c51461085457600080fd5b8063b88d4fde14610780578063b8de970a146107a0578063ba41b0c6146107b6578063c87b56dd146107c9578063d30fbd0d146107e9578063d70c3dba1461080957600080fd5b80637ff9b5961161014957806395d89b411161012357806395d89b4114610715578063a22cb4651461072a578063a6d21bc61461074a578063b76a0df41461076057600080fd5b80637ff9b596146106c25780638da5cb5b146106d757806390709751146106f557600080fd5b80637035bf181461062257806370a0823114610637578063715018a61461065757806378c5fe371461066c5780637ae2b5c7146106825780637bffd755146106a257600080fd5b8063386bfc981161024f57806346ca1ab81161020857806355f804b3116101e257806355f804b3146105b757806359aefc59146105d75780635cfbd28b146105ed5780636352211e1461060257600080fd5b806346ca1ab8146105555780634e99b80014610575578063522fe98e1461058a57600080fd5b8063386bfc98146104b45780633ccfd60b146104ca57806342842e0e146104df5780634324851a146104ff57806345c3274f1461051f57806346c4dc271461053557600080fd5b806318160ddd116102a157806318160ddd146103c457806323b872dd146103eb5780632b0384111461040b5780632d84a94c14610421578063311df29a1461047e578063368bf74e1461049e57600080fd5b806301ffc9a7146102e957806304c98b2b1461031e57806306fdde0314610335578063081812fc14610357578063095ea7b31461038f5780630c1c972a146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004611eee565b610924565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610976565b005b34801561034157600080fd5b5061034a6109bf565b6040516103159190611f63565b34801561036357600080fd5b50610377610372366004611f76565b610a51565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103336103aa366004611fab565b610a95565b3480156103bb57600080fd5b50610333610b23565b3480156103d057600080fd5b5060015460005403600019015b604051908152602001610315565b3480156103f757600080fd5b50610333610406366004611fd5565b610b61565b34801561041757600080fd5b506103dd600b5481565b34801561042d57600080fd5b5061044161043c3660046120d6565b610b6c565b6040805198151589529615156020890152958701949094526060860192909252608085015260a084015260c083015260e082015261010001610315565b34801561048a57600080fd5b50610333610499366004611f76565b610bdc565b3480156104aa57600080fd5b506103dd6101bc81565b3480156104c057600080fd5b506103dd60135481565b3480156104d657600080fd5b50610333610c0b565b3480156104eb57600080fd5b506103336104fa366004611fd5565b610c5b565b34801561050b57600080fd5b506103dd61051a3660046120d6565b610c76565b34801561052b57600080fd5b506103dd60125481565b34801561054157600080fd5b50610333610550366004611f76565b610d5f565b34801561056157600080fd5b50610333610570366004611f76565b610d8e565b34801561058157600080fd5b5061034a610dbd565b34801561059657600080fd5b506103dd6105a5366004612123565b60146020526000908152604090205481565b3480156105c357600080fd5b506103336105d236600461213e565b610e4b565b3480156105e357600080fd5b506103dd600a5481565b3480156105f957600080fd5b5061034a610e81565b34801561060e57600080fd5b5061037761061d366004611f76565b610e8e565b34801561062e57600080fd5b5061034a610ea0565b34801561064357600080fd5b506103dd610652366004612123565b610ead565b34801561066357600080fd5b50610333610efb565b34801561067857600080fd5b506103dd600c5481565b34801561068e57600080fd5b506103dd61069d3660046121af565b610f2f565b3480156106ae57600080fd5b506103336106bd3660046121d1565b610f47565b3480156106ce57600080fd5b506103dd61100e565b3480156106e357600080fd5b506008546001600160a01b0316610377565b34801561070157600080fd5b5061033361071036600461213e565b61103d565b34801561072157600080fd5b5061034a611073565b34801561073657600080fd5b506103336107453660046121fd565b611082565b34801561075657600080fd5b506103dd61115c81565b34801561076c57600080fd5b5061030961077b3660046120d6565b611118565b34801561078c57600080fd5b5061033361079b366004612239565b611169565b3480156107ac57600080fd5b506103dd60095481565b6103336107c43660046122f8565b6111ba565b3480156107d557600080fd5b5061034a6107e4366004611f76565b6112a8565b3480156107f557600080fd5b506103dd6108043660046121af565b6113f0565b34801561081557600080fd5b50610333610824366004611f76565b61140c565b34801561083557600080fd5b506103dd60115481565b34801561084b57600080fd5b5061033361143b565b34801561086057600080fd5b5061030961086f366004612328565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108a957600080fd5b506010546108b79060ff1681565b6040516103159190612368565b3480156108d057600080fd5b506103336108df366004612123565b611479565b3480156108f057600080fd5b506103336108ff366004611f76565b611514565b34801561091057600080fd5b5061033361091f36600461213e565b611543565b60006001600160e01b031982166380ac58cd60e01b148061095557506001600160e01b03198216635b5e139f60e01b145b8061097057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109a95760405162461bcd60e51b81526004016109a090612390565b60405180910390fd5b601080546001919060ff191682805b0217905550565b6060600280546109ce906123c5565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906123c5565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000610a5c82611579565b610a79576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610aa082610e8e565b9050806001600160a01b0316836001600160a01b03161415610ad55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610af55750610af3813361086f565b155b15610b13576040516367d9dca160e11b815260040160405180910390fd5b610b1e8383836115b2565b505050565b6008546001600160a01b03163314610b4d5760405162461bcd60e51b81526004016109a090612390565b601080546002919060ff19166001836109b8565b610b1e83838361160e565b600080600080600080600080610b80611822565b9750610b8a611844565b9650610b968a8a610c76565b9550610ba061100e565b6012546009546013546001600160a01b03909d166000908152601460205260409020549a9d999c989b5091999098909791965090945092505050565b6008546001600160a01b03163314610c065760405162461bcd60e51b81526004016109a090612390565b600b55565b6008546001600160a01b03163314610c355760405162461bcd60e51b81526004016109a090612390565b60405133904780156108fc02916000818181858888f19350505050610c5957600080fd5b565b610b1e83838360405180602001604052806000815250611169565b600080610c81611844565b15610cf357610c908484611118565b15610ccd57610cc6600a54600954610ca89190612416565b6001600160a01b0386166000908152601460205260409020546113f0565b9050610d3a565b600a546001600160a01b038516600090815260146020526040902054610cc691906113f0565b610cfb611822565b8015610d0c5750610d0c8484611118565b15610d3a576009546001600160a01b038516600090815260146020526040902054610d3791906113f0565b90505b6000610d4a61115c6012546113f0565b9050610d568282610f2f565b95945050505050565b6008546001600160a01b03163314610d895760405162461bcd60e51b81526004016109a090612390565b600c55565b6008546001600160a01b03163314610db85760405162461bcd60e51b81526004016109a090612390565b600955565b600d8054610dca906123c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610df6906123c5565b8015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b505050505081565b6008546001600160a01b03163314610e755760405162461bcd60e51b81526004016109a090612390565b610b1e600d8383611e3f565b600f8054610dca906123c5565b6000610e998261184d565b5192915050565b600e8054610dca906123c5565b60006001600160a01b038216610ed6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f255760405162461bcd60e51b81526004016109a090612390565b610c596000611974565b6000818311610f3e5782610f40565b815b9392505050565b6008546001600160a01b03163314610f715760405162461bcd60e51b81526004016109a090612390565b6101bc82601154610f829190612416565b1115610fd05760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206d6f7265207468616e20746865207465616d206c696d697460448201526064016109a0565b610fda81836119c6565b8160116000828254610fec9190612416565b9250508190555081601260008282546110059190612416565b90915550505050565b6000600260105460ff16600281111561102957611029612352565b14156110365750600c5490565b50600b5490565b6008546001600160a01b031633146110675760405162461bcd60e51b81526004016109a090612390565b610b1e600f8383611e3f565b6060600380546109ce906123c5565b6001600160a01b0382163314156110ac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905061116183601354836119e4565b949350505050565b61117484848461160e565b6001600160a01b0383163b151580156111965750611194848484846119fa565b155b156111b4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b816111c361100e565b6111cd919061242e565b3410156112115760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c9958dd08115512081cd95b9d60721b60448201526064016109a0565b61121b3382610c76565b82111561127f5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820616c60448201526b6c6f77656420746f6b656e7360a01b60648201526084016109a0565b61128933836119c6565b3360009081526014602052604081208054849290610fec908490612416565b60606112b382611579565b6113175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a0565b6000611321611ae2565b905060008151116113bc57600e8054611339906123c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611365906123c5565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b5050505050610f40565b806113c684611af1565b600f6040516020016113da9392919061244d565b6040516020818303038152906040529392505050565b60008183101561140257506000610970565b610f408284612511565b6008546001600160a01b031633146114365760405162461bcd60e51b81526004016109a090612390565b600a55565b6008546001600160a01b031633146114655760405162461bcd60e51b81526004016109a090612390565b601080546000919060ff19166001836109b8565b6008546001600160a01b031633146114a35760405162461bcd60e51b81526004016109a090612390565b6001600160a01b0381166115085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a0565b61151181611974565b50565b6008546001600160a01b0316331461153e5760405162461bcd60e51b81526004016109a090612390565b601355565b6008546001600160a01b0316331461156d5760405162461bcd60e51b81526004016109a090612390565b610b1e600e8383611e3f565b60008160011115801561158d575060005482105b8015610970575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116198261184d565b80519091506000906001600160a01b0316336001600160a01b0316148061164757508151611647903361086f565b8061166257503361165784610a51565b6001600160a01b0316145b90508061168257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116b75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116de57604051633a954ecd60e21b815260040160405180910390fd5b6116ee60008484600001516115b2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117d8576000548110156117d857825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600060015b60105460ff16600281111561183e5761183e612352565b14905090565b60006002611827565b6040805160608101825260008082526020820181905291810191909152818060011115801561187d575060005481105b1561195b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119595780516001600160a01b0316156118f0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611954579392505050565b6118f0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119e0828260405180602001604052806000815250611bee565b5050565b6000826119f18584611bfb565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a2f903390899088908890600401612528565b6020604051808303816000875af1925050508015611a6a575060408051601f3d908101601f19168201909252611a6791810190612565565b60015b611ac5573d808015611a98576040519150601f19603f3d011682016040523d82523d6000602084013e611a9d565b606091505b508051611abd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d80546109ce906123c5565b606081611b155750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3f5780611b2981612582565b9150611b389050600a836125b3565b9150611b19565b6000816001600160401b03811115611b5957611b59612011565b6040519080825280601f01601f191660200182016040528015611b83576020820181803683370190505b5090505b841561116157611b98600183612511565b9150611ba5600a866125c7565b611bb0906030612416565b60f81b818381518110611bc557611bc56125db565b60200101906001600160f81b031916908160001a905350611be7600a866125b3565b9450611b87565b610b1e8383836001611c6f565b600081815b8451811015611c67576000858281518110611c1d57611c1d6125db565b60200260200101519050808311611c435760008381526020829052604090209250611c54565b600081815260208490526040902092505b5080611c5f81612582565b915050611c00565b509392505050565b6000546001600160a01b038516611c9857604051622e076360e81b815260040160405180910390fd5b83611cb65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d6757506001600160a01b0387163b15155b15611df0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611db860008884806001019550886119fa565b611dd5576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611d6d578260005414611deb57600080fd5b611e36565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611df1575b5060005561181b565b828054611e4b906123c5565b90600052602060002090601f016020900481019282611e6d5760008555611eb3565b82601f10611e865782800160ff19823516178555611eb3565b82800160010185558215611eb3579182015b82811115611eb3578235825591602001919060010190611e98565b50611ebf929150611ec3565b5090565b5b80821115611ebf5760008155600101611ec4565b6001600160e01b03198116811461151157600080fd5b600060208284031215611f0057600080fd5b8135610f4081611ed8565b60005b83811015611f26578181015183820152602001611f0e565b838111156111b45750506000910152565b60008151808452611f4f816020860160208601611f0b565b601f01601f19169290920160200192915050565b602081526000610f406020830184611f37565b600060208284031215611f8857600080fd5b5035919050565b80356001600160a01b0381168114611fa657600080fd5b919050565b60008060408385031215611fbe57600080fd5b611fc783611f8f565b946020939093013593505050565b600080600060608486031215611fea57600080fd5b611ff384611f8f565b925061200160208501611f8f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561204f5761204f612011565b604052919050565b600082601f83011261206857600080fd5b813560206001600160401b0382111561208357612083612011565b8160051b612092828201612027565b92835284810182019282810190878511156120ac57600080fd5b83870192505b848310156120cb578235825291830191908301906120b2565b979650505050505050565b600080604083850312156120e957600080fd5b6120f283611f8f565b915060208301356001600160401b0381111561210d57600080fd5b61211985828601612057565b9150509250929050565b60006020828403121561213557600080fd5b610f4082611f8f565b6000806020838503121561215157600080fd5b82356001600160401b038082111561216857600080fd5b818501915085601f83011261217c57600080fd5b81358181111561218b57600080fd5b86602082850101111561219d57600080fd5b60209290920196919550909350505050565b600080604083850312156121c257600080fd5b50508035926020909101359150565b600080604083850312156121e457600080fd5b823591506121f460208401611f8f565b90509250929050565b6000806040838503121561221057600080fd5b61221983611f8f565b91506020830135801515811461222e57600080fd5b809150509250929050565b6000806000806080858703121561224f57600080fd5b61225885611f8f565b93506020612267818701611f8f565b93506040860135925060608601356001600160401b038082111561228a57600080fd5b818801915088601f83011261229e57600080fd5b8135818111156122b0576122b0612011565b6122c2601f8201601f19168501612027565b915080825289848285010111156122d857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561230b57600080fd5b8235915060208301356001600160401b0381111561210d57600080fd5b6000806040838503121561233b57600080fd5b61234483611f8f565b91506121f460208401611f8f565b634e487b7160e01b600052602160045260246000fd5b602081016003831061238a57634e487b7160e01b600052602160045260246000fd5b91905290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123d957607f821691505b602082108114156123fa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561242957612429612400565b500190565b600081600019048311821515161561244857612448612400565b500290565b6000845160206124608285838a01611f0b565b8551918401916124738184848a01611f0b565b8554920191600090600181811c908083168061249057607f831692505b8583108114156124ae57634e487b7160e01b85526022600452602485fd5b8080156124c257600181146124d357612500565b60ff19851688528388019550612500565b60008b81526020902060005b858110156124f85781548a8201529084019088016124df565b505083880195505b50939b9a5050505050505050505050565b60008282101561252357612523612400565b500390565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255b90830184611f37565b9695505050505050565b60006020828403121561257757600080fd5b8151610f4081611ed8565b600060001982141561259657612596612400565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125c2576125c261259d565b500490565b6000826125d6576125d661259d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fb5e2941276947832c8e366e4d209174b26939f57ba3d35803c90eb6cf2932c764736f6c634300080c0033
Deployed Bytecode Sourcemap
57942:6065:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25925:305;;;;;;;;;;-1:-1:-1;25925:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25925:305:0;;;;;;;;62191:93;;;;;;;;;;;;;:::i;:::-;;29310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30813:204::-;;;;;;;;;;-1:-1:-1;30813:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30813:204:0;1528:203:1;30376:371:0;;;;;;;;;;-1:-1:-1;30376:371:0;;;;;:::i;:::-;;:::i;62292:93::-;;;;;;;;;;;;;:::i;25174:303::-;;;;;;;;;;-1:-1:-1;58950:1:0;25428:12;25218:7;25412:13;:28;-1:-1:-1;;25412:46:0;25174:303;;;2319:25:1;;;2307:2;2292:18;25174:303:0;2173:177:1;31670:170:0;;;;;;;;;;-1:-1:-1;31670:170:0;;;;;:::i;:::-;;:::i;58153:46::-;;;;;;;;;;;;;;;;60520:762;;;;;;;;;;-1:-1:-1;60520:762:0;;;;;:::i;:::-;;:::i;:::-;;;;4600:14:1;;4593:22;4575:41;;4659:14;;4652:22;4647:2;4632:18;;4625:50;4691:18;;;4684:34;;;;4749:2;4734:18;;4727:34;;;;4792:3;4777:19;;4770:35;4836:3;4821:19;;4814:35;4880:3;4865:19;;4858:35;4924:3;4909:19;;4902:35;4562:3;4547:19;60520:762:0;4244:699:1;61414:104:0;;;;;;;;;;-1:-1:-1;61414:104:0;;;;;:::i;:::-;;:::i;58529:40::-;;;;;;;;;;;;58566:3;58529:40;;58712:28;;;;;;;;;;;;;;;;63888:114;;;;;;;;;;;;;:::i;31911:185::-;;;;;;;;;;-1:-1:-1;31911:185:0;;;;;:::i;:::-;;:::i;59718:792::-;;;;;;;;;;-1:-1:-1;59718:792:0;;;;;:::i;:::-;;:::i;58672:31::-;;;;;;;;;;;;;;;;61526:110;;;;;;;;;;-1:-1:-1;61526:110:0;;;;;:::i;:::-;;:::i;61877:102::-;;;;;;;;;;-1:-1:-1;61877:102:0;;;;;:::i;:::-;;:::i;58264:31::-;;;;;;;;;;;;;:::i;58747:44::-;;;;;;;;;;-1:-1:-1;58747:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;63561:97;;;;;;;;;;-1:-1:-1;63561:97:0;;;;;:::i;:::-;;:::i;58109:35::-;;;;;;;;;;;;;;;;58395:36;;;;;;;;;;;;;:::i;29119:124::-;;;;;;;;;;-1:-1:-1;29119:124:0;;;;;:::i;:::-;;:::i;58302:86::-;;;;;;;;;;;;;:::i;26294:206::-;;;;;;;;;;-1:-1:-1;26294:206:0;;;;;:::i;:::-;;:::i;45109:103::-;;;;;;;;;;;;;:::i;58206:49::-;;;;;;;;;;;;;;;;59437:104;;;;;;;;;;-1:-1:-1;59437:104:0;;;;;:::i;:::-;;:::i;62393:270::-;;;;;;;;;;-1:-1:-1;62393:270:0;;;;;:::i;:::-;;:::i;59213:216::-;;;;;;;;;;;;;:::i;44458:87::-;;;;;;;;;;-1:-1:-1;44531:6:0;;-1:-1:-1;;;;;44531:6:0;44458:87;;63778:102;;;;;;;;;;-1:-1:-1;63778:102:0;;;;;:::i;:::-;;:::i;29479:104::-;;;;;;;;;;;;;:::i;31089:279::-;;;;;;;;;;-1:-1:-1;31089:279:0;;;;;:::i;:::-;;:::i;58618:47::-;;;;;;;;;;;;58661:4;58618:47;;61644:223;;;;;;;;;;-1:-1:-1;61644:223:0;;;;;:::i;:::-;;:::i;32167:369::-;;;;;;;;;;-1:-1:-1;32167:369:0;;;;;:::i;:::-;;:::i;58067:35::-;;;;;;;;;;;;;;;;62671:390;;;;;;:::i;:::-;;:::i;63191:359::-;;;;;;;;;;-1:-1:-1;63191:359:0;;;;;:::i;:::-;;:::i;59549:161::-;;;;;;;;;;-1:-1:-1;59549:161:0;;;;;:::i;:::-;;:::i;61987:99::-;;;;;;;;;;-1:-1:-1;61987:99:0;;;;;:::i;:::-;;:::i;58576:35::-;;;;;;;;;;;;;;;;62094:89;;;;;;;;;;;;;:::i;31439:164::-;;;;;;;;;;-1:-1:-1;31439:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31560:25:0;;;31536:4;31560:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31439:164;58440:50;;;;;;;;;;-1:-1:-1;58440:50:0;;;;;;;;;;;;;;;:::i;45367:201::-;;;;;;;;;;-1:-1:-1;45367:201:0;;;;;:::i;:::-;;:::i;61290:116::-;;;;;;;;;;-1:-1:-1;61290:116:0;;;;;:::i;:::-;;:::i;63666:104::-;;;;;;;;;;-1:-1:-1;63666:104:0;;;;;:::i;:::-;;:::i;25925:305::-;26027:4;-1:-1:-1;;;;;;26064:40:0;;-1:-1:-1;;;26064:40:0;;:105;;-1:-1:-1;;;;;;;26121:48:0;;-1:-1:-1;;;26121:48:0;26064:105;:158;;;-1:-1:-1;;;;;;;;;;21374:40:0;;;26186:36;26044:178;25925:305;-1:-1:-1;;25925:305:0:o;62191:93::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;;;;;;;;;62245:9:::1;:31:::0;;62257:19:::1;::::0;62245:9;-1:-1:-1;;62245:31:0::1;62257:19:::0;;62245:31:::1;;;;;;62191:93::o:0;29310:100::-;29364:13;29397:5;29390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29310:100;:::o;30813:204::-;30881:7;30906:16;30914:7;30906;:16::i;:::-;30901:64;;30931:34;;-1:-1:-1;;;30931:34:0;;;;;;;;;;;30901:64;-1:-1:-1;30985:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30985:24:0;;30813:204::o;30376:371::-;30449:13;30465:24;30481:7;30465:15;:24::i;:::-;30449:40;;30510:5;-1:-1:-1;;;;;30504:11:0;:2;-1:-1:-1;;;;;30504:11:0;;30500:48;;;30524:24;;-1:-1:-1;;;30524:24:0;;;;;;;;;;;30500:48;18122:10;-1:-1:-1;;;;;30565:21:0;;;;;;:63;;-1:-1:-1;30591:37:0;30608:5;18122:10;31439:164;:::i;30591:37::-;30590:38;30565:63;30561:138;;;30652:35;;-1:-1:-1;;;30652:35:0;;;;;;;;;;;30561:138;30711:28;30720:2;30724:7;30733:5;30711:8;:28::i;:::-;30438:309;30376:371;;:::o;62292:93::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;62349:9:::1;:28:::0;;62361:16:::1;::::0;62349:9;-1:-1:-1;;62349:28:0::1;::::0;62361:16;62349:28:::1;::::0;31670:170;31804:28;31814:4;31820:2;31824:7;31804:9;:28::i;60520:762::-;60618:23;60652:26;60689:25;60725:19;60755:21;60787:24;60822:26;60859:22;60921:19;:17;:19::i;:::-;60900:40;;60975:22;:20;:22::i;:::-;60951:46;;61028:34;61048:6;61056:5;61028:19;:34::i;:::-;61008:54;;61087:12;:10;:12::i;:::-;61126;;61170:16;;61214:13;;-1:-1:-1;;;;;61257:17:0;;;;;;;:9;:17;;;;;;60520:762;;;;;;-1:-1:-1;61073:26:0;;61126:12;;61257:17;;61170:16;;-1:-1:-1;61214:13:0;;-1:-1:-1;60520:762:0;-1:-1:-1;;;60520:762:0:o;61414:104::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;61487:17:::1;:23:::0;61414:104::o;63888:114::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;63946:47:::1;::::0;63954:10:::1;::::0;63971:21:::1;63946:47:::0;::::1;;;::::0;::::1;::::0;;;63971:21;63954:10;63946:47;::::1;;;;;;63938:56;;;::::0;::::1;;63888:114::o:0;31911:185::-;32049:39;32066:4;32072:2;32076:7;32049:39;;;;;;;;;;;;:16;:39::i;59718:792::-;59808:7;;59868:22;:20;:22::i;:::-;59864:451;;;59910:21;59917:6;59925:5;59910:6;:21::i;:::-;59907:249;;;59968:67;60000:15;;59981:16;;:34;;;;:::i;:::-;-1:-1:-1;;;;;60017:17:0;;;;;;:9;:17;;;;;;59968:12;:67::i;:::-;59952:83;;59864:451;;59907:249;60105:15;;-1:-1:-1;;;;;60122:17:0;;;;;;:9;:17;;;;;;60092:48;;60105:15;60092:12;:48::i;59864:451::-;60177:19;:17;:19::i;:::-;:44;;;;;60200:21;60207:6;60215:5;60200:6;:21::i;:::-;60173:142;;;60267:16;;-1:-1:-1;;;;;60285:17:0;;;;;;:9;:17;;;;;;60254:49;;60267:16;60254:12;:49::i;:::-;60238:65;;60173:142;60327:28;60358:44;58661:4;60389:12;;60358;:44::i;:::-;60327:75;;60429:40;60433:13;60448:20;60429:3;:40::i;:::-;60413:56;59718:792;-1:-1:-1;;;;;59718:792:0:o;61526:110::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;61602:20:::1;:26:::0;61526:110::o;61877:102::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;61949:16:::1;:22:::0;61877:102::o;58264:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63561:97::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;63632:18:::1;:12;63647:3:::0;;63632:18:::1;:::i;58395:36::-:0;;;;;;;:::i;29119:124::-;29183:7;29210:20;29222:7;29210:11;:20::i;:::-;:25;;29119:124;-1:-1:-1;;29119:124:0:o;58302:86::-;;;;;;;:::i;26294:206::-;26358:7;-1:-1:-1;;;;;26382:19:0;;26378:60;;26410:28;;-1:-1:-1;;;26410:28:0;;;;;;;;;;;26378:60;-1:-1:-1;;;;;;26464:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26464:27:0;;26294:206::o;45109:103::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;45174:30:::1;45201:1;45174:18;:30::i;59437:104::-:0;59493:7;59524:1;59520;:5;:13;;59532:1;59520:13;;;59528:1;59520:13;59513:20;59437:104;-1:-1:-1;;;59437:104:0:o;62393:270::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;58566:3:::1;62496:6;62477:16;;:25;;;;:::i;:::-;:39;;62469:84;;;::::0;-1:-1:-1;;;62469:84:0;;10332:2:1;62469:84:0::1;::::0;::::1;10314:21:1::0;;;10351:18;;;10344:30;10410:34;10390:18;;;10383:62;10462:18;;62469:84:0::1;10130:356:1::0;62469:84:0::1;62564:21;62574:2;62578:6;62564:9;:21::i;:::-;62616:6;62596:16;;:26;;;;;;;:::i;:::-;;;;;;;;62649:6;62633:12;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;62393:270:0:o;59213:216::-;59256:7;59293:16;59280:9;;;;:29;;;;;;;;:::i;:::-;;59276:146;;;-1:-1:-1;59333:20:0;;;59213:216::o;59276:146::-;-1:-1:-1;59393:17:0;;;59213:216::o;63778:102::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;63854:18:::1;:12;63869:3:::0;;63854:18:::1;:::i;29479:104::-:0;29535:13;29568:7;29561:14;;;;;:::i;31089:279::-;-1:-1:-1;;;;;31180:24:0;;18122:10;31180:24;31176:54;;;31213:17;;-1:-1:-1;;;31213:17:0;;;;;;;;;;;31176:54;18122:10;31243:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31243:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31243:53:0;;;;;;;;;;31312:48;;540:41:1;;;31243:42:0;;18122:10;31312:48;;513:18:1;31312:48:0;;;;;;;31089:279;;:::o;61644:223::-;61769:25;;-1:-1:-1;;10640:2:1;10636:15;;;10632:53;61769:25:0;;;10620:66:1;61722:4:0;;;;10702:12:1;;61769:25:0;;;;;;;;;;;;61759:36;;;;;;61744:51;;61813:46;61832:5;61839:13;;61854:4;61813:18;:46::i;:::-;61806:53;61644:223;-1:-1:-1;;;;61644:223:0:o;32167:369::-;32334:28;32344:4;32350:2;32354:7;32334:9;:28::i;:::-;-1:-1:-1;;;;;32377:13:0;;10378:19;:23;;32377:76;;;;;32397:56;32428:4;32434:2;32438:7;32447:5;32397:30;:56::i;:::-;32396:57;32377:76;32373:156;;;32477:40;;-1:-1:-1;;;32477:40:0;;;;;;;;;;;32373:156;32167:369;;;;:::o;62671:390::-;62789:6;62774:12;:10;:12::i;:::-;:21;;;;:::i;:::-;62761:9;:34;;62753:65;;;;-1:-1:-1;;;62753:65:0;;11100:2:1;62753:65:0;;;11082:21:1;11139:2;11119:18;;;11112:30;-1:-1:-1;;;11158:18:1;;;11151:48;11216:18;;62753:65:0;10898:342:1;62753:65:0;62847:38;62867:10;62879:5;62847:19;:38::i;:::-;62837:6;:48;;62829:105;;;;-1:-1:-1;;;62829:105:0;;11447:2:1;62829:105:0;;;11429:21:1;11486:2;11466:18;;;11459:30;11525:34;11505:18;;;11498:62;-1:-1:-1;;;11576:18:1;;;11569:42;11628:19;;62829:105:0;11245:408:1;62829:105:0;62947:29;62957:10;62969:6;62947:9;:29::i;:::-;62997:10;62987:21;;;;:9;:21;;;;;:31;;63012:6;;62987:21;:31;;63012:6;;62987:31;:::i;63191:359::-;63265:13;63299:16;63307:7;63299;:16::i;:::-;63291:76;;;;-1:-1:-1;;;63291:76:0;;11860:2:1;63291:76:0;;;11842:21:1;11899:2;11879:18;;;11872:30;11938:34;11918:18;;;11911:62;-1:-1:-1;;;11989:18:1;;;11982:45;12044:19;;63291:76:0;11658:411:1;63291:76:0;63378:21;63402:10;:8;:10::i;:::-;63378:34;;63455:1;63437:7;63431:21;:25;:111;;63529:13;63431:111;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63483:7;63492:18;:7;:16;:18::i;:::-;63512:12;63466:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63424:118;63191:359;-1:-1:-1;;;63191:359:0:o;59549:161::-;59614:7;59642:1;59638;:5;59634:46;;;-1:-1:-1;59667:1:0;59660:8;;59634:46;59697:5;59701:1;59697;:5;:::i;61987:99::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;62057:15:::1;:21:::0;61987:99::o;62094:89::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;62144:9:::1;:31:::0;;62156:19:::1;::::0;62144:9;-1:-1:-1;;62144:31:0::1;::::0;62156:19;62144:31:::1;::::0;45367:201;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45456:22:0;::::1;45448:73;;;::::0;-1:-1:-1;;;45448:73:0;;14064:2:1;45448:73:0::1;::::0;::::1;14046:21:1::0;14103:2;14083:18;;;14076:30;14142:34;14122:18;;;14115:62;-1:-1:-1;;;14193:18:1;;;14186:36;14239:19;;45448:73:0::1;13862:402:1::0;45448:73:0::1;45532:28;45551:8;45532:18;:28::i;:::-;45367:201:::0;:::o;61290:116::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;61368:13:::1;:30:::0;61290:116::o;63666:104::-;44531:6;;-1:-1:-1;;;;;44531:6:0;18122:10;44678:23;44670:68;;;;-1:-1:-1;;;44670:68:0;;;;;;;:::i;:::-;63743:19:::1;:13;63759:3:::0;;63743:19:::1;:::i;32791:187::-:0;32848:4;32891:7;58950:1;32872:26;;:53;;;;;32912:13;;32902:7;:23;32872:53;:98;;;;-1:-1:-1;;32943:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32943:27:0;;;;32942:28;;32791:187::o;40402:196::-;40517:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40517:29:0;-1:-1:-1;;;;;40517:29:0;;;;;;;;;40562:28;;40517:24;;40562:28;;;;;;;40402:196;;;:::o;35904:2112::-;36019:35;36057:20;36069:7;36057:11;:20::i;:::-;36132:18;;36019:58;;-1:-1:-1;36090:22:0;;-1:-1:-1;;;;;36116:34:0;18122:10;-1:-1:-1;;;;;36116:34:0;;:101;;;-1:-1:-1;36184:18:0;;36167:50;;18122:10;31439:164;:::i;36167:50::-;36116:154;;;-1:-1:-1;18122:10:0;36234:20;36246:7;36234:11;:20::i;:::-;-1:-1:-1;;;;;36234:36:0;;36116:154;36090:181;;36289:17;36284:66;;36315:35;;-1:-1:-1;;;36315:35:0;;;;;;;;;;;36284:66;36387:4;-1:-1:-1;;;;;36365:26:0;:13;:18;;;-1:-1:-1;;;;;36365:26:0;;36361:67;;36400:28;;-1:-1:-1;;;36400:28:0;;;;;;;;;;;36361:67;-1:-1:-1;;;;;36443:16:0;;36439:52;;36468:23;;-1:-1:-1;;;36468:23:0;;;;;;;;;;;36439:52;36612:49;36629:1;36633:7;36642:13;:18;;;36612:8;:49::i;:::-;-1:-1:-1;;;;;36957:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36957:31:0;;;-1:-1:-1;;;;;36957:31:0;;;-1:-1:-1;;36957:31:0;;;;;;;37003:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37003:29:0;;;;;;;;;;;37049:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37094:61:0;;;;-1:-1:-1;;;37139:15:0;37094:61;;;;;;;;;;;37429:11;;;37459:24;;;;;:29;37429:11;;37459:29;37455:445;;37684:13;;37670:11;:27;37666:219;;;37754:18;;;37722:24;;;:11;:24;;;;;;;;:50;;37837:28;;;;-1:-1:-1;;;;;37795:70:0;-1:-1:-1;;;37795:70:0;-1:-1:-1;;;;;;37795:70:0;;;-1:-1:-1;;;;;37722:50:0;;;37795:70;;;;;;;37666:219;36932:979;37947:7;37943:2;-1:-1:-1;;;;;37928:27:0;37937:4;-1:-1:-1;;;;;37928:27:0;;;;;;;;;;;37966:42;36008:2008;;35904:2112;;;:::o;58967:115::-;59018:4;59055:19;59042:32;:9;;;;:32;;;;;;;;:::i;:::-;;59035:39;;58967:115;:::o;59090:::-;59144:4;59181:16;59168:29;;27949:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28059:7:0;;58950:1;28108:23;;:47;;;;;28142:13;;28135:4;:20;28108:47;28104:886;;;28176:31;28210:17;;;:11;:17;;;;;;;;;28176:51;;;;;;;;;-1:-1:-1;;;;;28176:51:0;;;;-1:-1:-1;;;28176:51:0;;-1:-1:-1;;;;;28176:51:0;;;;;;;;-1:-1:-1;;;28176:51:0;;;;;;;;;;;;;;28246:729;;28296:14;;-1:-1:-1;;;;;28296:28:0;;28292:101;;28360:9;27949:1108;-1:-1:-1;;;27949:1108:0:o;28292:101::-;-1:-1:-1;;;28735:6:0;28780:17;;;;:11;:17;;;;;;;;;28768:29;;;;;;;;;-1:-1:-1;;;;;28768:29:0;;;;;-1:-1:-1;;;28768:29:0;;-1:-1:-1;;;;;28768:29:0;;;;;;;;-1:-1:-1;;;28768:29:0;;;;;;;;;;;;;28828:28;28824:109;;28896:9;27949:1108;-1:-1:-1;;;27949:1108:0:o;28824:109::-;28695:261;;;28157:833;28104:886;29018:31;;-1:-1:-1;;;29018:31:0;;;;;;;;;;;45730:191;45823:6;;;-1:-1:-1;;;;;45840:17:0;;;-1:-1:-1;;;;;;45840:17:0;;;;;;;45873:40;;45823:6;;;45840:17;45823:6;;45873:40;;45804:16;;45873:40;45793:128;45730:191;:::o;32986:104::-;33055:27;33065:2;33069:8;33055:27;;;;;;;;;;;;:9;:27::i;:::-;32986:104;;:::o;56408:190::-;56533:4;56586;56557:25;56570:5;56577:4;56557:12;:25::i;:::-;:33;;56408:190;-1:-1:-1;;;;56408:190:0:o;41090:667::-;41274:72;;-1:-1:-1;;;41274:72:0;;41253:4;;-1:-1:-1;;;;;41274:36:0;;;;;:72;;18122:10;;41325:4;;41331:7;;41340:5;;41274:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41274:72:0;;;;;;;;-1:-1:-1;;41274:72:0;;;;;;;;;;;;:::i;:::-;;;41270:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41508:13:0;;41504:235;;41554:40;;-1:-1:-1;;;41554:40:0;;;;;;;;;;;41504:235;41697:6;41691:13;41682:6;41678:2;41674:15;41667:38;41270:480;-1:-1:-1;;;;;;41393:55:0;-1:-1:-1;;;41393:55:0;;-1:-1:-1;41090:667:0;;;;;;:::o;63069:114::-;63130:13;63163:12;63156:19;;;;;:::i;18631:723::-;18687:13;18908:10;18904:53;;-1:-1:-1;;18935:10:0;;;;;;;;;;;;-1:-1:-1;;;18935:10:0;;;;;18631:723::o;18904:53::-;18982:5;18967:12;19023:78;19030:9;;19023:78;;19056:8;;;;:::i;:::-;;-1:-1:-1;19079:10:0;;-1:-1:-1;19087:2:0;19079:10;;:::i;:::-;;;19023:78;;;19111:19;19143:6;-1:-1:-1;;;;;19133:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19133:17:0;;19111:39;;19161:154;19168:10;;19161:154;;19195:11;19205:1;19195:11;;:::i;:::-;;-1:-1:-1;19264:10:0;19272:2;19264:5;:10;:::i;:::-;19251:24;;:2;:24;:::i;:::-;19238:39;;19221:6;19228;19221:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19221:56:0;;;;;;;;-1:-1:-1;19292:11:0;19301:2;19292:11;;:::i;:::-;;;19161:154;;33453:163;33576:32;33582:2;33586:8;33596:5;33603:4;33576:5;:32::i;56960:675::-;57043:7;57086:4;57043:7;57101:497;57125:5;:12;57121:1;:16;57101:497;;;57159:20;57182:5;57188:1;57182:8;;;;;;;;:::i;:::-;;;;;;;57159:31;;57225:12;57209;:28;57205:382;;57711:13;57763:15;;;57799:4;57792:15;;;57846:4;57830:21;;57337:57;;57205:382;;;57711:13;57763:15;;;57799:4;57792:15;;;57846:4;57830:21;;57514:57;;57205:382;-1:-1:-1;57139:3:0;;;;:::i;:::-;;;;57101:497;;;-1:-1:-1;57615:12:0;56960:675;-1:-1:-1;;;56960:675:0:o;33875:1775::-;34014:20;34037:13;-1:-1:-1;;;;;34065:16:0;;34061:48;;34090:19;;-1:-1:-1;;;34090:19:0;;;;;;;;;;;34061:48;34124:13;34120:44;;34146:18;;-1:-1:-1;;;34146:18:0;;;;;;;;;;;34120:44;-1:-1:-1;;;;;34515:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34574:49:0;;-1:-1:-1;;;;;34515:44:0;;;;;;;34574:49;;;;-1:-1:-1;;34515:44:0;;;;;;34574:49;;;;;;;;;;;;;;;;34640:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34690:66:0;;;;-1:-1:-1;;;34740:15:0;34690:66;;;;;;;;;;34640:25;34837:23;;;34881:4;:23;;;;-1:-1:-1;;;;;;34889:13:0;;10378:19;:23;;34889:15;34877:641;;;34925:314;34956:38;;34981:12;;-1:-1:-1;;;;;34956:38:0;;;34973:1;;34956:38;;34973:1;;34956:38;35022:69;35061:1;35065:2;35069:14;;;;;;35085:5;35022:30;:69::i;:::-;35017:174;;35127:40;;-1:-1:-1;;;35127:40:0;;;;;;;;;;;35017:174;35234:3;35218:12;:19;;34925:314;;35320:12;35303:13;;:29;35299:43;;35334:8;;;35299:43;34877:641;;;35383:120;35414:40;;35439:14;;;;;-1:-1:-1;;;;;35414:40:0;;;35431:1;;35414:40;;35431:1;;35414:40;35498:3;35482:12;:19;;35383:120;;34877:641;-1:-1:-1;35532:13:0;:28;35582:60;32167:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;-1:-1:-1;;;;;2976:34:1;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:712::-;3154:5;3207:3;3200:4;3192:6;3188:17;3184:27;3174:55;;3225:1;3222;3215:12;3174:55;3261:6;3248:20;3287:4;-1:-1:-1;;;;;3306:2:1;3303:26;3300:52;;;3332:18;;:::i;:::-;3378:2;3375:1;3371:10;3401:28;3425:2;3421;3417:11;3401:28;:::i;:::-;3463:15;;;3533;;;3529:24;;;3494:12;;;;3565:15;;;3562:35;;;3593:1;3590;3583:12;3562:35;3629:2;3621:6;3617:15;3606:26;;3641:142;3657:6;3652:3;3649:15;3641:142;;;3723:17;;3711:30;;3674:12;;;;3761;;;;3641:142;;;3801:5;3100:712;-1:-1:-1;;;;;;;3100:712:1:o;3817:422::-;3910:6;3918;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;4010:29;4029:9;4010:29;:::i;:::-;4000:39;;4090:2;4079:9;4075:18;4062:32;-1:-1:-1;;;;;4109:6:1;4106:30;4103:50;;;4149:1;4146;4139:12;4103:50;4172:61;4225:7;4216:6;4205:9;4201:22;4172:61;:::i;:::-;4162:71;;;3817:422;;;;;:::o;5130:186::-;5189:6;5242:2;5230:9;5221:7;5217:23;5213:32;5210:52;;;5258:1;5255;5248:12;5210:52;5281:29;5300:9;5281:29;:::i;5321:592::-;5392:6;5400;5453:2;5441:9;5432:7;5428:23;5424:32;5421:52;;;5469:1;5466;5459:12;5421:52;5509:9;5496:23;-1:-1:-1;;;;;5579:2:1;5571:6;5568:14;5565:34;;;5595:1;5592;5585:12;5565:34;5633:6;5622:9;5618:22;5608:32;;5678:7;5671:4;5667:2;5663:13;5659:27;5649:55;;5700:1;5697;5690:12;5649:55;5740:2;5727:16;5766:2;5758:6;5755:14;5752:34;;;5782:1;5779;5772:12;5752:34;5827:7;5822:2;5813:6;5809:2;5805:15;5801:24;5798:37;5795:57;;;5848:1;5845;5838:12;5795:57;5879:2;5871:11;;;;;5901:6;;-1:-1:-1;5321:592:1;;-1:-1:-1;;;;5321:592:1:o;5918:248::-;5986:6;5994;6047:2;6035:9;6026:7;6022:23;6018:32;6015:52;;;6063:1;6060;6053:12;6015:52;-1:-1:-1;;6086:23:1;;;6156:2;6141:18;;;6128:32;;-1:-1:-1;5918:248:1:o;6171:254::-;6239:6;6247;6300:2;6288:9;6279:7;6275:23;6271:32;6268:52;;;6316:1;6313;6306:12;6268:52;6352:9;6339:23;6329:33;;6381:38;6415:2;6404:9;6400:18;6381:38;:::i;:::-;6371:48;;6171:254;;;;;:::o;6430:347::-;6495:6;6503;6556:2;6544:9;6535:7;6531:23;6527:32;6524:52;;;6572:1;6569;6562:12;6524:52;6595:29;6614:9;6595:29;:::i;:::-;6585:39;;6674:2;6663:9;6659:18;6646:32;6721:5;6714:13;6707:21;6700:5;6697:32;6687:60;;6743:1;6740;6733:12;6687:60;6766:5;6756:15;;;6430:347;;;;;:::o;6782:980::-;6877:6;6885;6893;6901;6954:3;6942:9;6933:7;6929:23;6925:33;6922:53;;;6971:1;6968;6961:12;6922:53;6994:29;7013:9;6994:29;:::i;:::-;6984:39;;7042:2;7063:38;7097:2;7086:9;7082:18;7063:38;:::i;:::-;7053:48;;7148:2;7137:9;7133:18;7120:32;7110:42;;7203:2;7192:9;7188:18;7175:32;-1:-1:-1;;;;;7267:2:1;7259:6;7256:14;7253:34;;;7283:1;7280;7273:12;7253:34;7321:6;7310:9;7306:22;7296:32;;7366:7;7359:4;7355:2;7351:13;7347:27;7337:55;;7388:1;7385;7378:12;7337:55;7424:2;7411:16;7446:2;7442;7439:10;7436:36;;;7452:18;;:::i;:::-;7494:53;7537:2;7518:13;;-1:-1:-1;;7514:27:1;7510:36;;7494:53;:::i;:::-;7481:66;;7570:2;7563:5;7556:17;7610:7;7605:2;7600;7596;7592:11;7588:20;7585:33;7582:53;;;7631:1;7628;7621:12;7582:53;7686:2;7681;7677;7673:11;7668:2;7661:5;7657:14;7644:45;7730:1;7725:2;7720;7713:5;7709:14;7705:23;7698:34;;7751:5;7741:15;;;;;6782:980;;;;;;;:::o;7767:416::-;7860:6;7868;7921:2;7909:9;7900:7;7896:23;7892:32;7889:52;;;7937:1;7934;7927:12;7889:52;7973:9;7960:23;7950:33;;8034:2;8023:9;8019:18;8006:32;-1:-1:-1;;;;;8053:6:1;8050:30;8047:50;;;8093:1;8090;8083:12;8188:260;8256:6;8264;8317:2;8305:9;8296:7;8292:23;8288:32;8285:52;;;8333:1;8330;8323:12;8285:52;8356:29;8375:9;8356:29;:::i;:::-;8346:39;;8404:38;8438:2;8427:9;8423:18;8404:38;:::i;8453:127::-;8514:10;8509:3;8505:20;8502:1;8495:31;8545:4;8542:1;8535:15;8569:4;8566:1;8559:15;8585:344;8733:2;8718:18;;8766:1;8755:13;;8745:144;;8811:10;8806:3;8802:20;8799:1;8792:31;8846:4;8843:1;8836:15;8874:4;8871:1;8864:15;8745:144;8898:25;;;8585:344;:::o;9119:356::-;9321:2;9303:21;;;9340:18;;;9333:30;9399:34;9394:2;9379:18;;9372:62;9466:2;9451:18;;9119:356::o;9480:380::-;9559:1;9555:12;;;;9602;;;9623:61;;9677:4;9669:6;9665:17;9655:27;;9623:61;9730:2;9722:6;9719:14;9699:18;9696:38;9693:161;;;9776:10;9771:3;9767:20;9764:1;9757:31;9811:4;9808:1;9801:15;9839:4;9836:1;9829:15;9693:161;;9480:380;;;:::o;9865:127::-;9926:10;9921:3;9917:20;9914:1;9907:31;9957:4;9954:1;9947:15;9981:4;9978:1;9971:15;9997:128;10037:3;10068:1;10064:6;10061:1;10058:13;10055:39;;;10074:18;;:::i;:::-;-1:-1:-1;10110:9:1;;9997:128::o;10725:168::-;10765:7;10831:1;10827;10823:6;10819:14;10816:1;10813:21;10808:1;10801:9;10794:17;10790:45;10787:71;;;10838:18;;:::i;:::-;-1:-1:-1;10878:9:1;;10725:168::o;12200:1527::-;12424:3;12462:6;12456:13;12488:4;12501:51;12545:6;12540:3;12535:2;12527:6;12523:15;12501:51;:::i;:::-;12615:13;;12574:16;;;;12637:55;12615:13;12574:16;12659:15;;;12637:55;:::i;:::-;12781:13;;12714:20;;;12754:1;;12841;12863:18;;;;12916;;;;12943:93;;13021:4;13011:8;13007:19;12995:31;;12943:93;13084:2;13074:8;13071:16;13051:18;13048:40;13045:167;;;-1:-1:-1;;;13111:33:1;;13167:4;13164:1;13157:15;13197:4;13118:3;13185:17;13045:167;13228:18;13255:110;;;;13379:1;13374:328;;;;13221:481;;13255:110;-1:-1:-1;;13290:24:1;;13276:39;;13335:20;;;;-1:-1:-1;13255:110:1;;13374:328;12147:1;12140:14;;;12184:4;12171:18;;13469:1;13483:169;13497:8;13494:1;13491:15;13483:169;;;13579:14;;13564:13;;;13557:37;13622:16;;;;13514:10;;13483:169;;;13487:3;;13683:8;13676:5;13672:20;13665:27;;13221:481;-1:-1:-1;13718:3:1;;12200:1527;-1:-1:-1;;;;;;;;;;;12200:1527:1:o;13732:125::-;13772:4;13800:1;13797;13794:8;13791:34;;;13805:18;;:::i;:::-;-1:-1:-1;13842:9:1;;13732:125::o;14269:489::-;-1:-1:-1;;;;;14538:15:1;;;14520:34;;14590:15;;14585:2;14570:18;;14563:43;14637:2;14622:18;;14615:34;;;14685:3;14680:2;14665:18;;14658:31;;;14463:4;;14706:46;;14732:19;;14724:6;14706:46;:::i;:::-;14698:54;14269:489;-1:-1:-1;;;;;;14269:489:1:o;14763:249::-;14832:6;14885:2;14873:9;14864:7;14860:23;14856:32;14853:52;;;14901:1;14898;14891:12;14853:52;14933:9;14927:16;14952:30;14976:5;14952:30;:::i;15017:135::-;15056:3;-1:-1:-1;;15077:17:1;;15074:43;;;15097:18;;:::i;:::-;-1:-1:-1;15144:1:1;15133:13;;15017:135::o;15157:127::-;15218:10;15213:3;15209:20;15206:1;15199:31;15249:4;15246:1;15239:15;15273:4;15270:1;15263:15;15289:120;15329:1;15355;15345:35;;15360:18;;:::i;:::-;-1:-1:-1;15394:9:1;;15289:120::o;15414:112::-;15446:1;15472;15462:35;;15477:18;;:::i;:::-;-1:-1:-1;15511:9:1;;15414:112::o;15531:127::-;15592:10;15587:3;15583:20;15580:1;15573:31;15623:4;15620:1;15613:15;15647:4;15644:1;15637:15
Swarm Source
ipfs://fb5e2941276947832c8e366e4d209174b26939f57ba3d35803c90eb6cf2932c7
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.