Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
77 FGAME
Holders
23
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FGAMELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FoxGame
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-25 */ // 8888888888 .d88888b. Y88b d88P .d8888b. d8888 888b d888 8888888888 // 888 d88P" "Y88b Y88b d88P d88P Y88b d88888 8888b d8888 888 // 888 888 888 Y88o88P 888 888 d88P888 88888b.d88888 888 // 8888888 888 888 Y888P 888 d88P 888 888Y88888P888 8888888 // 888 888 888 d888b 888 88888 d88P 888 888 Y888P 888 888 // 888 888 888 d88888b 888 888 d88P 888 888 Y8P 888 888 // 888 Y88b. .d88P d88P Y88b Y88b d88P d8888888888 888 " 888 888 // 888 "Y88888P" d88P Y88b "Y8888P88 d88P 888 888 888 8888888888 //WL MINTS RESERVED // SPDX-License-Identifier: MIT LICENSE //IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } //IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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/[email protected] /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] /** * @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() { _setOwner(_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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } //Pausable.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } //ERC20.sol pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 value {ERC20} uses, unless this function is * 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } //Fox.sol // File @openzeppelin/contracts/utils/introspection/[email protected] 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/token/ERC721/[email protected] /** * @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/[email protected] /** * @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/token/ERC721/extensions/[email protected] /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] /** * @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/introspection/[email protected] /** * @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/[email protected] /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } //Farm.sol pragma solidity ^0.8.0; abstract contract Farm is Ownable, IERC721Receiver, Pausable { // maximum cunning score for a fox uint8 public constant MAX_CUNNING = 8; // struct to store a stake's token, owner, and earning values struct Stake { uint16 tokenId; uint80 value; address owner; } event TokenStaked(address owner, uint256 tokenId, uint256 value); event SheepClaimed(uint256 tokenId, uint256 earned, bool unstaked); event FoxClaimed(uint256 tokenId, uint256 earned, bool unstaked); // maps tokenId to stake mapping(uint256 => Stake) public Farm; // maps cunning to all Fox stakes with that cunning mapping(uint256 => Stake[]) public pack; // tracks location of each Fox in Pack mapping(uint256 => uint256) public packIndices; // total cunning scores staked uint256 public totalCunningStaked = 0; // any rewards distributed when no foxes are staked uint256 public unaccountedRewards = 0; // amount of $CARROTZ due for each cunning point staked uint256 public carrotzPerCunning = 0; // rabbit earn 10000 $CARROTZ per day uint256 public constant DAILY_CARROTZ_RATE = 50 ether; // rabbit must have 3 days worth of $CARROTZ to unstake or else it's too cold uint256 public constant MINIMUM_TO_EXIT = 3 days; // foxes take a 20% tax on all $CARROTZ claimed uint256 public constant carrotz_CLAIM_TAX_PERCENTAGE = 25; // there will only ever be (roughly) 12 million $CARROTZ earned through staking uint256 public constant MAXIMUM_GLOBAL_CARROTZ = 12000000 ether; // amount of $CARROTZ earned so far uint256 public totalCarrotzEarned; // number of rabbit staked in the farm uint256 public totalSheepStaked; // the last time $CARROTZ was claimed uint256 public lastClaimTimestamp; // emergency rescue to allow unstaking without any checks but without $CARROTZ bool public rescueEnabled = false; /** * @param _fox reference to the Fox NFT contract * @param _carrotz reference to the $CARROTZ token */ } //CARROTZ.sol pragma solidity ^0.8.0; contract CARROTZ is ERC20, Ownable { // a mapping from an address to whether or not it can mint / burn mapping(address => bool) controllers; constructor() ERC20("CARROTZ", "CARROTZ") { } /** * mints $CARROTZ to a recipient * @param to the recipient of the $CARROTZ * @param amount the amount of $CARROTZ to mint */ function mint(address to, uint256 amount) external { require(controllers[msg.sender], "Only controllers can mint"); _mint(to, amount); } /** * burns $CARROTZ from a holder * @param from the holder of the $CARROTZ * @param amount the amount of $CARROTZ to burn */ function burn(address from, uint256 amount) external { require(controllers[msg.sender], "Only controllers can burn"); _burn(from, amount); } /** * enables an address to mint / burn * @param controller the address to enable */ function addController(address controller) external onlyOwner { controllers[controller] = true; } /** * disables an address from minting / burning * @param controller the address to disbale */ function removeController(address controller) external onlyOwner { controllers[controller] = false; } } // File contracts/Fox.sol interface ICarrot is IERC20 { function burnFrom(address account, uint256 amount) external; } contract FoxGame is ERC721, Ownable { uint256 public constant PRICE = 0.069420 * 1e18; uint256 public MAX_SUPPLY = 1000; bool public paused = true; uint256 public minted; mapping(address => uint8) public earlyAccess; string public baseURI; //address address carrotAddress; address _owner; constructor( string memory name_, string memory symbol_, string memory baseURI_ ) ERC721(name_, symbol_) { baseURI = baseURI_; } function totalSupply() public view virtual returns (uint256) { return minted; } function currentCarrotCost() public view returns (uint256) { uint256 _totalSupply = totalSupply(); if (_totalSupply <= 10000) return 1000000000000000000; if (_totalSupply > 10000 && _totalSupply <= 20000) return 1000000000000000000; if (_totalSupply > 20000 && _totalSupply <= 30000) return 2000000000000000000; if (_totalSupply > 30000 && _totalSupply <= 40000) return 3000000000000000000; if (_totalSupply > 40000 && _totalSupply <= 500000) return 4000000000000000000; revert(); } function mintInternal() internal { uint256 _totalSupply = totalSupply(); require(_totalSupply < MAX_SUPPLY); uint256 thisTokenId = _totalSupply; _mint(msg.sender, thisTokenId); } function MINT_PublicSale(uint8 amount) public payable { require(amount > 0, "Amount must be more than 0"); require(amount <= 10, "Amount must be 10 or less"); require(msg.value == PRICE * amount, "Ether value sent is not correct"); require( minted + amount <= MAX_SUPPLY, "Sold out!" ); for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, ++minted); } } function MINT_ReservedForWhitelist(uint8 amount) public payable { require(!paused); require(amount > 0, "Amount must be more than 0"); require(amount <= 10, "Amount must be 10 or less"); require(msg.value == PRICE * amount, "Ether value sent is not correct"); require( minted + amount <= MAX_SUPPLY, "Sold out!" ); for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, ++minted); } } function MINT_OwnerFreeMint(uint8 amount) public payable { require(amount > 0, "Amount must be more than 0"); require(amount <= 2, "Amount must be 2 or less"); require( minted + amount <= 75, "Sold out!" ); for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, ++minted); } } function withdraw(address payable recipient) public onlyOwner { require(address(this).balance > 0, "No contract balance"); recipient.transfer(address(this).balance); } function setBaseURI(string memory baseURI_) public onlyOwner { baseURI = baseURI_; } function setCarrotAddress(address _carrotAddress) public onlyOwner { carrotAddress = _carrotAddress; } function Mint_With$Carrot() public { //Burn this much carrot ICarrot(carrotAddress).burnFrom(msg.sender, currentCarrotCost()); return mintInternal(); } function pause(bool _state) public onlyOwner { paused = _state; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { MAX_SUPPLY = _newmaxMintAmount; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"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":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"MINT_OwnerFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"MINT_PublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"MINT_ReservedForWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Mint_With$Carrot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentCarrotCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyAccess","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_carrotAddress","type":"address"}],"name":"setCarrotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e86007556008805460ff191660011790553480156200002457600080fd5b50604051620025283803806200252883398101604081905262000047916200027b565b8251839083906200006090600090602085019062000108565b5080516200007690600190602084019062000108565b505050620000936200008d620000b260201b60201c565b620000b6565b8051620000a890600b90602084019062000108565b5050505062000349565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000116906200030c565b90600052602060002090601f0160209004810192826200013a576000855562000185565b82601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b5b8082111562000193576000815560010162000198565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d657600080fd5b81516001600160401b0380821115620001f357620001f3620001ae565b604051601f8301601f19908116603f011681019082821181831017156200021e576200021e620001ae565b816040528381526020925086838588010111156200023b57600080fd5b600091505b838210156200025f578582018301518183018401529082019062000240565b83821115620002715760008385830101525b9695505050505050565b6000806000606084860312156200029157600080fd5b83516001600160401b0380821115620002a957600080fd5b620002b787838801620001c4565b94506020860151915080821115620002ce57600080fd5b620002dc87838801620001c4565b93506040860151915080821115620002f357600080fd5b506200030286828701620001c4565b9150509250925092565b600181811c908216806200032157607f821691505b602082108114156200034357634e487b7160e01b600052602260045260246000fd5b50919050565b6121cf80620003596000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063dccb32871161006f578063dccb328714610531578063e985e9c514610551578063f04a67ae1461059a578063f2fde38b146105dc578063fe8c0bcf146105fc57600080fd5b8063a22cb465146104be578063b88d4fde146104de578063bc3124e6146104fe578063c87b56dd1461051157600080fd5b80638d859f3e116100dc5780638d859f3e1461045b5780638da5cb5b1461047657806395d89b4114610494578063a20b8644146104a957600080fd5b806370a08231146103f1578063715018a6146104115780637860bda6146104265780637f00c7a61461043b57600080fd5b806342842e0e116101855780635c975abb116101545780635c975abb1461038f5780635eb620e2146103a95780636352211e146103bc5780636c0360eb146103dc57600080fd5b806342842e0e146103195780634f02c4201461033957806351cff8d91461034f57806355f804b31461036f57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e357806332cb6b0c1461030357600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b7a565b61060f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611bac565b610661565b005b34801561025657600080fd5b5061025f6106a7565b60405161021f9190611c1f565b34801561027857600080fd5b5061028c610287366004611c32565b610739565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611c60565b6107ce565b3480156102d057600080fd5b506009545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611c8c565b6108e4565b34801561030f57600080fd5b506102d560075481565b34801561032557600080fd5b50610248610334366004611c8c565b610915565b34801561034557600080fd5b506102d560095481565b34801561035b57600080fd5b5061024861036a366004611ccd565b610930565b34801561037b57600080fd5b5061024861038a366004611d76565b6109d9565b34801561039b57600080fd5b506008546102139060ff1681565b6102486103b7366004611dbf565b610a16565b3480156103c857600080fd5b5061028c6103d7366004611c32565b610b5a565b3480156103e857600080fd5b5061025f610bd1565b3480156103fd57600080fd5b506102d561040c366004611ccd565b610c5f565b34801561041d57600080fd5b50610248610ce6565b34801561043257600080fd5b506102d5610d1c565b34801561044757600080fd5b50610248610456366004611c32565b610ddf565b34801561046757600080fd5b506102d566f6a11f484ec00081565b34801561048257600080fd5b506006546001600160a01b031661028c565b3480156104a057600080fd5b5061025f610e0e565b3480156104b557600080fd5b50610248610e1d565b3480156104ca57600080fd5b506102486104d9366004611de2565b610e9d565b3480156104ea57600080fd5b506102486104f9366004611e17565b610f62565b61024861050c366004611dbf565b610f9a565b34801561051d57600080fd5b5061025f61052c366004611c32565b611075565b34801561053d57600080fd5b5061024861054c366004611ccd565b611150565b34801561055d57600080fd5b5061021361056c366004611e97565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a657600080fd5b506105ca6105b5366004611ccd565b600a6020526000908152604090205460ff1681565b60405160ff909116815260200161021f565b3480156105e857600080fd5b506102486105f7366004611ccd565b61119c565b61024861060a366004611dbf565b611237565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106945760405162461bcd60e51b815260040161068b90611ed0565b60405180910390fd5b6008805460ff1916911515919091179055565b6060600080546106b690611f05565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290611f05565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068b565b506000908152600460205260409020546001600160a01b031690565b60006107d982610b5a565b9050806001600160a01b0316836001600160a01b031614156108475760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068b565b336001600160a01b03821614806108635750610863813361056c565b6108d55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068b565b6108df8383611381565b505050565b6108ee33826113ef565b61090a5760405162461bcd60e51b815260040161068b90611f40565b6108df8383836114e6565b6108df83838360405180602001604052806000815250610f62565b6006546001600160a01b0316331461095a5760405162461bcd60e51b815260040161068b90611ed0565b600047116109a05760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b604482015260640161068b565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156109d5573d6000803e3d6000fd5b5050565b6006546001600160a01b03163314610a035760405162461bcd60e51b815260040161068b90611ed0565b80516109d590600b906020840190611acb565b60008160ff1611610a395760405162461bcd60e51b815260040161068b90611f91565b600a8160ff161115610a895760405162461bcd60e51b8152602060048201526019602482015278416d6f756e74206d757374206265203130206f72206c65737360381b604482015260640161068b565b610a9d60ff821666f6a11f484ec000611fde565b3414610aeb5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161068b565b6007548160ff16600954610aff9190611ffd565b1115610b1d5760405162461bcd60e51b815260040161068b90612015565b60005b8160ff168110156109d557610b4833600960008154610b3e90612038565b9182905550611686565b80610b5281612038565b915050610b20565b6000818152600260205260408120546001600160a01b03168061065b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068b565b600b8054610bde90611f05565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a90611f05565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b505050505081565b60006001600160a01b038216610cca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d105760405162461bcd60e51b815260040161068b90611ed0565b610d1a60006116a0565b565b600080610d2860095490565b90506127108111610d4257670de0b6b3a764000091505090565b61271081118015610d555750614e208111155b15610d6957670de0b6b3a764000091505090565b614e2081118015610d7c57506175308111155b15610d9057671bc16d674ec8000091505090565b61753081118015610da35750619c408111155b15610db7576729a2241af62c000091505090565b619c4081118015610dcb57506207a1208111155b156101ee57673782dace9d90000091505090565b6006546001600160a01b03163314610e095760405162461bcd60e51b815260040161068b90611ed0565b600755565b6060600180546106b690611f05565b600c546001600160a01b03166379cc679033610e37610d1c565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610e7d57600080fd5b505af1158015610e91573d6000803e3d6000fd5b50505050610d1a6116f2565b6001600160a01b038216331415610ef65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f6c33836113ef565b610f885760405162461bcd60e51b815260040161068b90611f40565b610f9484848484611718565b50505050565b60008160ff1611610fbd5760405162461bcd60e51b815260040161068b90611f91565b60028160ff1611156110115760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206d7573742062652032206f72206c6573730000000000000000604482015260640161068b565b604b8160ff166009546110249190611ffd565b11156110425760405162461bcd60e51b815260040161068b90612015565b60005b8160ff168110156109d55761106333600960008154610b3e90612038565b8061106d81612038565b915050611045565b6000818152600260205260409020546060906001600160a01b03166110f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068b565b60006110fe61174b565b9050600081511161111e5760405180602001604052806000815250611149565b806111288461175a565b604051602001611139929190612053565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461117a5760405162461bcd60e51b815260040161068b90611ed0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146111c65760405162461bcd60e51b815260040161068b90611ed0565b6001600160a01b03811661122b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b611234816116a0565b50565b60085460ff161561124757600080fd5b60008160ff161161126a5760405162461bcd60e51b815260040161068b90611f91565b600a8160ff1611156112ba5760405162461bcd60e51b8152602060048201526019602482015278416d6f756e74206d757374206265203130206f72206c65737360381b604482015260640161068b565b6112ce60ff821666f6a11f484ec000611fde565b341461131c5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161068b565b6007548160ff166009546113309190611ffd565b111561134e5760405162461bcd60e51b815260040161068b90612015565b60005b8160ff168110156109d55761136f33600960008154610b3e90612038565b8061137981612038565b915050611351565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b682610b5a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068b565b600061147383610b5a565b9050806001600160a01b0316846001600160a01b031614806114ae5750836001600160a01b03166114a384610739565b6001600160a01b0316145b806114de57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f982610b5a565b6001600160a01b0316146115615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068b565b6001600160a01b0382166115c35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068b565b6115ce600082611381565b6001600160a01b03831660009081526003602052604081208054600192906115f7908490612082565b90915550506001600160a01b0382166000908152600360205260408120805460019290611625908490611ffd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109d5828260405180602001604052806000815250611858565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116fd60095490565b9050600754811061170d57600080fd5b806109d5338261188b565b6117238484846114e6565b61172f848484846119cd565b610f945760405162461bcd60e51b815260040161068b90612099565b6060600b80546106b690611f05565b60608161177e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117a8578061179281612038565b91506117a19050600a83612101565b9150611782565b60008167ffffffffffffffff8111156117c3576117c3611cea565b6040519080825280601f01601f1916602001820160405280156117ed576020820181803683370190505b5090505b84156114de57611802600183612082565b915061180f600a86612115565b61181a906030611ffd565b60f81b81838151811061182f5761182f612129565b60200101906001600160f81b031916908160001a905350611851600a86612101565b94506117f1565b611862838361188b565b61186f60008484846119cd565b6108df5760405162461bcd60e51b815260040161068b90612099565b6001600160a01b0382166118e15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068b565b6000818152600260205260409020546001600160a01b0316156119465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068b565b6001600160a01b038216600090815260036020526040812080546001929061196f908490611ffd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611ac057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a1190339089908890889060040161213f565b6020604051808303816000875af1925050508015611a4c575060408051601f3d908101601f19168201909252611a499181019061217c565b60015b611aa6573d808015611a7a576040519150601f19603f3d011682016040523d82523d6000602084013e611a7f565b606091505b508051611a9e5760405162461bcd60e51b815260040161068b90612099565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114de565b506001949350505050565b828054611ad790611f05565b90600052602060002090601f016020900481019282611af95760008555611b3f565b82601f10611b1257805160ff1916838001178555611b3f565b82800160010185558215611b3f579182015b82811115611b3f578251825591602001919060010190611b24565b50611b4b929150611b4f565b5090565b5b80821115611b4b5760008155600101611b50565b6001600160e01b03198116811461123457600080fd5b600060208284031215611b8c57600080fd5b813561114981611b64565b80358015158114611ba757600080fd5b919050565b600060208284031215611bbe57600080fd5b61114982611b97565b60005b83811015611be2578181015183820152602001611bca565b83811115610f945750506000910152565b60008151808452611c0b816020860160208601611bc7565b601f01601f19169290920160200192915050565b6020815260006111496020830184611bf3565b600060208284031215611c4457600080fd5b5035919050565b6001600160a01b038116811461123457600080fd5b60008060408385031215611c7357600080fd5b8235611c7e81611c4b565b946020939093013593505050565b600080600060608486031215611ca157600080fd5b8335611cac81611c4b565b92506020840135611cbc81611c4b565b929592945050506040919091013590565b600060208284031215611cdf57600080fd5b813561114981611c4b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1b57611d1b611cea565b604051601f8501601f19908116603f01168101908282118183101715611d4357611d43611cea565b81604052809350858152868686011115611d5c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8857600080fd5b813567ffffffffffffffff811115611d9f57600080fd5b8201601f81018413611db057600080fd5b6114de84823560208401611d00565b600060208284031215611dd157600080fd5b813560ff8116811461114957600080fd5b60008060408385031215611df557600080fd5b8235611e0081611c4b565b9150611e0e60208401611b97565b90509250929050565b60008060008060808587031215611e2d57600080fd5b8435611e3881611c4b565b93506020850135611e4881611c4b565b925060408501359150606085013567ffffffffffffffff811115611e6b57600080fd5b8501601f81018713611e7c57600080fd5b611e8b87823560208401611d00565b91505092959194509250565b60008060408385031215611eaa57600080fd5b8235611eb581611c4b565b91506020830135611ec581611c4b565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f1957607f821691505b60208210811415611f3a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601a908201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ff857611ff8611fc8565b500290565b6000821982111561201057612010611fc8565b500190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b600060001982141561204c5761204c611fc8565b5060010190565b60008351612065818460208801611bc7565b835190830190612079818360208801611bc7565b01949350505050565b60008282101561209457612094611fc8565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612110576121106120eb565b500490565b600082612124576121246120eb565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061217290830184611bf3565b9695505050505050565b60006020828403121561218e57600080fd5b815161114981611b6456fea264697066735822122056a4863f749fe3ee2f6f2055e66035164a912a2a5745026e3c8ce4c65af526b864736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008466f782047616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054647414d45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58447a6b753764633147416d46574c42505047516a6a616a6d6d6b3941594b7a50476b717931794b4364594c2f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063dccb32871161006f578063dccb328714610531578063e985e9c514610551578063f04a67ae1461059a578063f2fde38b146105dc578063fe8c0bcf146105fc57600080fd5b8063a22cb465146104be578063b88d4fde146104de578063bc3124e6146104fe578063c87b56dd1461051157600080fd5b80638d859f3e116100dc5780638d859f3e1461045b5780638da5cb5b1461047657806395d89b4114610494578063a20b8644146104a957600080fd5b806370a08231146103f1578063715018a6146104115780637860bda6146104265780637f00c7a61461043b57600080fd5b806342842e0e116101855780635c975abb116101545780635c975abb1461038f5780635eb620e2146103a95780636352211e146103bc5780636c0360eb146103dc57600080fd5b806342842e0e146103195780634f02c4201461033957806351cff8d91461034f57806355f804b31461036f57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e357806332cb6b0c1461030357600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b7a565b61060f565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611bac565b610661565b005b34801561025657600080fd5b5061025f6106a7565b60405161021f9190611c1f565b34801561027857600080fd5b5061028c610287366004611c32565b610739565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611c60565b6107ce565b3480156102d057600080fd5b506009545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611c8c565b6108e4565b34801561030f57600080fd5b506102d560075481565b34801561032557600080fd5b50610248610334366004611c8c565b610915565b34801561034557600080fd5b506102d560095481565b34801561035b57600080fd5b5061024861036a366004611ccd565b610930565b34801561037b57600080fd5b5061024861038a366004611d76565b6109d9565b34801561039b57600080fd5b506008546102139060ff1681565b6102486103b7366004611dbf565b610a16565b3480156103c857600080fd5b5061028c6103d7366004611c32565b610b5a565b3480156103e857600080fd5b5061025f610bd1565b3480156103fd57600080fd5b506102d561040c366004611ccd565b610c5f565b34801561041d57600080fd5b50610248610ce6565b34801561043257600080fd5b506102d5610d1c565b34801561044757600080fd5b50610248610456366004611c32565b610ddf565b34801561046757600080fd5b506102d566f6a11f484ec00081565b34801561048257600080fd5b506006546001600160a01b031661028c565b3480156104a057600080fd5b5061025f610e0e565b3480156104b557600080fd5b50610248610e1d565b3480156104ca57600080fd5b506102486104d9366004611de2565b610e9d565b3480156104ea57600080fd5b506102486104f9366004611e17565b610f62565b61024861050c366004611dbf565b610f9a565b34801561051d57600080fd5b5061025f61052c366004611c32565b611075565b34801561053d57600080fd5b5061024861054c366004611ccd565b611150565b34801561055d57600080fd5b5061021361056c366004611e97565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a657600080fd5b506105ca6105b5366004611ccd565b600a6020526000908152604090205460ff1681565b60405160ff909116815260200161021f565b3480156105e857600080fd5b506102486105f7366004611ccd565b61119c565b61024861060a366004611dbf565b611237565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106945760405162461bcd60e51b815260040161068b90611ed0565b60405180910390fd5b6008805460ff1916911515919091179055565b6060600080546106b690611f05565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290611f05565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068b565b506000908152600460205260409020546001600160a01b031690565b60006107d982610b5a565b9050806001600160a01b0316836001600160a01b031614156108475760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068b565b336001600160a01b03821614806108635750610863813361056c565b6108d55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068b565b6108df8383611381565b505050565b6108ee33826113ef565b61090a5760405162461bcd60e51b815260040161068b90611f40565b6108df8383836114e6565b6108df83838360405180602001604052806000815250610f62565b6006546001600160a01b0316331461095a5760405162461bcd60e51b815260040161068b90611ed0565b600047116109a05760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b604482015260640161068b565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156109d5573d6000803e3d6000fd5b5050565b6006546001600160a01b03163314610a035760405162461bcd60e51b815260040161068b90611ed0565b80516109d590600b906020840190611acb565b60008160ff1611610a395760405162461bcd60e51b815260040161068b90611f91565b600a8160ff161115610a895760405162461bcd60e51b8152602060048201526019602482015278416d6f756e74206d757374206265203130206f72206c65737360381b604482015260640161068b565b610a9d60ff821666f6a11f484ec000611fde565b3414610aeb5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161068b565b6007548160ff16600954610aff9190611ffd565b1115610b1d5760405162461bcd60e51b815260040161068b90612015565b60005b8160ff168110156109d557610b4833600960008154610b3e90612038565b9182905550611686565b80610b5281612038565b915050610b20565b6000818152600260205260408120546001600160a01b03168061065b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068b565b600b8054610bde90611f05565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a90611f05565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b505050505081565b60006001600160a01b038216610cca5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d105760405162461bcd60e51b815260040161068b90611ed0565b610d1a60006116a0565b565b600080610d2860095490565b90506127108111610d4257670de0b6b3a764000091505090565b61271081118015610d555750614e208111155b15610d6957670de0b6b3a764000091505090565b614e2081118015610d7c57506175308111155b15610d9057671bc16d674ec8000091505090565b61753081118015610da35750619c408111155b15610db7576729a2241af62c000091505090565b619c4081118015610dcb57506207a1208111155b156101ee57673782dace9d90000091505090565b6006546001600160a01b03163314610e095760405162461bcd60e51b815260040161068b90611ed0565b600755565b6060600180546106b690611f05565b600c546001600160a01b03166379cc679033610e37610d1c565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610e7d57600080fd5b505af1158015610e91573d6000803e3d6000fd5b50505050610d1a6116f2565b6001600160a01b038216331415610ef65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f6c33836113ef565b610f885760405162461bcd60e51b815260040161068b90611f40565b610f9484848484611718565b50505050565b60008160ff1611610fbd5760405162461bcd60e51b815260040161068b90611f91565b60028160ff1611156110115760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206d7573742062652032206f72206c6573730000000000000000604482015260640161068b565b604b8160ff166009546110249190611ffd565b11156110425760405162461bcd60e51b815260040161068b90612015565b60005b8160ff168110156109d55761106333600960008154610b3e90612038565b8061106d81612038565b915050611045565b6000818152600260205260409020546060906001600160a01b03166110f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068b565b60006110fe61174b565b9050600081511161111e5760405180602001604052806000815250611149565b806111288461175a565b604051602001611139929190612053565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461117a5760405162461bcd60e51b815260040161068b90611ed0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146111c65760405162461bcd60e51b815260040161068b90611ed0565b6001600160a01b03811661122b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b611234816116a0565b50565b60085460ff161561124757600080fd5b60008160ff161161126a5760405162461bcd60e51b815260040161068b90611f91565b600a8160ff1611156112ba5760405162461bcd60e51b8152602060048201526019602482015278416d6f756e74206d757374206265203130206f72206c65737360381b604482015260640161068b565b6112ce60ff821666f6a11f484ec000611fde565b341461131c5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161068b565b6007548160ff166009546113309190611ffd565b111561134e5760405162461bcd60e51b815260040161068b90612015565b60005b8160ff168110156109d55761136f33600960008154610b3e90612038565b8061137981612038565b915050611351565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b682610b5a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068b565b600061147383610b5a565b9050806001600160a01b0316846001600160a01b031614806114ae5750836001600160a01b03166114a384610739565b6001600160a01b0316145b806114de57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f982610b5a565b6001600160a01b0316146115615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068b565b6001600160a01b0382166115c35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068b565b6115ce600082611381565b6001600160a01b03831660009081526003602052604081208054600192906115f7908490612082565b90915550506001600160a01b0382166000908152600360205260408120805460019290611625908490611ffd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109d5828260405180602001604052806000815250611858565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116fd60095490565b9050600754811061170d57600080fd5b806109d5338261188b565b6117238484846114e6565b61172f848484846119cd565b610f945760405162461bcd60e51b815260040161068b90612099565b6060600b80546106b690611f05565b60608161177e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117a8578061179281612038565b91506117a19050600a83612101565b9150611782565b60008167ffffffffffffffff8111156117c3576117c3611cea565b6040519080825280601f01601f1916602001820160405280156117ed576020820181803683370190505b5090505b84156114de57611802600183612082565b915061180f600a86612115565b61181a906030611ffd565b60f81b81838151811061182f5761182f612129565b60200101906001600160f81b031916908160001a905350611851600a86612101565b94506117f1565b611862838361188b565b61186f60008484846119cd565b6108df5760405162461bcd60e51b815260040161068b90612099565b6001600160a01b0382166118e15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068b565b6000818152600260205260409020546001600160a01b0316156119465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068b565b6001600160a01b038216600090815260036020526040812080546001929061196f908490611ffd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611ac057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a1190339089908890889060040161213f565b6020604051808303816000875af1925050508015611a4c575060408051601f3d908101601f19168201909252611a499181019061217c565b60015b611aa6573d808015611a7a576040519150601f19603f3d011682016040523d82523d6000602084013e611a7f565b606091505b508051611a9e5760405162461bcd60e51b815260040161068b90612099565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114de565b506001949350505050565b828054611ad790611f05565b90600052602060002090601f016020900481019282611af95760008555611b3f565b82601f10611b1257805160ff1916838001178555611b3f565b82800160010185558215611b3f579182015b82811115611b3f578251825591602001919060010190611b24565b50611b4b929150611b4f565b5090565b5b80821115611b4b5760008155600101611b50565b6001600160e01b03198116811461123457600080fd5b600060208284031215611b8c57600080fd5b813561114981611b64565b80358015158114611ba757600080fd5b919050565b600060208284031215611bbe57600080fd5b61114982611b97565b60005b83811015611be2578181015183820152602001611bca565b83811115610f945750506000910152565b60008151808452611c0b816020860160208601611bc7565b601f01601f19169290920160200192915050565b6020815260006111496020830184611bf3565b600060208284031215611c4457600080fd5b5035919050565b6001600160a01b038116811461123457600080fd5b60008060408385031215611c7357600080fd5b8235611c7e81611c4b565b946020939093013593505050565b600080600060608486031215611ca157600080fd5b8335611cac81611c4b565b92506020840135611cbc81611c4b565b929592945050506040919091013590565b600060208284031215611cdf57600080fd5b813561114981611c4b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1b57611d1b611cea565b604051601f8501601f19908116603f01168101908282118183101715611d4357611d43611cea565b81604052809350858152868686011115611d5c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8857600080fd5b813567ffffffffffffffff811115611d9f57600080fd5b8201601f81018413611db057600080fd5b6114de84823560208401611d00565b600060208284031215611dd157600080fd5b813560ff8116811461114957600080fd5b60008060408385031215611df557600080fd5b8235611e0081611c4b565b9150611e0e60208401611b97565b90509250929050565b60008060008060808587031215611e2d57600080fd5b8435611e3881611c4b565b93506020850135611e4881611c4b565b925060408501359150606085013567ffffffffffffffff811115611e6b57600080fd5b8501601f81018713611e7c57600080fd5b611e8b87823560208401611d00565b91505092959194509250565b60008060408385031215611eaa57600080fd5b8235611eb581611c4b565b91506020830135611ec581611c4b565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f1957607f821691505b60208210811415611f3a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601a908201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ff857611ff8611fc8565b500290565b6000821982111561201057612010611fc8565b500190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b600060001982141561204c5761204c611fc8565b5060010190565b60008351612065818460208801611bc7565b835190830190612079818360208801611bc7565b01949350505050565b60008282101561209457612094611fc8565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612110576121106120eb565b500490565b600082612124576121246120eb565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061217290830184611bf3565b9695505050505050565b60006020828403121561218e57600080fd5b815161114981611b6456fea264697066735822122056a4863f749fe3ee2f6f2055e66035164a912a2a5745026e3c8ce4c65af526b864736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008466f782047616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054647414d45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58447a6b753764633147416d46574c42505047516a6a616a6d6d6b3941594b7a50476b717931794b4364594c2f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Fox Game
Arg [1] : symbol_ (string): FGAME
Arg [2] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmXDzku7dc1GAmFWLBPPGQjjajmmk9AYKzPGkqy1yKCdYL/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 466f782047616d65000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4647414d45000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d58447a6b753764633147416d46574c42505047516a6a616a6d6d6b39
Arg [10] : 41594b7a50476b717931794b4364594c2f000000000000000000000000000000
Deployed Bytecode Sourcemap
58529:3823:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41900:355;;;;;;;;;;-1:-1:-1;41900:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;41900:355:0;;;;;;;;62041:73;;;;;;;;;;-1:-1:-1;62041:73:0;;;;;:::i;:::-;;:::i;:::-;;43069:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44764:308::-;;;;;;;;;;-1:-1:-1;44764:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;44764:308:0;1878:203:1;44287:411:0;;;;;;;;;;-1:-1:-1;44287:411:0;;;;;:::i;:::-;;:::i;59068:93::-;;;;;;;;;;-1:-1:-1;59147:6:0;;59068:93;;;2688:25:1;;;2676:2;2661:18;59068:93:0;2542:177:1;45823:376:0;;;;;;;;;;-1:-1:-1;45823:376:0;;;;;:::i;:::-;;:::i;58626:32::-;;;;;;;;;;;;;;;;46270:185;;;;;;;;;;-1:-1:-1;46270:185:0;;;;;:::i;:::-;;:::i;58701:21::-;;;;;;;;;;;;;;;;61405:190;;;;;;;;;;-1:-1:-1;61405:190:0;;;;;:::i;:::-;;:::i;61603:98::-;;;;;;;;;;-1:-1:-1;61603:98:0;;;;;:::i;:::-;;:::i;58669:25::-;;;;;;;;;;-1:-1:-1;58669:25:0;;;;;;;;60016:471;;;;;;:::i;:::-;;:::i;42676:326::-;;;;;;;;;;-1:-1:-1;42676:326:0;;;;;:::i;:::-;;:::i;58780:21::-;;;;;;;;;;;;;:::i;42319:295::-;;;;;;;;;;-1:-1:-1;42319:295:0;;;;;:::i;:::-;;:::i;6674:94::-;;;;;;;;;;;;;:::i;59167:606::-;;;;;;;;;;;;;:::i;62120:113::-;;;;;;;;;;-1:-1:-1;62120:113:0;;;;;:::i;:::-;;:::i;58572:47::-;;;;;;;;;;;;58604:15;58572:47;;6023:87;;;;;;;;;;-1:-1:-1;6096:6:0;;-1:-1:-1;;;;;6096:6:0;6023:87;;43238:104;;;;;;;;;;;;;:::i;61840:191::-;;;;;;;;;;;;;:::i;45144:327::-;;;;;;;;;;-1:-1:-1;45144:327:0;;;;;:::i;:::-;;:::i;46526:365::-;;;;;;;;;;-1:-1:-1;46526:365:0;;;;;:::i;:::-;;:::i;61015:382::-;;;;;;:::i;:::-;;:::i;43413:468::-;;;;;;;;;;-1:-1:-1;43413:468:0;;;;;:::i;:::-;;:::i;61713:116::-;;;;;;;;;;-1:-1:-1;61713:116:0;;;;;:::i;:::-;;:::i;45542:214::-;;;;;;;;;;-1:-1:-1;45542:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;45713:25:0;;;45684:4;45713:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45542:214;58729:44;;;;;;;;;;-1:-1:-1;58729:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6881:4:1;6869:17;;;6851:36;;6839:2;6824:18;58729:44:0;6709:184:1;6923:229:0;;;;;;;;;;-1:-1:-1;6923:229:0;;;;;:::i;:::-;;:::i;60499:508::-;;;;;;:::i;:::-;;:::i;41900:355::-;42047:4;-1:-1:-1;;;;;;42089:40:0;;-1:-1:-1;;;42089:40:0;;:105;;-1:-1:-1;;;;;;;42146:48:0;;-1:-1:-1;;;42146:48:0;42089:105;:158;;;-1:-1:-1;;;;;;;;;;40552:40:0;;;42211:36;42069:178;41900:355;-1:-1:-1;;41900:355:0:o;62041:73::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;;;;;;;;;62093:6:::1;:15:::0;;-1:-1:-1;;62093:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62041:73::o;43069:100::-;43123:13;43156:5;43149:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43069:100;:::o;44764:308::-;44885:7;48527:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48527:16:0;44910:110;;;;-1:-1:-1;;;44910:110:0;;7846:2:1;44910:110:0;;;7828:21:1;7885:2;7865:18;;;7858:30;7924:34;7904:18;;;7897:62;-1:-1:-1;;;7975:18:1;;;7968:42;8027:19;;44910:110:0;7644:408:1;44910:110:0;-1:-1:-1;45040:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45040:24:0;;44764:308::o;44287:411::-;44368:13;44384:23;44399:7;44384:14;:23::i;:::-;44368:39;;44432:5;-1:-1:-1;;;;;44426:11:0;:2;-1:-1:-1;;;;;44426:11:0;;;44418:57;;;;-1:-1:-1;;;44418:57:0;;8259:2:1;44418:57:0;;;8241:21:1;8298:2;8278:18;;;8271:30;8337:34;8317:18;;;8310:62;-1:-1:-1;;;8388:18:1;;;8381:31;8429:19;;44418:57:0;8057:397:1;44418:57:0;4887:10;-1:-1:-1;;;;;44510:21:0;;;;:62;;-1:-1:-1;44535:37:0;44552:5;4887:10;45542:214;:::i;44535:37::-;44488:168;;;;-1:-1:-1;;;44488:168:0;;8661:2:1;44488:168:0;;;8643:21:1;8700:2;8680:18;;;8673:30;8739:34;8719:18;;;8712:62;8810:26;8790:18;;;8783:54;8854:19;;44488:168:0;8459:420:1;44488:168:0;44669:21;44678:2;44682:7;44669:8;:21::i;:::-;44357:341;44287:411;;:::o;45823:376::-;46032:41;4887:10;46065:7;46032:18;:41::i;:::-;46010:140;;;;-1:-1:-1;;;46010:140:0;;;;;;;:::i;:::-;46163:28;46173:4;46179:2;46183:7;46163:9;:28::i;46270:185::-;46408:39;46425:4;46431:2;46435:7;46408:39;;;;;;;;;;;;:16;:39::i;61405:190::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;61510:1:::1;61486:21;:25;61478:57;;;::::0;-1:-1:-1;;;61478:57:0;;9504:2:1;61478:57:0::1;::::0;::::1;9486:21:1::0;9543:2;9523:18;;;9516:30;-1:-1:-1;;;9562:18:1;;;9555:49;9621:18;;61478:57:0::1;9302:343:1::0;61478:57:0::1;61546:41;::::0;-1:-1:-1;;;;;61546:18:0;::::1;::::0;61565:21:::1;61546:41:::0;::::1;;;::::0;::::1;::::0;;;61565:21;61546:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61405:190:::0;:::o;61603:98::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;61675:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;60016:471::-:0;60098:1;60089:6;:10;;;60081:49;;;;-1:-1:-1;;;60081:49:0;;;;;;;:::i;:::-;60159:2;60149:6;:12;;;;60141:50;;;;-1:-1:-1;;;60141:50:0;;10207:2:1;60141:50:0;;;10189:21:1;10246:2;10226:18;;;10219:30;-1:-1:-1;;;10265:18:1;;;10258:55;10330:18;;60141:50:0;10005:349:1;60141:50:0;60223:14;;;;58604:15;60223:14;:::i;:::-;60210:9;:27;60202:71;;;;-1:-1:-1;;;60202:71:0;;10866:2:1;60202:71:0;;;10848:21:1;10905:2;10885:18;;;10878:30;10944:33;10924:18;;;10917:61;10995:18;;60202:71:0;10664:355:1;60202:71:0;60325:10;;60315:6;60306:15;;:6;;:15;;;;:::i;:::-;:29;;60284:88;;;;-1:-1:-1;;;60284:88:0;;;;;;;:::i;:::-;60390:9;60385:95;60409:6;60405:10;;:1;:10;60385:95;;;60437:31;60447:10;60461:6;;60459:8;;;;;:::i;:::-;;;;;-1:-1:-1;60437:9:0;:31::i;:::-;60417:3;;;;:::i;:::-;;;;60385:95;;42676:326;42793:7;42834:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42834:16:0;42883:19;42861:110;;;;-1:-1:-1;;;42861:110:0;;11836:2:1;42861:110:0;;;11818:21:1;11875:2;11855:18;;;11848:30;11914:34;11894:18;;;11887:62;-1:-1:-1;;;11965:18:1;;;11958:39;12014:19;;42861:110:0;11634:405:1;58780:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42319:295::-;42436:7;-1:-1:-1;;;;;42483:19:0;;42461:111;;;;-1:-1:-1;;;42461:111:0;;12246:2:1;42461:111:0;;;12228:21:1;12285:2;12265:18;;;12258:30;12324:34;12304:18;;;12297:62;-1:-1:-1;;;12375:18:1;;;12368:40;12425:19;;42461:111:0;12044:406:1;42461:111:0;-1:-1:-1;;;;;;42590:16:0;;;;;:9;:16;;;;;;;42319:295::o;6674:94::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;6739:21:::1;6757:1;6739:9;:21::i;:::-;6674:94::o:0;59167:606::-;59217:7;59237:20;59260:13;59147:6;;;59068:93;59260:13;59237:36;;59306:5;59290:12;:21;59286:53;;59320:19;59313:26;;;59167:606;:::o;59286:53::-;59369:5;59354:12;:20;:45;;;;;59394:5;59378:12;:21;;59354:45;59350:90;;;59421:19;59414:26;;;59167:606;:::o;59350:90::-;59470:5;59455:12;:20;:45;;;;;59495:5;59479:12;:21;;59455:45;59451:90;;;59522:19;59515:26;;;59167:606;:::o;59451:90::-;59571:5;59556:12;:20;:45;;;;;59596:5;59580:12;:21;;59556:45;59552:90;;;59623:19;59616:26;;;59167:606;:::o;59552:90::-;59672:5;59657:12;:20;:46;;;;;59697:6;59681:12;:22;;59657:46;59653:91;;;59725:19;59718:26;;;59167:606;:::o;62120:113::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;62197:10:::1;:30:::0;62120:113::o;43238:104::-;43294:13;43327:7;43320:14;;;;;:::i;61840:191::-;61935:13;;-1:-1:-1;;;;;61935:13:0;61927:31;61959:10;61971:19;:17;:19::i;:::-;61927:64;;-1:-1:-1;;;;;;61927:64:0;;;;;;;-1:-1:-1;;;;;12647:32:1;;;61927:64:0;;;12629:51:1;12696:18;;;12689:34;12602:18;;61927:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62009:14;:12;:14::i;45144:327::-;-1:-1:-1;;;;;45279:24:0;;4887:10;45279:24;;45271:62;;;;-1:-1:-1;;;45271:62:0;;12936:2:1;45271:62:0;;;12918:21:1;12975:2;12955:18;;;12948:30;13014:27;12994:18;;;12987:55;13059:18;;45271:62:0;12734:349:1;45271:62:0;4887:10;45346:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45346:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45346:53:0;;;;;;;;;;45415:48;;540:41:1;;;45346:42:0;;4887:10;45415:48;;513:18:1;45415:48:0;;;;;;;45144:327;;:::o;46526:365::-;46715:41;4887:10;46748:7;46715:18;:41::i;:::-;46693:140;;;;-1:-1:-1;;;46693:140:0;;;;;;;:::i;:::-;46844:39;46858:4;46864:2;46868:7;46877:5;46844:13;:39::i;:::-;46526:365;;;;:::o;61015:382::-;61100:1;61091:6;:10;;;61083:49;;;;-1:-1:-1;;;61083:49:0;;;;;;;:::i;:::-;61161:1;61151:6;:11;;;;61143:48;;;;-1:-1:-1;;;61143:48:0;;13290:2:1;61143:48:0;;;13272:21:1;13329:2;13309:18;;;13302:30;13368:26;13348:18;;;13341:54;13412:18;;61143:48:0;13088:348:1;61143:48:0;61243:2;61233:6;61224:15;;:6;;:15;;;;:::i;:::-;:21;;61202:80;;;;-1:-1:-1;;;61202:80:0;;;;;;;:::i;:::-;61300:9;61295:95;61319:6;61315:10;;:1;:10;61295:95;;;61347:31;61357:10;61371:6;;61369:8;;;;;:::i;61347:31::-;61327:3;;;;:::i;:::-;;;;61295:95;;43413:468;48503:4;48527:16;;;:7;:16;;;;;;43531:13;;-1:-1:-1;;;;;48527:16:0;43562:113;;;;-1:-1:-1;;;43562:113:0;;13643:2:1;43562:113:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;-1:-1:-1;;;13772:18:1;;;13765:45;13827:19;;43562:113:0;13441:411:1;43562:113:0;43688:21;43712:10;:8;:10::i;:::-;43688:34;;43777:1;43759:7;43753:21;:25;:120;;;;;;;;;;;;;;;;;43822:7;43831:18;:7;:16;:18::i;:::-;43805:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43753:120;43733:140;43413:468;-1:-1:-1;;;43413:468:0:o;61713:116::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;61791:13:::1;:30:::0;;-1:-1:-1;;;;;;61791:30:0::1;-1:-1:-1::0;;;;;61791:30:0;;;::::1;::::0;;;::::1;::::0;;61713:116::o;6923:229::-;6096:6;;-1:-1:-1;;;;;6096:6:0;4887:10;6243:23;6235:68;;;;-1:-1:-1;;;6235:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7026:22:0;::::1;7004:110;;;::::0;-1:-1:-1;;;7004:110:0;;14534:2:1;7004:110:0::1;::::0;::::1;14516:21:1::0;14573:2;14553:18;;;14546:30;14612:34;14592:18;;;14585:62;-1:-1:-1;;;14663:18:1;;;14656:36;14709:19;;7004:110:0::1;14332:402:1::0;7004:110:0::1;7125:19;7135:8;7125:9;:19::i;:::-;6923:229:::0;:::o;60499:508::-;60583:6;;;;60582:7;60574:16;;;;;;60618:1;60609:6;:10;;;60601:49;;;;-1:-1:-1;;;60601:49:0;;;;;;;:::i;:::-;60679:2;60669:6;:12;;;;60661:50;;;;-1:-1:-1;;;60661:50:0;;10207:2:1;60661:50:0;;;10189:21:1;10246:2;10226:18;;;10219:30;-1:-1:-1;;;10265:18:1;;;10258:55;10330:18;;60661:50:0;10005:349:1;60661:50:0;60743:14;;;;58604:15;60743:14;:::i;:::-;60730:9;:27;60722:71;;;;-1:-1:-1;;;60722:71:0;;10866:2:1;60722:71:0;;;10848:21:1;10905:2;10885:18;;;10878:30;10944:33;10924:18;;;10917:61;10995:18;;60722:71:0;10664:355:1;60722:71:0;60845:10;;60835:6;60826:15;;:6;;:15;;;;:::i;:::-;:29;;60804:88;;;;-1:-1:-1;;;60804:88:0;;;;;;;:::i;:::-;60910:9;60905:95;60929:6;60925:10;;:1;:10;60905:95;;;60957:31;60967:10;60981:6;;60979:8;;;;;:::i;60957:31::-;60937:3;;;;:::i;:::-;;;;60905:95;;52561:174;52636:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52636:29:0;-1:-1:-1;;;;;52636:29:0;;;;;;;;:24;;52690:23;52636:24;52690:14;:23::i;:::-;-1:-1:-1;;;;;52681:46:0;;;;;;;;;;;52561:174;;:::o;48732:452::-;48861:4;48527:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48527:16:0;48883:110;;;;-1:-1:-1;;;48883:110:0;;14941:2:1;48883:110:0;;;14923:21:1;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;-1:-1:-1;;;15070:18:1;;;15063:42;15122:19;;48883:110:0;14739:408:1;48883:110:0;49004:13;49020:23;49035:7;49020:14;:23::i;:::-;49004:39;;49073:5;-1:-1:-1;;;;;49062:16:0;:7;-1:-1:-1;;;;;49062:16:0;;:64;;;;49119:7;-1:-1:-1;;;;;49095:31:0;:20;49107:7;49095:11;:20::i;:::-;-1:-1:-1;;;;;49095:31:0;;49062:64;:113;;;-1:-1:-1;;;;;;45713:25:0;;;45684:4;45713:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49143:32;49054:122;48732:452;-1:-1:-1;;;;48732:452:0:o;51828:615::-;52001:4;-1:-1:-1;;;;;51974:31:0;:23;51989:7;51974:14;:23::i;:::-;-1:-1:-1;;;;;51974:31:0;;51952:122;;;;-1:-1:-1;;;51952:122:0;;15354:2:1;51952:122:0;;;15336:21:1;15393:2;15373:18;;;15366:30;15432:34;15412:18;;;15405:62;-1:-1:-1;;;15483:18:1;;;15476:39;15532:19;;51952:122:0;15152:405:1;51952:122:0;-1:-1:-1;;;;;52093:16:0;;52085:65;;;;-1:-1:-1;;;52085:65:0;;15764:2:1;52085:65:0;;;15746:21:1;15803:2;15783:18;;;15776:30;15842:34;15822:18;;;15815:62;-1:-1:-1;;;15893:18:1;;;15886:34;15937:19;;52085:65:0;15562:400:1;52085:65:0;52267:29;52284:1;52288:7;52267:8;:29::i;:::-;-1:-1:-1;;;;;52309:15:0;;;;;;:9;:15;;;;;:20;;52328:1;;52309:15;:20;;52328:1;;52309:20;:::i;:::-;;;;-1:-1:-1;;;;;;;52340:13:0;;;;;;:9;:13;;;;;:18;;52357:1;;52340:13;:18;;52357:1;;52340:18;:::i;:::-;;;;-1:-1:-1;;52369:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52369:21:0;-1:-1:-1;;;;;52369:21:0;;;;;;;;;52408:27;;52369:16;;52408:27;;;;;;;51828:615;;;:::o;49526:110::-;49602:26;49612:2;49616:7;49602:26;;;;;;;;;;;;:9;:26::i;7160:173::-;7235:6;;;-1:-1:-1;;;;;7252:17:0;;;-1:-1:-1;;;;;;7252:17:0;;;;;;;7285:40;;7235:6;;;7252:17;7235:6;;7285:40;;7216:16;;7285:40;7205:128;7160:173;:::o;59781:225::-;59825:20;59848:13;59147:6;;;59068:93;59848:13;59825:36;;59895:10;;59880:12;:25;59872:34;;;;;;59943:12;59968:30;59974:10;59943:12;59968:5;:30::i;47773:352::-;47930:28;47940:4;47946:2;47950:7;47930:9;:28::i;:::-;47991:48;48014:4;48020:2;48024:7;48033:5;47991:22;:48::i;:::-;47969:148;;;;-1:-1:-1;;;47969:148:0;;;;;;;:::i;62241:108::-;62301:13;62334:7;62327:14;;;;;:::i;37831:723::-;37887:13;38108:10;38104:53;;-1:-1:-1;;38135:10:0;;;;;;;;;;;;-1:-1:-1;;;38135:10:0;;;;;37831:723::o;38104:53::-;38182:5;38167:12;38223:78;38230:9;;38223:78;;38256:8;;;;:::i;:::-;;-1:-1:-1;38279:10:0;;-1:-1:-1;38287:2:0;38279:10;;:::i;:::-;;;38223:78;;;38311:19;38343:6;38333:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38333:17:0;;38311:39;;38361:154;38368:10;;38361:154;;38395:11;38405:1;38395:11;;:::i;:::-;;-1:-1:-1;38464:10:0;38472:2;38464:5;:10;:::i;:::-;38451:24;;:2;:24;:::i;:::-;38438:39;;38421:6;38428;38421:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;38421:56:0;;;;;;;;-1:-1:-1;38492:11:0;38501:2;38492:11;;:::i;:::-;;;38361:154;;49863:321;49993:18;49999:2;50003:7;49993:5;:18::i;:::-;50044:54;50075:1;50079:2;50083:7;50092:5;50044:22;:54::i;:::-;50022:154;;;;-1:-1:-1;;;50022:154:0;;;;;;;:::i;50520:382::-;-1:-1:-1;;;;;50600:16:0;;50592:61;;;;-1:-1:-1;;;50592:61:0;;17224:2:1;50592:61:0;;;17206:21:1;;;17243:18;;;17236:30;17302:34;17282:18;;;17275:62;17354:18;;50592:61:0;17022:356:1;50592:61:0;48503:4;48527:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48527:16:0;:30;50664:58;;;;-1:-1:-1;;;50664:58:0;;17585:2:1;50664:58:0;;;17567:21:1;17624:2;17604:18;;;17597:30;17663;17643:18;;;17636:58;17711:18;;50664:58:0;17383:352:1;50664:58:0;-1:-1:-1;;;;;50793:13:0;;;;;;:9;:13;;;;;:18;;50810:1;;50793:13;:18;;50810:1;;50793:18;:::i;:::-;;;;-1:-1:-1;;50822:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50822:21:0;-1:-1:-1;;;;;50822:21:0;;;;;;;;50861:33;;50822:16;;;50861:33;;50822:16;;50861:33;50520:382;;:::o;53300:980::-;53455:4;-1:-1:-1;;;;;53476:13:0;;30068:20;30116:8;53472:801;;53529:175;;-1:-1:-1;;;53529:175:0;;-1:-1:-1;;;;;53529:36:0;;;;;:175;;4887:10;;53623:4;;53650:7;;53680:5;;53529:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53529:175:0;;;;;;;;-1:-1:-1;;53529:175:0;;;;;;;;;;;;:::i;:::-;;;53508:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53887:13:0;;53883:320;;53930:108;;-1:-1:-1;;;53930:108:0;;;;;;;:::i;53883:320::-;54153:6;54147:13;54138:6;54134:2;54130:15;54123:38;53508:710;-1:-1:-1;;;;;;53768:51:0;-1:-1:-1;;;53768:51:0;;-1:-1:-1;53761:58:0;;53472:801;-1:-1:-1;54257:4:0;53300:980;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:131::-;-1:-1:-1;;;;;2161:31:1;;2151:42;;2141:70;;2207:1;2204;2197:12;2222:315;2290:6;2298;2351:2;2339:9;2330:7;2326:23;2322:32;2319:52;;;2367:1;2364;2357:12;2319:52;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;2527:2;2512:18;;;;2499:32;;-1:-1:-1;;;2222:315:1:o;2724:456::-;2801:6;2809;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;2724:456;;3116:7;;-1:-1:-1;;;3170:2:1;3155:18;;;;3142:32;;2724:456::o;3185:255::-;3252:6;3305:2;3293:9;3284:7;3280:23;3276:32;3273:52;;;3321:1;3318;3311:12;3273:52;3360:9;3347:23;3379:31;3404:5;3379:31;:::i;3445:127::-;3506:10;3501:3;3497:20;3494:1;3487:31;3537:4;3534:1;3527:15;3561:4;3558:1;3551:15;3577:632;3642:5;3672:18;3713:2;3705:6;3702:14;3699:40;;;3719:18;;:::i;:::-;3794:2;3788:9;3762:2;3848:15;;-1:-1:-1;;3844:24:1;;;3870:2;3840:33;3836:42;3824:55;;;3894:18;;;3914:22;;;3891:46;3888:72;;;3940:18;;:::i;:::-;3980:10;3976:2;3969:22;4009:6;4000:15;;4039:6;4031;4024:22;4079:3;4070:6;4065:3;4061:16;4058:25;4055:45;;;4096:1;4093;4086:12;4055:45;4146:6;4141:3;4134:4;4126:6;4122:17;4109:44;4201:1;4194:4;4185:6;4177;4173:19;4169:30;4162:41;;;;3577:632;;;;;:::o;4214:451::-;4283:6;4336:2;4324:9;4315:7;4311:23;4307:32;4304:52;;;4352:1;4349;4342:12;4304:52;4392:9;4379:23;4425:18;4417:6;4414:30;4411:50;;;4457:1;4454;4447:12;4411:50;4480:22;;4533:4;4525:13;;4521:27;-1:-1:-1;4511:55:1;;4562:1;4559;4552:12;4511:55;4585:74;4651:7;4646:2;4633:16;4628:2;4624;4620:11;4585:74;:::i;4670:269::-;4727:6;4780:2;4768:9;4759:7;4755:23;4751:32;4748:52;;;4796:1;4793;4786:12;4748:52;4835:9;4822:23;4885:4;4878:5;4874:16;4867:5;4864:27;4854:55;;4905:1;4902;4895:12;5196:315;5261:6;5269;5322:2;5310:9;5301:7;5297:23;5293:32;5290:52;;;5338:1;5335;5328:12;5290:52;5377:9;5364:23;5396:31;5421:5;5396:31;:::i;:::-;5446:5;-1:-1:-1;5470:35:1;5501:2;5486:18;;5470:35;:::i;:::-;5460:45;;5196:315;;;;;:::o;5516:795::-;5611:6;5619;5627;5635;5688:3;5676:9;5667:7;5663:23;5659:33;5656:53;;;5705:1;5702;5695:12;5656:53;5744:9;5731:23;5763:31;5788:5;5763:31;:::i;:::-;5813:5;-1:-1:-1;5870:2:1;5855:18;;5842:32;5883:33;5842:32;5883:33;:::i;:::-;5935:7;-1:-1:-1;5989:2:1;5974:18;;5961:32;;-1:-1:-1;6044:2:1;6029:18;;6016:32;6071:18;6060:30;;6057:50;;;6103:1;6100;6093:12;6057:50;6126:22;;6179:4;6171:13;;6167:27;-1:-1:-1;6157:55:1;;6208:1;6205;6198:12;6157:55;6231:74;6297:7;6292:2;6279:16;6274:2;6270;6266:11;6231:74;:::i;:::-;6221:84;;;5516:795;;;;;;;:::o;6316:388::-;6384:6;6392;6445:2;6433:9;6424:7;6420:23;6416:32;6413:52;;;6461:1;6458;6451:12;6413:52;6500:9;6487:23;6519:31;6544:5;6519:31;:::i;:::-;6569:5;-1:-1:-1;6626:2:1;6611:18;;6598:32;6639:33;6598:32;6639:33;:::i;:::-;6691:7;6681:17;;;6316:388;;;;;:::o;6898:356::-;7100:2;7082:21;;;7119:18;;;7112:30;7178:34;7173:2;7158:18;;7151:62;7245:2;7230:18;;6898:356::o;7259:380::-;7338:1;7334:12;;;;7381;;;7402:61;;7456:4;7448:6;7444:17;7434:27;;7402:61;7509:2;7501:6;7498:14;7478:18;7475:38;7472:161;;;7555:10;7550:3;7546:20;7543:1;7536:31;7590:4;7587:1;7580:15;7618:4;7615:1;7608:15;7472:161;;7259:380;;;:::o;8884:413::-;9086:2;9068:21;;;9125:2;9105:18;;;9098:30;9164:34;9159:2;9144:18;;9137:62;-1:-1:-1;;;9230:2:1;9215:18;;9208:47;9287:3;9272:19;;8884:413::o;9650:350::-;9852:2;9834:21;;;9891:2;9871:18;;;9864:30;9930:28;9925:2;9910:18;;9903:56;9991:2;9976:18;;9650:350::o;10359:127::-;10420:10;10415:3;10411:20;10408:1;10401:31;10451:4;10448:1;10441:15;10475:4;10472:1;10465:15;10491:168;10531:7;10597:1;10593;10589:6;10585:14;10582:1;10579:21;10574:1;10567:9;10560:17;10556:45;10553:71;;;10604:18;;:::i;:::-;-1:-1:-1;10644:9:1;;10491:168::o;11024:128::-;11064:3;11095:1;11091:6;11088:1;11085:13;11082:39;;;11101:18;;:::i;:::-;-1:-1:-1;11137:9:1;;11024:128::o;11157:332::-;11359:2;11341:21;;;11398:1;11378:18;;;11371:29;-1:-1:-1;;;11431:2:1;11416:18;;11409:39;11480:2;11465:18;;11157:332::o;11494:135::-;11533:3;-1:-1:-1;;11554:17:1;;11551:43;;;11574:18;;:::i;:::-;-1:-1:-1;11621:1:1;11610:13;;11494:135::o;13857:470::-;14036:3;14074:6;14068:13;14090:53;14136:6;14131:3;14124:4;14116:6;14112:17;14090:53;:::i;:::-;14206:13;;14165:16;;;;14228:57;14206:13;14165:16;14262:4;14250:17;;14228:57;:::i;:::-;14301:20;;13857:470;-1:-1:-1;;;;13857:470:1:o;15967:125::-;16007:4;16035:1;16032;16029:8;16026:34;;;16040:18;;:::i;:::-;-1:-1:-1;16077:9:1;;15967:125::o;16097:414::-;16299:2;16281:21;;;16338:2;16318:18;;;16311:30;16377:34;16372:2;16357:18;;16350:62;-1:-1:-1;;;16443:2:1;16428:18;;16421:48;16501:3;16486:19;;16097:414::o;16516:127::-;16577:10;16572:3;16568:20;16565:1;16558:31;16608:4;16605:1;16598:15;16632:4;16629:1;16622:15;16648:120;16688:1;16714;16704:35;;16719:18;;:::i;:::-;-1:-1:-1;16753:9:1;;16648:120::o;16773:112::-;16805:1;16831;16821:35;;16836:18;;:::i;:::-;-1:-1:-1;16870:9:1;;16773:112::o;16890:127::-;16951:10;16946:3;16942:20;16939:1;16932:31;16982:4;16979:1;16972:15;17006:4;17003:1;16996:15;17740:489;-1:-1:-1;;;;;18009:15:1;;;17991:34;;18061:15;;18056:2;18041:18;;18034:43;18108:2;18093:18;;18086:34;;;18156:3;18151:2;18136:18;;18129:31;;;17934:4;;18177:46;;18203:19;;18195:6;18177:46;:::i;:::-;18169:54;17740:489;-1:-1:-1;;;;;;17740:489:1:o;18234:249::-;18303:6;18356:2;18344:9;18335:7;18331:23;18327:32;18324:52;;;18372:1;18369;18362:12;18324:52;18404:9;18398:16;18423:30;18447:5;18423:30;:::i
Swarm Source
ipfs://56a4863f749fe3ee2f6f2055e66035164a912a2a5745026e3c8ce4c65af526b8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.