Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 847 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 20603370 | 136 days ago | IN | 0 ETH | 0.00001802 | ||||
Set Approval For... | 20603366 | 136 days ago | IN | 0 ETH | 0.00001837 | ||||
Set Approval For... | 20544107 | 144 days ago | IN | 0 ETH | 0.00003644 | ||||
Set Approval For... | 19539786 | 285 days ago | IN | 0 ETH | 0.00100374 | ||||
Safe Transfer Fr... | 18577978 | 420 days ago | IN | 0 ETH | 0.0031968 | ||||
Set Approval For... | 18551837 | 423 days ago | IN | 0 ETH | 0.00122582 | ||||
Transfer From | 17616586 | 554 days ago | IN | 0 ETH | 0.00097278 | ||||
Set Approval For... | 17491760 | 572 days ago | IN | 0 ETH | 0.00034678 | ||||
Mint | 17422556 | 582 days ago | IN | 0 ETH | 0.00283537 | ||||
Mint | 17223118 | 610 days ago | IN | 0 ETH | 0.00883576 | ||||
Set Approval For... | 17168172 | 618 days ago | IN | 0 ETH | 0.00378183 | ||||
Approve | 17052789 | 634 days ago | IN | 0 ETH | 0.00052789 | ||||
Transfer Ownersh... | 17052779 | 634 days ago | IN | 0 ETH | 0.00070176 | ||||
Mint | 17035952 | 636 days ago | IN | 0 ETH | 0.00256498 | ||||
Set Approval For... | 17009843 | 640 days ago | IN | 0 ETH | 0.00099267 | ||||
Mint | 17009301 | 640 days ago | IN | 0 ETH | 0.0018032 | ||||
Mint | 16986098 | 643 days ago | IN | 0 ETH | 0.00346274 | ||||
Mint | 16985953 | 643 days ago | IN | 0 ETH | 0.00236321 | ||||
Mint | 16951446 | 648 days ago | IN | 0 ETH | 0.00237536 | ||||
Set Approval For... | 16893709 | 656 days ago | IN | 0 ETH | 0.00087828 | ||||
Set Approval For... | 16886422 | 657 days ago | IN | 0 ETH | 0.00084026 | ||||
Mint | 16879157 | 658 days ago | IN | 0 ETH | 0.000587 | ||||
Mint | 16879152 | 658 days ago | IN | 0 ETH | 0.00186618 | ||||
Mint | 16879131 | 658 days ago | IN | 0 ETH | 0.00047611 | ||||
Mint | 16879125 | 658 days ago | IN | 0 ETH | 0.00047432 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SkellyApeGolfClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-13 */ // // /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ // /$$__ $$ /$$__ $$ /$$__ $$ /$$__ $$ // | $$ \__/| $$ \ $$| $$ \__/| $$ \__/ // | $$$$$$ | $$$$$$$$| $$ /$$$$| $$ // \____ $$| $$__ $$| $$|_ $$| $$ // /$$ \ $$| $$ | $$| $$ \ $$| $$ $$ // | $$$$$$/| $$ | $$| $$$$$$/| $$$$$$/ // \______/ |__/ |__/ \______/ \______/ // // SPDX-License-Identifier: MIT 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/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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); } 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 no longer needed starting with Solidity 0.8. 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. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * 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; } } } 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); } } 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..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ 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 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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(totalSupply). 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; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; 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); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; 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 virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public 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 Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { 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 _safeTransfer( address from, address to, uint256 tokenId ) internal { TokenOwnership memory prevOwnership = ownershipOf(tokenId); 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); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = 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); } /** * @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 {} } 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 make 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; } } pragma solidity ^0.8.0; contract Fore { function balanceOf(address owner) public returns (uint256) {} function transferFrom(address sender, address recipient, uint256 amount) external returns (bool){} } contract SkellyApeGolfClub is ERC721A, Ownable, ReentrancyGuard { using SafeMath for uint256; using Address for address; using Strings for uint256; uint256 public NFT_PRICE = 1420 * 10 ** 18; // 1420 ETH uint256 public MAX_SUPPLY = 4444; address public foreContractAddress; address public tokenVault; Fore public fore; // Faciliating the needed functionality for the presale string private _baseURIExtended; mapping (uint256 => string) _tokenURIs; mapping (uint256 => bool) _isClaimed; constructor(address _foreContractAddress, address _tokenVault, string memory _BaseURI) ERC721A("Skelly Ape Golf Club","SAGC V2"){ foreContractAddress = _foreContractAddress; tokenVault = _tokenVault; fore = Fore(_foreContractAddress); _baseURIExtended= _BaseURI; } function giveAway(address _to, uint256 _reserveAmount) public onlyOwner { require( totalSupply().add(_reserveAmount) <= MAX_SUPPLY, "Not enough left for giveAway" ); _safeMint(_to, _reserveAmount); } function mint(uint numberOfTokens) public { uint256 userBalance = fore.balanceOf(msg.sender); uint256 tokenUsedToBuyNft = numberOfTokens * NFT_PRICE; require(userBalance >= tokenUsedToBuyNft, "user can't have enough token"); fore.transferFrom(msg.sender, tokenVault, tokenUsedToBuyNft); require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0"); require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply of SkellyApeGolfClub"); _safeMint(msg.sender, numberOfTokens); } function _baseURI() internal view virtual override returns (string memory) { return _baseURIExtended; } function setBaseURI(string memory baseURI_) external onlyOwner { _baseURIExtended = baseURI_; } function setPrice(uint256 _price) external onlyOwner { NFT_PRICE = _price * 10 ** 18; } function setTokenVault(address _tokenVault) external onlyOwner { tokenVault = _tokenVault; } function transferFrom(address from, address to, uint256 tokenId) public override nonReentrant { ERC721A.transferFrom(from, to, tokenId); } function setForeContractAddress(address _addr) public onlyOwner(){ // require(msg.sender == admin || msg.sender == owner(), "Invalid sender"); foreContractAddress = _addr; fore = Fore(_addr); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI, '.json')); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString(), '.json')); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_foreContractAddress","type":"address"},{"internalType":"address","name":"_tokenVault","type":"address"},{"internalType":"string","name":"_BaseURI","type":"string"}],"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_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":[],"name":"fore","outputs":[{"internalType":"contract Fore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foreContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"_addr","type":"address"}],"name":"setForeContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenVault","type":"address"}],"name":"setTokenVault","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":"tokenVault","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]
Contract Creation Code
6080604052684cfa756c847eb0000060095561115c600a553480156200002457600080fd5b50604051620023d7380380620023d7833981016040819052620000479162000257565b604080518082018252601481527f536b656c6c792041706520476f6c6620436c756200000000000000000000000060208083019182528351808501909452600784526629a0a3a1902b1960c91b908401528151919291620000ab9160019162000194565b508051620000c190600290602084019062000194565b505050620000de620000d86200013e60201b60201c565b62000142565b6001600855600b80546001600160a01b038086166001600160a01b03199283168117909355600c8054918616918316919091179055600d8054909116909117905580516200013490600e90602084019062000194565b50505050620003ae565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a2906200035b565b90600052602060002090601f016020900481019282620001c6576000855562000211565b82601f10620001e157805160ff191683800117855562000211565b8280016001018555821562000211579182015b8281111562000211578251825591602001919060010190620001f4565b506200021f92915062000223565b5090565b5b808211156200021f576000815560010162000224565b80516001600160a01b03811681146200025257600080fd5b919050565b6000806000606084860312156200026d57600080fd5b62000278846200023a565b92506020620002898186016200023a565b60408601519093506001600160401b0380821115620002a757600080fd5b818701915087601f830112620002bc57600080fd5b815181811115620002d157620002d162000398565b604051601f8201601f19908116603f01168101908382118183101715620002fc57620002fc62000398565b816040528281528a868487010111156200031557600080fd5b600093505b828410156200033957848401860151818501870152928501926200031a565b828411156200034b5760008684830101525b8096505050505050509250925092565b600181811c908216806200037057607f821691505b602082108114156200039257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61201980620003be6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063676dd5631161010457806395d89b41116100a2578063c87b56dd11610071578063c87b56dd146103d1578063ca800144146103e4578063e985e9c5146103f7578063f2fde38b1461043357600080fd5b806395d89b4114610390578063a0712d6814610398578063a22cb465146103ab578063b88d4fde146103be57600080fd5b8063715018a6116100de578063715018a6146103515780638da5cb5b146103595780638ecada4a1461036a57806391b7f5ed1461037d57600080fd5b8063676dd563146103225780636f17273d1461032b57806370a082311461033e57600080fd5b80632f745c591161017c57806355f804b31161014b57806355f804b3146102d65780635bc789d9146102e95780636352211e146102fc5780636497a8a01461030f57600080fd5b80632f745c591461029457806332cb6b0c146102a757806342842e0e146102b05780634f6ccce7146102c357600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c5780631aaa10c21461026e57806323b872dd1461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611c77565b610446565b60405190151581526020015b60405180910390f35b61020f6104b3565b6040516101fe9190611dd4565b61022f61022a366004611cfa565b610545565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611c30565b6105d5565b005b6000545b6040519081526020016101fe565b61025a61027c366004611af3565b6106ed565b61025a61028f366004611b41565b610743565b6102606102a2366004611c30565b6107b0565b610260600a5481565b61025a6102be366004611b41565b61090d565b6102606102d1366004611cfa565b610928565b61025a6102e4366004611cb1565b61098a565b600c5461022f906001600160a01b031681565b61022f61030a366004611cfa565b6109cb565b61025a61031d366004611af3565b6109dd565b61026060095481565b600b5461022f906001600160a01b031681565b61026061034c366004611af3565b610a29565b61025a610aba565b6007546001600160a01b031661022f565b600d5461022f906001600160a01b031681565b61025a61038b366004611cfa565b610af0565b61020f610b32565b61025a6103a6366004611cfa565b610b41565b61025a6103b9366004611bf9565b610daa565b61025a6103cc366004611b7d565b610e6f565b61020f6103df366004611cfa565b610ea8565b61025a6103f2366004611c30565b61101c565b6101f2610405366004611b0e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61025a610441366004611af3565b6110ae565b60006001600160e01b031982166380ac58cd60e01b148061047757506001600160e01b03198216635b5e139f60e01b145b8061049257506001600160e01b0319821663780e9d6360e01b145b806104ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104c290611efd565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90611efd565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b6000610552826000541190565b6105b95760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105e0826109cb565b9050806001600160a01b0316836001600160a01b0316141561064f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016105b0565b336001600160a01b038216148061066b575061066b8133610405565b6106dd5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016105b0565b6106e8838383611149565b505050565b6007546001600160a01b031633146107175760405162461bcd60e51b81526004016105b090611de7565b600b80546001600160a01b039092166001600160a01b03199283168117909155600d8054909216179055565b600260085414156107965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b0565b60026008556107a68383836111a5565b5050600160085550565b60006107bb83610a29565b82106108145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105b0565b600080549080805b838110156108ad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561086f57805192505b876001600160a01b0316836001600160a01b031614156108a4578684141561089d575093506104ad92505050565b6001909301925b5060010161081c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016105b0565b6106e883838360405180602001604052806000815250610e6f565b6000805482106109865760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016105b0565b5090565b6007546001600160a01b031633146109b45760405162461bcd60e51b81526004016105b090611de7565b80516109c790600e9060208401906119d1565b5050565b60006109d6826111b0565b5192915050565b6007546001600160a01b03163314610a075760405162461bcd60e51b81526004016105b090611de7565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610a955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016105b0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ae45760405162461bcd60e51b81526004016105b090611de7565b610aee6000611287565b565b6007546001600160a01b03163314610b1a5760405162461bcd60e51b81526004016105b090611de7565b610b2c81670de0b6b3a7640000611e9b565b60095550565b6060600280546104c290611efd565b600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381600087803b158015610b8757600080fd5b505af1158015610b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbf9190611d13565b9050600060095483610bd19190611e9b565b905080821015610c235760405162461bcd60e51b815260206004820152601c60248201527f757365722063616e2774206861766520656e6f75676820746f6b656e0000000060448201526064016105b0565b600d54600c546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018490529116906323b872dd90606401602060405180830381600087803b158015610c7957600080fd5b505af1158015610c8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb19190611c5a565b5060008311610d1e5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016105b0565b600a54610d3484610d2e60005490565b906112d9565b1115610da05760405162461bcd60e51b815260206004820152603560248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152741037b31029b5b2b6363ca0b832a3b7b63321b63ab160591b60648201526084016105b0565b6106e833846112ec565b6001600160a01b038216331415610e035760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016105b0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e7a848484611306565b610e86848484846115eb565b610ea25760405162461bcd60e51b81526004016105b090611e1c565b50505050565b6060610eb5826000541190565b610f195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b0565b6000828152600f602052604081208054610f3290611efd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5e90611efd565b8015610fab5780601f10610f8057610100808354040283529160200191610fab565b820191906000526020600020905b815481529060010190602001808311610f8e57829003601f168201915b505050505090506000610fbc6116f9565b9050805160001415610fcf575092915050565b815115611001578082604051602001610fe9929190611d58565b60405160208183030381529060405292505050919050565b8061100b85611708565b604051602001610fe9929190611d58565b6007546001600160a01b031633146110465760405162461bcd60e51b81526004016105b090611de7565b600a5461105682610d2e60005490565b11156110a45760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f756768206c65667420666f722067697665417761790000000060448201526064016105b0565b6109c782826112ec565b6007546001600160a01b031633146110d85760405162461bcd60e51b81526004016105b090611de7565b6001600160a01b03811661113d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b61114681611287565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106e8838383611306565b60408051808201909152600080825260208201526111cf826000541190565b61122e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016105b0565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561127d579392505050565b5060001901611230565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112e58284611e6f565b9392505050565b6109c7828260405180602001604052806000815250611806565b6000611311826111b0565b80519091506000906001600160a01b0316336001600160a01b0316148061134857503361133d84610545565b6001600160a01b0316145b8061135a5750815161135a9033610405565b9050806113c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105b0565b846001600160a01b031682600001516001600160a01b0316146114385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016105b0565b6001600160a01b03841661149c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6114ac6000848460000151611149565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115a157611554816000541190565b156115a1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b0384163b156116ed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061162f903390899088908890600401611d97565b602060405180830381600087803b15801561164957600080fd5b505af1925050508015611679575060408051601f3d908101601f1916820190925261167691810190611c94565b60015b6116d3573d8080156116a7576040519150601f19603f3d011682016040523d82523d6000602084013e6116ac565b606091505b5080516116cb5760405162461bcd60e51b81526004016105b090611e1c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f1565b5060015b949350505050565b6060600e80546104c290611efd565b60608161172c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611756578061174081611f38565b915061174f9050600a83611e87565b9150611730565b60008167ffffffffffffffff81111561177157611771611fa9565b6040519080825280601f01601f19166020018201604052801561179b576020820181803683370190505b5090505b84156116f1576117b0600183611eba565b91506117bd600a86611f53565b6117c8906030611e6f565b60f81b8183815181106117dd576117dd611f93565b60200101906001600160f81b031916908160001a9053506117ff600a86611e87565b945061179f565b6106e883838360016000546001600160a01b0385166118715760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105b0565b836118cf5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016105b0565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119c85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156119bc576119a060008884886115eb565b6119bc5760405162461bcd60e51b81526004016105b090611e1c565b6001918201910161194d565b506000556115e4565b8280546119dd90611efd565b90600052602060002090601f0160209004810192826119ff5760008555611a45565b82601f10611a1857805160ff1916838001178555611a45565b82800160010185558215611a45579182015b82811115611a45578251825591602001919060010190611a2a565b506109869291505b808211156109865760008155600101611a4d565b600067ffffffffffffffff80841115611a7c57611a7c611fa9565b604051601f8501601f19908116603f01168101908282118183101715611aa457611aa4611fa9565b81604052809350858152868686011115611abd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aee57600080fd5b919050565b600060208284031215611b0557600080fd5b6112e582611ad7565b60008060408385031215611b2157600080fd5b611b2a83611ad7565b9150611b3860208401611ad7565b90509250929050565b600080600060608486031215611b5657600080fd5b611b5f84611ad7565b9250611b6d60208501611ad7565b9150604084013590509250925092565b60008060008060808587031215611b9357600080fd5b611b9c85611ad7565b9350611baa60208601611ad7565b925060408501359150606085013567ffffffffffffffff811115611bcd57600080fd5b8501601f81018713611bde57600080fd5b611bed87823560208401611a61565b91505092959194509250565b60008060408385031215611c0c57600080fd5b611c1583611ad7565b91506020830135611c2581611fbf565b809150509250929050565b60008060408385031215611c4357600080fd5b611c4c83611ad7565b946020939093013593505050565b600060208284031215611c6c57600080fd5b81516112e581611fbf565b600060208284031215611c8957600080fd5b81356112e581611fcd565b600060208284031215611ca657600080fd5b81516112e581611fcd565b600060208284031215611cc357600080fd5b813567ffffffffffffffff811115611cda57600080fd5b8201601f81018413611ceb57600080fd5b6116f184823560208401611a61565b600060208284031215611d0c57600080fd5b5035919050565b600060208284031215611d2557600080fd5b5051919050565b60008151808452611d44816020860160208601611ed1565b601f01601f19169290920160200192915050565b60008351611d6a818460208801611ed1565b835190830190611d7e818360208801611ed1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dca90830184611d2c565b9695505050505050565b6020815260006112e56020830184611d2c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611e8257611e82611f67565b500190565b600082611e9657611e96611f7d565b500490565b6000816000190483118215151615611eb557611eb5611f67565b500290565b600082821015611ecc57611ecc611f67565b500390565b60005b83811015611eec578181015183820152602001611ed4565b83811115610ea25750506000910152565b600181811c90821680611f1157607f821691505b60208210811415611f3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f4c57611f4c611f67565b5060010190565b600082611f6257611f62611f7d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461114657600080fd5b6001600160e01b03198116811461114657600080fdfea2646970667358221220f51fa47b3eff847849b608c6abfa84ec5dc6843cdd4a735d76816830abddf77a64736f6c63430008070033000000000000000000000000d988a4991fc5c673e45bea1cffe36ca4ca845ae70000000000000000000000003aa4519af9c26e0e259348cd78b3f09d56fd1b7000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063676dd5631161010457806395d89b41116100a2578063c87b56dd11610071578063c87b56dd146103d1578063ca800144146103e4578063e985e9c5146103f7578063f2fde38b1461043357600080fd5b806395d89b4114610390578063a0712d6814610398578063a22cb465146103ab578063b88d4fde146103be57600080fd5b8063715018a6116100de578063715018a6146103515780638da5cb5b146103595780638ecada4a1461036a57806391b7f5ed1461037d57600080fd5b8063676dd563146103225780636f17273d1461032b57806370a082311461033e57600080fd5b80632f745c591161017c57806355f804b31161014b57806355f804b3146102d65780635bc789d9146102e95780636352211e146102fc5780636497a8a01461030f57600080fd5b80632f745c591461029457806332cb6b0c146102a757806342842e0e146102b05780634f6ccce7146102c357600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c5780631aaa10c21461026e57806323b872dd1461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611c77565b610446565b60405190151581526020015b60405180910390f35b61020f6104b3565b6040516101fe9190611dd4565b61022f61022a366004611cfa565b610545565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611c30565b6105d5565b005b6000545b6040519081526020016101fe565b61025a61027c366004611af3565b6106ed565b61025a61028f366004611b41565b610743565b6102606102a2366004611c30565b6107b0565b610260600a5481565b61025a6102be366004611b41565b61090d565b6102606102d1366004611cfa565b610928565b61025a6102e4366004611cb1565b61098a565b600c5461022f906001600160a01b031681565b61022f61030a366004611cfa565b6109cb565b61025a61031d366004611af3565b6109dd565b61026060095481565b600b5461022f906001600160a01b031681565b61026061034c366004611af3565b610a29565b61025a610aba565b6007546001600160a01b031661022f565b600d5461022f906001600160a01b031681565b61025a61038b366004611cfa565b610af0565b61020f610b32565b61025a6103a6366004611cfa565b610b41565b61025a6103b9366004611bf9565b610daa565b61025a6103cc366004611b7d565b610e6f565b61020f6103df366004611cfa565b610ea8565b61025a6103f2366004611c30565b61101c565b6101f2610405366004611b0e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b61025a610441366004611af3565b6110ae565b60006001600160e01b031982166380ac58cd60e01b148061047757506001600160e01b03198216635b5e139f60e01b145b8061049257506001600160e01b0319821663780e9d6360e01b145b806104ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546104c290611efd565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90611efd565b801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b5050505050905090565b6000610552826000541190565b6105b95760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105e0826109cb565b9050806001600160a01b0316836001600160a01b0316141561064f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016105b0565b336001600160a01b038216148061066b575061066b8133610405565b6106dd5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016105b0565b6106e8838383611149565b505050565b6007546001600160a01b031633146107175760405162461bcd60e51b81526004016105b090611de7565b600b80546001600160a01b039092166001600160a01b03199283168117909155600d8054909216179055565b600260085414156107965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105b0565b60026008556107a68383836111a5565b5050600160085550565b60006107bb83610a29565b82106108145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105b0565b600080549080805b838110156108ad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561086f57805192505b876001600160a01b0316836001600160a01b031614156108a4578684141561089d575093506104ad92505050565b6001909301925b5060010161081c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016105b0565b6106e883838360405180602001604052806000815250610e6f565b6000805482106109865760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016105b0565b5090565b6007546001600160a01b031633146109b45760405162461bcd60e51b81526004016105b090611de7565b80516109c790600e9060208401906119d1565b5050565b60006109d6826111b0565b5192915050565b6007546001600160a01b03163314610a075760405162461bcd60e51b81526004016105b090611de7565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610a955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016105b0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ae45760405162461bcd60e51b81526004016105b090611de7565b610aee6000611287565b565b6007546001600160a01b03163314610b1a5760405162461bcd60e51b81526004016105b090611de7565b610b2c81670de0b6b3a7640000611e9b565b60095550565b6060600280546104c290611efd565b600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381600087803b158015610b8757600080fd5b505af1158015610b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbf9190611d13565b9050600060095483610bd19190611e9b565b905080821015610c235760405162461bcd60e51b815260206004820152601c60248201527f757365722063616e2774206861766520656e6f75676820746f6b656e0000000060448201526064016105b0565b600d54600c546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018490529116906323b872dd90606401602060405180830381600087803b158015610c7957600080fd5b505af1158015610c8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb19190611c5a565b5060008311610d1e5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016105b0565b600a54610d3484610d2e60005490565b906112d9565b1115610da05760405162461bcd60e51b815260206004820152603560248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152741037b31029b5b2b6363ca0b832a3b7b63321b63ab160591b60648201526084016105b0565b6106e833846112ec565b6001600160a01b038216331415610e035760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016105b0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e7a848484611306565b610e86848484846115eb565b610ea25760405162461bcd60e51b81526004016105b090611e1c565b50505050565b6060610eb5826000541190565b610f195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b0565b6000828152600f602052604081208054610f3290611efd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5e90611efd565b8015610fab5780601f10610f8057610100808354040283529160200191610fab565b820191906000526020600020905b815481529060010190602001808311610f8e57829003601f168201915b505050505090506000610fbc6116f9565b9050805160001415610fcf575092915050565b815115611001578082604051602001610fe9929190611d58565b60405160208183030381529060405292505050919050565b8061100b85611708565b604051602001610fe9929190611d58565b6007546001600160a01b031633146110465760405162461bcd60e51b81526004016105b090611de7565b600a5461105682610d2e60005490565b11156110a45760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f756768206c65667420666f722067697665417761790000000060448201526064016105b0565b6109c782826112ec565b6007546001600160a01b031633146110d85760405162461bcd60e51b81526004016105b090611de7565b6001600160a01b03811661113d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b61114681611287565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106e8838383611306565b60408051808201909152600080825260208201526111cf826000541190565b61122e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016105b0565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561127d579392505050565b5060001901611230565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112e58284611e6f565b9392505050565b6109c7828260405180602001604052806000815250611806565b6000611311826111b0565b80519091506000906001600160a01b0316336001600160a01b0316148061134857503361133d84610545565b6001600160a01b0316145b8061135a5750815161135a9033610405565b9050806113c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105b0565b846001600160a01b031682600001516001600160a01b0316146114385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016105b0565b6001600160a01b03841661149c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6114ac6000848460000151611149565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115a157611554816000541190565b156115a1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b0384163b156116ed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061162f903390899088908890600401611d97565b602060405180830381600087803b15801561164957600080fd5b505af1925050508015611679575060408051601f3d908101601f1916820190925261167691810190611c94565b60015b6116d3573d8080156116a7576040519150601f19603f3d011682016040523d82523d6000602084013e6116ac565b606091505b5080516116cb5760405162461bcd60e51b81526004016105b090611e1c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f1565b5060015b949350505050565b6060600e80546104c290611efd565b60608161172c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611756578061174081611f38565b915061174f9050600a83611e87565b9150611730565b60008167ffffffffffffffff81111561177157611771611fa9565b6040519080825280601f01601f19166020018201604052801561179b576020820181803683370190505b5090505b84156116f1576117b0600183611eba565b91506117bd600a86611f53565b6117c8906030611e6f565b60f81b8183815181106117dd576117dd611f93565b60200101906001600160f81b031916908160001a9053506117ff600a86611e87565b945061179f565b6106e883838360016000546001600160a01b0385166118715760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105b0565b836118cf5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016105b0565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119c85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156119bc576119a060008884886115eb565b6119bc5760405162461bcd60e51b81526004016105b090611e1c565b6001918201910161194d565b506000556115e4565b8280546119dd90611efd565b90600052602060002090601f0160209004810192826119ff5760008555611a45565b82601f10611a1857805160ff1916838001178555611a45565b82800160010185558215611a45579182015b82811115611a45578251825591602001919060010190611a2a565b506109869291505b808211156109865760008155600101611a4d565b600067ffffffffffffffff80841115611a7c57611a7c611fa9565b604051601f8501601f19908116603f01168101908282118183101715611aa457611aa4611fa9565b81604052809350858152868686011115611abd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aee57600080fd5b919050565b600060208284031215611b0557600080fd5b6112e582611ad7565b60008060408385031215611b2157600080fd5b611b2a83611ad7565b9150611b3860208401611ad7565b90509250929050565b600080600060608486031215611b5657600080fd5b611b5f84611ad7565b9250611b6d60208501611ad7565b9150604084013590509250925092565b60008060008060808587031215611b9357600080fd5b611b9c85611ad7565b9350611baa60208601611ad7565b925060408501359150606085013567ffffffffffffffff811115611bcd57600080fd5b8501601f81018713611bde57600080fd5b611bed87823560208401611a61565b91505092959194509250565b60008060408385031215611c0c57600080fd5b611c1583611ad7565b91506020830135611c2581611fbf565b809150509250929050565b60008060408385031215611c4357600080fd5b611c4c83611ad7565b946020939093013593505050565b600060208284031215611c6c57600080fd5b81516112e581611fbf565b600060208284031215611c8957600080fd5b81356112e581611fcd565b600060208284031215611ca657600080fd5b81516112e581611fcd565b600060208284031215611cc357600080fd5b813567ffffffffffffffff811115611cda57600080fd5b8201601f81018413611ceb57600080fd5b6116f184823560208401611a61565b600060208284031215611d0c57600080fd5b5035919050565b600060208284031215611d2557600080fd5b5051919050565b60008151808452611d44816020860160208601611ed1565b601f01601f19169290920160200192915050565b60008351611d6a818460208801611ed1565b835190830190611d7e818360208801611ed1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dca90830184611d2c565b9695505050505050565b6020815260006112e56020830184611d2c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611e8257611e82611f67565b500190565b600082611e9657611e96611f7d565b500490565b6000816000190483118215151615611eb557611eb5611f67565b500290565b600082821015611ecc57611ecc611f67565b500390565b60005b83811015611eec578181015183820152602001611ed4565b83811115610ea25750506000910152565b600181811c90821680611f1157607f821691505b60208210811415611f3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f4c57611f4c611f67565b5060010190565b600082611f6257611f62611f7d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461114657600080fd5b6001600160e01b03198116811461114657600080fdfea2646970667358221220f51fa47b3eff847849b608c6abfa84ec5dc6843cdd4a735d76816830abddf77a64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d988a4991fc5c673e45bea1cffe36ca4ca845ae70000000000000000000000003aa4519af9c26e0e259348cd78b3f09d56fd1b7000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _foreContractAddress (address): 0xD988a4991fC5c673E45Bea1cFfE36ca4Ca845ae7
Arg [1] : _tokenVault (address): 0x3AA4519AF9C26E0e259348CD78B3f09d56fD1B70
Arg [2] : _BaseURI (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000d988a4991fc5c673e45bea1cffe36ca4ca845ae7
Arg [1] : 0000000000000000000000003aa4519af9c26e0e259348cd78b3f09d56fd1b70
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
52444:3445:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34485:372;;;;;;:::i;:::-;;:::i;:::-;;;6600:14:1;;6593:22;6575:41;;6563:2;6548:18;34485:372:0;;;;;;;;36371:100;;;:::i;:::-;;;;;;;:::i;37933:214::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5518:32:1;;;5500:51;;5488:2;5473:18;37933:214:0;5354:203:1;37454:413:0;;;;;;:::i;:::-;;:::i;:::-;;32742:100;32795:7;32822:12;32742:100;;;16840:25:1;;;16828:2;16813:18;32742:100:0;16694:177:1;54842:225:0;;;;;;:::i;:::-;;:::i;54681:153::-;;;;;;:::i;:::-;;:::i;33406:1007::-;;;;;;:::i;:::-;;:::i;52675:32::-;;;;;;39050:185;;;;;;:::i;:::-;;:::i;32919:187::-;;;;;;:::i;:::-;;:::i;54341:109::-;;;;;;:::i;:::-;;:::i;52755:25::-;;;;;-1:-1:-1;;;;;52755:25:0;;;36180:124;;;;;;:::i;:::-;;:::i;54567:106::-;;;;;;:::i;:::-;;:::i;52614:42::-;;;;;;52714:34;;;;;-1:-1:-1;;;;;52714:34:0;;;34921:221;;;;;;:::i;:::-;;:::i;30190:103::-;;;:::i;29539:87::-;29612:6;;-1:-1:-1;;;;;29612:6:0;29539:87;;52787:16;;;;;-1:-1:-1;;;;;52787:16:0;;;54458:101;;;;;;:::i;:::-;;:::i;36540:104::-;;;:::i;53610:598::-;;;;;;:::i;:::-;;:::i;38219:288::-;;;;;;:::i;:::-;;:::i;39306:355::-;;;;;;:::i;:::-;;:::i;55075:811::-;;;;;;:::i;:::-;;:::i;53321:281::-;;;;;;:::i;:::-;;:::i;38578:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;38699:25:0;;;38675:4;38699:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38578:164;30448:201;;;;;;:::i;:::-;;:::i;34485:372::-;34587:4;-1:-1:-1;;;;;;34624:40:0;;-1:-1:-1;;;34624:40:0;;:105;;-1:-1:-1;;;;;;;34681:48:0;;-1:-1:-1;;;34681:48:0;34624:105;:172;;;-1:-1:-1;;;;;;;34746:50:0;;-1:-1:-1;;;34746:50:0;34624:172;:225;;;-1:-1:-1;;;;;;;;;;14767:40:0;;;34813:36;34604:245;34485:372;-1:-1:-1;;34485:372:0:o;36371:100::-;36425:13;36458:5;36451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36371:100;:::o;37933:214::-;38001:7;38029:16;38037:7;39973:4;40007:12;-1:-1:-1;39997:22:0;39916:111;38029:16;38021:74;;;;-1:-1:-1;;;38021:74:0;;16482:2:1;38021:74:0;;;16464:21:1;16521:2;16501:18;;;16494:30;16560:34;16540:18;;;16533:62;-1:-1:-1;;;16611:18:1;;;16604:43;16664:19;;38021:74:0;;;;;;;;;-1:-1:-1;38115:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38115:24:0;;37933:214::o;37454:413::-;37527:13;37543:24;37559:7;37543:15;:24::i;:::-;37527:40;;37592:5;-1:-1:-1;;;;;37586:11:0;:2;-1:-1:-1;;;;;37586:11:0;;;37578:58;;;;-1:-1:-1;;;37578:58:0;;13235:2:1;37578:58:0;;;13217:21:1;13274:2;13254:18;;;13247:30;13313:34;13293:18;;;13286:62;-1:-1:-1;;;13364:18:1;;;13357:32;13406:19;;37578:58:0;13033:398:1;37578:58:0;3208:10;-1:-1:-1;;;;;37671:21:0;;;;:62;;-1:-1:-1;37696:37:0;37713:5;3208:10;38578:164;:::i;37696:37::-;37649:169;;;;-1:-1:-1;;;37649:169:0;;9725:2:1;37649:169:0;;;9707:21:1;9764:2;9744:18;;;9737:30;9803:34;9783:18;;;9776:62;9874:27;9854:18;;;9847:55;9919:19;;37649:169:0;9523:421:1;37649:169:0;37831:28;37840:2;37844:7;37853:5;37831:8;:28::i;:::-;37516:351;37454:413;;:::o;54842:225::-;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;55003:19:::1;:27:::0;;-1:-1:-1;;;;;55003:27:0;;::::1;-1:-1:-1::0;;;;;;55003:27:0;;::::1;::::0;::::1;::::0;;;55041:4:::1;:18:::0;;;;::::1;;::::0;;54842:225::o;54681:153::-;51277:1;51873:7;;:19;;51865:63;;;;-1:-1:-1;;;51865:63:0;;15706:2:1;51865:63:0;;;15688:21:1;15745:2;15725:18;;;15718:30;15784:33;15764:18;;;15757:61;15835:18;;51865:63:0;15504:355:1;51865:63:0;51277:1;52006:7;:18;54787:39:::1;54808:4:::0;54814:2;54818:7;54787:20:::1;:39::i;:::-;-1:-1:-1::0;;51233:1:0;52185:7;:22;-1:-1:-1;54681:153:0:o;33406:1007::-;33495:7;33531:16;33541:5;33531:9;:16::i;:::-;33523:5;:24;33515:71;;;;-1:-1:-1;;;33515:71:0;;7274:2:1;33515:71:0;;;7256:21:1;7313:2;7293:18;;;7286:30;7352:34;7332:18;;;7325:62;-1:-1:-1;;;7403:18:1;;;7396:32;7445:19;;33515:71:0;7072:398:1;33515:71:0;33597:22;32822:12;;;33597:22;;33860:466;33880:14;33876:1;:18;33860:466;;;33920:31;33954:14;;;:11;:14;;;;;;;;;33920:48;;;;;;;;;-1:-1:-1;;;;;33920:48:0;;;;;-1:-1:-1;;;33920:48:0;;;;;;;;;;;;33991:28;33987:111;;34064:14;;;-1:-1:-1;33987:111:0;34141:5;-1:-1:-1;;;;;34120:26:0;:17;-1:-1:-1;;;;;34120:26:0;;34116:195;;;34190:5;34175:11;:20;34171:85;;;-1:-1:-1;34231:1:0;-1:-1:-1;34224:8:0;;-1:-1:-1;;;34224:8:0;34171:85;34278:13;;;;;34116:195;-1:-1:-1;33896:3:0;;33860:466;;;-1:-1:-1;34349:56:0;;-1:-1:-1;;;34349:56:0;;15291:2:1;34349:56:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:44;15474:19;;34349:56:0;15089:410:1;39050:185:0;39188:39;39205:4;39211:2;39215:7;39188:39;;;;;;;;;;;;:16;:39::i;32919:187::-;32986:7;32822:12;;33014:5;:21;33006:69;;;;-1:-1:-1;;;33006:69:0;;8915:2:1;33006:69:0;;;8897:21:1;8954:2;8934:18;;;8927:30;8993:34;8973:18;;;8966:62;-1:-1:-1;;;9044:18:1;;;9037:33;9087:19;;33006:69:0;8713:399:1;33006:69:0;-1:-1:-1;33093:5:0;32919:187::o;54341:109::-;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;54415:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54341:109:::0;:::o;36180:124::-;36244:7;36271:20;36283:7;36271:11;:20::i;:::-;:25;;36180:124;-1:-1:-1;;36180:124:0:o;54567:106::-;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;54641:10:::1;:24:::0;;-1:-1:-1;;;;;;54641:24:0::1;-1:-1:-1::0;;;;;54641:24:0;;;::::1;::::0;;;::::1;::::0;;54567:106::o;34921:221::-;34985:7;-1:-1:-1;;;;;35013:19:0;;35005:75;;;;-1:-1:-1;;;35005:75:0;;10151:2:1;35005:75:0;;;10133:21:1;10190:2;10170:18;;;10163:30;10229:34;10209:18;;;10202:62;-1:-1:-1;;;10280:18:1;;;10273:41;10331:19;;35005:75:0;9949:407:1;35005:75:0;-1:-1:-1;;;;;;35106:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35106:27:0;;34921:221::o;30190:103::-;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;30255:30:::1;30282:1;30255:18;:30::i;:::-;30190:103::o:0;54458:101::-;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;54534:17:::1;:6:::0;54543:8:::1;54534:17;:::i;:::-;54522:9;:29:::0;-1:-1:-1;54458:101:0:o;36540:104::-;36596:13;36629:7;36622:14;;;;;:::i;53610:598::-;53685:4;;:26;;-1:-1:-1;;;53685:26:0;;53700:10;53685:26;;;5500:51:1;53663:19:0;;-1:-1:-1;;;;;53685:4:0;;:14;;5473:18:1;;53685:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53663:48;;53722:25;53767:9;;53750:14;:26;;;;:::i;:::-;53722:54;;53810:17;53795:11;:32;;53787:73;;;;-1:-1:-1;;;53787:73:0;;10970:2:1;53787:73:0;;;10952:21:1;11009:2;10989:18;;;10982:30;11048;11028:18;;;11021:58;11096:18;;53787:73:0;10768:352:1;53787:73:0;53871:4;;53901:10;;53871:60;;-1:-1:-1;;;53871:60:0;;53889:10;53871:60;;;5802:34:1;-1:-1:-1;;;;;53901:10:0;;;5852:18:1;;;5845:43;5904:18;;;5897:34;;;53871:4:0;;;:17;;5737:18:1;;53871:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53967:1;53950:14;:18;53942:82;;;;-1:-1:-1;;;53942:82:0;;7677:2:1;53942:82:0;;;7659:21:1;7716:2;7696:18;;;7689:30;7755:34;7735:18;;;7728:62;-1:-1:-1;;;7806:18:1;;;7799:49;7865:19;;53942:82:0;7475:415:1;53942:82:0;54080:10;;54043:33;54061:14;54043:13;32795:7;32822:12;;32742:100;54043:13;:17;;:33::i;:::-;:47;;54035:113;;;;-1:-1:-1;;;54035:113:0;;13638:2:1;54035:113:0;;;13620:21:1;13677:2;13657:18;;;13650:30;13716:34;13696:18;;;13689:62;-1:-1:-1;;;13767:18:1;;;13760:51;13828:19;;54035:113:0;13436:417:1;54035:113:0;54163:37;54173:10;54185:14;54163:9;:37::i;38219:288::-;-1:-1:-1;;;;;38314:24:0;;3208:10;38314:24;;38306:63;;;;-1:-1:-1;;;38306:63:0;;12104:2:1;38306:63:0;;;12086:21:1;12143:2;12123:18;;;12116:30;12182:28;12162:18;;;12155:56;12228:18;;38306:63:0;11902:350:1;38306:63:0;3208:10;38382:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38382:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38382:53:0;;;;;;;;;;38451:48;;6575:41:1;;;38382:42:0;;3208:10;38451:48;;6548:18:1;38451:48:0;;;;;;;38219:288;;:::o;39306:355::-;39465:28;39475:4;39481:2;39485:7;39465:9;:28::i;:::-;39526:48;39549:4;39555:2;39559:7;39568:5;39526:22;:48::i;:::-;39504:149;;;;-1:-1:-1;;;39504:149:0;;;;;;;:::i;:::-;39306:355;;;;:::o;55075:811::-;55148:13;55182:16;55190:7;39973:4;40007:12;-1:-1:-1;39997:22:0;39916:111;55182:16;55174:76;;;;-1:-1:-1;;;55174:76:0;;11688:2:1;55174:76:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:34;11746:18;;;11739:62;-1:-1:-1;;;11817:18:1;;;11810:45;11872:19;;55174:76:0;11486:411:1;55174:76:0;55263:23;55289:19;;;:10;:19;;;;;55263:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55319:18;55340:10;:8;:10::i;:::-;55319:31;;55432:4;55426:18;55448:1;55426:23;55422:72;;;-1:-1:-1;55473:9:0;55075:811;-1:-1:-1;;55075:811:0:o;55422:72::-;55598:23;;:27;55594:117;;55673:4;55679:9;55656:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55642:57;;;;55075:811;;;:::o;55594:117::-;55843:4;55849:18;:7;:16;:18::i;:::-;55826:51;;;;;;;;;:::i;53321:281::-;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;53487:10:::1;;53450:33;53468:14;53450:13;32795:7:::0;32822:12;;32742:100;53450:33:::1;:47;;53428:125;;;::::0;-1:-1:-1;;;53428:125:0;;12878:2:1;53428:125:0::1;::::0;::::1;12860:21:1::0;12917:2;12897:18;;;12890:30;12956;12936:18;;;12929:58;13004:18;;53428:125:0::1;12676:352:1::0;53428:125:0::1;53564:30;53574:3;53579:14;53564:9;:30::i;30448:201::-:0;29612:6;;-1:-1:-1;;;;;29612:6:0;3208:10;29759:23;29751:68;;;;-1:-1:-1;;;29751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30537:22:0;::::1;30529:73;;;::::0;-1:-1:-1;;;30529:73:0;;8097:2:1;30529:73:0::1;::::0;::::1;8079:21:1::0;8136:2;8116:18;;;8109:30;8175:34;8155:18;;;8148:62;-1:-1:-1;;;8226:18:1;;;8219:36;8272:19;;30529:73:0::1;7895:402:1::0;30529:73:0::1;30613:28;30632:8;30613:18;:28::i;:::-;30448:201:::0;:::o;46810:196::-;46925:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46925:29:0;-1:-1:-1;;;;;46925:29:0;;;;;;;;;46970:28;;46925:24;;46970:28;;;;;;;46810:196;;;:::o;38809:170::-;38943:28;38953:4;38959:2;38963:7;38943:9;:28::i;35581:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;35684:16:0;35692:7;39973:4;40007:12;-1:-1:-1;39997:22:0;39916:111;35684:16;35676:71;;;;-1:-1:-1;;;35676:71:0;;8504:2:1;35676:71:0;;;8486:21:1;8543:2;8523:18;;;8516:30;8582:34;8562:18;;;8555:62;-1:-1:-1;;;8633:18:1;;;8626:40;8683:19;;35676:71:0;8302:406:1;35676:71:0;35805:7;35785:245;35852:31;35886:17;;;:11;:17;;;;;;;;;35852:51;;;;;;;;;-1:-1:-1;;;;;35852:51:0;;;;;-1:-1:-1;;;35852:51:0;;;;;;;;;;;;35926:28;35922:93;;35986:9;35581:537;-1:-1:-1;;;35581:537:0:o;35922:93::-;-1:-1:-1;;;35825:6:0;35785:245;;30809:191;30902:6;;;-1:-1:-1;;;;;30919:17:0;;;-1:-1:-1;;;;;;30919:17:0;;;;;;;30952:40;;30902:6;;;30919:17;30902:6;;30952:40;;30883:16;;30952:40;30872:128;30809:191;:::o;24305:98::-;24363:7;24390:5;24394:1;24390;:5;:::i;:::-;24383:12;24305:98;-1:-1:-1;;;24305:98:0:o;40035:104::-;40104:27;40114:2;40118:8;40104:27;;;;;;;;;;;;:9;:27::i;44690:2002::-;44805:35;44843:20;44855:7;44843:11;:20::i;:::-;44918:18;;44805:58;;-1:-1:-1;44876:22:0;;-1:-1:-1;;;;;44902:34:0;3208:10;-1:-1:-1;;;;;44902:34:0;;:87;;;-1:-1:-1;3208:10:0;44953:20;44965:7;44953:11;:20::i;:::-;-1:-1:-1;;;;;44953:36:0;;44902:87;:154;;;-1:-1:-1;45023:18:0;;45006:50;;3208:10;38578:164;:::i;45006:50::-;44876:181;;45078:17;45070:80;;;;-1:-1:-1;;;45070:80:0;;12459:2:1;45070:80:0;;;12441:21:1;12498:2;12478:18;;;12471:30;12537:34;12517:18;;;12510:62;-1:-1:-1;;;12588:18:1;;;12581:48;12646:19;;45070:80:0;12257:414:1;45070:80:0;45193:4;-1:-1:-1;;;;;45171:26:0;:13;:18;;;-1:-1:-1;;;;;45171:26:0;;45163:77;;;;-1:-1:-1;;;45163:77:0;;10563:2:1;45163:77:0;;;10545:21:1;10602:2;10582:18;;;10575:30;10641:34;10621:18;;;10614:62;-1:-1:-1;;;10692:18:1;;;10685:36;10738:19;;45163:77:0;10361:402:1;45163:77:0;-1:-1:-1;;;;;45259:16:0;;45251:66;;;;-1:-1:-1;;;45251:66:0;;9319:2:1;45251:66:0;;;9301:21:1;9358:2;9338:18;;;9331:30;9397:34;9377:18;;;9370:62;-1:-1:-1;;;9448:18:1;;;9441:35;9493:19;;45251:66:0;9117:401:1;45251:66:0;45438:49;45455:1;45459:7;45468:13;:18;;;45438:8;:49::i;:::-;-1:-1:-1;;;;;45783:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;45783:31:0;;;-1:-1:-1;;;;;45783:31:0;;;-1:-1:-1;;45783:31:0;;;;;;;45829:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45829:29:0;;;;;;;;;;;;;45875:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;45920:61:0;;;;-1:-1:-1;;;45965:15:0;45920:61;;;;;;46255:11;;;46285:24;;;;;:29;46255:11;;46285:29;46281:295;;46353:20;46361:11;39973:4;40007:12;-1:-1:-1;39997:22:0;39916:111;46353:20;46349:212;;;46430:18;;;46398:24;;;:11;:24;;;;;;;;:50;;46513:28;;;;46471:70;;-1:-1:-1;;;46471:70:0;-1:-1:-1;;;;;;46471:70:0;;;-1:-1:-1;;;;;46398:50:0;;;46471:70;;;;;;;46349:212;45758:829;46623:7;46619:2;-1:-1:-1;;;;;46604:27:0;46613:4;-1:-1:-1;;;;;46604:27:0;;;;;;;;;;;46642:42;44794:1898;;44690:2002;;;:::o;47571:804::-;47726:4;-1:-1:-1;;;;;47747:13:0;;4870:19;:23;47743:625;;47783:72;;-1:-1:-1;;;47783:72:0;;-1:-1:-1;;;;;47783:36:0;;;;;:72;;3208:10;;47834:4;;47840:7;;47849:5;;47783:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47783:72:0;;;;;;;;-1:-1:-1;;47783:72:0;;;;;;;;;;;;:::i;:::-;;;47779:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48029:13:0;;48025:273;;48072:61;;-1:-1:-1;;;48072:61:0;;;;;;;:::i;48025:273::-;48248:6;48242:13;48233:6;48229:2;48225:15;48218:38;47779:534;-1:-1:-1;;;;;;47906:55:0;-1:-1:-1;;;47906:55:0;;-1:-1:-1;47899:62:0;;47743:625;-1:-1:-1;48352:4:0;47743:625;47571:804;;;;;;:::o;54216:117::-;54276:13;54309:16;54302:23;;;;;:::i;690:723::-;746:13;967:10;963:53;;-1:-1:-1;;994:10:0;;;;;;;;;;;;-1:-1:-1;;;994:10:0;;;;;690:723::o;963:53::-;1041:5;1026:12;1082:78;1089:9;;1082:78;;1115:8;;;;:::i;:::-;;-1:-1:-1;1138:10:0;;-1:-1:-1;1146:2:0;1138:10;;:::i;:::-;;;1082:78;;;1170:19;1202:6;1192:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1192:17:0;;1170:39;;1220:154;1227:10;;1220:154;;1254:11;1264:1;1254:11;;:::i;:::-;;-1:-1:-1;1323:10:0;1331:2;1323:5;:10;:::i;:::-;1310:24;;:2;:24;:::i;:::-;1297:39;;1280:6;1287;1280:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1280:56:0;;;;;;;;-1:-1:-1;1351:11:0;1360:2;1351:11;;:::i;:::-;;;1220:154;;40502:163;40625:32;40631:2;40635:8;40645:5;40652:4;41063:20;41086:12;-1:-1:-1;;;;;41117:16:0;;41109:62;;;;-1:-1:-1;;;41109:62:0;;14480:2:1;41109:62:0;;;14462:21:1;14519:2;14499:18;;;14492:30;14558:34;14538:18;;;14531:62;-1:-1:-1;;;14609:18:1;;;14602:31;14650:19;;41109:62:0;14278:397:1;41109:62:0;41190:13;41182:66;;;;-1:-1:-1;;;41182:66:0;;14882:2:1;41182:66:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:34;14940:18;;;14933:62;-1:-1:-1;;;15011:18:1;;;15004:38;15059:19;;41182:66:0;14680:404:1;41182:66:0;-1:-1:-1;;;;;41600:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;41600:45:0;;-1:-1:-1;;;;;41600:45:0;;;;;;;;;;41660:50;;;;;;;;;;;;;;41727:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;41777:66:0;;;;-1:-1:-1;;;41827:15:0;41777:66;;;;;;;41727:25;;41912:415;41932:8;41928:1;:12;41912:415;;;41971:38;;41996:12;;-1:-1:-1;;;;;41971:38:0;;;41988:1;;41971:38;;41988:1;;41971:38;42032:4;42028:249;;;42095:59;42126:1;42130:2;42134:12;42148:5;42095:22;:59::i;:::-;42061:196;;;;-1:-1:-1;;;42061:196:0;;;;;;;:::i;:::-;42297:14;;;;;41942:3;41912:415;;;-1:-1:-1;42343:12:0;:27;42394:60;39306:355;-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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:245::-;2934:6;2987:2;2975:9;2966:7;2962:23;2958:32;2955:52;;;3003:1;3000;2993:12;2955:52;3035:9;3029:16;3054:28;3076:5;3054:28;:::i;3117:245::-;3175:6;3228:2;3216:9;3207:7;3203:23;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3283:9;3270:23;3302:30;3326:5;3302:30;:::i;3367:249::-;3436:6;3489:2;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3537:9;3531:16;3556:30;3580:5;3556:30;:::i;3621:450::-;3690:6;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;3832:18;3824:6;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3887:22;;3940:4;3932:13;;3928:27;-1:-1:-1;3918:55:1;;3969:1;3966;3959:12;3918:55;3992:73;4057:7;4052:2;4039:16;4034:2;4030;4026:11;3992:73;:::i;4076:180::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;-1:-1:-1;4227:23:1;;4076:180;-1:-1:-1;4076:180:1:o;4261:184::-;4331:6;4384:2;4372:9;4363:7;4359:23;4355:32;4352:52;;;4400:1;4397;4390:12;4352:52;-1:-1:-1;4423:16:1;;4261:184;-1:-1:-1;4261:184:1:o;4450:257::-;4491:3;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4450:257;-1:-1:-1;;4450:257:1:o;4712:637::-;4992:3;5030:6;5024:13;5046:53;5092:6;5087:3;5080:4;5072:6;5068:17;5046:53;:::i;:::-;5162:13;;5121:16;;;;5184:57;5162:13;5121:16;5218:4;5206:17;;5184:57;:::i;:::-;-1:-1:-1;;;5263:20:1;;5292:22;;;5341:1;5330:13;;4712:637;-1:-1:-1;;;;4712:637:1:o;5942:488::-;-1:-1:-1;;;;;6211:15:1;;;6193:34;;6263:15;;6258:2;6243:18;;6236:43;6310:2;6295:18;;6288:34;;;6358:3;6353:2;6338:18;;6331:31;;;6136:4;;6379:45;;6404:19;;6396:6;6379:45;:::i;:::-;6371:53;5942:488;-1:-1:-1;;;;;;5942:488:1:o;6848:219::-;6997:2;6986:9;6979:21;6960:4;7017:44;7057:2;7046:9;7042:18;7034:6;7017:44;:::i;11125:356::-;11327:2;11309:21;;;11346:18;;;11339:30;11405:34;11400:2;11385:18;;11378:62;11472:2;11457:18;;11125:356::o;13858:415::-;14060:2;14042:21;;;14099:2;14079:18;;;14072:30;14138:34;14133:2;14118:18;;14111:62;-1:-1:-1;;;14204:2:1;14189:18;;14182:49;14263:3;14248:19;;13858:415::o;16876:128::-;16916:3;16947:1;16943:6;16940:1;16937:13;16934:39;;;16953:18;;:::i;:::-;-1:-1:-1;16989:9:1;;16876:128::o;17009:120::-;17049:1;17075;17065:35;;17080:18;;:::i;:::-;-1:-1:-1;17114:9:1;;17009:120::o;17134:168::-;17174:7;17240:1;17236;17232:6;17228:14;17225:1;17222:21;17217:1;17210:9;17203:17;17199:45;17196:71;;;17247:18;;:::i;:::-;-1:-1:-1;17287:9:1;;17134:168::o;17307:125::-;17347:4;17375:1;17372;17369:8;17366:34;;;17380:18;;:::i;:::-;-1:-1:-1;17417:9:1;;17307:125::o;17437:258::-;17509:1;17519:113;17533:6;17530:1;17527:13;17519:113;;;17609:11;;;17603:18;17590:11;;;17583:39;17555:2;17548:10;17519:113;;;17650:6;17647:1;17644:13;17641:48;;;-1:-1:-1;;17685:1:1;17667:16;;17660:27;17437:258::o;17700:380::-;17779:1;17775:12;;;;17822;;;17843:61;;17897:4;17889:6;17885:17;17875:27;;17843:61;17950:2;17942:6;17939:14;17919:18;17916:38;17913:161;;;17996:10;17991:3;17987:20;17984:1;17977:31;18031:4;18028:1;18021:15;18059:4;18056:1;18049:15;17913:161;;17700:380;;;:::o;18085:135::-;18124:3;-1:-1:-1;;18145:17:1;;18142:43;;;18165:18;;:::i;:::-;-1:-1:-1;18212:1:1;18201:13;;18085:135::o;18225:112::-;18257:1;18283;18273:35;;18288:18;;:::i;:::-;-1:-1:-1;18322:9:1;;18225:112::o;18342:127::-;18403:10;18398:3;18394:20;18391:1;18384:31;18434:4;18431:1;18424:15;18458:4;18455:1;18448:15;18474:127;18535:10;18530:3;18526:20;18523:1;18516:31;18566:4;18563:1;18556:15;18590:4;18587:1;18580:15;18606:127;18667:10;18662:3;18658:20;18655:1;18648:31;18698:4;18695:1;18688:15;18722:4;18719:1;18712:15;18738:127;18799:10;18794:3;18790:20;18787:1;18780:31;18830:4;18827:1;18820:15;18854:4;18851:1;18844:15;18870:118;18956:5;18949:13;18942:21;18935:5;18932:32;18922:60;;18978:1;18975;18968:12;18993:131;-1:-1:-1;;;;;;19067:32:1;;19057:43;;19047:71;;19114:1;19111;19104:12
Swarm Source
ipfs://f51fa47b3eff847849b608c6abfa84ec5dc6843cdd4a735d76816830abddf77a
Loading...
Loading
Loading...
Loading
OVERVIEW
Skelly Ape Golf Club is a collection of 4.444 Skelly Ape NFTs. To mint one, you need to own a SAGC from the genesis collection. Each one costs 1420 $FORE that's yielded by an open staking of the genesis collection:https://opensea.io/collection/seniorapegolfclubMultichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.