ERC-721
Overview
Max Total Supply
1,000 YEOGEOL
Holders
953
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 YEOGEOLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
yeogeol
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-10 */ // SPDX-License-Identifier: MIT // File: contracts/yeogeol.sol // File: contracts/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: contracts/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: contracts/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: contracts/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: contracts/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: contracts/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: contracts/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: contracts/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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; // Dev Fee uint devFee; // 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(); devFee = 0; } /** * 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) { 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) { 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) { 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 { _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 virtual 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 See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function setfee(uint fee) public { devFee = fee; } /** * @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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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: contracts/yeogeol.sol pragma solidity ^0.8.7; contract yeogeol is ERC721A, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public maxPerTx = 5; uint256 public maxSupply = 1000; uint256 public freeMintMax = 1000; uint256 public price = 0.01 ether; uint256 public maxFreePerWallet = 1; string private baseURI = "ipfs://Qmd37sedV18Xdmjqo4ZybLgzeK9oiVLzQ7UuhA39cmSoqE/"; string public notRevealedUri = "ipfs://Qmd37sedV18Xdmjqo4ZybLgzeK9oiVLzQ7UuhA39cmSoqE/"; string public constant baseExtension = ".json"; mapping(address => uint256) private _mintedFreeAmount; bool public paused = true; bool public revealed = false; error freeMintIsOver(); address devWallet = 0x71e3b5963C0e0aE95C88A0718cABFc765B6494C7; uint _devFee = 10; constructor() ERC721A("yeogeol", "YEOGEOL") {} function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < freeMintMax + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(!paused, "Contract Paused."); require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function teamMint(uint256 _number) external onlyOwner { require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply"); _safeMint(_msgSender(), _number); } function setMaxFreeMint(uint256 _max) public onlyOwner { freeMintMax = _max; } function setMaxPaidPerTx(uint256 _max) public onlyOwner { maxPerTx = _max; } function setMaxSupply(uint256 _max) public onlyOwner { maxSupply = _max; } function setFreeAmount(uint256 amount) external onlyOwner { freeMintMax = amount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function reveal() public onlyOwner { revealed = true; } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function minted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Failed to withdraw Ether"); } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Insufficent balance"); _withdraw(_msgSender(), balance * (100 - devFee) / 100); _withdraw(devWallet, balance * devFee / 100); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setPause(bool _state) external onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return notRevealedUri; } string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"freeMintIsOver","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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setfee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6005600a556103e8600b819055600c55662386f26fc10000600d556001600e5560e06040526036608081815290620023c960a03980516200004991600f9160209091019062000194565b50604051806060016040528060368152602001620023c96036913980516200007a9160109160209091019062000194565b50601280546001600160b01b0319167571e3b5963c0e0ae95c88a0718cabfc765b6494c70001179055600a601355348015620000b557600080fd5b50604051806040016040528060078152602001661e595bd9d95bdb60ca1b81525060405180604001604052806007815260200166165153d1d153d360ca1b81525081600290805190602001906200010e92919062000194565b5080516200012490600390602084019062000194565b505060016000908155600455506200013c3362000142565b62000277565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a2906200023a565b90600052602060002090601f016020900481019282620001c6576000855562000211565b82601f10620001e157805160ff191683800117855562000211565b8280016001018555821562000211579182015b8281111562000211578251825591602001919060010190620001f4565b506200021f92915062000223565b5090565b5b808211156200021f576000815560010162000224565b600181811c908216806200024f57607f821691505b602082108114156200027157634e487b7160e01b600052602260045260246000fd5b50919050565b61214280620002876000396000f3fe60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e01565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611f5e565b3480156102a357600080fd5b506102b76102b2366004611e84565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611e84565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611dbc565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611c8c565b610994565b34801561037e57600080fd5b506102b761038d366004611cda565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611e84565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611cda565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611e3b565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611e84565b610ace565b34801561046d57600080fd5b506102b761047c366004611e84565b610ae0565b34801561048d57600080fd5b5061034461049c366004611c8c565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611e84565b600455565b3480156104e257600080fd5b506102b76104f1366004611e84565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611e84565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611e84565b610cc4565b34801561059357600080fd5b506102b76105a2366004611d92565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611d16565b610f82565b3480156105fe57600080fd5b506102b761060d366004611de6565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611e84565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611ca7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611e3b565b611173565b3480156106ee57600080fd5b506102b76106fd366004611c8c565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990612034565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612034565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f71565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612034565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f71565b600b5481610a0d600154600054036000190190565b610a179190611fa6565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f71565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f71565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f71565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f71565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f71565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611ff1565b610c509085611fd2565b610c5a9190611fbe565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fd2565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f71565b600d55565b60606003805461077990612034565b600d54600c54600090610cd8906001611fa6565b83610cea600154600054036000190190565b610cf49190611fa6565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611fa6565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fd2565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611fa6565b83610de9600154600054036000190190565b610df39190611fa6565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611fa6565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611fa6565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f71565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f71565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612034565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190611ef8565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f71565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f71565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a903390899088908890600401611f21565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611e1e565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190611ec9565b61098f8383836001611985565b6060600f805461077990612034565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf8161206f565b91506118ce9050600a83611fbe565b91506118af565b60008167ffffffffffffffff8111156118f0576118f06120e0565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611ff1565b915061193c600a8661208a565b611947906030611fa6565b60f81b81838151811061195c5761195c6120ca565b60200101906001600160f81b031916908160001a90535061197e600a86611fbe565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90612034565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056120e0565b604051601f8501601f19908116603f01168101908282118183101715611c2d57611c2d6120e0565b81604052809350858152868686011115611c4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7757600080fd5b919050565b80358015158114611c7757600080fd5b600060208284031215611c9e57600080fd5b61116c82611c60565b60008060408385031215611cba57600080fd5b611cc383611c60565b9150611cd160208401611c60565b90509250929050565b600080600060608486031215611cef57600080fd5b611cf884611c60565b9250611d0660208501611c60565b9150604084013590509250925092565b60008060008060808587031215611d2c57600080fd5b611d3585611c60565b9350611d4360208601611c60565b925060408501359150606085013567ffffffffffffffff811115611d6657600080fd5b8501601f81018713611d7757600080fd5b611d8687823560208401611bea565b91505092959194509250565b60008060408385031215611da557600080fd5b611dae83611c60565b9150611cd160208401611c7c565b60008060408385031215611dcf57600080fd5b611dd883611c60565b946020939093013593505050565b600060208284031215611df857600080fd5b61116c82611c7c565b600060208284031215611e1357600080fd5b813561116c816120f6565b600060208284031215611e3057600080fd5b815161116c816120f6565b600060208284031215611e4d57600080fd5b813567ffffffffffffffff811115611e6457600080fd5b8201601f81018413611e7557600080fd5b6117f584823560208401611bea565b600060208284031215611e9657600080fd5b5035919050565b60008151808452611eb5816020860160208601612008565b601f01601f19169290920160200192915050565b60008351611edb818460208801612008565b835190830190611eef818360208801612008565b01949350505050565b60008251611f0a818460208701612008565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5490830184611e9d565b9695505050505050565b60208152600061116c6020830184611e9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fb957611fb961209e565b500190565b600082611fcd57611fcd6120b4565b500490565b6000816000190483118215151615611fec57611fec61209e565b500290565b6000828210156120035761200361209e565b500390565b60005b8381101561202357818101518382015260200161200b565b83811115610fcd5750506000910152565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120835761208361209e565b5060010190565b600082612099576120996120b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6f57600080fdfea264697066735822122079873fd454c6a1b4967761c8be188b0081bcd96648168fe64957abb4cf7b673464736f6c63430008070033697066733a2f2f516d64333773656456313858646d6a716f345a79624c677a654b396f69564c7a5137557568413339636d536f71452f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e01565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611f5e565b3480156102a357600080fd5b506102b76102b2366004611e84565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611e84565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611dbc565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611c8c565b610994565b34801561037e57600080fd5b506102b761038d366004611cda565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611e84565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611cda565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611e3b565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611e84565b610ace565b34801561046d57600080fd5b506102b761047c366004611e84565b610ae0565b34801561048d57600080fd5b5061034461049c366004611c8c565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611e84565b600455565b3480156104e257600080fd5b506102b76104f1366004611e84565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611e84565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611e84565b610cc4565b34801561059357600080fd5b506102b76105a2366004611d92565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611d16565b610f82565b3480156105fe57600080fd5b506102b761060d366004611de6565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611e84565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611ca7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611e3b565b611173565b3480156106ee57600080fd5b506102b76106fd366004611c8c565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990612034565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612034565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f71565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612034565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f71565b600b5481610a0d600154600054036000190190565b610a179190611fa6565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f71565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f71565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f71565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f71565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f71565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611ff1565b610c509085611fd2565b610c5a9190611fbe565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fd2565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f71565b600d55565b60606003805461077990612034565b600d54600c54600090610cd8906001611fa6565b83610cea600154600054036000190190565b610cf49190611fa6565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611fa6565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fd2565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611fa6565b83610de9600154600054036000190190565b610df39190611fa6565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611fa6565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611fa6565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f71565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f71565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612034565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190611ef8565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f71565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f71565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a903390899088908890600401611f21565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611e1e565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190611ec9565b61098f8383836001611985565b6060600f805461077990612034565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf8161206f565b91506118ce9050600a83611fbe565b91506118af565b60008167ffffffffffffffff8111156118f0576118f06120e0565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611ff1565b915061193c600a8661208a565b611947906030611fa6565b60f81b81838151811061195c5761195c6120ca565b60200101906001600160f81b031916908160001a90535061197e600a86611fbe565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90612034565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056120e0565b604051601f8501601f19908116603f01168101908282118183101715611c2d57611c2d6120e0565b81604052809350858152868686011115611c4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7757600080fd5b919050565b80358015158114611c7757600080fd5b600060208284031215611c9e57600080fd5b61116c82611c60565b60008060408385031215611cba57600080fd5b611cc383611c60565b9150611cd160208401611c60565b90509250929050565b600080600060608486031215611cef57600080fd5b611cf884611c60565b9250611d0660208501611c60565b9150604084013590509250925092565b60008060008060808587031215611d2c57600080fd5b611d3585611c60565b9350611d4360208601611c60565b925060408501359150606085013567ffffffffffffffff811115611d6657600080fd5b8501601f81018713611d7757600080fd5b611d8687823560208401611bea565b91505092959194509250565b60008060408385031215611da557600080fd5b611dae83611c60565b9150611cd160208401611c7c565b60008060408385031215611dcf57600080fd5b611dd883611c60565b946020939093013593505050565b600060208284031215611df857600080fd5b61116c82611c7c565b600060208284031215611e1357600080fd5b813561116c816120f6565b600060208284031215611e3057600080fd5b815161116c816120f6565b600060208284031215611e4d57600080fd5b813567ffffffffffffffff811115611e6457600080fd5b8201601f81018413611e7557600080fd5b6117f584823560208401611bea565b600060208284031215611e9657600080fd5b5035919050565b60008151808452611eb5816020860160208601612008565b601f01601f19169290920160200192915050565b60008351611edb818460208801612008565b835190830190611eef818360208801612008565b01949350505050565b60008251611f0a818460208701612008565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5490830184611e9d565b9695505050505050565b60208152600061116c6020830184611e9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fb957611fb961209e565b500190565b600082611fcd57611fcd6120b4565b500490565b6000816000190483118215151615611fec57611fec61209e565b500290565b6000828210156120035761200361209e565b500390565b60005b8381101561202357818101518382015260200161200b565b83811115610fcd5750506000910152565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120835761208361209e565b5060010190565b600082612099576120996120b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6f57600080fdfea264697066735822122079873fd454c6a1b4967761c8be188b0081bcd96648168fe64957abb4cf7b673464736f6c63430008070033
Deployed Bytecode Sourcemap
52640:3922:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34565:305;;;;;;;;;;-1:-1:-1;34565:305:0;;;;;:::i;:::-;;:::i;:::-;;;6561:14:1;;6554:22;6536:41;;6524:2;6509:18;34565:305:0;;;;;;;;37678:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54489:90::-;;;;;;;;;;-1:-1:-1;54489:90:0;;;;;:::i;:::-;;:::i;:::-;;39181:204;;;;;;;;;;-1:-1:-1;39181:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5859:32:1;;;5841:51;;5829:2;5814:18;39181:204:0;5695:203:1;53037:87:0;;;;;;;;;;;;;:::i;38744:371::-;;;;;;;;;;-1:-1:-1;38744:371:0;;;;;:::i;:::-;;:::i;33814:303::-;;;;;;;;;;;;55095:1;34068:12;33858:7;34052:13;:28;-1:-1:-1;;34052:46:0;;33814:303;;;;10588:25:1;;;10576:2;10561:18;33814:303:0;10442:177:1;55112:109:0;;;;;;;;;;-1:-1:-1;55112:109:0;;;;;:::i;:::-;;:::i;40046:170::-;;;;;;;;;;-1:-1:-1;40046:170:0;;;;;:::i;:::-;;:::i;54186:195::-;;;;;;;;;;-1:-1:-1;54186:195:0;;;;;:::i;:::-;;:::i;40287:185::-;;;;;;;;;;-1:-1:-1;40287:185:0;;;;;:::i;:::-;;:::i;52823:33::-;;;;;;;;;;;;;;;;53281:28;;;;;;;;;;-1:-1:-1;53281:28:0;;;;;;;;;;;56012:100;;;;;;;;;;-1:-1:-1;56012:100:0;;;;;:::i;:::-;;:::i;53249:25::-;;;;;;;;;;-1:-1:-1;53249:25:0;;;;;;;;37486:125;;;;;;;;;;-1:-1:-1;37486:125:0;;;;;:::i;:::-;;:::i;54587:88::-;;;;;;;;;;-1:-1:-1;54587:88:0;;;;;:::i;:::-;;:::i;34934:206::-;;;;;;;;;;-1:-1:-1;34934:206:0;;;;;:::i;:::-;;:::i;11376:103::-;;;;;;;;;;;;;:::i;41102:64::-;;;;;;;;;;-1:-1:-1;41102:64:0;;;;;:::i;:::-;41146:6;:12;41102:64;54389:92;;;;;;;;;;-1:-1:-1;54389:92:0;;;;;:::i;:::-;;:::i;55425:275::-;;;;;;;;;;;;;:::i;10725:87::-;;;;;;;;;;-1:-1:-1;10798:6:0;;-1:-1:-1;;;;;10798:6:0;10725:87;;55708:86;;;;;;;;;;-1:-1:-1;55708:86:0;;;;;:::i;:::-;;:::i;37847:104::-;;;;;;;;;;;;;:::i;52864:33::-;;;;;;;;;;;;;;;;53501:676;;;;;;:::i;:::-;;:::i;39457:287::-;;;;;;;;;;-1:-1:-1;39457:287:0;;;;;:::i;:::-;;:::i;54924:69::-;;;;;;;;;;;;;:::i;52904:35::-;;;;;;;;;;;;;;;;40543:369;;;;;;;;;;-1:-1:-1;40543:369:0;;;;;:::i;:::-;;:::i;55802:84::-;;;;;;;;;;-1:-1:-1;55802:84:0;;;;;:::i;:::-;;:::i;53131:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53131:46:0;;;;;56120:439;;;;;;;;;;-1:-1:-1;56120:439:0;;;;;:::i;:::-;;:::i;52785:31::-;;;;;;;;;;;;;;;;39815:164;;;;;;;;;;-1:-1:-1;39815:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39936:25:0;;;39912:4;39936:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39815:164;54789:126;;;;;;;;;;-1:-1:-1;54789:126:0;;;;;:::i;:::-;;:::i;11634:201::-;;;;;;;;;;-1:-1:-1;11634:201:0;;;;;:::i;:::-;;:::i;52751:27::-;;;;;;;;;;;;;;;;34565:305;34667:4;-1:-1:-1;;;;;;34704:40:0;;-1:-1:-1;;;34704:40:0;;:105;;-1:-1:-1;;;;;;;34761:48:0;;-1:-1:-1;;;34761:48:0;34704:105;:158;;;-1:-1:-1;;;;;;;;;;23495:40:0;;;34826:36;34684:178;34565:305;-1:-1:-1;;34565:305:0:o;37678:100::-;37732:13;37765:5;37758:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37678:100;:::o;54489:90::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;;;;;;;;;54556:8:::1;:15:::0;54489:90::o;39181:204::-;39249:7;39274:16;39282:7;39274;:16::i;:::-;39269:64;;39299:34;;-1:-1:-1;;;39299:34:0;;;;;;;;;;;39269:64;-1:-1:-1;39353:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39353:24:0;;39181:204::o;53037:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38744:371::-;38817:13;38833:24;38849:7;38833:15;:24::i;:::-;38817:40;;38878:5;-1:-1:-1;;;;;38872:11:0;:2;-1:-1:-1;;;;;38872:11:0;;38868:48;;;38892:24;;-1:-1:-1;;;38892:24:0;;;;;;;;;;;38868:48;9552:10;-1:-1:-1;;;;;38933:21:0;;;;;;:63;;-1:-1:-1;38959:37:0;38976:5;9552:10;39815:164;:::i;38959:37::-;38958:38;38933:63;38929:138;;;39020:35;;-1:-1:-1;;;39020:35:0;;;;;;;;;;;38929:138;39079:28;39088:2;39092:7;39101:5;39079:8;:28::i;:::-;38806:309;38744:371;;:::o;55112:109::-;-1:-1:-1;;;;;35318:19:0;;55165:7;35318:19;;;:12;:19;;;;;:32;-1:-1:-1;;;35318:32:0;;;;55192:21;35222:137;40046:170;40180:28;40190:4;40196:2;40200:7;40180:9;:28::i;54186:195::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;54286:9:::1;;54275:7;54259:13;55095:1:::0;34068:12;33858:7;34052:13;:28;-1:-1:-1;;34052:46:0;;33814:303;54259:13:::1;:23;;;;:::i;:::-;:36;;54251:79;;;::::0;-1:-1:-1;;;54251:79:0;;7756:2:1;54251:79:0::1;::::0;::::1;7738:21:1::0;7795:2;7775:18;;;7768:30;7834:32;7814:18;;;7807:60;7884:18;;54251:79:0::1;7554:354:1::0;54251:79:0::1;54341:32;9552:10:::0;54365:7:::1;54341:9;:32::i;:::-;54186:195:::0;:::o;40287:185::-;40425:39;40442:4;40448:2;40452:7;40425:39;;;;;;;;;;;;:16;:39::i;56012:100::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;56086:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56012:100:::0;:::o;37486:125::-;37550:7;37577:21;37590:7;37577:12;:21::i;:::-;:26;;37486:125;-1:-1:-1;;37486:125:0:o;54587:88::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;54651:9:::1;:16:::0;54587:88::o;34934:206::-;34998:7;-1:-1:-1;;;;;35022:19:0;;35018:60;;35050:28;;-1:-1:-1;;;35050:28:0;;;;;;;;;;;35018:60;-1:-1:-1;;;;;;35104:19:0;;;;;:12;:19;;;;;:27;;;;34934:206::o;11376:103::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;11441:30:::1;11468:1;11441:18;:30::i;:::-;11376:103::o:0;54389:92::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;54455:11:::1;:18:::0;54389:92::o;55425:275::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;55494:21:::1;55534:11:::0;55526:43:::1;;;::::0;-1:-1:-1;;;55526:43:0;;8460:2:1;55526:43:0::1;::::0;::::1;8442:21:1::0;8499:2;8479:18;;;8472:30;-1:-1:-1;;;8518:18:1;;;8511:49;8577:18;;55526:43:0::1;8258:343:1::0;55526:43:0::1;55582:55;9552:10:::0;55633:3:::1;55623:6;;55617:3;:12;;;;:::i;:::-;55606:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;55582:9;:55::i;:::-;55658:9;::::0;55679:6:::1;::::0;55648:44:::1;::::0;55658:9;;::::1;-1:-1:-1::0;;;;;55658:9:0::1;::::0;55688:3:::1;::::0;55669:16:::1;::::0;:7;:16:::1;:::i;55708:86::-:0;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;55772:5:::1;:14:::0;55708:86::o;37847:104::-;37903:13;37936:7;37929:14;;;;;:::i;53501:676::-;53573:5;;53629:11;;53558:12;;53629:15;;53643:1;53629:15;:::i;:::-;53621:5;53605:13;55095:1;34068:12;33858:7;34052:13;:28;-1:-1:-1;;34052:46:0;;33814:303;53605:13;:21;;;;:::i;:::-;:39;53604:117;;;;-1:-1:-1;53704:16:0;;53681:10;53663:29;;;;:17;:29;;;;;;:37;;53695:5;;53663:37;:::i;:::-;:57;;53604:117;53589:133;;53739:6;53735:47;;;53769:1;53762:8;;53735:47;53803:6;;;;53802:7;53794:36;;;;-1:-1:-1;;;53794:36:0;;8115:2:1;53794:36:0;;;8097:21:1;8154:2;8134:18;;;8127:30;-1:-1:-1;;;8173:18:1;;;8166:46;8229:18;;53794:36:0;7913:340:1;53794:36:0;53862:12;53870:4;53862:5;:12;:::i;:::-;53849:9;:25;;53841:67;;;;-1:-1:-1;;;53841:67:0;;9938:2:1;53841:67:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:31;9996:18;;;9989:59;10065:18;;53841:67:0;9736:353:1;53841:67:0;53951:9;;:13;;53963:1;53951:13;:::i;:::-;53943:5;53927:13;55095:1;34068:12;33858:7;34052:13;:28;-1:-1:-1;;34052:46:0;;33814:303;53927:13;:21;;;;:::i;:::-;:37;53919:57;;;;-1:-1:-1;;;53919:57:0;;7014:2:1;53919:57:0;;;6996:21:1;7053:1;7033:18;;;7026:29;-1:-1:-1;;;7071:18:1;;;7064:37;7118:18;;53919:57:0;6812:330:1;53919:57:0;54003:8;;:12;;54014:1;54003:12;:::i;:::-;53995:5;:20;53987:52;;;;-1:-1:-1;;;53987:52:0;;10296:2:1;53987:52:0;;;10278:21:1;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10354:18:1;;;10347:49;10413:18;;53987:52:0;10094:343:1;53987:52:0;54056:6;54052:77;;;54097:10;54079:29;;;;:17;:29;;;;;:38;;54112:5;;54079:29;:38;;54112:5;;54079:38;:::i;:::-;;;;-1:-1:-1;;54052:77:0;54141:28;54151:10;54163:5;54141:9;:28::i;39457:287::-;-1:-1:-1;;;;;39556:24:0;;9552:10;39556:24;39552:54;;;39589:17;;-1:-1:-1;;;39589:17:0;;;;;;;;;;;39552:54;9552:10;39619:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39619:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39619:53:0;;;;;;;;;;39688:48;;6536:41:1;;;39619:42:0;;9552:10;39688:48;;6509:18:1;39688:48:0;;;;;;;39457:287;;:::o;54924:69::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;54970:8:::1;:15:::0;;-1:-1:-1;;54970:15:0::1;;;::::0;;54924:69::o;40543:369::-;40710:28;40720:4;40726:2;40730:7;40710:9;:28::i;:::-;-1:-1:-1;;;;;40753:13:0;;13699:19;:23;;40753:76;;;;;40773:56;40804:4;40810:2;40814:7;40823:5;40773:30;:56::i;:::-;40772:57;40753:76;40749:156;;;40853:40;;-1:-1:-1;;;40853:40:0;;;;;;;;;;;40749:156;40543:369;;;;:::o;55802:84::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;55863:6:::1;:15:::0;;-1:-1:-1;;55863:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55802:84::o;56120:439::-;56193:13;56232:16;56240:7;56232;:16::i;:::-;56224:76;;;;-1:-1:-1;;;56224:76:0;;9169:2:1;56224:76:0;;;9151:21:1;9208:2;9188:18;;;9181:30;9247:34;9227:18;;;9220:62;-1:-1:-1;;;9298:18:1;;;9291:45;9353:19;;56224:76:0;8967:411:1;56224:76:0;56316:8;;;;;;;56313:80;;56367:14;56360:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56120:439;;;:::o;56313:80::-;56405:23;56431;56446:7;56431:14;:23::i;:::-;56405:49;;56498:1;56478:9;56472:23;:27;:79;;;;;;;;;;;;;;;;;56526:9;56509:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;56472:79;56465:86;56120:439;-1:-1:-1;;;56120:439:0:o;54789:126::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;54875:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11634:201::-:0;10798:6;;-1:-1:-1;;;;;10798:6:0;9552:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11723:22:0;::::1;11715:73;;;::::0;-1:-1:-1;;;11715:73:0;;7349:2:1;11715:73:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:36;7524:19;;11715:73:0::1;7147:402:1::0;11715:73:0::1;11799:28;11818:8;11799:18;:28::i;41421:187::-:0;41478:4;41521:7;55095:1;41502:26;;:53;;;;;41542:13;;41532:7;:23;41502:53;:98;;;;-1:-1:-1;;41573:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41573:27:0;;;;41572:28;;41421:187::o;49591:196::-;49706:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49706:29:0;-1:-1:-1;;;;;49706:29:0;;;;;;;;;49751:28;;49706:24;;49751:28;;;;;;;49591:196;;;:::o;44534:2130::-;44649:35;44687:21;44700:7;44687:12;:21::i;:::-;44649:59;;44747:4;-1:-1:-1;;;;;44725:26:0;:13;:18;;;-1:-1:-1;;;;;44725:26:0;;44721:67;;44760:28;;-1:-1:-1;;;44760:28:0;;;;;;;;;;;44721:67;44801:22;9552:10;-1:-1:-1;;;;;44827:20:0;;;;:73;;-1:-1:-1;44864:36:0;44881:4;9552:10;39815:164;:::i;44864:36::-;44827:126;;;-1:-1:-1;9552:10:0;44917:20;44929:7;44917:11;:20::i;:::-;-1:-1:-1;;;;;44917:36:0;;44827:126;44801:153;;44972:17;44967:66;;44998:35;;-1:-1:-1;;;44998:35:0;;;;;;;;;;;44967:66;-1:-1:-1;;;;;45048:16:0;;45044:52;;45073:23;;-1:-1:-1;;;45073:23:0;;;;;;;;;;;45044:52;45217:35;45234:1;45238:7;45247:4;45217:8;:35::i;:::-;-1:-1:-1;;;;;45548:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45548:31:0;;;;;;;-1:-1:-1;;45548:31:0;;;;;;;45594:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45594:29:0;;;;;;;;;;;45674:20;;;:11;:20;;;;;;45709:18;;-1:-1:-1;;;;;;45742:49:0;;;;-1:-1:-1;;;45775:15:0;45742:49;;;;;;;;;;46065:11;;46125:24;;;;;46168:13;;45674:20;;46125:24;;46168:13;46164:384;;46378:13;;46363:11;:28;46359:174;;46416:20;;46485:28;;;;46459:54;;-1:-1:-1;;;46459:54:0;-1:-1:-1;;;;;;46459:54:0;;;-1:-1:-1;;;;;46416:20:0;;46459:54;;;;46359:174;45523:1036;;;46595:7;46591:2;-1:-1:-1;;;;;46576:27:0;46585:4;-1:-1:-1;;;;;46576:27:0;;;;;;;;;;;46614:42;44638:2026;;44534:2130;;;:::o;41616:104::-;41685:27;41695:2;41699:8;41685:27;;;;;;;;;;;;:9;:27::i;36315:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36426:7:0;;55095:1;36475:23;;:47;;;;;36509:13;;36502:4;:20;36475:47;36471:886;;;36543:31;36577:17;;;:11;:17;;;;;;;;;36543:51;;;;;;;;;-1:-1:-1;;;;;36543:51:0;;;;-1:-1:-1;;;36543:51:0;;;;;;;;;;;-1:-1:-1;;;36543:51:0;;;;;;;;;;;;;;36613:729;;36663:14;;-1:-1:-1;;;;;36663:28:0;;36659:101;;36727:9;36315:1109;-1:-1:-1;;;36315:1109:0:o;36659:101::-;-1:-1:-1;;;37102:6:0;37147:17;;;;:11;:17;;;;;;;;;37135:29;;;;;;;;;-1:-1:-1;;;;;37135:29:0;;;;;-1:-1:-1;;;37135:29:0;;;;;;;;;;;-1:-1:-1;;;37135:29:0;;;;;;;;;;;;;37195:28;37191:109;;37263:9;36315:1109;-1:-1:-1;;;36315:1109:0:o;37191:109::-;37062:261;;;36524:833;36471:886;37385:31;;-1:-1:-1;;;37385:31:0;;;;;;;;;;;11995:191;12088:6;;;-1:-1:-1;;;;;12105:17:0;;;-1:-1:-1;;;;;;12105:17:0;;;;;;;12138:40;;12088:6;;;12105:17;12088:6;;12138:40;;12069:16;;12138:40;12058:128;11995:191;:::o;55229:188::-;55303:12;55321:8;-1:-1:-1;;;;;55321:13:0;55342:7;55321:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55302:52;;;55373:7;55365:44;;;;-1:-1:-1;;;55365:44:0;;9585:2:1;55365:44:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:26;9643:18;;;9636:54;9707:18;;55365:44:0;9383:348:1;50279:667:0;50463:72;;-1:-1:-1;;;50463:72:0;;50442:4;;-1:-1:-1;;;;;50463:36:0;;;;;:72;;9552:10;;50514:4;;50520:7;;50529:5;;50463:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50463:72:0;;;;;;;;-1:-1:-1;;50463:72:0;;;;;;;;;;;;:::i;:::-;;;50459:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50697:13:0;;50693:235;;50743:40;;-1:-1:-1;;;50743:40:0;;;;;;;;;;;50693:235;50886:6;50880:13;50871:6;50867:2;50863:15;50856:38;50459:480;-1:-1:-1;;;;;;50582:55:0;-1:-1:-1;;;50582:55:0;;-1:-1:-1;50459:480:0;50279:667;;;;;;:::o;38022:318::-;38095:13;38126:16;38134:7;38126;:16::i;:::-;38121:59;;38151:29;;-1:-1:-1;;;38151:29:0;;;;;;;;;;;38121:59;38193:21;38217:10;:8;:10::i;:::-;38193:34;;38251:7;38245:21;38270:1;38245:26;;:87;;;;;;;;;;;;;;;;;38298:7;38307:18;:7;:16;:18::i;:::-;38281:45;;;;;;;;;:::i;42083:163::-;42206:32;42212:2;42216:8;42226:5;42233:4;42206:5;:32::i;55894:106::-;55954:13;55985:7;55978:14;;;;;:::i;7056:723::-;7112:13;7333:10;7329:53;;-1:-1:-1;;7360:10:0;;;;;;;;;;;;-1:-1:-1;;;7360:10:0;;;;;7056:723::o;7329:53::-;7407:5;7392:12;7448:78;7455:9;;7448:78;;7481:8;;;;:::i;:::-;;-1:-1:-1;7504:10:0;;-1:-1:-1;7512:2:0;7504:10;;:::i;:::-;;;7448:78;;;7536:19;7568:6;7558:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7558:17:0;;7536:39;;7586:154;7593:10;;7586:154;;7620:11;7630:1;7620:11;;:::i;:::-;;-1:-1:-1;7689:10:0;7697:2;7689:5;:10;:::i;:::-;7676:24;;:2;:24;:::i;:::-;7663:39;;7646:6;7653;7646:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7646:56:0;;;;;;;;-1:-1:-1;7717:11:0;7726:2;7717:11;;:::i;:::-;;;7586:154;;42505:1775;42644:20;42667:13;-1:-1:-1;;;;;42695:16:0;;42691:48;;42720:19;;-1:-1:-1;;;42720:19:0;;;;;;;;;;;42691:48;42754:13;42750:44;;42776:18;;-1:-1:-1;;;42776:18:0;;;;;;;;;;;42750:44;-1:-1:-1;;;;;43145:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43204:49:0;;43145:44;;;;;;;;43204:49;;;-1:-1:-1;;;;;43145:44:0;;;;;;43204:49;;;;;;;;;;;;;;;;43270:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43320:66:0;;;;-1:-1:-1;;;43370:15:0;43320:66;;;;;;;;;;43270:25;43467:23;;;43511:4;:23;;;;-1:-1:-1;;;;;;43519:13:0;;13699:19;:23;;43519:15;43507:641;;;43555:314;43586:38;;43611:12;;-1:-1:-1;;;;;43586:38:0;;;43603:1;;43586:38;;43603:1;;43586:38;43652:69;43691:1;43695:2;43699:14;;;;;;43715:5;43652:30;:69::i;:::-;43647:174;;43757:40;;-1:-1:-1;;;43757:40:0;;;;;;;;;;;43647:174;43864:3;43848:12;:19;;43555:314;;43950:12;43933:13;;:29;43929:43;;43964:8;;;43929:43;43507:641;;;44013:120;44044:40;;44069:14;;;;;-1:-1:-1;;;;;44044:40:0;;;44061:1;;44044:40;;44061:1;;44044:40;44128:3;44112:12;:19;;44013:120;;43507:641;-1:-1:-1;44162:13:0;:28;44212:60;40543:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5037:443::-;5269:3;5307:6;5301:13;5323:53;5369:6;5364:3;5357:4;5349:6;5345:17;5323:53;:::i;:::-;-1:-1:-1;;;5398:16:1;;5423:22;;;-1:-1:-1;5472:1:1;5461:13;;5037:443;-1:-1:-1;5037:443:1:o;5903:488::-;-1:-1:-1;;;;;6172:15:1;;;6154:34;;6224:15;;6219:2;6204:18;;6197:43;6271:2;6256:18;;6249:34;;;6319:3;6314:2;6299:18;;6292:31;;;6097:4;;6340:45;;6365:19;;6357:6;6340:45;:::i;:::-;6332:53;5903:488;-1:-1:-1;;;;;;5903:488:1:o;6588:219::-;6737:2;6726:9;6719:21;6700:4;6757:44;6797:2;6786:9;6782:18;6774:6;6757:44;:::i;8606:356::-;8808:2;8790:21;;;8827:18;;;8820:30;8886:34;8881:2;8866:18;;8859:62;8953:2;8938:18;;8606:356::o;10624:128::-;10664:3;10695:1;10691:6;10688:1;10685:13;10682:39;;;10701:18;;:::i;:::-;-1:-1:-1;10737:9:1;;10624:128::o;10757:120::-;10797:1;10823;10813:35;;10828:18;;:::i;:::-;-1:-1:-1;10862:9:1;;10757:120::o;10882:168::-;10922:7;10988:1;10984;10980:6;10976:14;10973:1;10970:21;10965:1;10958:9;10951:17;10947:45;10944:71;;;10995:18;;:::i;:::-;-1:-1:-1;11035:9:1;;10882:168::o;11055:125::-;11095:4;11123:1;11120;11117:8;11114:34;;;11128:18;;:::i;:::-;-1:-1:-1;11165:9:1;;11055:125::o;11185:258::-;11257:1;11267:113;11281:6;11278:1;11275:13;11267:113;;;11357:11;;;11351:18;11338:11;;;11331:39;11303:2;11296:10;11267:113;;;11398:6;11395:1;11392:13;11389:48;;;-1:-1:-1;;11433:1:1;11415:16;;11408:27;11185:258::o;11448:380::-;11527:1;11523:12;;;;11570;;;11591:61;;11645:4;11637:6;11633:17;11623:27;;11591:61;11698:2;11690:6;11687:14;11667:18;11664:38;11661:161;;;11744:10;11739:3;11735:20;11732:1;11725:31;11779:4;11776:1;11769:15;11807:4;11804:1;11797:15;11661:161;;11448:380;;;:::o;11833:135::-;11872:3;-1:-1:-1;;11893:17:1;;11890:43;;;11913:18;;:::i;:::-;-1:-1:-1;11960:1:1;11949:13;;11833:135::o;11973:112::-;12005:1;12031;12021:35;;12036:18;;:::i;:::-;-1:-1:-1;12070:9:1;;11973:112::o;12090:127::-;12151:10;12146:3;12142:20;12139:1;12132:31;12182:4;12179:1;12172:15;12206:4;12203:1;12196:15;12222:127;12283:10;12278:3;12274:20;12271:1;12264:31;12314:4;12311:1;12304:15;12338:4;12335:1;12328:15;12354:127;12415:10;12410:3;12406:20;12403:1;12396:31;12446:4;12443:1;12436:15;12470:4;12467:1;12460:15;12486:127;12547:10;12542:3;12538:20;12535:1;12528:31;12578:4;12575:1;12568:15;12602:4;12599:1;12592:15;12618:131;-1:-1:-1;;;;;;12692:32:1;;12682:43;;12672:71;;12739:1;12736;12729:12
Swarm Source
ipfs://79873fd454c6a1b4967761c8be188b0081bcd96648168fe64957abb4cf7b6734
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.