Token
GobCoin (GOB)
ERC-20
Overview
Max Total Supply
360,647.138508371385083713 GOB
Holders
2
Market
Price
$0.00 @ 0.000000 APE
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
647.138508371385083713 GOBLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GobCoin
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at curtis.apescan.io on 2024-12-29 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @dev Required interface of an ERC-721 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`. * * 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; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC-721 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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: contracts/GobCoin.sol pragma solidity ^0.8.0; contract GobCoin is ERC20, Ownable { uint256 public constant TOTAL_SUPPLY = 1_000_000_000 * 10 ** 18; // 1 billion tokens uint256 public constant VESTING_DURATION = 1095 days; // 3 years uint256 public vestingStart; uint256 public teamAllocation; uint256 public teamClaimed; mapping(uint256 => bool) public claimedNFTs; address public gobsNFTContract; constructor() ERC20('GobCoin','GOB') Ownable(msg.sender){ } function setGobsNFTContract(address _gobsNFTContract) external onlyOwner { gobsNFTContract = _gobsNFTContract; } function claim(uint256[] calldata tokenIds) external { // Initialize vesting on first claim if (vestingStart == 0) { vestingStart = block.timestamp; teamAllocation = TOTAL_SUPPLY - (2222 * 360_000 * 10 ** 18); // Reserve NFT claims } require(gobsNFTContract != address(0), "NFT contract not set"); uint256 totalClaimable = 0; for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; require(IERC721(gobsNFTContract).ownerOf(tokenId) == msg.sender, "Not owner of NFT"); require(!claimedNFTs[tokenId], "Already claimed"); claimedNFTs[tokenId] = true; totalClaimable += 360_000 * 10 ** 18; // 360,000 tokens per NFT } require(totalClaimable > 0, "Nothing to claim"); _mint(msg.sender, totalClaimable); } function teamClaim() external onlyOwner { uint256 vestedAmount = (teamAllocation * (block.timestamp - vestingStart)) / VESTING_DURATION; uint256 claimable = vestedAmount - teamClaimed; require(claimable > 0, "Nothing to claim"); teamClaimed += claimable; _mint(msg.sender, claimable); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedNFTs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gobsNFTContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gobsNFTContract","type":"address"}],"name":"setGobsNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561000f575f5ffd5b50336040518060400160405280600781526020017f476f62436f696e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f474f420000000000000000000000000000000000000000000000000000000000815250816003908161008c9190610424565b50806004908161009c9190610424565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101069190610532565b60405180910390fd5b61011e8161012460201b60201c565b5061054b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061026257607f821691505b6020821081036102755761027461021e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261029c565b6102e1868361029c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61032561032061031b846102f9565b610302565b6102f9565b9050919050565b5f819050919050565b61033e8361030b565b61035261034a8261032c565b8484546102a8565b825550505050565b5f5f905090565b61036961035a565b610374818484610335565b505050565b5b818110156103975761038c5f82610361565b60018101905061037a565b5050565b601f8211156103dc576103ad8161027b565b6103b68461028d565b810160208510156103c5578190505b6103d96103d18561028d565b830182610379565b50505b505050565b5f82821c905092915050565b5f6103fc5f19846008026103e1565b1980831691505092915050565b5f61041483836103ed565b9150826002028217905092915050565b61042d826101e7565b67ffffffffffffffff811115610446576104456101f1565b5b610450825461024b565b61045b82828561039b565b5f60209050601f83116001811461048c575f841561047a578287015190505b6104848582610409565b8655506104eb565b601f19841661049a8661027b565b5f5b828110156104c15784890151825560018201915060208501945060208101905061049c565b868310156104de57848901516104da601f8916826103ed565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61051c826104f3565b9050919050565b61052c81610512565b82525050565b5f6020820190506105455f830184610523565b92915050565b611a9f806105585f395ff3fe608060405234801561000f575f5ffd5b5060043610610140575f3560e01c80636816521a116100b65780638da5cb5b1161007a5780638da5cb5b14610340578063902d55a51461035e57806395d89b411461037c578063a9059cbb1461039a578063dd62ed3e146103ca578063f2fde38b146103fa57610140565b80636816521a146102c25780636ae146c2146102e05780636ba4c138146102ea57806370a0823114610306578063715018a61461033657610140565b8063254800d411610108578063254800d4146101fe5780632f3346521461021c578063313ce5671461023a5780633b0760411461025857806349506594146102745780634cfc4d30146102a457610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd14610192578063239acca7146101b057806323b872dd146101ce575b5f5ffd5b61014c610416565b6040516101599190611360565b60405180910390f35b61017c60048036038101906101779190611415565b6104a6565b604051610189919061146d565b60405180910390f35b61019a6104c8565b6040516101a79190611495565b60405180910390f35b6101b86104d1565b6040516101c591906114bd565b60405180910390f35b6101e860048036038101906101e391906114d6565b6104f6565b6040516101f5919061146d565b60405180910390f35b610206610524565b6040516102139190611495565b60405180910390f35b61022461052a565b6040516102319190611495565b60405180910390f35b610242610530565b60405161024f9190611541565b60405180910390f35b610272600480360381019061026d919061155a565b610538565b005b61028e60048036038101906102899190611585565b610583565b60405161029b919061146d565b60405180910390f35b6102ac6105a0565b6040516102b99190611495565b60405180910390f35b6102ca6105a8565b6040516102d79190611495565b60405180910390f35b6102e86105ae565b005b61030460048036038101906102ff9190611611565b61065c565b005b610320600480360381019061031b919061155a565b61095c565b60405161032d9190611495565b60405180910390f35b61033e6109a1565b005b6103486109b4565b60405161035591906114bd565b60405180910390f35b6103666109dc565b6040516103739190611495565b60405180910390f35b6103846109ec565b6040516103919190611360565b60405180910390f35b6103b460048036038101906103af9190611415565b610a7c565b6040516103c1919061146d565b60405180910390f35b6103e460048036038101906103df919061165c565b610a9e565b6040516103f19190611495565b60405180910390f35b610414600480360381019061040f919061155a565b610b20565b005b606060038054610425906116c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610451906116c7565b801561049c5780601f106104735761010080835404028352916020019161049c565b820191905f5260205f20905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b5f5f6104b0610ba4565b90506104bd818585610bab565b600191505092915050565b5f600254905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f610500610ba4565b905061050d858285610bbd565b610518858585610c4f565b60019150509392505050565b60065481565b60085481565b5f6012905090565b610540610d3f565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6009602052805f5260405f205f915054906101000a900460ff1681565b6305a39a8081565b60075481565b6105b6610d3f565b5f6305a39a80600654426105ca9190611724565b6007546105d79190611757565b6105e191906117c5565b90505f600854826105f29190611724565b90505f8111610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d9061183f565b60405180910390fd5b8060085f828254610647919061185d565b925050819055506106583382610dc6565b5050565b5f6006540361069757426006819055506b0295ada6173a18c18e0000006b033b2e3c9fd0803ce80000006106909190611724565b6007819055505b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d906118da565b60405180910390fd5b5f5f90505f5f90505b8383905081101561090a575f84848381811061074e5761074d6118f8565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016107c89190611495565b602060405180830381865afa1580156107e3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108079190611939565b73ffffffffffffffffffffffffffffffffffffffff161461085d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610854906119ae565b60405180910390fd5b60095f8281526020019081526020015f205f9054906101000a900460ff16156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b290611a16565b60405180910390fd5b600160095f8381526020019081526020015f205f6101000a81548160ff021916908315150217905550694c3ba39c5e4111000000836108fa919061185d565b925050808060010191505061072f565b505f811161094d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109449061183f565b60405180910390fd5b6109573382610dc6565b505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109a9610d3f565b6109b25f610e45565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b6060600480546109fb906116c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a27906116c7565b8015610a725780601f10610a4957610100808354040283529160200191610a72565b820191905f5260205f20905b815481529060010190602001808311610a5557829003601f168201915b5050505050905090565b5f5f610a86610ba4565b9050610a93818585610c4f565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b28610d3f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b8f91906114bd565b60405180910390fd5b610ba181610e45565b50565b5f33905090565b610bb88383836001610f08565b505050565b5f610bc88484610a9e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c495781811015610c3a578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c3193929190611a34565b60405180910390fd5b610c4884848484035f610f08565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cbf575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cb691906114bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2f575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d2691906114bd565b60405180910390fd5b610d3a8383836110d7565b505050565b610d47610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610d656109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610dc457610d88610ba4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dbb91906114bd565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e36575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e2d91906114bd565b60405180910390fd5b610e415f83836110d7565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f78575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f6f91906114bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe8575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610fdf91906114bd565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156110d1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110c89190611495565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611127578060025f82825461111b919061185d565b925050819055506111f5565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111b0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111a793929190611a34565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361123c578060025f8282540392505081905550611286565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112e39190611495565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611332826112f0565b61133c81856112fa565b935061134c81856020860161130a565b61135581611318565b840191505092915050565b5f6020820190508181035f8301526113788184611328565b905092915050565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b182611388565b9050919050565b6113c1816113a7565b81146113cb575f5ffd5b50565b5f813590506113dc816113b8565b92915050565b5f819050919050565b6113f4816113e2565b81146113fe575f5ffd5b50565b5f8135905061140f816113eb565b92915050565b5f5f6040838503121561142b5761142a611380565b5b5f611438858286016113ce565b925050602061144985828601611401565b9150509250929050565b5f8115159050919050565b61146781611453565b82525050565b5f6020820190506114805f83018461145e565b92915050565b61148f816113e2565b82525050565b5f6020820190506114a85f830184611486565b92915050565b6114b7816113a7565b82525050565b5f6020820190506114d05f8301846114ae565b92915050565b5f5f5f606084860312156114ed576114ec611380565b5b5f6114fa868287016113ce565b935050602061150b868287016113ce565b925050604061151c86828701611401565b9150509250925092565b5f60ff82169050919050565b61153b81611526565b82525050565b5f6020820190506115545f830184611532565b92915050565b5f6020828403121561156f5761156e611380565b5b5f61157c848285016113ce565b91505092915050565b5f6020828403121561159a57611599611380565b5b5f6115a784828501611401565b91505092915050565b5f5ffd5b5f5ffd5b5f5ffd5b5f5f83601f8401126115d1576115d06115b0565b5b8235905067ffffffffffffffff8111156115ee576115ed6115b4565b5b60208301915083602082028301111561160a576116096115b8565b5b9250929050565b5f5f6020838503121561162757611626611380565b5b5f83013567ffffffffffffffff81111561164457611643611384565b5b611650858286016115bc565b92509250509250929050565b5f5f6040838503121561167257611671611380565b5b5f61167f858286016113ce565b9250506020611690858286016113ce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116de57607f821691505b6020821081036116f1576116f061169a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61172e826113e2565b9150611739836113e2565b9250828203905081811115611751576117506116f7565b5b92915050565b5f611761826113e2565b915061176c836113e2565b925082820261177a816113e2565b91508282048414831517611791576117906116f7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6117cf826113e2565b91506117da836113e2565b9250826117ea576117e9611798565b5b828204905092915050565b7f4e6f7468696e6720746f20636c61696d000000000000000000000000000000005f82015250565b5f6118296010836112fa565b9150611834826117f5565b602082019050919050565b5f6020820190508181035f8301526118568161181d565b9050919050565b5f611867826113e2565b9150611872836113e2565b925082820190508082111561188a576118896116f7565b5b92915050565b7f4e465420636f6e7472616374206e6f74207365740000000000000000000000005f82015250565b5f6118c46014836112fa565b91506118cf82611890565b602082019050919050565b5f6020820190508181035f8301526118f1816118b8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611933816113b8565b92915050565b5f6020828403121561194e5761194d611380565b5b5f61195b84828501611925565b91505092915050565b7f4e6f74206f776e6572206f66204e4654000000000000000000000000000000005f82015250565b5f6119986010836112fa565b91506119a382611964565b602082019050919050565b5f6020820190508181035f8301526119c58161198c565b9050919050565b7f416c726561647920636c61696d656400000000000000000000000000000000005f82015250565b5f611a00600f836112fa565b9150611a0b826119cc565b602082019050919050565b5f6020820190508181035f830152611a2d816119f4565b9050919050565b5f606082019050611a475f8301866114ae565b611a546020830185611486565b611a616040830184611486565b94935050505056fea2646970667358221220cf7ce1b9d0ab819755baecf8ba909106035d4ea70a312965a1397817c0126f1664736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610140575f3560e01c80636816521a116100b65780638da5cb5b1161007a5780638da5cb5b14610340578063902d55a51461035e57806395d89b411461037c578063a9059cbb1461039a578063dd62ed3e146103ca578063f2fde38b146103fa57610140565b80636816521a146102c25780636ae146c2146102e05780636ba4c138146102ea57806370a0823114610306578063715018a61461033657610140565b8063254800d411610108578063254800d4146101fe5780632f3346521461021c578063313ce5671461023a5780633b0760411461025857806349506594146102745780634cfc4d30146102a457610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd14610192578063239acca7146101b057806323b872dd146101ce575b5f5ffd5b61014c610416565b6040516101599190611360565b60405180910390f35b61017c60048036038101906101779190611415565b6104a6565b604051610189919061146d565b60405180910390f35b61019a6104c8565b6040516101a79190611495565b60405180910390f35b6101b86104d1565b6040516101c591906114bd565b60405180910390f35b6101e860048036038101906101e391906114d6565b6104f6565b6040516101f5919061146d565b60405180910390f35b610206610524565b6040516102139190611495565b60405180910390f35b61022461052a565b6040516102319190611495565b60405180910390f35b610242610530565b60405161024f9190611541565b60405180910390f35b610272600480360381019061026d919061155a565b610538565b005b61028e60048036038101906102899190611585565b610583565b60405161029b919061146d565b60405180910390f35b6102ac6105a0565b6040516102b99190611495565b60405180910390f35b6102ca6105a8565b6040516102d79190611495565b60405180910390f35b6102e86105ae565b005b61030460048036038101906102ff9190611611565b61065c565b005b610320600480360381019061031b919061155a565b61095c565b60405161032d9190611495565b60405180910390f35b61033e6109a1565b005b6103486109b4565b60405161035591906114bd565b60405180910390f35b6103666109dc565b6040516103739190611495565b60405180910390f35b6103846109ec565b6040516103919190611360565b60405180910390f35b6103b460048036038101906103af9190611415565b610a7c565b6040516103c1919061146d565b60405180910390f35b6103e460048036038101906103df919061165c565b610a9e565b6040516103f19190611495565b60405180910390f35b610414600480360381019061040f919061155a565b610b20565b005b606060038054610425906116c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610451906116c7565b801561049c5780601f106104735761010080835404028352916020019161049c565b820191905f5260205f20905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b5f5f6104b0610ba4565b90506104bd818585610bab565b600191505092915050565b5f600254905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f610500610ba4565b905061050d858285610bbd565b610518858585610c4f565b60019150509392505050565b60065481565b60085481565b5f6012905090565b610540610d3f565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6009602052805f5260405f205f915054906101000a900460ff1681565b6305a39a8081565b60075481565b6105b6610d3f565b5f6305a39a80600654426105ca9190611724565b6007546105d79190611757565b6105e191906117c5565b90505f600854826105f29190611724565b90505f8111610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d9061183f565b60405180910390fd5b8060085f828254610647919061185d565b925050819055506106583382610dc6565b5050565b5f6006540361069757426006819055506b0295ada6173a18c18e0000006b033b2e3c9fd0803ce80000006106909190611724565b6007819055505b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d906118da565b60405180910390fd5b5f5f90505f5f90505b8383905081101561090a575f84848381811061074e5761074d6118f8565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016107c89190611495565b602060405180830381865afa1580156107e3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108079190611939565b73ffffffffffffffffffffffffffffffffffffffff161461085d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610854906119ae565b60405180910390fd5b60095f8281526020019081526020015f205f9054906101000a900460ff16156108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b290611a16565b60405180910390fd5b600160095f8381526020019081526020015f205f6101000a81548160ff021916908315150217905550694c3ba39c5e4111000000836108fa919061185d565b925050808060010191505061072f565b505f811161094d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109449061183f565b60405180910390fd5b6109573382610dc6565b505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109a9610d3f565b6109b25f610e45565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b6060600480546109fb906116c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a27906116c7565b8015610a725780601f10610a4957610100808354040283529160200191610a72565b820191905f5260205f20905b815481529060010190602001808311610a5557829003601f168201915b5050505050905090565b5f5f610a86610ba4565b9050610a93818585610c4f565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b28610d3f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b8f91906114bd565b60405180910390fd5b610ba181610e45565b50565b5f33905090565b610bb88383836001610f08565b505050565b5f610bc88484610a9e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c495781811015610c3a578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c3193929190611a34565b60405180910390fd5b610c4884848484035f610f08565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cbf575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cb691906114bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2f575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d2691906114bd565b60405180910390fd5b610d3a8383836110d7565b505050565b610d47610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610d656109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610dc457610d88610ba4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dbb91906114bd565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e36575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e2d91906114bd565b60405180910390fd5b610e415f83836110d7565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f78575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f6f91906114bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe8575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610fdf91906114bd565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156110d1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110c89190611495565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611127578060025f82825461111b919061185d565b925050819055506111f5565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111b0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111a793929190611a34565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361123c578060025f8282540392505081905550611286565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112e39190611495565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611332826112f0565b61133c81856112fa565b935061134c81856020860161130a565b61135581611318565b840191505092915050565b5f6020820190508181035f8301526113788184611328565b905092915050565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b182611388565b9050919050565b6113c1816113a7565b81146113cb575f5ffd5b50565b5f813590506113dc816113b8565b92915050565b5f819050919050565b6113f4816113e2565b81146113fe575f5ffd5b50565b5f8135905061140f816113eb565b92915050565b5f5f6040838503121561142b5761142a611380565b5b5f611438858286016113ce565b925050602061144985828601611401565b9150509250929050565b5f8115159050919050565b61146781611453565b82525050565b5f6020820190506114805f83018461145e565b92915050565b61148f816113e2565b82525050565b5f6020820190506114a85f830184611486565b92915050565b6114b7816113a7565b82525050565b5f6020820190506114d05f8301846114ae565b92915050565b5f5f5f606084860312156114ed576114ec611380565b5b5f6114fa868287016113ce565b935050602061150b868287016113ce565b925050604061151c86828701611401565b9150509250925092565b5f60ff82169050919050565b61153b81611526565b82525050565b5f6020820190506115545f830184611532565b92915050565b5f6020828403121561156f5761156e611380565b5b5f61157c848285016113ce565b91505092915050565b5f6020828403121561159a57611599611380565b5b5f6115a784828501611401565b91505092915050565b5f5ffd5b5f5ffd5b5f5ffd5b5f5f83601f8401126115d1576115d06115b0565b5b8235905067ffffffffffffffff8111156115ee576115ed6115b4565b5b60208301915083602082028301111561160a576116096115b8565b5b9250929050565b5f5f6020838503121561162757611626611380565b5b5f83013567ffffffffffffffff81111561164457611643611384565b5b611650858286016115bc565b92509250509250929050565b5f5f6040838503121561167257611671611380565b5b5f61167f858286016113ce565b9250506020611690858286016113ce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116de57607f821691505b6020821081036116f1576116f061169a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61172e826113e2565b9150611739836113e2565b9250828203905081811115611751576117506116f7565b5b92915050565b5f611761826113e2565b915061176c836113e2565b925082820261177a816113e2565b91508282048414831517611791576117906116f7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6117cf826113e2565b91506117da836113e2565b9250826117ea576117e9611798565b5b828204905092915050565b7f4e6f7468696e6720746f20636c61696d000000000000000000000000000000005f82015250565b5f6118296010836112fa565b9150611834826117f5565b602082019050919050565b5f6020820190508181035f8301526118568161181d565b9050919050565b5f611867826113e2565b9150611872836113e2565b925082820190508082111561188a576118896116f7565b5b92915050565b7f4e465420636f6e7472616374206e6f74207365740000000000000000000000005f82015250565b5f6118c46014836112fa565b91506118cf82611890565b602082019050919050565b5f6020820190508181035f8301526118f1816118b8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611933816113b8565b92915050565b5f6020828403121561194e5761194d611380565b5b5f61195b84828501611925565b91505092915050565b7f4e6f74206f776e6572206f66204e4654000000000000000000000000000000005f82015250565b5f6119986010836112fa565b91506119a382611964565b602082019050919050565b5f6020820190508181035f8301526119c58161198c565b9050919050565b7f416c726561647920636c61696d656400000000000000000000000000000000005f82015250565b5f611a00600f836112fa565b9150611a0b826119cc565b602082019050919050565b5f6020820190508181035f830152611a2d816119f4565b9050919050565b5f606082019050611a475f8301866114ae565b611a546020830185611486565b611a616040830184611486565b94935050505056fea2646970667358221220cf7ce1b9d0ab819755baecf8ba909106035d4ea70a312965a1397817c0126f1664736f6c634300081c0033
Deployed Bytecode Sourcemap
31601:1890:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15298:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14107:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31956:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16098:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31803:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31873:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13958:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32067:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31906:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31733:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31837:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33132:356;;;:::i;:::-;;32201:923;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14269:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24728:103;;;:::i;:::-;;24053:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31643:63;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13215:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14592:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14837:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24986:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13005:91;13050:13;13083:5;13076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;:::o;15298:190::-;15371:4;15388:13;15404:12;:10;:12::i;:::-;15388:28;;15427:31;15436:5;15443:7;15452:5;15427:8;:31::i;:::-;15476:4;15469:11;;;15298:190;;;;:::o;14107:99::-;14159:7;14186:12;;14179:19;;14107:99;:::o;31956:30::-;;;;;;;;;;;;;:::o;16098:249::-;16185:4;16202:15;16220:12;:10;:12::i;:::-;16202:30;;16243:37;16259:4;16265:7;16274:5;16243:15;:37::i;:::-;16291:26;16301:4;16307:2;16311:5;16291:9;:26::i;:::-;16335:4;16328:11;;;16098:249;;;;;:::o;31803:27::-;;;;:::o;31873:26::-;;;;:::o;13958:84::-;14007:5;14032:2;14025:9;;13958:84;:::o;32067:126::-;23939:13;:11;:13::i;:::-;32169:16:::1;32151:15;;:34;;;;;;;;;;;;;;;;;;32067:126:::0;:::o;31906:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;31733:52::-;31776:9;31733:52;:::o;31837:29::-;;;;:::o;33132:356::-;23939:13;:11;:13::i;:::-;33193:20:::1;31776:9;33253:12;;33235:15;:30;;;;:::i;:::-;33217:14;;:49;;;;:::i;:::-;33216:70;;;;:::i;:::-;33193:93;;33297:17;33332:11;;33317:12;:26;;;;:::i;:::-;33297:46;;33374:1;33362:9;:13;33354:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;33432:9;33417:11;;:24;;;;;;;:::i;:::-;;;;;;;;33452:28;33458:10;33470:9;33452:5;:28::i;:::-;33172:316;;33132:356::o:0;32201:923::-;32339:1;32323:12;;:17;32319:176;;32372:15;32357:12;:30;;;;32435:25;31682:24;32419:42;;;;:::i;:::-;32402:14;:59;;;;32319:176;32550:1;32523:29;;:15;;;;;;;;;;;:29;;;32515:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32590:22;32615:1;32590:26;;32632:9;32644:1;32632:13;;32627:386;32651:8;;:15;;32647:1;:19;32627:386;;;32688:15;32706:8;;32715:1;32706:11;;;;;;;:::i;:::-;;;;;;;;32688:29;;32785:10;32740:55;;32748:15;;;;;;;;;;;32740:32;;;32773:7;32740:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;32732:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;32840:11;:20;32852:7;32840:20;;;;;;;;;;;;;;;;;;;;;32839:21;32831:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;32920:4;32897:11;:20;32909:7;32897:20;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32957:18;32939:36;;;;;:::i;:::-;;;32673:340;32668:3;;;;;;;32627:386;;;;33050:1;33033:14;:18;33025:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;33083:33;33089:10;33101:14;33083:5;:33::i;:::-;32254:870;32201:923;;:::o;14269:118::-;14334:7;14361:9;:18;14371:7;14361:18;;;;;;;;;;;;;;;;14354:25;;14269:118;;;:::o;24728:103::-;23939:13;:11;:13::i;:::-;24793:30:::1;24820:1;24793:18;:30::i;:::-;24728:103::o:0;24053:87::-;24099:7;24126:6;;;;;;;;;;;24119:13;;24053:87;:::o;31643:63::-;31682:24;31643:63;:::o;13215:95::-;13262:13;13295:7;13288:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13215:95;:::o;14592:182::-;14661:4;14678:13;14694:12;:10;:12::i;:::-;14678:28;;14717:27;14727:5;14734:2;14738:5;14717:9;:27::i;:::-;14762:4;14755:11;;;14592:182;;;;:::o;14837:142::-;14917:7;14944:11;:18;14956:5;14944:18;;;;;;;;;;;;;;;:27;14963:7;14944:27;;;;;;;;;;;;;;;;14937:34;;14837:142;;;;:::o;24986:220::-;23939:13;:11;:13::i;:::-;25091:1:::1;25071:22;;:8;:22;;::::0;25067:93:::1;;25145:1;25117:31;;;;;;;;;;;:::i;:::-;;;;;;;;25067:93;25170:28;25189:8;25170:18;:28::i;:::-;24986:220:::0;:::o;4304:98::-;4357:7;4384:10;4377:17;;4304:98;:::o;20157:130::-;20242:37;20251:5;20258:7;20267:5;20274:4;20242:8;:37::i;:::-;20157:130;;;:::o;21889:487::-;21989:24;22016:25;22026:5;22033:7;22016:9;:25::i;:::-;21989:52;;22076:17;22056:16;:37;22052:317;;22133:5;22114:16;:24;22110:132;;;22193:7;22202:16;22220:5;22166:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22110:132;22285:57;22294:5;22301:7;22329:5;22310:16;:24;22336:5;22285:8;:57::i;:::-;22052:317;21978:398;21889:487;;;:::o;16732:308::-;16832:1;16816:18;;:4;:18;;;16812:88;;16885:1;16858:30;;;;;;;;;;;:::i;:::-;;;;;;;;16812:88;16928:1;16914:16;;:2;:16;;;16910:88;;16983:1;16954:32;;;;;;;;;;;:::i;:::-;;;;;;;;16910:88;17008:24;17016:4;17022:2;17026:5;17008:7;:24::i;:::-;16732:308;;;:::o;24218:166::-;24289:12;:10;:12::i;:::-;24278:23;;:7;:5;:7::i;:::-;:23;;;24274:103;;24352:12;:10;:12::i;:::-;24325:40;;;;;;;;;;;:::i;:::-;;;;;;;;24274:103;24218:166::o;18852:213::-;18942:1;18923:21;;:7;:21;;;18919:93;;18997:1;18968:32;;;;;;;;;;;:::i;:::-;;;;;;;;18919:93;19022:35;19038:1;19042:7;19051:5;19022:7;:35::i;:::-;18852:213;;:::o;25366:191::-;25440:16;25459:6;;;;;;;;;;;25440:25;;25485:8;25476:6;;:17;;;;;;;;;;;;;;;;;;25540:8;25509:40;;25530:8;25509:40;;;;;;;;;;;;25429:128;25366:191;:::o;21154:443::-;21284:1;21267:19;;:5;:19;;;21263:91;;21339:1;21310:32;;;;;;;;;;;:::i;:::-;;;;;;;;21263:91;21387:1;21368:21;;:7;:21;;;21364:92;;21441:1;21413:31;;;;;;;;;;;:::i;:::-;;;;;;;;21364:92;21496:5;21466:11;:18;21478:5;21466:18;;;;;;;;;;;;;;;:27;21485:7;21466:27;;;;;;;;;;;;;;;:35;;;;21516:9;21512:78;;;21563:7;21547:31;;21556:5;21547:31;;;21572:5;21547:31;;;;;;:::i;:::-;;;;;;;;21512:78;21154:443;;;;:::o;17364:1135::-;17470:1;17454:18;;:4;:18;;;17450:552;;17608:5;17592:12;;:21;;;;;;;:::i;:::-;;;;;;;;17450:552;;;17646:19;17668:9;:15;17678:4;17668:15;;;;;;;;;;;;;;;;17646:37;;17716:5;17702:11;:19;17698:117;;;17774:4;17780:11;17793:5;17749:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17698:117;17970:5;17956:11;:19;17938:9;:15;17948:4;17938:15;;;;;;;;;;;;;;;:37;;;;17631:371;17450:552;18032:1;18018:16;;:2;:16;;;18014:435;;18200:5;18184:12;;:21;;;;;;;;;;;18014:435;;;18417:5;18400:9;:13;18410:2;18400:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18014:435;18481:2;18466:25;;18475:4;18466:25;;;18485:5;18466:25;;;;;;:::i;:::-;;;;;;;;17364:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:118::-;3778:24;3796:5;3778:24;:::i;:::-;3773:3;3766:37;3691:118;;:::o;3815:222::-;3908:4;3946:2;3935:9;3931:18;3923:26;;3959:71;4027:1;4016:9;4012:17;4003:6;3959:71;:::i;:::-;3815:222;;;;:::o;4043:619::-;4120:6;4128;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:119;;;4191:79;;:::i;:::-;4153:119;4311:1;4336:53;4381:7;4372:6;4361:9;4357:22;4336:53;:::i;:::-;4326:63;;4282:117;4438:2;4464:53;4509:7;4500:6;4489:9;4485:22;4464:53;:::i;:::-;4454:63;;4409:118;4566:2;4592:53;4637:7;4628:6;4617:9;4613:22;4592:53;:::i;:::-;4582:63;;4537:118;4043:619;;;;;:::o;4668:86::-;4703:7;4743:4;4736:5;4732:16;4721:27;;4668:86;;;:::o;4760:112::-;4843:22;4859:5;4843:22;:::i;:::-;4838:3;4831:35;4760:112;;:::o;4878:214::-;4967:4;5005:2;4994:9;4990:18;4982:26;;5018:67;5082:1;5071:9;5067:17;5058:6;5018:67;:::i;:::-;4878:214;;;;:::o;5098:329::-;5157:6;5206:2;5194:9;5185:7;5181:23;5177:32;5174:119;;;5212:79;;:::i;:::-;5174:119;5332:1;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5303:117;5098:329;;;;:::o;5433:::-;5492:6;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5433:329;;;;:::o;5768:117::-;5877:1;5874;5867:12;5891:117;6000:1;5997;5990:12;6014:117;6123:1;6120;6113:12;6154:568;6227:8;6237:6;6287:3;6280:4;6272:6;6268:17;6264:27;6254:122;;6295:79;;:::i;:::-;6254:122;6408:6;6395:20;6385:30;;6438:18;6430:6;6427:30;6424:117;;;6460:79;;:::i;:::-;6424:117;6574:4;6566:6;6562:17;6550:29;;6628:3;6620:4;6612:6;6608:17;6598:8;6594:32;6591:41;6588:128;;;6635:79;;:::i;:::-;6588:128;6154:568;;;;;:::o;6728:559::-;6814:6;6822;6871:2;6859:9;6850:7;6846:23;6842:32;6839:119;;;6877:79;;:::i;:::-;6839:119;7025:1;7014:9;7010:17;6997:31;7055:18;7047:6;7044:30;7041:117;;;7077:79;;:::i;:::-;7041:117;7190:80;7262:7;7253:6;7242:9;7238:22;7190:80;:::i;:::-;7172:98;;;;6968:312;6728:559;;;;;:::o;7293:474::-;7361:6;7369;7418:2;7406:9;7397:7;7393:23;7389:32;7386:119;;;7424:79;;:::i;:::-;7386:119;7544:1;7569:53;7614:7;7605:6;7594:9;7590:22;7569:53;:::i;:::-;7559:63;;7515:117;7671:2;7697:53;7742:7;7733:6;7722:9;7718:22;7697:53;:::i;:::-;7687:63;;7642:118;7293:474;;;;;:::o;7773:180::-;7821:77;7818:1;7811:88;7918:4;7915:1;7908:15;7942:4;7939:1;7932:15;7959:320;8003:6;8040:1;8034:4;8030:12;8020:22;;8087:1;8081:4;8077:12;8108:18;8098:81;;8164:4;8156:6;8152:17;8142:27;;8098:81;8226:2;8218:6;8215:14;8195:18;8192:38;8189:84;;8245:18;;:::i;:::-;8189:84;8010:269;7959:320;;;:::o;8285:180::-;8333:77;8330:1;8323:88;8430:4;8427:1;8420:15;8454:4;8451:1;8444:15;8471:194;8511:4;8531:20;8549:1;8531:20;:::i;:::-;8526:25;;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8609:1;8606;8602:9;8594:17;;8633:1;8627:4;8624:11;8621:37;;;8638:18;;:::i;:::-;8621:37;8471:194;;;;:::o;8671:410::-;8711:7;8734:20;8752:1;8734:20;:::i;:::-;8729:25;;8768:20;8786:1;8768:20;:::i;:::-;8763:25;;8823:1;8820;8816:9;8845:30;8863:11;8845:30;:::i;:::-;8834:41;;9024:1;9015:7;9011:15;9008:1;9005:22;8985:1;8978:9;8958:83;8935:139;;9054:18;;:::i;:::-;8935:139;8719:362;8671:410;;;;:::o;9087:180::-;9135:77;9132:1;9125:88;9232:4;9229:1;9222:15;9256:4;9253:1;9246:15;9273:185;9313:1;9330:20;9348:1;9330:20;:::i;:::-;9325:25;;9364:20;9382:1;9364:20;:::i;:::-;9359:25;;9403:1;9393:35;;9408:18;;:::i;:::-;9393:35;9450:1;9447;9443:9;9438:14;;9273:185;;;;:::o;9464:166::-;9604:18;9600:1;9592:6;9588:14;9581:42;9464:166;:::o;9636:366::-;9778:3;9799:67;9863:2;9858:3;9799:67;:::i;:::-;9792:74;;9875:93;9964:3;9875:93;:::i;:::-;9993:2;9988:3;9984:12;9977:19;;9636:366;;;:::o;10008:419::-;10174:4;10212:2;10201:9;10197:18;10189:26;;10261:9;10255:4;10251:20;10247:1;10236:9;10232:17;10225:47;10289:131;10415:4;10289:131;:::i;:::-;10281:139;;10008:419;;;:::o;10433:191::-;10473:3;10492:20;10510:1;10492:20;:::i;:::-;10487:25;;10526:20;10544:1;10526:20;:::i;:::-;10521:25;;10569:1;10566;10562:9;10555:16;;10590:3;10587:1;10584:10;10581:36;;;10597:18;;:::i;:::-;10581:36;10433:191;;;;:::o;10630:170::-;10770:22;10766:1;10758:6;10754:14;10747:46;10630:170;:::o;10806:366::-;10948:3;10969:67;11033:2;11028:3;10969:67;:::i;:::-;10962:74;;11045:93;11134:3;11045:93;:::i;:::-;11163:2;11158:3;11154:12;11147:19;;10806:366;;;:::o;11178:419::-;11344:4;11382:2;11371:9;11367:18;11359:26;;11431:9;11425:4;11421:20;11417:1;11406:9;11402:17;11395:47;11459:131;11585:4;11459:131;:::i;:::-;11451:139;;11178:419;;;:::o;11603:180::-;11651:77;11648:1;11641:88;11748:4;11745:1;11738:15;11772:4;11769:1;11762:15;11789:143;11846:5;11877:6;11871:13;11862:22;;11893:33;11920:5;11893:33;:::i;:::-;11789:143;;;;:::o;11938:351::-;12008:6;12057:2;12045:9;12036:7;12032:23;12028:32;12025:119;;;12063:79;;:::i;:::-;12025:119;12183:1;12208:64;12264:7;12255:6;12244:9;12240:22;12208:64;:::i;:::-;12198:74;;12154:128;11938:351;;;;:::o;12295:166::-;12435:18;12431:1;12423:6;12419:14;12412:42;12295:166;:::o;12467:366::-;12609:3;12630:67;12694:2;12689:3;12630:67;:::i;:::-;12623:74;;12706:93;12795:3;12706:93;:::i;:::-;12824:2;12819:3;12815:12;12808:19;;12467:366;;;:::o;12839:419::-;13005:4;13043:2;13032:9;13028:18;13020:26;;13092:9;13086:4;13082:20;13078:1;13067:9;13063:17;13056:47;13120:131;13246:4;13120:131;:::i;:::-;13112:139;;12839:419;;;:::o;13264:165::-;13404:17;13400:1;13392:6;13388:14;13381:41;13264:165;:::o;13435:366::-;13577:3;13598:67;13662:2;13657:3;13598:67;:::i;:::-;13591:74;;13674:93;13763:3;13674:93;:::i;:::-;13792:2;13787:3;13783:12;13776:19;;13435:366;;;:::o;13807:419::-;13973:4;14011:2;14000:9;13996:18;13988:26;;14060:9;14054:4;14050:20;14046:1;14035:9;14031:17;14024:47;14088:131;14214:4;14088:131;:::i;:::-;14080:139;;13807:419;;;:::o;14232:442::-;14381:4;14419:2;14408:9;14404:18;14396:26;;14432:71;14500:1;14489:9;14485:17;14476:6;14432:71;:::i;:::-;14513:72;14581:2;14570:9;14566:18;14557:6;14513:72;:::i;:::-;14595;14663:2;14652:9;14648:18;14639:6;14595:72;:::i;:::-;14232:442;;;;;;:::o
Swarm Source
ipfs://cf7ce1b9d0ab819755baecf8ba909106035d4ea70a312965a1397817c0126f16
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.