ERC-721
Overview
Max Total Supply
3,600 KOKO
Holders
1,764
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 KOKOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KOKO
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-01 */ // SPDX-License-Identifier: MIT // File: contracts/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: 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/KOKO.sol pragma solidity ^0.8.7; contract KOKO is ERC721A, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public maxPerTx = 10; uint256 public maxSupply = 4444; uint256 public freeMintMax = 4444; // Free supply uint256 public price = 0.004 ether; uint256 public maxFreePerWallet = 2; string private baseURI = "https://gateway.pinata.cloud/ipfs/QmQTE2AbYNLVs6cNXupQAhdooKLY9r57TiWxS6ZiS22rCn/"; string public notRevealedUri = "https://gateway.pinata.cloud/ipfs/QmVE3vcynmkQbMqjQKFHrQkFzPv3t6UJ5WkHsve18dDSm5/hidden.json"; string public constant baseExtension = ".json"; mapping(address => uint256) private _mintedFreeAmount; bool public paused = true; bool public revealed = false; error freeMintIsOver(); address devWallet = 0x97D52A528Be58b32BAeA83d544EA12D03509bd41; uint _devFee = 0; constructor() ERC721A("KOKO lost his weenie", "KOKO") {} 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
600a805561115c600b819055600c55660e35fa931a0000600d556002600e5561010060405260516080818152906200242e60a03980516200004991600f916020909101906200019d565b506040518060800160405280605c8152602001620023d2605c913980516200007a916010916020909101906200019d565b50601280546001600160b01b0319167597d52a528be58b32baea83d544ea12d03509bd4100011790556000601355348015620000b557600080fd5b50604080518082018252601481527f4b4f4b4f206c6f737420686973207765656e69650000000000000000000000006020808301918252835180850190945260048452634b4f4b4f60e01b90840152815191929162000117916002916200019d565b5080516200012d9060039060208401906200019d565b5050600160009081556004555062000145336200014b565b62000280565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ab9062000243565b90600052602060002090601f016020900481019282620001cf57600085556200021a565b82601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b5b808211156200022857600081556001016200022d565b600181811c908216806200025857607f821691505b602082108114156200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b61214280620002906000396000f3fe60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e01565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611f5e565b3480156102a357600080fd5b506102b76102b2366004611e84565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611e84565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611dbc565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611c8c565b610994565b34801561037e57600080fd5b506102b761038d366004611cda565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611e84565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611cda565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611e3b565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611e84565b610ace565b34801561046d57600080fd5b506102b761047c366004611e84565b610ae0565b34801561048d57600080fd5b5061034461049c366004611c8c565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611e84565b600455565b3480156104e257600080fd5b506102b76104f1366004611e84565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611e84565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611e84565b610cc4565b34801561059357600080fd5b506102b76105a2366004611d92565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611d16565b610f82565b3480156105fe57600080fd5b506102b761060d366004611de6565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611e84565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611ca7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611e3b565b611173565b3480156106ee57600080fd5b506102b76106fd366004611c8c565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990612034565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612034565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f71565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612034565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f71565b600b5481610a0d600154600054036000190190565b610a179190611fa6565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f71565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f71565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f71565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f71565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f71565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611ff1565b610c509085611fd2565b610c5a9190611fbe565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fd2565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f71565b600d55565b60606003805461077990612034565b600d54600c54600090610cd8906001611fa6565b83610cea600154600054036000190190565b610cf49190611fa6565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611fa6565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fd2565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611fa6565b83610de9600154600054036000190190565b610df39190611fa6565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611fa6565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611fa6565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f71565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f71565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612034565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190611ef8565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f71565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f71565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a903390899088908890600401611f21565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611e1e565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190611ec9565b61098f8383836001611985565b6060600f805461077990612034565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf8161206f565b91506118ce9050600a83611fbe565b91506118af565b60008167ffffffffffffffff8111156118f0576118f06120e0565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611ff1565b915061193c600a8661208a565b611947906030611fa6565b60f81b81838151811061195c5761195c6120ca565b60200101906001600160f81b031916908160001a90535061197e600a86611fbe565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90612034565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056120e0565b604051601f8501601f19908116603f01168101908282118183101715611c2d57611c2d6120e0565b81604052809350858152868686011115611c4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7757600080fd5b919050565b80358015158114611c7757600080fd5b600060208284031215611c9e57600080fd5b61116c82611c60565b60008060408385031215611cba57600080fd5b611cc383611c60565b9150611cd160208401611c60565b90509250929050565b600080600060608486031215611cef57600080fd5b611cf884611c60565b9250611d0660208501611c60565b9150604084013590509250925092565b60008060008060808587031215611d2c57600080fd5b611d3585611c60565b9350611d4360208601611c60565b925060408501359150606085013567ffffffffffffffff811115611d6657600080fd5b8501601f81018713611d7757600080fd5b611d8687823560208401611bea565b91505092959194509250565b60008060408385031215611da557600080fd5b611dae83611c60565b9150611cd160208401611c7c565b60008060408385031215611dcf57600080fd5b611dd883611c60565b946020939093013593505050565b600060208284031215611df857600080fd5b61116c82611c7c565b600060208284031215611e1357600080fd5b813561116c816120f6565b600060208284031215611e3057600080fd5b815161116c816120f6565b600060208284031215611e4d57600080fd5b813567ffffffffffffffff811115611e6457600080fd5b8201601f81018413611e7557600080fd5b6117f584823560208401611bea565b600060208284031215611e9657600080fd5b5035919050565b60008151808452611eb5816020860160208601612008565b601f01601f19169290920160200192915050565b60008351611edb818460208801612008565b835190830190611eef818360208801612008565b01949350505050565b60008251611f0a818460208701612008565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5490830184611e9d565b9695505050505050565b60208152600061116c6020830184611e9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fb957611fb961209e565b500190565b600082611fcd57611fcd6120b4565b500490565b6000816000190483118215151615611fec57611fec61209e565b500290565b6000828210156120035761200361209e565b500390565b60005b8381101561202357818101518382015260200161200b565b83811115610fcd5750506000910152565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120835761208361209e565b5060010190565b600082612099576120996120b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6f57600080fdfea2646970667358221220591472734f028c2ac05c7910b669710eaaa00b98f34d128aa5e51680b5fee08264736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5645337663796e6d6b51624d716a514b464872516b467a5076337436554a35576b4873766531386444536d352f68696464656e2e6a736f6e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d515445324162594e4c567336634e587570514168646f6f4b4c59397235375469577853365a6953323272436e2f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e01565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611f5e565b3480156102a357600080fd5b506102b76102b2366004611e84565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611e84565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611dbc565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611c8c565b610994565b34801561037e57600080fd5b506102b761038d366004611cda565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611e84565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611cda565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611e3b565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611e84565b610ace565b34801561046d57600080fd5b506102b761047c366004611e84565b610ae0565b34801561048d57600080fd5b5061034461049c366004611c8c565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611e84565b600455565b3480156104e257600080fd5b506102b76104f1366004611e84565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611e84565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611e84565b610cc4565b34801561059357600080fd5b506102b76105a2366004611d92565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611d16565b610f82565b3480156105fe57600080fd5b506102b761060d366004611de6565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611e84565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611ca7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611e3b565b611173565b3480156106ee57600080fd5b506102b76106fd366004611c8c565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990612034565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612034565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f71565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612034565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f71565b600b5481610a0d600154600054036000190190565b610a179190611fa6565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f71565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f71565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f71565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f71565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f71565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611ff1565b610c509085611fd2565b610c5a9190611fbe565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fd2565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f71565b600d55565b60606003805461077990612034565b600d54600c54600090610cd8906001611fa6565b83610cea600154600054036000190190565b610cf49190611fa6565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611fa6565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fd2565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611fa6565b83610de9600154600054036000190190565b610df39190611fa6565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611fa6565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611fa6565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f71565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f71565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612034565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190611ef8565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f71565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f71565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a903390899088908890600401611f21565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611e1e565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190611ec9565b61098f8383836001611985565b6060600f805461077990612034565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf8161206f565b91506118ce9050600a83611fbe565b91506118af565b60008167ffffffffffffffff8111156118f0576118f06120e0565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611ff1565b915061193c600a8661208a565b611947906030611fa6565b60f81b81838151811061195c5761195c6120ca565b60200101906001600160f81b031916908160001a90535061197e600a86611fbe565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90612034565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056120e0565b604051601f8501601f19908116603f01168101908282118183101715611c2d57611c2d6120e0565b81604052809350858152868686011115611c4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7757600080fd5b919050565b80358015158114611c7757600080fd5b600060208284031215611c9e57600080fd5b61116c82611c60565b60008060408385031215611cba57600080fd5b611cc383611c60565b9150611cd160208401611c60565b90509250929050565b600080600060608486031215611cef57600080fd5b611cf884611c60565b9250611d0660208501611c60565b9150604084013590509250925092565b60008060008060808587031215611d2c57600080fd5b611d3585611c60565b9350611d4360208601611c60565b925060408501359150606085013567ffffffffffffffff811115611d6657600080fd5b8501601f81018713611d7757600080fd5b611d8687823560208401611bea565b91505092959194509250565b60008060408385031215611da557600080fd5b611dae83611c60565b9150611cd160208401611c7c565b60008060408385031215611dcf57600080fd5b611dd883611c60565b946020939093013593505050565b600060208284031215611df857600080fd5b61116c82611c7c565b600060208284031215611e1357600080fd5b813561116c816120f6565b600060208284031215611e3057600080fd5b815161116c816120f6565b600060208284031215611e4d57600080fd5b813567ffffffffffffffff811115611e6457600080fd5b8201601f81018413611e7557600080fd5b6117f584823560208401611bea565b600060208284031215611e9657600080fd5b5035919050565b60008151808452611eb5816020860160208601612008565b601f01601f19169290920160200192915050565b60008351611edb818460208801612008565b835190830190611eef818360208801612008565b01949350505050565b60008251611f0a818460208701612008565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5490830184611e9d565b9695505050505050565b60208152600061116c6020830184611e9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fb957611fb961209e565b500190565b600082611fcd57611fcd6120b4565b500490565b6000816000190483118215151615611fec57611fec61209e565b500290565b6000828210156120035761200361209e565b500390565b60005b8381101561202357818101518382015260200161200b565b83811115610fcd5750506000910152565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120835761208361209e565b5060010190565b600082612099576120996120b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6f57600080fdfea2646970667358221220591472734f028c2ac05c7910b669710eaaa00b98f34d128aa5e51680b5fee08264736f6c63430008070033
Deployed Bytecode Sourcemap
52959:4009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34887:305;;;;;;;;;;-1:-1:-1;34887:305:0;;;;;:::i;:::-;;:::i;:::-;;;6561:14:1;;6554:22;6536:41;;6524:2;6509:18;34887:305:0;;;;;;;;38000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54895:90::-;;;;;;;;;;-1:-1:-1;54895:90:0;;;;;:::i;:::-;;:::i;:::-;;39503:204;;;;;;;;;;-1:-1:-1;39503:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5859:32:1;;;5841:51;;5829:2;5814:18;39503:204:0;5695:203:1;53396:125:0;;;;;;;;;;;;;:::i;39066:371::-;;;;;;;;;;-1:-1:-1;39066:371:0;;;;;:::i;:::-;;:::i;34136:303::-;;;;;;;;;;;;55501:1;34390:12;34180:7;34374:13;:28;-1:-1:-1;;34374:46:0;;34136:303;;;;10588:25:1;;;10576:2;10561:18;34136:303:0;10442:177:1;55518:109:0;;;;;;;;;;-1:-1:-1;55518:109:0;;;;;:::i;:::-;;:::i;40368:170::-;;;;;;;;;;-1:-1:-1;40368:170:0;;;;;:::i;:::-;;:::i;54592:195::-;;;;;;;;;;-1:-1:-1;54592:195:0;;;;;:::i;:::-;;:::i;40609:185::-;;;;;;;;;;-1:-1:-1;40609:185:0;;;;;:::i;:::-;;:::i;53140:33::-;;;;;;;;;;;;;;;;53678:28;;;;;;;;;;-1:-1:-1;53678:28:0;;;;;;;;;;;56418:100;;;;;;;;;;-1:-1:-1;56418:100:0;;;;;:::i;:::-;;:::i;53646:25::-;;;;;;;;;;-1:-1:-1;53646:25:0;;;;;;;;37808:125;;;;;;;;;;-1:-1:-1;37808:125:0;;;;;:::i;:::-;;:::i;54993:88::-;;;;;;;;;;-1:-1:-1;54993:88:0;;;;;:::i;:::-;;:::i;35256:206::-;;;;;;;;;;-1:-1:-1;35256:206:0;;;;;:::i;:::-;;:::i;11698:103::-;;;;;;;;;;;;;:::i;41424:64::-;;;;;;;;;;-1:-1:-1;41424:64:0;;;;;:::i;:::-;41468:6;:12;41424:64;54795:92;;;;;;;;;;-1:-1:-1;54795:92:0;;;;;:::i;:::-;;:::i;55831:275::-;;;;;;;;;;;;;:::i;11047:87::-;;;;;;;;;;-1:-1:-1;11120:6:0;;-1:-1:-1;;;;;11120:6:0;11047:87;;56114:86;;;;;;;;;;-1:-1:-1;56114:86:0;;;;;:::i;:::-;;:::i;38169:104::-;;;;;;;;;;;;;:::i;53195:34::-;;;;;;;;;;;;;;;;53907:676;;;;;;:::i;:::-;;:::i;39779:287::-;;;;;;;;;;-1:-1:-1;39779:287:0;;;;;:::i;:::-;;:::i;55330:69::-;;;;;;;;;;;;;:::i;53236:35::-;;;;;;;;;;;;;;;;40865:369;;;;;;;;;;-1:-1:-1;40865:369:0;;;;;:::i;:::-;;:::i;56208:84::-;;;;;;;;;;-1:-1:-1;56208:84:0;;;;;:::i;:::-;;:::i;53528:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53528:46:0;;;;;56526:439;;;;;;;;;;-1:-1:-1;56526:439:0;;;;;:::i;:::-;;:::i;53102:31::-;;;;;;;;;;;;;;;;40137:164;;;;;;;;;;-1:-1:-1;40137:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40258:25:0;;;40234:4;40258:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40137:164;55195:126;;;;;;;;;;-1:-1:-1;55195:126:0;;;;;:::i;:::-;;:::i;11956:201::-;;;;;;;;;;-1:-1:-1;11956:201:0;;;;;:::i;:::-;;:::i;53067:28::-;;;;;;;;;;;;;;;;34887:305;34989:4;-1:-1:-1;;;;;;35026:40:0;;-1:-1:-1;;;35026:40:0;;:105;;-1:-1:-1;;;;;;;35083:48:0;;-1:-1:-1;;;35083:48:0;35026:105;:158;;;-1:-1:-1;;;;;;;;;;23817:40:0;;;35148:36;35006:178;34887:305;-1:-1:-1;;34887:305:0:o;38000:100::-;38054:13;38087:5;38080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000:100;:::o;54895:90::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;;;;;;;;;54962:8:::1;:15:::0;54895:90::o;39503:204::-;39571:7;39596:16;39604:7;39596;:16::i;:::-;39591:64;;39621:34;;-1:-1:-1;;;39621:34:0;;;;;;;;;;;39591:64;-1:-1:-1;39675:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39675:24:0;;39503:204::o;53396:125::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39066:371::-;39139:13;39155:24;39171:7;39155:15;:24::i;:::-;39139:40;;39200:5;-1:-1:-1;;;;;39194:11:0;:2;-1:-1:-1;;;;;39194:11:0;;39190:48;;;39214:24;;-1:-1:-1;;;39214:24:0;;;;;;;;;;;39190:48;9874:10;-1:-1:-1;;;;;39255:21:0;;;;;;:63;;-1:-1:-1;39281:37:0;39298:5;9874:10;40137:164;:::i;39281:37::-;39280:38;39255:63;39251:138;;;39342:35;;-1:-1:-1;;;39342:35:0;;;;;;;;;;;39251:138;39401:28;39410:2;39414:7;39423:5;39401:8;:28::i;:::-;39128:309;39066:371;;:::o;55518:109::-;-1:-1:-1;;;;;35640:19:0;;55571:7;35640:19;;;:12;:19;;;;;:32;-1:-1:-1;;;35640:32:0;;;;55598:21;35544:137;40368:170;40502:28;40512:4;40518:2;40522:7;40502:9;:28::i;54592:195::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;54692:9:::1;;54681:7;54665:13;55501:1:::0;34390:12;34180:7;34374:13;:28;-1:-1:-1;;34374:46:0;;34136:303;54665:13:::1;:23;;;;:::i;:::-;:36;;54657:79;;;::::0;-1:-1:-1;;;54657:79:0;;7756:2:1;54657:79:0::1;::::0;::::1;7738:21:1::0;7795:2;7775:18;;;7768:30;7834:32;7814:18;;;7807:60;7884:18;;54657:79:0::1;7554:354:1::0;54657:79:0::1;54747:32;9874:10:::0;54771:7:::1;54747:9;:32::i;:::-;54592:195:::0;:::o;40609:185::-;40747:39;40764:4;40770:2;40774:7;40747:39;;;;;;;;;;;;:16;:39::i;56418:100::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;56492:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56418:100:::0;:::o;37808:125::-;37872:7;37899:21;37912:7;37899:12;:21::i;:::-;:26;;37808:125;-1:-1:-1;;37808:125:0:o;54993:88::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;55057:9:::1;:16:::0;54993:88::o;35256:206::-;35320:7;-1:-1:-1;;;;;35344:19:0;;35340:60;;35372:28;;-1:-1:-1;;;35372:28:0;;;;;;;;;;;35340:60;-1:-1:-1;;;;;;35426:19:0;;;;;:12;:19;;;;;:27;;;;35256:206::o;11698:103::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;11763:30:::1;11790:1;11763:18;:30::i;:::-;11698:103::o:0;54795:92::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;54861:11:::1;:18:::0;54795:92::o;55831:275::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;55900:21:::1;55940:11:::0;55932:43:::1;;;::::0;-1:-1:-1;;;55932:43:0;;8460:2:1;55932: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;;55932:43:0::1;8258:343:1::0;55932:43:0::1;55988:55;9874:10:::0;56039:3:::1;56029:6;;56023:3;:12;;;;:::i;:::-;56012:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;55988:9;:55::i;:::-;56064:9;::::0;56085:6:::1;::::0;56054:44:::1;::::0;56064:9;;::::1;-1:-1:-1::0;;;;;56064:9:0::1;::::0;56094:3:::1;::::0;56075:16:::1;::::0;:7;:16:::1;:::i;56114:86::-:0;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;56178:5:::1;:14:::0;56114:86::o;38169:104::-;38225:13;38258:7;38251:14;;;;;:::i;53907:676::-;53979:5;;54035:11;;53964:12;;54035:15;;54049:1;54035:15;:::i;:::-;54027:5;54011:13;55501:1;34390:12;34180:7;34374:13;:28;-1:-1:-1;;34374:46:0;;34136:303;54011:13;:21;;;;:::i;:::-;:39;54010:117;;;;-1:-1:-1;54110:16:0;;54087:10;54069:29;;;;:17;:29;;;;;;:37;;54101:5;;54069:37;:::i;:::-;:57;;54010:117;53995:133;;54145:6;54141:47;;;54175:1;54168:8;;54141:47;54209:6;;;;54208:7;54200:36;;;;-1:-1:-1;;;54200:36:0;;8115:2:1;54200:36:0;;;8097:21:1;8154:2;8134:18;;;8127:30;-1:-1:-1;;;8173:18:1;;;8166:46;8229:18;;54200:36:0;7913:340:1;54200:36:0;54268:12;54276:4;54268:5;:12;:::i;:::-;54255:9;:25;;54247:67;;;;-1:-1:-1;;;54247:67:0;;9938:2:1;54247:67:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:31;9996:18;;;9989:59;10065:18;;54247:67:0;9736:353:1;54247:67:0;54357:9;;:13;;54369:1;54357:13;:::i;:::-;54349:5;54333:13;55501:1;34390:12;34180:7;34374:13;:28;-1:-1:-1;;34374:46:0;;34136:303;54333:13;:21;;;;:::i;:::-;:37;54325:57;;;;-1:-1:-1;;;54325:57:0;;7014:2:1;54325:57:0;;;6996:21:1;7053:1;7033:18;;;7026:29;-1:-1:-1;;;7071:18:1;;;7064:37;7118:18;;54325:57:0;6812:330:1;54325:57:0;54409:8;;:12;;54420:1;54409:12;:::i;:::-;54401:5;:20;54393:52;;;;-1:-1:-1;;;54393:52:0;;10296:2:1;54393:52:0;;;10278:21:1;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10354:18:1;;;10347:49;10413:18;;54393:52:0;10094:343:1;54393:52:0;54462:6;54458:77;;;54503:10;54485:29;;;;:17;:29;;;;;:38;;54518:5;;54485:29;:38;;54518:5;;54485:38;:::i;:::-;;;;-1:-1:-1;;54458:77:0;54547:28;54557:10;54569:5;54547:9;:28::i;39779:287::-;-1:-1:-1;;;;;39878:24:0;;9874:10;39878:24;39874:54;;;39911:17;;-1:-1:-1;;;39911:17:0;;;;;;;;;;;39874:54;9874:10;39941:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39941:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39941:53:0;;;;;;;;;;40010:48;;6536:41:1;;;39941:42:0;;9874:10;40010:48;;6509:18:1;40010:48:0;;;;;;;39779:287;;:::o;55330:69::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;55376:8:::1;:15:::0;;-1:-1:-1;;55376:15:0::1;;;::::0;;55330:69::o;40865:369::-;41032:28;41042:4;41048:2;41052:7;41032:9;:28::i;:::-;-1:-1:-1;;;;;41075:13:0;;14021:19;:23;;41075:76;;;;;41095:56;41126:4;41132:2;41136:7;41145:5;41095:30;:56::i;:::-;41094:57;41075:76;41071:156;;;41175:40;;-1:-1:-1;;;41175:40:0;;;;;;;;;;;41071:156;40865:369;;;;:::o;56208:84::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;56269:6:::1;:15:::0;;-1:-1:-1;;56269:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56208:84::o;56526:439::-;56599:13;56638:16;56646:7;56638;:16::i;:::-;56630:76;;;;-1:-1:-1;;;56630:76:0;;9169:2:1;56630: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;;56630:76:0;8967:411:1;56630:76:0;56722:8;;;;;;;56719:80;;56773:14;56766:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56526:439;;;:::o;56719:80::-;56811:23;56837;56852:7;56837:14;:23::i;:::-;56811:49;;56904:1;56884:9;56878:23;:27;:79;;;;;;;;;;;;;;;;;56932:9;56915:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;56878:79;56871:86;56526:439;-1:-1:-1;;;56526:439:0:o;55195:126::-;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;55281:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11956:201::-:0;11120:6;;-1:-1:-1;;;;;11120:6:0;9874:10;11267:23;11259:68;;;;-1:-1:-1;;;11259:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12045:22:0;::::1;12037:73;;;::::0;-1:-1:-1;;;12037:73:0;;7349:2:1;12037: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;;12037:73:0::1;7147:402:1::0;12037:73:0::1;12121:28;12140:8;12121:18;:28::i;41743:187::-:0;41800:4;41843:7;55501:1;41824:26;;:53;;;;;41864:13;;41854:7;:23;41824:53;:98;;;;-1:-1:-1;;41895:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41895:27:0;;;;41894:28;;41743:187::o;49913:196::-;50028:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50028:29:0;-1:-1:-1;;;;;50028:29:0;;;;;;;;;50073:28;;50028:24;;50073:28;;;;;;;49913:196;;;:::o;44856:2130::-;44971:35;45009:21;45022:7;45009:12;:21::i;:::-;44971:59;;45069:4;-1:-1:-1;;;;;45047:26:0;:13;:18;;;-1:-1:-1;;;;;45047:26:0;;45043:67;;45082:28;;-1:-1:-1;;;45082:28:0;;;;;;;;;;;45043:67;45123:22;9874:10;-1:-1:-1;;;;;45149:20:0;;;;:73;;-1:-1:-1;45186:36:0;45203:4;9874:10;40137:164;:::i;45186:36::-;45149:126;;;-1:-1:-1;9874:10:0;45239:20;45251:7;45239:11;:20::i;:::-;-1:-1:-1;;;;;45239:36:0;;45149:126;45123:153;;45294:17;45289:66;;45320:35;;-1:-1:-1;;;45320:35:0;;;;;;;;;;;45289:66;-1:-1:-1;;;;;45370:16:0;;45366:52;;45395:23;;-1:-1:-1;;;45395:23:0;;;;;;;;;;;45366:52;45539:35;45556:1;45560:7;45569:4;45539:8;:35::i;:::-;-1:-1:-1;;;;;45870:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45870:31:0;;;;;;;-1:-1:-1;;45870:31:0;;;;;;;45916:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45916:29:0;;;;;;;;;;;45996:20;;;:11;:20;;;;;;46031:18;;-1:-1:-1;;;;;;46064:49:0;;;;-1:-1:-1;;;46097:15:0;46064:49;;;;;;;;;;46387:11;;46447:24;;;;;46490:13;;45996:20;;46447:24;;46490:13;46486:384;;46700:13;;46685:11;:28;46681:174;;46738:20;;46807:28;;;;46781:54;;-1:-1:-1;;;46781:54:0;-1:-1:-1;;;;;;46781:54:0;;;-1:-1:-1;;;;;46738:20:0;;46781:54;;;;46681:174;45845:1036;;;46917:7;46913:2;-1:-1:-1;;;;;46898:27:0;46907:4;-1:-1:-1;;;;;46898:27:0;;;;;;;;;;;46936:42;44960:2026;;44856:2130;;;:::o;41938:104::-;42007:27;42017:2;42021:8;42007:27;;;;;;;;;;;;:9;:27::i;36637:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36748:7:0;;55501:1;36797:23;;:47;;;;;36831:13;;36824:4;:20;36797:47;36793:886;;;36865:31;36899:17;;;:11;:17;;;;;;;;;36865:51;;;;;;;;;-1:-1:-1;;;;;36865:51:0;;;;-1:-1:-1;;;36865:51:0;;;;;;;;;;;-1:-1:-1;;;36865:51:0;;;;;;;;;;;;;;36935:729;;36985:14;;-1:-1:-1;;;;;36985:28:0;;36981:101;;37049:9;36637:1109;-1:-1:-1;;;36637:1109:0:o;36981:101::-;-1:-1:-1;;;37424:6:0;37469:17;;;;:11;:17;;;;;;;;;37457:29;;;;;;;;;-1:-1:-1;;;;;37457:29:0;;;;;-1:-1:-1;;;37457:29:0;;;;;;;;;;;-1:-1:-1;;;37457:29:0;;;;;;;;;;;;;37517:28;37513:109;;37585:9;36637:1109;-1:-1:-1;;;36637:1109:0:o;37513:109::-;37384:261;;;36846:833;36793:886;37707:31;;-1:-1:-1;;;37707:31:0;;;;;;;;;;;12317:191;12410:6;;;-1:-1:-1;;;;;12427:17:0;;;-1:-1:-1;;;;;;12427:17:0;;;;;;;12460:40;;12410:6;;;12427:17;12410:6;;12460:40;;12391:16;;12460:40;12380:128;12317:191;:::o;55635:188::-;55709:12;55727:8;-1:-1:-1;;;;;55727:13:0;55748:7;55727:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55708:52;;;55779:7;55771:44;;;;-1:-1:-1;;;55771:44:0;;9585:2:1;55771:44:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:26;9643:18;;;9636:54;9707:18;;55771:44:0;9383:348:1;50601:667:0;50785:72;;-1:-1:-1;;;50785:72:0;;50764:4;;-1:-1:-1;;;;;50785:36:0;;;;;:72;;9874:10;;50836:4;;50842:7;;50851:5;;50785:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50785:72:0;;;;;;;;-1:-1:-1;;50785:72:0;;;;;;;;;;;;:::i;:::-;;;50781:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51019:13:0;;51015:235;;51065:40;;-1:-1:-1;;;51065:40:0;;;;;;;;;;;51015:235;51208:6;51202:13;51193:6;51189:2;51185:15;51178:38;50781:480;-1:-1:-1;;;;;;50904:55:0;-1:-1:-1;;;50904:55:0;;-1:-1:-1;50781:480:0;50601:667;;;;;;:::o;38344:318::-;38417:13;38448:16;38456:7;38448;:16::i;:::-;38443:59;;38473:29;;-1:-1:-1;;;38473:29:0;;;;;;;;;;;38443:59;38515:21;38539:10;:8;:10::i;:::-;38515:34;;38573:7;38567:21;38592:1;38567:26;;:87;;;;;;;;;;;;;;;;;38620:7;38629:18;:7;:16;:18::i;:::-;38603:45;;;;;;;;;:::i;42405:163::-;42528:32;42534:2;42538:8;42548:5;42555:4;42528:5;:32::i;56300:106::-;56360:13;56391:7;56384:14;;;;;:::i;7378:723::-;7434:13;7655:10;7651:53;;-1:-1:-1;;7682:10:0;;;;;;;;;;;;-1:-1:-1;;;7682:10:0;;;;;7378:723::o;7651:53::-;7729:5;7714:12;7770:78;7777:9;;7770:78;;7803:8;;;;:::i;:::-;;-1:-1:-1;7826:10:0;;-1:-1:-1;7834:2:0;7826:10;;:::i;:::-;;;7770:78;;;7858:19;7890:6;7880:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7880:17:0;;7858:39;;7908:154;7915:10;;7908:154;;7942:11;7952:1;7942:11;;:::i;:::-;;-1:-1:-1;8011:10:0;8019:2;8011:5;:10;:::i;:::-;7998:24;;:2;:24;:::i;:::-;7985:39;;7968:6;7975;7968:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7968:56:0;;;;;;;;-1:-1:-1;8039:11:0;8048:2;8039:11;;:::i;:::-;;;7908:154;;42827:1775;42966:20;42989:13;-1:-1:-1;;;;;43017:16:0;;43013:48;;43042:19;;-1:-1:-1;;;43042:19:0;;;;;;;;;;;43013:48;43076:13;43072:44;;43098:18;;-1:-1:-1;;;43098:18:0;;;;;;;;;;;43072:44;-1:-1:-1;;;;;43467:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43526:49:0;;43467:44;;;;;;;;43526:49;;;-1:-1:-1;;;;;43467:44:0;;;;;;43526:49;;;;;;;;;;;;;;;;43592:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43642:66:0;;;;-1:-1:-1;;;43692:15:0;43642:66;;;;;;;;;;43592:25;43789:23;;;43833:4;:23;;;;-1:-1:-1;;;;;;43841:13:0;;14021:19;:23;;43841:15;43829:641;;;43877:314;43908:38;;43933:12;;-1:-1:-1;;;;;43908:38:0;;;43925:1;;43908:38;;43925:1;;43908:38;43974:69;44013:1;44017:2;44021:14;;;;;;44037:5;43974:30;:69::i;:::-;43969:174;;44079:40;;-1:-1:-1;;;44079:40:0;;;;;;;;;;;43969:174;44186:3;44170:12;:19;;43877:314;;44272:12;44255:13;;:29;44251:43;;44286:8;;;44251:43;43829:641;;;44335:120;44366:40;;44391:14;;;;;-1:-1:-1;;;;;44366:40:0;;;44383:1;;44366:40;;44383:1;;44366:40;44450:3;44434:12;:19;;44335:120;;43829:641;-1:-1:-1;44484:13:0;:28;44534:60;40865: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://591472734f028c2ac05c7910b669710eaaa00b98f34d128aa5e51680b5fee082
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.