ERC-721
Overview
Max Total Supply
2,022 Int
Holders
332
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
12 IntLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InterFaceDao
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-08 */ /** *Submitted for verification at Etherscan.io on 2022-04-02 */ /** *Submitted for verification at Etherscan.io on 2022-03-19 */ // File: contracts/KOFI.sol /** *Submitted for verification at Etherscan.io on 2022-02-25 */ // File: contracts/kofi.sol /** *Submitted for verification at Etherscan.io on 2022-02-23 */ /** *Submitted for verification at Etherscan.io on 2022-02-14 */ // File: contracts/kofi.sol /** *Submitted for verification at Etherscan.io on 2022-01-18 */ // File: contracts/kofi.sol /** *Submitted for verification at Etherscan.io on 2022-01-18 */ /** *Submitted for verification at Etherscan.io on 2022-01-18 */ // File: @openzeppelin/contracts/utils/math/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: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); // require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/kofi.sol //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract InterFaceDao is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://QmUnt8mBufRHDtn4QXE6AMHom29NfTUV3wyb2zWoPJ3PyT"; uint256 public constant MAX_MINTS_PER_TX = 3; uint256 public maxSupply = 2022; uint256 public constant PUBLIC_SALE_PRICE = 0.00001 ether; bool public isPublicSaleActive = false; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } constructor( ) ERC721A("InterFaceDao", "Int", 100, maxSupply) { } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); _; } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant publicSaleActive isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return baseURI; } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000808055600755610120604052603560c0818152906200257560e03980516200003291600b9160209091019062000206565b506107e6600c55600d805460ff191690553480156200005057600080fd5b506040518060400160405280600c81526020016b496e7465724661636544616f60a01b81525060405180604001604052806003815260200162125b9d60ea1b8152506064600c5460008111620001045760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001665760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fb565b83516200017b90600190602087019062000206565b5082516200019190600290602086019062000206565b5060a09190915260805250620001a9905033620001b4565b6001600955620002e9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200021490620002ac565b90600052602060002090601f01602090048101928262000238576000855562000283565b82601f106200025357805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028357825182559160200191906001019062000266565b506200029192915062000295565b5090565b5b8082111562000291576000815560010162000296565b600181811c90821680620002c157607f821691505b60208210811415620002e357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161226262000313600039600081816116e801526117120152600050506122626000f3fe6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461053e578063d7224ba014610554578063e985e9c51461056a578063f2fde38b146105b357600080fd5b8063a22cb465146104c9578063b88d4fde146104e9578063c6a91b4214610509578063c87b56dd1461051e57600080fd5b8063715018a6116100d1578063715018a61461046e5780638da5cb5b1461048357806395d89b41146104a1578063a0712d68146104b657600080fd5b806355f804b3146103f95780636352211e1461041957806370a0823114610439578063714c53981461045957600080fd5b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b1461038457806342842e0e1461039957806349df728c146103b95780634f6ccce7146103d957600080fd5b806323b872dd146102e557806328cad13d146103055780632a55205a146103255780632f745c591461036457600080fd5b8063081812fc116101b6578063081812fc1461025c578063095ea7b31461029457806318160ddd146102b65780631e84c413146102cb57600080fd5b806301ffc9a7146101dd57806306fdde031461021257806307e89ec014610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e9b565b6105d3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105fe565b6040516102099190611ffc565b34801561024057600080fd5b5061024e6509184e72a00081565b604051908152602001610209565b34801561026857600080fd5b5061027c610277366004611f1e565b610690565b6040516001600160a01b039091168152602001610209565b3480156102a057600080fd5b506102b46102af366004611e35565b610720565b005b3480156102c257600080fd5b5060005461024e565b3480156102d757600080fd5b50600d546101fd9060ff1681565b3480156102f157600080fd5b506102b4610300366004611d46565b610838565b34801561031157600080fd5b506102b4610320366004611e61565b610843565b34801561033157600080fd5b50610345610340366004611f50565b610880565b604080516001600160a01b039093168352602083019190915201610209565b34801561037057600080fd5b5061024e61037f366004611e35565b6108ef565b34801561039057600080fd5b506102b4610a5d565b3480156103a557600080fd5b506102b46103b4366004611d46565b610aba565b3480156103c557600080fd5b506102b46103d4366004611cf0565b610ad5565b3480156103e557600080fd5b5061024e6103f4366004611f1e565b610bfc565b34801561040557600080fd5b506102b4610414366004611ed5565b610c5e565b34801561042557600080fd5b5061027c610434366004611f1e565b610c9b565b34801561044557600080fd5b5061024e610454366004611cf0565b610cad565b34801561046557600080fd5b50610227610d3e565b34801561047a57600080fd5b506102b4610d4d565b34801561048f57600080fd5b506008546001600160a01b031661027c565b3480156104ad57600080fd5b50610227610d83565b6102b46104c4366004611f1e565b610d92565b3480156104d557600080fd5b506102b46104e4366004611e07565b610f80565b3480156104f557600080fd5b506102b4610504366004611d87565b611045565b34801561051557600080fd5b5061024e600381565b34801561052a57600080fd5b50610227610539366004611f1e565b61107e565b34801561054a57600080fd5b5061024e600c5481565b34801561056057600080fd5b5061024e60075481565b34801561057657600080fd5b506101fd610585366004611d0d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105bf57600080fd5b506102b46105ce366004611cf0565b61115d565b60006001600160e01b0319821663152a902d60e11b14806105f857506105f8826111f8565b92915050565b60606001805461060d90612171565b80601f016020809104026020016040519081016040528092919081815260200182805461063990612171565b80156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b5050505050905090565b600061069d826000541190565b6107045760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072b82610c9b565b9050806001600160a01b0316836001600160a01b0316141561079a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106fb565b336001600160a01b03821614806107b657506107b68133610585565b6108285760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106fb565b610833838383611263565b505050565b6108338383836112bf565b6008546001600160a01b0316331461086d5760405162461bcd60e51b81526004016106fb9061200f565b600d805460ff1916911515919091179055565b60008061088e846000541190565b6108ce5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106fb565b306108e46108dd856005611647565b606461165a565b915091509250929050565b60006108fa83610cad565b82106109535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106fb565b600080549080805b838110156109fd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ae57805192505b876001600160a01b0316836001600160a01b031614156109ea57868414156109dc575093506105f892505050565b836109e6816121ac565b9450505b50806109f5816121ac565b91505061095b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106fb565b6008546001600160a01b03163314610a875760405162461bcd60e51b81526004016106fb9061200f565b6040514790339082156108fc029083906000818181858888f19350505050158015610ab6573d6000803e3d6000fd5b5050565b61083383838360405180602001604052806000815250611045565b6008546001600160a01b03163314610aff5760405162461bcd60e51b81526004016106fb9061200f565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610b4157600080fd5b505afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190611f37565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610bc457600080fd5b505af1158015610bd8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108339190611e7e565b600080548210610c5a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106fb565b5090565b6008546001600160a01b03163314610c885760405162461bcd60e51b81526004016106fb9061200f565b8051610ab690600b906020840190611bea565b6000610ca682611666565b5192915050565b60006001600160a01b038216610d195760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106fb565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461060d90612171565b6008546001600160a01b03163314610d775760405162461bcd60e51b81526004016106fb9061200f565b610d816000611810565b565b60606002805461060d90612171565b60026009541415610de55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106fb565b6002600955600d5460ff16610e3c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e00000000000000000060448201526064016106fb565b6509184e72a0008134610e4f82846120fc565b14610e9c5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016106fb565b82600c5481610eaa60005490565b610eb491906120c2565b1115610f0d5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696044820152611b9d60f21b60648201526084016106fb565b836003811115610f6a5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106fb565b610f743386611862565b50506001600955505050565b6001600160a01b038216331415610fd95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106fb565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110508484846112bf565b61105c8484848461187c565b6110785760405162461bcd60e51b81526004016106fb90612044565b50505050565b606061108b826000541190565b6110cb5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106fb565b600b80546110d890612171565b80601f016020809104026020016040519081016040528092919081815260200182805461110490612171565b80156111515780601f1061112657610100808354040283529160200191611151565b820191906000526020600020905b81548152906001019060200180831161113457829003601f168201915b50505050509050919050565b6008546001600160a01b031633146111875760405162461bcd60e51b81526004016106fb9061200f565b6001600160a01b0381166111ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fb565b6111f581611810565b50565b60006001600160e01b031982166380ac58cd60e01b148061122957506001600160e01b03198216635b5e139f60e01b145b8061124457506001600160e01b0319821663780e9d6360e01b145b806105f857506301ffc9a760e01b6001600160e01b03198316146105f8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112ca82611666565b80519091506000906001600160a01b0316336001600160a01b031614806113015750336112f684610690565b6001600160a01b0316145b80611313575081516113139033610585565b90508061137d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106fb565b846001600160a01b031682600001516001600160a01b0316146113f15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106fb565b6001600160a01b0384166114555760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106fb565b6114656000848460000151611263565b6001600160a01b03851660009081526004602052604081208054600192906114979084906001600160801b031661211b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114e391859116612097565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561156b8460016120c2565b6000818152600360205260409020549091506001600160a01b03166115fd57611595816000541190565b156115fd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600061165382846120fc565b9392505050565b600061165382846120da565b6040805180820190915260008082526020820152611685826000541190565b6116e45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106fb565b60007f00000000000000000000000000000000000000000000000000000000000000008310611745576117377f000000000000000000000000000000000000000000000000000000000000000084612143565b6117429060016120c2565b90505b825b8181106117af576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561179c57949350505050565b50806117a78161215a565b915050611747565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106fb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ab682826040518060200160405280600081525061198a565b60006001600160a01b0384163b1561197e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118c0903390899088908890600401611fbf565b602060405180830381600087803b1580156118da57600080fd5b505af192505050801561190a575060408051601f3d908101601f1916820190925261190791810190611eb8565b60015b611964573d808015611938576040519150601f19603f3d011682016040523d82523d6000602084013e61193d565b606091505b50805161195c5760405162461bcd60e51b81526004016106fb90612044565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611982565b5060015b949350505050565b6000546001600160a01b0384166119ed5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106fb565b6119f8816000541190565b15611a455760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106fb565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611aa1908790612097565b6001600160801b03168152602001858360200151611abf9190612097565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611bdf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ba3600088848861187c565b611bbf5760405162461bcd60e51b81526004016106fb90612044565b81611bc9816121ac565b9250508080611bd7906121ac565b915050611b56565b50600081905561163f565b828054611bf690612171565b90600052602060002090601f016020900481019282611c185760008555611c5e565b82601f10611c3157805160ff1916838001178555611c5e565b82800160010185558215611c5e579182015b82811115611c5e578251825591602001919060010190611c43565b50610c5a9291505b80821115610c5a5760008155600101611c66565b600067ffffffffffffffff80841115611c9557611c956121dd565b604051601f8501601f19908116603f01168101908282118183101715611cbd57611cbd6121dd565b81604052809350858152868686011115611cd657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d0257600080fd5b8135611653816121f3565b60008060408385031215611d2057600080fd5b8235611d2b816121f3565b91506020830135611d3b816121f3565b809150509250929050565b600080600060608486031215611d5b57600080fd5b8335611d66816121f3565b92506020840135611d76816121f3565b929592945050506040919091013590565b60008060008060808587031215611d9d57600080fd5b8435611da8816121f3565b93506020850135611db8816121f3565b925060408501359150606085013567ffffffffffffffff811115611ddb57600080fd5b8501601f81018713611dec57600080fd5b611dfb87823560208401611c7a565b91505092959194509250565b60008060408385031215611e1a57600080fd5b8235611e25816121f3565b91506020830135611d3b81612208565b60008060408385031215611e4857600080fd5b8235611e53816121f3565b946020939093013593505050565b600060208284031215611e7357600080fd5b813561165381612208565b600060208284031215611e9057600080fd5b815161165381612208565b600060208284031215611ead57600080fd5b813561165381612216565b600060208284031215611eca57600080fd5b815161165381612216565b600060208284031215611ee757600080fd5b813567ffffffffffffffff811115611efe57600080fd5b8201601f81018413611f0f57600080fd5b61198284823560208401611c7a565b600060208284031215611f3057600080fd5b5035919050565b600060208284031215611f4957600080fd5b5051919050565b60008060408385031215611f6357600080fd5b50508035926020909101359150565b6000815180845260005b81811015611f9857602081850181015186830182015201611f7c565b81811115611faa576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff290830184611f72565b9695505050505050565b6020815260006116536020830184611f72565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120b9576120b96121c7565b01949350505050565b600082198211156120d5576120d56121c7565b500190565b6000826120f757634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612116576121166121c7565b500290565b60006001600160801b038381169083168181101561213b5761213b6121c7565b039392505050565b600082821015612155576121556121c7565b500390565b600081612169576121696121c7565b506000190190565b600181811c9082168061218557607f821691505b602082108114156121a657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121c0576121c06121c7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f557600080fd5b80151581146111f557600080fd5b6001600160e01b0319811681146111f557600080fdfea2646970667358221220f4f7008d2fe2e120d84dec7ca68808af5e4ae40aae7a4313c817742f680c149664736f6c63430008070033697066733a2f2f516d556e74386d427566524844746e3451584536414d486f6d32394e6654555633777962327a576f504a33507954
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461053e578063d7224ba014610554578063e985e9c51461056a578063f2fde38b146105b357600080fd5b8063a22cb465146104c9578063b88d4fde146104e9578063c6a91b4214610509578063c87b56dd1461051e57600080fd5b8063715018a6116100d1578063715018a61461046e5780638da5cb5b1461048357806395d89b41146104a1578063a0712d68146104b657600080fd5b806355f804b3146103f95780636352211e1461041957806370a0823114610439578063714c53981461045957600080fd5b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b1461038457806342842e0e1461039957806349df728c146103b95780634f6ccce7146103d957600080fd5b806323b872dd146102e557806328cad13d146103055780632a55205a146103255780632f745c591461036457600080fd5b8063081812fc116101b6578063081812fc1461025c578063095ea7b31461029457806318160ddd146102b65780631e84c413146102cb57600080fd5b806301ffc9a7146101dd57806306fdde031461021257806307e89ec014610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e9b565b6105d3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105fe565b6040516102099190611ffc565b34801561024057600080fd5b5061024e6509184e72a00081565b604051908152602001610209565b34801561026857600080fd5b5061027c610277366004611f1e565b610690565b6040516001600160a01b039091168152602001610209565b3480156102a057600080fd5b506102b46102af366004611e35565b610720565b005b3480156102c257600080fd5b5060005461024e565b3480156102d757600080fd5b50600d546101fd9060ff1681565b3480156102f157600080fd5b506102b4610300366004611d46565b610838565b34801561031157600080fd5b506102b4610320366004611e61565b610843565b34801561033157600080fd5b50610345610340366004611f50565b610880565b604080516001600160a01b039093168352602083019190915201610209565b34801561037057600080fd5b5061024e61037f366004611e35565b6108ef565b34801561039057600080fd5b506102b4610a5d565b3480156103a557600080fd5b506102b46103b4366004611d46565b610aba565b3480156103c557600080fd5b506102b46103d4366004611cf0565b610ad5565b3480156103e557600080fd5b5061024e6103f4366004611f1e565b610bfc565b34801561040557600080fd5b506102b4610414366004611ed5565b610c5e565b34801561042557600080fd5b5061027c610434366004611f1e565b610c9b565b34801561044557600080fd5b5061024e610454366004611cf0565b610cad565b34801561046557600080fd5b50610227610d3e565b34801561047a57600080fd5b506102b4610d4d565b34801561048f57600080fd5b506008546001600160a01b031661027c565b3480156104ad57600080fd5b50610227610d83565b6102b46104c4366004611f1e565b610d92565b3480156104d557600080fd5b506102b46104e4366004611e07565b610f80565b3480156104f557600080fd5b506102b4610504366004611d87565b611045565b34801561051557600080fd5b5061024e600381565b34801561052a57600080fd5b50610227610539366004611f1e565b61107e565b34801561054a57600080fd5b5061024e600c5481565b34801561056057600080fd5b5061024e60075481565b34801561057657600080fd5b506101fd610585366004611d0d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105bf57600080fd5b506102b46105ce366004611cf0565b61115d565b60006001600160e01b0319821663152a902d60e11b14806105f857506105f8826111f8565b92915050565b60606001805461060d90612171565b80601f016020809104026020016040519081016040528092919081815260200182805461063990612171565b80156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b5050505050905090565b600061069d826000541190565b6107045760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072b82610c9b565b9050806001600160a01b0316836001600160a01b0316141561079a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106fb565b336001600160a01b03821614806107b657506107b68133610585565b6108285760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106fb565b610833838383611263565b505050565b6108338383836112bf565b6008546001600160a01b0316331461086d5760405162461bcd60e51b81526004016106fb9061200f565b600d805460ff1916911515919091179055565b60008061088e846000541190565b6108ce5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106fb565b306108e46108dd856005611647565b606461165a565b915091509250929050565b60006108fa83610cad565b82106109535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106fb565b600080549080805b838110156109fd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ae57805192505b876001600160a01b0316836001600160a01b031614156109ea57868414156109dc575093506105f892505050565b836109e6816121ac565b9450505b50806109f5816121ac565b91505061095b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106fb565b6008546001600160a01b03163314610a875760405162461bcd60e51b81526004016106fb9061200f565b6040514790339082156108fc029083906000818181858888f19350505050158015610ab6573d6000803e3d6000fd5b5050565b61083383838360405180602001604052806000815250611045565b6008546001600160a01b03163314610aff5760405162461bcd60e51b81526004016106fb9061200f565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610b4157600080fd5b505afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190611f37565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610bc457600080fd5b505af1158015610bd8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108339190611e7e565b600080548210610c5a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106fb565b5090565b6008546001600160a01b03163314610c885760405162461bcd60e51b81526004016106fb9061200f565b8051610ab690600b906020840190611bea565b6000610ca682611666565b5192915050565b60006001600160a01b038216610d195760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106fb565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461060d90612171565b6008546001600160a01b03163314610d775760405162461bcd60e51b81526004016106fb9061200f565b610d816000611810565b565b60606002805461060d90612171565b60026009541415610de55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106fb565b6002600955600d5460ff16610e3c5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e00000000000000000060448201526064016106fb565b6509184e72a0008134610e4f82846120fc565b14610e9c5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016106fb565b82600c5481610eaa60005490565b610eb491906120c2565b1115610f0d5760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696044820152611b9d60f21b60648201526084016106fb565b836003811115610f6a5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106fb565b610f743386611862565b50506001600955505050565b6001600160a01b038216331415610fd95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106fb565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110508484846112bf565b61105c8484848461187c565b6110785760405162461bcd60e51b81526004016106fb90612044565b50505050565b606061108b826000541190565b6110cb5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016106fb565b600b80546110d890612171565b80601f016020809104026020016040519081016040528092919081815260200182805461110490612171565b80156111515780601f1061112657610100808354040283529160200191611151565b820191906000526020600020905b81548152906001019060200180831161113457829003601f168201915b50505050509050919050565b6008546001600160a01b031633146111875760405162461bcd60e51b81526004016106fb9061200f565b6001600160a01b0381166111ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fb565b6111f581611810565b50565b60006001600160e01b031982166380ac58cd60e01b148061122957506001600160e01b03198216635b5e139f60e01b145b8061124457506001600160e01b0319821663780e9d6360e01b145b806105f857506301ffc9a760e01b6001600160e01b03198316146105f8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112ca82611666565b80519091506000906001600160a01b0316336001600160a01b031614806113015750336112f684610690565b6001600160a01b0316145b80611313575081516113139033610585565b90508061137d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106fb565b846001600160a01b031682600001516001600160a01b0316146113f15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106fb565b6001600160a01b0384166114555760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106fb565b6114656000848460000151611263565b6001600160a01b03851660009081526004602052604081208054600192906114979084906001600160801b031661211b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114e391859116612097565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561156b8460016120c2565b6000818152600360205260409020549091506001600160a01b03166115fd57611595816000541190565b156115fd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600061165382846120fc565b9392505050565b600061165382846120da565b6040805180820190915260008082526020820152611685826000541190565b6116e45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106fb565b60007f00000000000000000000000000000000000000000000000000000000000000648310611745576117377f000000000000000000000000000000000000000000000000000000000000006484612143565b6117429060016120c2565b90505b825b8181106117af576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561179c57949350505050565b50806117a78161215a565b915050611747565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106fb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ab682826040518060200160405280600081525061198a565b60006001600160a01b0384163b1561197e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118c0903390899088908890600401611fbf565b602060405180830381600087803b1580156118da57600080fd5b505af192505050801561190a575060408051601f3d908101601f1916820190925261190791810190611eb8565b60015b611964573d808015611938576040519150601f19603f3d011682016040523d82523d6000602084013e61193d565b606091505b50805161195c5760405162461bcd60e51b81526004016106fb90612044565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611982565b5060015b949350505050565b6000546001600160a01b0384166119ed5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106fb565b6119f8816000541190565b15611a455760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106fb565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611aa1908790612097565b6001600160801b03168152602001858360200151611abf9190612097565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611bdf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ba3600088848861187c565b611bbf5760405162461bcd60e51b81526004016106fb90612044565b81611bc9816121ac565b9250508080611bd7906121ac565b915050611b56565b50600081905561163f565b828054611bf690612171565b90600052602060002090601f016020900481019282611c185760008555611c5e565b82601f10611c3157805160ff1916838001178555611c5e565b82800160010185558215611c5e579182015b82811115611c5e578251825591602001919060010190611c43565b50610c5a9291505b80821115610c5a5760008155600101611c66565b600067ffffffffffffffff80841115611c9557611c956121dd565b604051601f8501601f19908116603f01168101908282118183101715611cbd57611cbd6121dd565b81604052809350858152868686011115611cd657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d0257600080fd5b8135611653816121f3565b60008060408385031215611d2057600080fd5b8235611d2b816121f3565b91506020830135611d3b816121f3565b809150509250929050565b600080600060608486031215611d5b57600080fd5b8335611d66816121f3565b92506020840135611d76816121f3565b929592945050506040919091013590565b60008060008060808587031215611d9d57600080fd5b8435611da8816121f3565b93506020850135611db8816121f3565b925060408501359150606085013567ffffffffffffffff811115611ddb57600080fd5b8501601f81018713611dec57600080fd5b611dfb87823560208401611c7a565b91505092959194509250565b60008060408385031215611e1a57600080fd5b8235611e25816121f3565b91506020830135611d3b81612208565b60008060408385031215611e4857600080fd5b8235611e53816121f3565b946020939093013593505050565b600060208284031215611e7357600080fd5b813561165381612208565b600060208284031215611e9057600080fd5b815161165381612208565b600060208284031215611ead57600080fd5b813561165381612216565b600060208284031215611eca57600080fd5b815161165381612216565b600060208284031215611ee757600080fd5b813567ffffffffffffffff811115611efe57600080fd5b8201601f81018413611f0f57600080fd5b61198284823560208401611c7a565b600060208284031215611f3057600080fd5b5035919050565b600060208284031215611f4957600080fd5b5051919050565b60008060408385031215611f6357600080fd5b50508035926020909101359150565b6000815180845260005b81811015611f9857602081850181015186830182015201611f7c565b81811115611faa576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff290830184611f72565b9695505050505050565b6020815260006116536020830184611f72565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120b9576120b96121c7565b01949350505050565b600082198211156120d5576120d56121c7565b500190565b6000826120f757634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612116576121166121c7565b500290565b60006001600160801b038381169083168181101561213b5761213b6121c7565b039392505050565b600082821015612155576121556121c7565b500390565b600081612169576121696121c7565b506000190190565b600181811c9082168061218557607f821691505b602082108114156121a657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121c0576121c06121c7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f557600080fd5b80151581146111f557600080fd5b6001600160e01b0319811681146111f557600080fdfea2646970667358221220f4f7008d2fe2e120d84dec7ca68808af5e4ae40aae7a4313c817742f680c149664736f6c63430008070033
Deployed Bytecode Sourcemap
55673:3899:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58579:292;;;;;;;;;;-1:-1:-1;58579:292:0;;;;;:::i;:::-;;:::i;:::-;;;7231:14:1;;7224:22;7206:41;;7194:2;7179:18;58579:292:0;;;;;;;;44860:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56051:57::-;;;;;;;;;;;;56095:13;56051:57;;;;;17084:25:1;;;17072:2;17057:18;56051:57:0;16938:177:1;46385:204:0;;;;;;;;;;-1:-1:-1;46385:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6250:32:1;;;6232:51;;6220:2;6205:18;46385:204:0;6086:203:1;45948:379:0;;;;;;;;;;-1:-1:-1;45948:379:0;;;;;:::i;:::-;;:::i;:::-;;41695:94;;;;;;;;;;-1:-1:-1;41748:7:0;41771:12;41695:94;;56115:38;;;;;;;;;;-1:-1:-1;56115:38:0;;;;;;;;47235:142;;;;;;;;;;-1:-1:-1;47235:142:0;;;;;:::i;:::-;;:::i;57826:158::-;;;;;;;;;;-1:-1:-1;57826:158:0;;;;;:::i;:::-;;:::i;59251:318::-;;;;;;;;;;-1:-1:-1;59251:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6979:32:1;;;6961:51;;7043:2;7028:18;;7021:34;;;;6934:18;59251:318:0;6787:274:1;42326:744:0;;;;;;;;;;-1:-1:-1;42326:744:0;;;;;:::i;:::-;;:::i;57996:143::-;;;;;;;;;;;;;:::i;47440:157::-;;;;;;;;;;-1:-1:-1;47440:157:0;;;;;:::i;:::-;;:::i;58147:168::-;;;;;;;;;;-1:-1:-1;58147:168:0;;;;;:::i;:::-;;:::i;41858:177::-;;;;;;;;;;-1:-1:-1;41858:177:0;;;;;:::i;:::-;;:::i;57716:100::-;;;;;;;;;;-1:-1:-1;57716:100:0;;;;;:::i;:::-;;:::i;44683:118::-;;;;;;;;;;-1:-1:-1;44683:118:0;;;;;:::i;:::-;;:::i;43560:211::-;;;;;;;;;;-1:-1:-1;43560:211:0;;;;;:::i;:::-;;:::i;57552:93::-;;;;;;;;;;;;;:::i;19718:103::-;;;;;;;;;;;;;:::i;19067:87::-;;;;;;;;;;-1:-1:-1;19140:6:0;;-1:-1:-1;;;;;19140:6:0;19067:87;;45015:98;;;;;;;;;;;;;:::i;57154:321::-;;;;;;:::i;:::-;;:::i;46653:274::-;;;;;;;;;;-1:-1:-1;46653:274:0;;;;;:::i;:::-;;:::i;47660:311::-;;;;;;;;;;-1:-1:-1;47660:311:0;;;;;:::i;:::-;;:::i;55960:44::-;;;;;;;;;;;;56003:1;55960:44;;58942:243;;;;;;;;;;-1:-1:-1;58942:243:0;;;;;:::i;:::-;;:::i;56011:31::-;;;;;;;;;;;;;;;;52078:43;;;;;;;;;;;;;;;;46990:186;;;;;;;;;;-1:-1:-1;46990:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;47135:25:0;;;47112:4;47135:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46990:186;19976:201;;;;;;;;;;-1:-1:-1;19976:201:0;;;;;:::i;:::-;;:::i;58579:292::-;58727:4;-1:-1:-1;;;;;;58769:41:0;;-1:-1:-1;;;58769:41:0;;:94;;;58827:36;58851:11;58827:23;:36::i;:::-;58749:114;58579:292;-1:-1:-1;;58579:292:0:o;44860:94::-;44914:13;44943:5;44936:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44860:94;:::o;46385:204::-;46453:7;46477:16;46485:7;48267:4;48297:12;-1:-1:-1;48287:22:0;48210:105;46477:16;46469:74;;;;-1:-1:-1;;;46469:74:0;;16726:2:1;46469:74:0;;;16708:21:1;16765:2;16745:18;;;16738:30;16804:34;16784:18;;;16777:62;-1:-1:-1;;;16855:18:1;;;16848:43;16908:19;;46469:74:0;;;;;;;;;-1:-1:-1;46559:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46559:24:0;;46385:204::o;45948:379::-;46017:13;46033:24;46049:7;46033:15;:24::i;:::-;46017:40;;46078:5;-1:-1:-1;;;;;46072:11:0;:2;-1:-1:-1;;;;;46072:11:0;;;46064:58;;;;-1:-1:-1;;;46064:58:0;;13247:2:1;46064:58:0;;;13229:21:1;13286:2;13266:18;;;13259:30;13325:34;13305:18;;;13298:62;-1:-1:-1;;;13376:18:1;;;13369:32;13418:19;;46064:58:0;13045:398:1;46064:58:0;17871:10;-1:-1:-1;;;;;46147:21:0;;;;:62;;-1:-1:-1;46172:37:0;46189:5;17871:10;46990:186;:::i;46172:37::-;46131:153;;;;-1:-1:-1;;;46131:153:0;;10867:2:1;46131:153:0;;;10849:21:1;10906:2;10886:18;;;10879:30;10945:34;10925:18;;;10918:62;11016:27;10996:18;;;10989:55;11061:19;;46131:153:0;10665:421:1;46131:153:0;46293:28;46302:2;46306:7;46315:5;46293:8;:28::i;:::-;46010:317;45948:379;;:::o;47235:142::-;47343:28;47353:4;47359:2;47363:7;47343:9;:28::i;57826:158::-;19140:6;;-1:-1:-1;;;;;19140:6:0;17871:10;19287:23;19279:68;;;;-1:-1:-1;;;19279:68:0;;;;;;;:::i;:::-;57936:18:::1;:40:::0;;-1:-1:-1;;57936:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57826:158::o;59251:318::-;59376:16;59394:21;59441:16;59449:7;48267:4;48297:12;-1:-1:-1;48287:22:0;48210:105;59441:16;59433:46;;;;-1:-1:-1;;;59433:46:0;;10521:2:1;59433:46:0;;;10503:21:1;10560:2;10540:18;;;10533:30;-1:-1:-1;;;10579:18:1;;;10572:47;10636:18;;59433:46:0;10319:341:1;59433:46:0;59508:4;59515:45;59528:26;59541:9;59552:1;59528:12;:26::i;:::-;59556:3;59515:12;:45::i;:::-;59492:69;;;;59251:318;;;;;:::o;42326:744::-;42435:7;42470:16;42480:5;42470:9;:16::i;:::-;42462:5;:24;42454:71;;;;-1:-1:-1;;;42454:71:0;;7684:2:1;42454:71:0;;;7666:21:1;7723:2;7703:18;;;7696:30;7762:34;7742:18;;;7735:62;-1:-1:-1;;;7813:18:1;;;7806:32;7855:19;;42454:71:0;7482:398:1;42454:71:0;42532:22;41771:12;;;42532:22;;42652:350;42676:14;42672:1;:18;42652:350;;;42706:31;42740:14;;;:11;:14;;;;;;;;;42706:48;;;;;;;;;-1:-1:-1;;;;;42706:48:0;;;;;-1:-1:-1;;;42706:48:0;;;;;;;;;;;;42767:28;42763:89;;42828:14;;;-1:-1:-1;42763:89:0;42885:5;-1:-1:-1;;;;;42864:26:0;:17;-1:-1:-1;;;;;42864:26:0;;42860:135;;;42922:5;42907:11;:20;42903:59;;;-1:-1:-1;42949:1:0;-1:-1:-1;42942:8:0;;-1:-1:-1;;;42942:8:0;42903:59;42972:13;;;;:::i;:::-;;;;42860:135;-1:-1:-1;42692:3:0;;;;:::i;:::-;;;;42652:350;;;-1:-1:-1;43008:56:0;;-1:-1:-1;;;43008:56:0;;15183:2:1;43008:56:0;;;15165:21:1;15222:2;15202:18;;;15195:30;15261:34;15241:18;;;15234:62;-1:-1:-1;;;15312:18:1;;;15305:44;15366:19;;43008:56:0;14981:410:1;57996:143:0;19140:6;;-1:-1:-1;;;;;19140:6:0;17871:10;19287:23;19279:68;;;;-1:-1:-1;;;19279:68:0;;;;;;;:::i;:::-;58094:37:::1;::::0;58062:21:::1;::::0;58102:10:::1;::::0;58094:37;::::1;;;::::0;58062:21;;58044:15:::1;58094:37:::0;58044:15;58094:37;58062:21;58102:10;58094:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58033:106;57996:143::o:0;47440:157::-;47552:39;47569:4;47575:2;47579:7;47552:39;;;;;;;;;;;;:16;:39::i;58147:168::-;19140:6;;-1:-1:-1;;;;;19140:6:0;17871:10;19287:23;19279:68;;;;-1:-1:-1;;;19279:68:0;;;;;;;:::i;:::-;58231:30:::1;::::0;-1:-1:-1;;;58231:30:0;;58255:4:::1;58231:30;::::0;::::1;6232:51:1::0;58213:15:0::1;::::0;-1:-1:-1;;;;;58231:15:0;::::1;::::0;::::1;::::0;6205:18:1;;58231:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58272:35;::::0;-1:-1:-1;;;58272:35:0;;58287:10:::1;58272:35;::::0;::::1;6961:51:1::0;7028:18;;;7021:34;;;58213:48:0;;-1:-1:-1;;;;;;58272:14:0;::::1;::::0;::::1;::::0;6934:18:1;;58272:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41858:177::-:0;41925:7;41771:12;;41949:5;:21;41941:69;;;;-1:-1:-1;;;41941:69:0;;8905:2:1;41941:69:0;;;8887:21:1;8944:2;8924:18;;;8917:30;8983:34;8963:18;;;8956:62;-1:-1:-1;;;9034:18:1;;;9027:33;9077:19;;41941:69:0;8703:399:1;41941:69:0;-1:-1:-1;42024:5:0;41858:177::o;57716:100::-;19140:6;;-1:-1:-1;;;;;19140:6:0;17871:10;19287:23;19279:68;;;;-1:-1:-1;;;19279:68:0;;;;;;;:::i;:::-;57790:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;44683:118::-:0;44747:7;44770:20;44782:7;44770:11;:20::i;:::-;:25;;44683:118;-1:-1:-1;;44683:118:0:o;43560:211::-;43624:7;-1:-1:-1;;;;;43648:19:0;;43640:75;;;;-1:-1:-1;;;43640:75:0;;11293:2:1;43640:75:0;;;11275:21:1;11332:2;11312:18;;;11305:30;11371:34;11351:18;;;11344:62;-1:-1:-1;;;11422:18:1;;;11415:41;11473:19;;43640:75:0;11091:407:1;43640:75:0;-1:-1:-1;;;;;;43737:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43737:27:0;;43560:211::o;57552:93::-;57597:13;57630:7;57623:14;;;;;:::i;19718:103::-;19140:6;;-1:-1:-1;;;;;19140:6:0;17871:10;19287:23;19279:68;;;;-1:-1:-1;;;19279:68:0;;;;;;;:::i;:::-;19783:30:::1;19810:1;19783:18;:30::i;:::-;19718:103::o:0;45015:98::-;45071:13;45100:7;45093:14;;;;;:::i;57154:321::-;10996:1;11594:7;;:19;;11586:63;;;;-1:-1:-1;;;11586:63:0;;15598:2:1;11586:63:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:33;15656:18;;;15649:61;15727:18;;11586:63:0;15396:355:1;11586:63:0;10996:1;11727:7;:18;56283::::1;::::0;::::1;;56275:54;;;::::0;-1:-1:-1;;;56275:54:0;;16374:2:1;56275:54:0::1;::::0;::::1;16356:21:1::0;16413:2;16393:18;;;16386:30;16452:25;16432:18;;;16425:53;16495:18;;56275:54:0::1;16172:347:1::0;56275:54:0::1;56095:13:::2;57320:14:::0;57000:9:::2;56973:22;57320:14:::0;56095:13;56973:22:::2;:::i;:::-;56972:37;56950:111;;;::::0;-1:-1:-1;;;56950:111:0;;14830:2:1;56950:111:0::2;::::0;::::2;14812:21:1::0;14869:2;14849:18;;;14842:30;14908:26;14888:18;;;14881:54;14952:18;;56950:111:0::2;14628:348:1::0;56950:111:0::2;57357:14:::3;56694:9;;56659:14;56643:13;41748:7:::0;41771:12;;41695:94;56643:13:::3;:30;;;;:::i;:::-;:60;;56621:144;;;::::0;-1:-1:-1;;;56621:144:0;;9309:2:1;56621:144:0::3;::::0;::::3;9291:21:1::0;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:1;;;9431:32;9480:19;;56621:144:0::3;9107:398:1::0;56621:144:0::3;57396:14:::4;56003:1;56441:14;:34;;56419:118;;;::::0;-1:-1:-1;;;56419:118:0;;10118:2:1;56419:118:0::4;::::0;::::4;10100:21:1::0;10157:2;10137:18;;;10130:30;10196:34;10176:18;;;10169:62;-1:-1:-1;;;10247:18:1;;;10240:32;10289:19;;56419:118:0::4;9916:398:1::0;56419:118:0::4;57430:37:::5;57440:10;57452:14;57430:9;:37::i;:::-;-1:-1:-1::0;;10952:1:0;11906:7;:22;-1:-1:-1;;;57154:321:0:o;46653:274::-;-1:-1:-1;;;;;46744:24:0;;17871:10;46744:24;;46736:63;;;;-1:-1:-1;;;46736:63:0;;12473:2:1;46736:63:0;;;12455:21:1;12512:2;12492:18;;;12485:30;12551:28;12531:18;;;12524:56;12597:18;;46736:63:0;12271:350:1;46736:63:0;17871:10;46808:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46808:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46808:53:0;;;;;;;;;;46873:48;;7206:41:1;;;46808:42:0;;17871:10;46873:48;;7179:18:1;46873:48:0;;;;;;;46653:274;;:::o;47660:311::-;47797:28;47807:4;47813:2;47817:7;47797:9;:28::i;:::-;47848:48;47871:4;47877:2;47881:7;47890:5;47848:22;:48::i;:::-;47832:133;;;;-1:-1:-1;;;47832:133:0;;;;;;;:::i;:::-;47660:311;;;;:::o;58942:243::-;59060:13;59099:16;59107:7;48267:4;48297:12;-1:-1:-1;48287:22:0;48210:105;59099:16;59091:46;;;;-1:-1:-1;;;59091:46:0;;10521:2:1;59091:46:0;;;10503:21:1;10560:2;10540:18;;;10533:30;-1:-1:-1;;;10579:18:1;;;10572:47;10636:18;;59091:46:0;10319:341:1;59091:46:0;59170:7;59150:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58942:243;;;:::o;19976:201::-;19140:6;;-1:-1:-1;;;;;19140:6:0;17871:10;19287:23;19279:68;;;;-1:-1:-1;;;19279:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20065:22:0;::::1;20057:73;;;::::0;-1:-1:-1;;;20057:73:0;;8087:2:1;20057:73:0::1;::::0;::::1;8069:21:1::0;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:36;8262:19;;20057:73:0::1;7885:402:1::0;20057:73:0::1;20141:28;20160:8;20141:18;:28::i;:::-;19976:201:::0;:::o;43134:370::-;43261:4;-1:-1:-1;;;;;;43291:40:0;;-1:-1:-1;;;43291:40:0;;:99;;-1:-1:-1;;;;;;;43342:48:0;;-1:-1:-1;;;43342:48:0;43291:99;:160;;;-1:-1:-1;;;;;;;43401:50:0;;-1:-1:-1;;;43401:50:0;43291:160;:207;;;-1:-1:-1;;;;;;;;;;32576:40:0;;;43462:36;32467:157;51900:172;51997:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51997:29:0;-1:-1:-1;;;;;51997:29:0;;;;;;;;;52038:28;;51997:24;;52038:28;;;;;;;51900:172;;;:::o;50265:1529::-;50362:35;50400:20;50412:7;50400:11;:20::i;:::-;50471:18;;50362:58;;-1:-1:-1;50429:22:0;;-1:-1:-1;;;;;50455:34:0;17871:10;-1:-1:-1;;;;;50455:34:0;;:81;;;-1:-1:-1;17871:10:0;50500:20;50512:7;50500:11;:20::i;:::-;-1:-1:-1;;;;;50500:36:0;;50455:81;:142;;;-1:-1:-1;50564:18:0;;50547:50;;17871:10;46990:186;:::i;50547:50::-;50429:169;;50623:17;50607:101;;;;-1:-1:-1;;;50607:101:0;;12828:2:1;50607:101:0;;;12810:21:1;12867:2;12847:18;;;12840:30;12906:34;12886:18;;;12879:62;-1:-1:-1;;;12957:18:1;;;12950:48;13015:19;;50607:101:0;12626:414:1;50607:101:0;50755:4;-1:-1:-1;;;;;50733:26:0;:13;:18;;;-1:-1:-1;;;;;50733:26:0;;50717:98;;;;-1:-1:-1;;;50717:98:0;;11705:2:1;50717:98:0;;;11687:21:1;11744:2;11724:18;;;11717:30;11783:34;11763:18;;;11756:62;-1:-1:-1;;;11834:18:1;;;11827:36;11880:19;;50717:98:0;11503:402:1;50717:98:0;-1:-1:-1;;;;;50830:16:0;;50822:66;;;;-1:-1:-1;;;50822:66:0;;9712:2:1;50822:66:0;;;9694:21:1;9751:2;9731:18;;;9724:30;9790:34;9770:18;;;9763:62;-1:-1:-1;;;9841:18:1;;;9834:35;9886:19;;50822:66:0;9510:401:1;50822:66:0;50997:49;51014:1;51018:7;51027:13;:18;;;50997:8;:49::i;:::-;-1:-1:-1;;;;;51055:18:0;;;;;;:12;:18;;;;;:31;;51085:1;;51055:18;:31;;51085:1;;-1:-1:-1;;;;;51055:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;51055:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51093:16:0;;-1:-1:-1;51093:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;51093:16:0;;:29;;-1:-1:-1;;51093:29:0;;:::i;:::-;;;-1:-1:-1;;;;;51093:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51152:43:0;;;;;;;;-1:-1:-1;;;;;51152:43:0;;;;;;51178:15;51152:43;;;;;;;;;-1:-1:-1;51129:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;51129:66:0;-1:-1:-1;;;;;;51129:66:0;;;;;;;;;;;51445:11;51141:7;-1:-1:-1;51445:11:0;:::i;:::-;51508:1;51467:24;;;:11;:24;;;;;:29;51423:33;;-1:-1:-1;;;;;;51467:29:0;51463:236;;51525:20;51533:11;48267:4;48297:12;-1:-1:-1;48287:22:0;48210:105;51525:20;51521:171;;;51585:97;;;;;;;;51612:18;;-1:-1:-1;;;;;51585:97:0;;;;;;51643:28;;;;51585:97;;;;;;;;;;-1:-1:-1;51558:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;51558:124:0;-1:-1:-1;;;;;;51558:124:0;;;;;;;;;;;;51521:171;51731:7;51727:2;-1:-1:-1;;;;;51712:27:0;51721:4;-1:-1:-1;;;;;51712:27:0;;;;;;;;;;;51746:42;50355:1439;;;50265:1529;;;:::o;4292:98::-;4350:7;4377:5;4381:1;4377;:5;:::i;:::-;4370:12;4292:98;-1:-1:-1;;;4292:98:0:o;4691:::-;4749:7;4776:5;4780:1;4776;:5;:::i;44023:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;44140:16:0;44148:7;48267:4;48297:12;-1:-1:-1;48287:22:0;48210:105;44140:16;44132:71;;;;-1:-1:-1;;;44132:71:0;;8494:2:1;44132:71:0;;;8476:21:1;8533:2;8513:18;;;8506:30;8572:34;8552:18;;;8545:62;-1:-1:-1;;;8623:18:1;;;8616:40;8673:19;;44132:71:0;8292:406:1;44132:71:0;44212:26;44260:12;44249:7;:23;44245:93;;44304:22;44314:12;44304:7;:22;:::i;:::-;:26;;44329:1;44304:26;:::i;:::-;44283:47;;44245:93;44366:7;44346:212;44383:18;44375:4;:26;44346:212;;44420:31;44454:17;;;:11;:17;;;;;;;;;44420:51;;;;;;;;;-1:-1:-1;;;;;44420:51:0;;;;;-1:-1:-1;;;44420:51:0;;;;;;;;;;;;44484:28;44480:71;;44532:9;44023:606;-1:-1:-1;;;;44023:606:0:o;44480:71::-;-1:-1:-1;44403:6:0;;;;:::i;:::-;;;;44346:212;;;-1:-1:-1;44566:57:0;;-1:-1:-1;;;44566:57:0;;15958:2:1;44566:57:0;;;15940:21:1;15997:2;15977:18;;;15970:30;16036:34;16016:18;;;16009:62;-1:-1:-1;;;16087:18:1;;;16080:45;16142:19;;44566:57:0;15756:411:1;20337:191:0;20430:6;;;-1:-1:-1;;;;;20447:17:0;;;-1:-1:-1;;;;;;20447:17:0;;;;;;;20480:40;;20430:6;;;20447:17;20430:6;;20480:40;;20411:16;;20480:40;20400:128;20337:191;:::o;48321:98::-;48386:27;48396:2;48400:8;48386:27;;;;;;;;;;;;:9;:27::i;53615:690::-;53752:4;-1:-1:-1;;;;;53769:13:0;;21678:20;21726:8;53765:535;;53808:72;;-1:-1:-1;;;53808:72:0;;-1:-1:-1;;;;;53808:36:0;;;;;:72;;17871:10;;53859:4;;53865:7;;53874:5;;53808:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53808:72:0;;;;;;;;-1:-1:-1;;53808:72:0;;;;;;;;;;;;:::i;:::-;;;53795:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54039:13:0;;54035:215;;54072:61;;-1:-1:-1;;;54072:61:0;;;;;;;:::i;54035:215::-;54218:6;54212:13;54203:6;54199:2;54195:15;54188:38;53795:464;-1:-1:-1;;;;;;53930:55:0;-1:-1:-1;;;53930:55:0;;-1:-1:-1;53923:62:0;;53765:535;-1:-1:-1;54288:4:0;53765:535;53615:690;;;;;;:::o;48758:1275::-;48863:20;48886:12;-1:-1:-1;;;;;48913:16:0;;48905:62;;;;-1:-1:-1;;;48905:62:0;;14428:2:1;48905:62:0;;;14410:21:1;14467:2;14447:18;;;14440:30;14506:34;14486:18;;;14479:62;-1:-1:-1;;;14557:18:1;;;14550:31;14598:19;;48905:62:0;14226:397:1;48905:62:0;49104:21;49112:12;48267:4;48297:12;-1:-1:-1;48287:22:0;48210:105;49104:21;49103:22;49095:64;;;;-1:-1:-1;;;49095:64:0;;14070:2:1;49095:64:0;;;14052:21:1;14109:2;14089:18;;;14082:30;14148:31;14128:18;;;14121:59;14197:18;;49095:64:0;13868:353:1;49095:64:0;-1:-1:-1;;;;;49352:16:0;;49319:30;49352:16;;;:12;:16;;;;;;;;;49319:49;;;;;;;;;-1:-1:-1;;;;;49319:49:0;;;;;-1:-1:-1;;;49319:49:0;;;;;;;;;;;49394:119;;;;;;;;49414:19;;49319:49;;49394:119;;;49414:39;;49444:8;;49414:39;:::i;:::-;-1:-1:-1;;;;;49394:119:0;;;;;49497:8;49462:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;49394:119:0;;;;;;-1:-1:-1;;;;;49375:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;49375:138:0;;;;;;;;;;;;49548:43;;;;;;;;;;;49574:15;49548:43;;;;;;;;49520:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;49520:71:0;-1:-1:-1;;;;;;49520:71:0;;;;;;;;;;;;;;;;;;49532:12;;49644:281;49668:8;49664:1;:12;49644:281;;;49697:38;;49722:12;;-1:-1:-1;;;;;49697:38:0;;;49714:1;;49697:38;;49714:1;;49697:38;49762:59;49793:1;49797:2;49801:12;49815:5;49762:22;:59::i;:::-;49744:150;;;;-1:-1:-1;;;49744:150:0;;;;;;;:::i;:::-;49903:14;;;;:::i;:::-;;;;49678:3;;;;;:::i;:::-;;;;49644:281;;;-1:-1:-1;49933:12:0;:27;;;49967:60;47660:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:382::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2875:30;2834:32;2875:30;:::i;2942:315::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;:::-;3195:5;3247:2;3232:18;;;;3219:32;;-1:-1:-1;;;2942:315:1:o;3262:241::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3426:9;3413:23;3445:28;3467:5;3445:28;:::i;3508:245::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3676:9;3670:16;3695:28;3717:5;3695:28;:::i;3758:245::-;3816:6;3869:2;3857:9;3848:7;3844:23;3840:32;3837:52;;;3885:1;3882;3875:12;3837:52;3924:9;3911:23;3943:30;3967:5;3943:30;:::i;4008:249::-;4077:6;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;4178:9;4172:16;4197:30;4221:5;4197:30;:::i;4528:450::-;4597:6;4650:2;4638:9;4629:7;4625:23;4621:32;4618:52;;;4666:1;4663;4656:12;4618:52;4706:9;4693:23;4739:18;4731:6;4728:30;4725:50;;;4771:1;4768;4761:12;4725:50;4794:22;;4847:4;4839:13;;4835:27;-1:-1:-1;4825:55:1;;4876:1;4873;4866:12;4825:55;4899:73;4964:7;4959:2;4946:16;4941:2;4937;4933:11;4899:73;:::i;4983:180::-;5042:6;5095:2;5083:9;5074:7;5070:23;5066:32;5063:52;;;5111:1;5108;5101:12;5063:52;-1:-1:-1;5134:23:1;;4983:180;-1:-1:-1;4983:180:1:o;5168:184::-;5238:6;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;-1:-1:-1;5330:16:1;;5168:184;-1:-1:-1;5168:184:1:o;5357:248::-;5425:6;5433;5486:2;5474:9;5465:7;5461:23;5457:32;5454:52;;;5502:1;5499;5492:12;5454:52;-1:-1:-1;;5525:23:1;;;5595:2;5580:18;;;5567:32;;-1:-1:-1;5357:248:1:o;5610:471::-;5651:3;5689:5;5683:12;5716:6;5711:3;5704:19;5741:1;5751:162;5765:6;5762:1;5759:13;5751:162;;;5827:4;5883:13;;;5879:22;;5873:29;5855:11;;;5851:20;;5844:59;5780:12;5751:162;;;5931:6;5928:1;5925:13;5922:87;;;5997:1;5990:4;5981:6;5976:3;5972:16;5968:27;5961:38;5922:87;-1:-1:-1;6063:2:1;6042:15;-1:-1:-1;;6038:29:1;6029:39;;;;6070:4;6025:50;;5610:471;-1:-1:-1;;5610:471:1:o;6294:488::-;-1:-1:-1;;;;;6563:15:1;;;6545:34;;6615:15;;6610:2;6595:18;;6588:43;6662:2;6647:18;;6640:34;;;6710:3;6705:2;6690:18;;6683:31;;;6488:4;;6731:45;;6756:19;;6748:6;6731:45;:::i;:::-;6723:53;6294:488;-1:-1:-1;;;;;;6294:488:1:o;7258:219::-;7407:2;7396:9;7389:21;7370:4;7427:44;7467:2;7456:9;7452:18;7444:6;7427:44;:::i;11910:356::-;12112:2;12094:21;;;12131:18;;;12124:30;12190:34;12185:2;12170:18;;12163:62;12257:2;12242:18;;11910:356::o;13448:415::-;13650:2;13632:21;;;13689:2;13669:18;;;13662:30;13728:34;13723:2;13708:18;;13701:62;-1:-1:-1;;;13794:2:1;13779:18;;13772:49;13853:3;13838:19;;13448:415::o;17120:253::-;17160:3;-1:-1:-1;;;;;17249:2:1;17246:1;17242:10;17279:2;17276:1;17272:10;17310:3;17306:2;17302:12;17297:3;17294:21;17291:47;;;17318:18;;:::i;:::-;17354:13;;17120:253;-1:-1:-1;;;;17120:253:1:o;17378:128::-;17418:3;17449:1;17445:6;17442:1;17439:13;17436:39;;;17455:18;;:::i;:::-;-1:-1:-1;17491:9:1;;17378:128::o;17511:217::-;17551:1;17577;17567:132;;17621:10;17616:3;17612:20;17609:1;17602:31;17656:4;17653:1;17646:15;17684:4;17681:1;17674:15;17567:132;-1:-1:-1;17713:9:1;;17511:217::o;17733:168::-;17773:7;17839:1;17835;17831:6;17827:14;17824:1;17821:21;17816:1;17809:9;17802:17;17798:45;17795:71;;;17846:18;;:::i;:::-;-1:-1:-1;17886:9:1;;17733:168::o;17906:246::-;17946:4;-1:-1:-1;;;;;18059:10:1;;;;18029;;18081:12;;;18078:38;;;18096:18;;:::i;:::-;18133:13;;17906:246;-1:-1:-1;;;17906:246:1:o;18157:125::-;18197:4;18225:1;18222;18219:8;18216:34;;;18230:18;;:::i;:::-;-1:-1:-1;18267:9:1;;18157:125::o;18287:136::-;18326:3;18354:5;18344:39;;18363:18;;:::i;:::-;-1:-1:-1;;;18399:18:1;;18287:136::o;18428:380::-;18507:1;18503:12;;;;18550;;;18571:61;;18625:4;18617:6;18613:17;18603:27;;18571:61;18678:2;18670:6;18667:14;18647:18;18644:38;18641:161;;;18724:10;18719:3;18715:20;18712:1;18705:31;18759:4;18756:1;18749:15;18787:4;18784:1;18777:15;18641:161;;18428:380;;;:::o;18813:135::-;18852:3;-1:-1:-1;;18873:17:1;;18870:43;;;18893:18;;:::i;:::-;-1:-1:-1;18940:1:1;18929:13;;18813:135::o;18953:127::-;19014:10;19009:3;19005:20;19002:1;18995:31;19045:4;19042:1;19035:15;19069:4;19066:1;19059:15;19085:127;19146:10;19141:3;19137:20;19134:1;19127:31;19177:4;19174:1;19167:15;19201:4;19198:1;19191:15;19217:131;-1:-1:-1;;;;;19292:31:1;;19282:42;;19272:70;;19338:1;19335;19328:12;19353:118;19439:5;19432:13;19425:21;19418:5;19415:32;19405:60;;19461:1;19458;19451:12;19476:131;-1:-1:-1;;;;;;19550:32:1;;19540:43;;19530:71;;19597:1;19594;19587:12
Swarm Source
ipfs://f4f7008d2fe2e120d84dec7ca68808af5e4ae40aae7a4313c817742f680c1496
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.