ERC-20
Overview
Max Total Supply
64,670,000 SGLD
Holders
1,134
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ScammerGold
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-09 */ /** *Submitted for verification at Etherscan.io on 2021-09-01 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. * We are removing the non zero address require to burn the contract by * sending it to the zero address. */ 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); } } /** * @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 ); } /** * @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); } /** * @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 {} } 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); } /** * @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; } } /** * @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; } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /// @title Scammer Gold for sLoot holders! /// @notice This contract mints Scammer Gold for sLoot holders and provides /// administrative functions to the sLoot DAO. It allows: /// * sLoot holders to claim Scammer Gold /// * A DAO to set seasons for new opportunities to claim Scammer Gold /// * A DAO to mint Scammer Gold for use within the sLoot ecosystem /// @custom:unaudited This contract has not been audited. Use at your own risk. contract ScammerGold is Context, Ownable, ERC20 { // sLoot contract is available at https://etherscan.io/address/0xb12F78434AE7D12Ae548c51A5cb734Ecc4536594 address public slootContractAddress = 0xb12F78434AE7D12Ae548c51A5cb734Ecc4536594; IERC721Enumerable public slootContract; // Give out 10,000 Scammer Gold for every sLoot Bag that a user holds uint256 public scammerGoldPerTokenId = 10000 * (10**decimals()); // tokenIdStart of 1 is based on the following lines in the sLoot contract: /** function claim(uint256 tokenId) public nonReentrant { require(tokenId > 0 && tokenId < 7778, "Token ID invalid"); _safeMint(_msgSender(), tokenId); } */ uint256 public tokenIdStart = 1; // tokenIdEnd of 8000 is based on the following lines in the sLoot contract: /** function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner { require(tokenId > 7777 && tokenId < 8001, "Token ID invalid"); _safeMint(owner(), tokenId); } */ uint256 public tokenIdEnd = 8000; // Seasons are used to allow users to claim tokens regularly. Seasons are // decided by the DAO for Scammer Silver, but there will only be 1 season // for Scammer Gold uint256 public season = 0; // Track claimed tokens within a season // IMPORTANT: The format of the mapping is: // claimedForSeason[season][tokenId][claimed] // There will only be one SGLD season but // keeping this function here shows how it will // work with SSLV (Scammer Silver) mapping(uint256 => mapping(uint256 => bool)) public seasonClaimedByTokenId; constructor() Ownable() ERC20("Scammer Gold", "SGLD") { // Transfer ownership to the sLoot DAO // Ownable by OpenZeppelin automatically sets owner to msg.sender, but // we're going to burn the contract guaranteeing a finite amount of SGLD // Technically this means seasonality is not needed for this conetract, // but to allow function parity with the upcoming Scammer Silver contract // we are leaving these functions transferOwnership(0x0000000000000000000000000000000000000000); slootContract = IERC721Enumerable(slootContractAddress); } /// @notice Claim Scammer Gold for a given sLoot ID /// @param tokenId The tokenId of the sLoot NFT function claimById(uint256 tokenId) external { // Follow the Checks-Effects-Interactions pattern to prevent reentrancy // attacks // Checks // Check that the msgSender owns the token that is being claimed require( _msgSender() == slootContract.ownerOf(tokenId), "MUST_OWN_TOKEN_ID" ); // Further Checks, Effects, and Interactions are contained within the // _claim() function _claim(tokenId, _msgSender()); } /// @notice Claim Scammer Gold for all tokens owned by the sender /// @notice This function will run out of gas if you have too much sLoot! If /// this is a concern, you should use claimRangeForOwner and claim Scammer /// Gold in batches. function claimAllForOwner() external { uint256 tokenBalanceOwner = slootContract.balanceOf(_msgSender()); // Checks require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); // i < tokenBalanceOwner because tokenBalanceOwner is 1-indexed for (uint256 i = 0; i < tokenBalanceOwner; i++) { // Further Checks, Effects, and Interactions are contained within // the _claim() function _claim( slootContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } /// @notice Claim Scammer Gold for all tokens owned by the sender within a /// given range /// @notice This function is useful if you own too much sLoot to claim all at /// once or if you want to leave some sLoot unclaimed. If you leave sLoot /// unclaimed, however, you cannot claim it once the next season starts. function claimRangeForOwner(uint256 ownerIndexStart, uint256 ownerIndexEnd) external { uint256 tokenBalanceOwner = slootContract.balanceOf(_msgSender()); // Checks require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED"); // We use < for ownerIndexEnd and tokenBalanceOwner because // tokenOfOwnerByIndex is 0-indexed while the token balance is 1-indexed require( ownerIndexStart >= 0 && ownerIndexEnd < tokenBalanceOwner, "INDEX_OUT_OF_RANGE" ); // i <= ownerIndexEnd because ownerIndexEnd is 0-indexed for (uint256 i = ownerIndexStart; i <= ownerIndexEnd; i++) { // Further Checks, Effects, and Interactions are contained within // the _claim() function _claim( slootContract.tokenOfOwnerByIndex(_msgSender(), i), _msgSender() ); } } /// @dev Internal function to mint sLoot upon claiming function _claim(uint256 tokenId, address tokenOwner) internal { // Checks // Check that the token ID is in range // We use >= and <= to here because all of the token IDs are 0-indexed require( tokenId >= tokenIdStart && tokenId <= tokenIdEnd, "TOKEN_ID_OUT_OF_RANGE" ); // Check that Scammer Gold have not already been claimed this season // for a given tokenId require( !seasonClaimedByTokenId[season][tokenId], "GOLD_CLAIMED_FOR_TOKEN_ID" ); // Effects // Mark that Scammer Gold has been claimed for this season for the // given tokenId // Since the contract owner will be sent to the null address on // creation there will only be 1 season, but we are keeping this // here so Scammer Silver can follow the model in the future seasonClaimedByTokenId[season][tokenId] = true; // Interactions // Send Scammer Gold to the owner of the token ID _mint(tokenOwner, scammerGoldPerTokenId); } //************************IMPORTANT*********************************/ // All functions after this point will be nonfunctioning due to the // contract being sent to the null address and not having an owner // they are only here to show how the future DAO will interact // with Scammer Silver at a later date //************************IMPORTANT*********************************/ /// @notice Allows the DAO to mint new tokens for use within the sLoot /// Ecosystem /// @param amountDisplayValue The amount of sLoot to mint. This should be /// input as the display value, not in raw decimals. If you want to mint /// 100 sLoot, you should enter "100" rather than the value of 100 * 10^18. function daoMint(uint256 amountDisplayValue) external onlyOwner { _mint(owner(), amountDisplayValue * (10**decimals())); } /// @notice Allows the DAO to set a new contract address for sLoot. This is /// relevant in the event that sLoot migrates to a new contract. /// @param slootContractAddress_ The new contract address for sLoot function daoSetLootContractAddress(address slootContractAddress_) external onlyOwner { slootContractAddress = slootContractAddress_; slootContract = IERC721Enumerable(slootContractAddress); } /// @notice Allows the DAO to set the token IDs that are eligible to claim /// sLoot /// @param tokenIdStart_ The start of the eligible token range /// @param tokenIdEnd_ The end of the eligible token range /// @dev This is relevant in case a future sLoot contract has a different /// total supply of sLoot function daoSetTokenIdRange(uint256 tokenIdStart_, uint256 tokenIdEnd_) external onlyOwner { tokenIdStart = tokenIdStart_; tokenIdEnd = tokenIdEnd_; } /// @notice Allows the DAO to set a season for new Scammer Gold claims /// @param season_ The season to use for claiming sLoot function daoSetSeason(uint256 season_) public onlyOwner { season = season_; } /// @notice Allows the DAO to set the amount of Scammer Gold that is /// claimed per token ID /// @param scammerGoldDisplayValue The amount of sLoot a user can claim. /// This should be input as the display value, not in raw decimals. If you /// want to mint 100 sLoot, you should enter "100" rather than the value of /// 100 * 10^18. function daoSetScammerGoldPerTokenId(uint256 scammerGoldDisplayValue) public onlyOwner { scammerGoldPerTokenId = scammerGoldDisplayValue * (10**decimals()); } /// @notice Allows the DAO to set the season and Scammer Gold per token ID /// in one transaction. This ensures that there is not a gap where a user /// can claim more Scammer Gold than others /// @param season_ The season to use for claiming sloot /// @param scammerGoldDisplayValue The amount of sLoot a user can claim. /// This should be input as the display value, not in raw decimals. If you /// want to mint 100 sLoot, you should enter "100" rather than the value of /// 100 * 10^18. /// @dev We would save a tiny amount of gas by modifying the season and /// scammerGold variables directly. It is better practice for security, /// however, to avoid repeating code. This function is so rarely used that /// it's not worth moving these values into their own internal function to /// skip the gas used on the modifier check. function daoSetSeasonAndScammerGoldPerTokenID( uint256 season_, uint256 scammerGoldDisplayValue ) external onlyOwner { daoSetSeason(season_); daoSetScammerGoldPerTokenId(scammerGoldDisplayValue); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAllForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownerIndexStart","type":"uint256"},{"internalType":"uint256","name":"ownerIndexEnd","type":"uint256"}],"name":"claimRangeForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountDisplayValue","type":"uint256"}],"name":"daoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"slootContractAddress_","type":"address"}],"name":"daoSetLootContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"scammerGoldDisplayValue","type":"uint256"}],"name":"daoSetScammerGoldPerTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"season_","type":"uint256"}],"name":"daoSetSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"season_","type":"uint256"},{"internalType":"uint256","name":"scammerGoldDisplayValue","type":"uint256"}],"name":"daoSetSeasonAndScammerGoldPerTokenID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdStart_","type":"uint256"},{"internalType":"uint256","name":"tokenIdEnd_","type":"uint256"}],"name":"daoSetTokenIdRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"scammerGoldPerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"season","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"seasonClaimedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slootContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slootContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600680546001600160a01b03191673b12f78434ae7d12ae548c51a5cb734ecc453659417905562000033601290565b6200004090600a620002e3565b6200004e90612710620003b1565b6008556001600955611f40600a556000600b553480156200006e57600080fd5b506040518060400160405280600c81526020016b14d8d85b5b595c8811dbdb1960a21b8152506040518060400160405280600481526020016314d1d31160e21b815250620000cb620000c56200013360201b60201c565b62000137565b8151620000e0906004906020850190620001f4565b508051620000f6906005906020840190620001f4565b5050506200010b60006200018760201b60201c565b600654600780546001600160a01b0319166001600160a01b0390921691909117905562000426565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b620001f18162000137565b50565b8280546200020290620003d3565b90600052602060002090601f01602090048101928262000226576000855562000271565b82601f106200024157805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027157825182559160200191906001019062000254565b506200027f92915062000283565b5090565b5b808211156200027f576000815560010162000284565b600181815b80851115620002db578160001904821115620002bf57620002bf62000410565b80851615620002cd57918102915b93841c93908002906200029f565b509250929050565b6000620002f460ff841683620002fb565b9392505050565b6000826200030c57506001620003ab565b816200031b57506000620003ab565b81600181146200033457600281146200033f576200035f565b6001915050620003ab565b60ff84111562000353576200035362000410565b50506001821b620003ab565b5060208310610133831016604e8410600b841016171562000384575081810a620003ab565b6200039083836200029a565b8060001904821115620003a757620003a762000410565b0290505b92915050565b6000816000190483118215151615620003ce57620003ce62000410565b500290565b600181811c90821680620003e857607f821691505b602082108114156200040a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61151680620004366000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a9059cbb116100a2578063d697d90111610071578063d697d901146103c8578063dd62ed3e146103db578063e5e808cb14610414578063f2fde38b1461044257600080fd5b8063a9059cbb14610391578063becf7741146103a4578063c50b0fb0146103b7578063cbf0b276146103c057600080fd5b80638da5cb5b116100de5780638da5cb5b1461035257806395d89b4114610363578063a22702d61461036b578063a457c2d71461037e57600080fd5b806370a082311461030e578063715018a614610337578063878e7ea51461033f57600080fd5b806332c882041161017c57806343f428021161014b57806343f42802146102b45780634da7808a146102bd5780635457d95b146102d057806362759f6c146102fb57600080fd5b806332c882041461027257806338f30a5a14610285578063395093511461028e57806342e47315146102a157600080fd5b806318160ddd116101b857806318160ddd1461023557806323b872dd146102475780632a3890621461025a578063313ce5671461026357600080fd5b806306fdde03146101df578063095ea7b3146101fd57806311a21b2114610220575b600080fd5b6101e7610455565b6040516101f491906112b0565b60405180910390f35b61021061020b366004611230565b6104e7565b60405190151581526020016101f4565b61023361022e36600461128e565b6104fe565b005b6003545b6040519081526020016101f4565b6102106102553660046111ef565b610547565b61023960095481565b604051601281526020016101f4565b610233610280366004611175565b6105f1565b61023960085481565b61021061029c366004611230565b610647565b6102336102af36600461125c565b610683565b610239600a5481565b6102336102cb36600461128e565b6106b2565b6007546102e3906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b61023361030936600461125c565b6106e7565b61023961031c366004611175565b6001600160a01b031660009081526001602052604090205490565b610233610744565b61023361034d36600461128e565b61077a565b6000546001600160a01b03166102e3565b6101e761094a565b61023361037936600461125c565b610959565b61021061038c366004611230565b61099f565b61021061039f366004611230565b610a38565b6102336103b236600461125c565b610a45565b610239600b5481565b610233610b1f565b6006546102e3906001600160a01b031681565b6102396103e93660046111b6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021061042236600461128e565b600c60209081526000928352604080842090915290825290205460ff1681565b610233610450366004611175565b610c27565b6060600480546104649061145f565b80601f01602080910402602001604051908101604052809291908181526020018280546104909061145f565b80156104dd5780601f106104b2576101008083540402835291602001916104dd565b820191906000526020600020905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b60006104f4338484610c5a565b5060015b92915050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260040161052890611305565b60405180910390fd5b61053a82610683565b61054381610959565b5050565b6000610554848484610d7e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610528565b6105e68533858403610c5a565b506001949350505050565b6000546001600160a01b0316331461061b5760405162461bcd60e51b815260040161052890611305565b600680546001600160a01b039092166001600160a01b0319928316811790915560078054909216179055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104f491859061067e90869061133a565b610c5a565b6000546001600160a01b031633146106ad5760405162461bcd60e51b815260040161052890611305565b600b55565b6000546001600160a01b031633146106dc5760405162461bcd60e51b815260040161052890611305565b600991909155600a55565b6000546001600160a01b031633146107115760405162461bcd60e51b815260040161052890611305565b6107416107266000546001600160a01b031690565b6107326012600a611395565b61073c9084611440565b610f4c565b50565b6000546001600160a01b0316331461076e5760405162461bcd60e51b815260040161052890611305565b610778600061102b565b565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156107ce57600080fd5b505afa1580156107e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108069190611275565b90506000811161084a5760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b6044820152606401610528565b80821061088e5760405162461bcd60e51b8152602060048201526012602482015271494e4445585f4f55545f4f465f52414e474560701b6044820152606401610528565b825b82811161094457600754610932906001600160a01b0316632f745c59335b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810185905260440160206040518083038186803b1580156108f457600080fd5b505afa158015610908573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092c9190611275565b3361107b565b8061093c8161149a565b915050610890565b50505050565b6060600580546104649061145f565b6000546001600160a01b031633146109835760405162461bcd60e51b815260040161052890611305565b61098f6012600a611395565b6109999082611440565b60085550565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610a215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610528565b610a2e3385858403610c5a565b5060019392505050565b60006104f4338484610d7e565b6007546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b158015610a8957600080fd5b505afa158015610a9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac19190611199565b6001600160a01b0316336001600160a01b031614610b155760405162461bcd60e51b8152602060048201526011602482015270135554d517d3d5d397d513d2d15397d251607a1b6044820152606401610528565b610741813361107b565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015610b7357600080fd5b505afa158015610b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bab9190611275565b905060008111610bef5760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b6044820152606401610528565b60005b8181101561054357600754610c15906001600160a01b0316632f745c59336108ae565b80610c1f8161149a565b915050610bf2565b6000546001600160a01b03163314610c515760405162461bcd60e51b815260040161052890611305565b6107418161102b565b6001600160a01b038316610cbc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610528565b6001600160a01b038216610d1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610528565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610de25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610528565b6001600160a01b038216610e445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610528565b6001600160a01b03831660009081526001602052604090205481811015610ebc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610528565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610ef390849061133a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f91815260200190565b60405180910390a3610944565b6001600160a01b038216610fa25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610528565b8060036000828254610fb4919061133a565b90915550506001600160a01b03821660009081526001602052604081208054839290610fe190849061133a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600954821015801561108f5750600a548211155b6110d35760405162461bcd60e51b8152602060048201526015602482015274544f4b454e5f49445f4f55545f4f465f52414e474560581b6044820152606401610528565b600b546000908152600c6020908152604080832085845290915290205460ff16156111405760405162461bcd60e51b815260206004820152601960248201527f474f4c445f434c41494d45445f464f525f544f4b454e5f4944000000000000006044820152606401610528565b600b546000908152600c602090815260408083208584529091529020805460ff19166001179055600854610543908290610f4c565b60006020828403121561118757600080fd5b8135611192816114cb565b9392505050565b6000602082840312156111ab57600080fd5b8151611192816114cb565b600080604083850312156111c957600080fd5b82356111d4816114cb565b915060208301356111e4816114cb565b809150509250929050565b60008060006060848603121561120457600080fd5b833561120f816114cb565b9250602084013561121f816114cb565b929592945050506040919091013590565b6000806040838503121561124357600080fd5b823561124e816114cb565b946020939093013593505050565b60006020828403121561126e57600080fd5b5035919050565b60006020828403121561128757600080fd5b5051919050565b600080604083850312156112a157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156112dd578581018301518582016040015282016112c1565b818111156112ef576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561134d5761134d6114b5565b500190565b600181815b8085111561138d578160001904821115611373576113736114b5565b8085161561138057918102915b93841c9390800290611357565b509250929050565b600061119260ff8416836000826113ae575060016104f8565b816113bb575060006104f8565b81600181146113d157600281146113db576113f7565b60019150506104f8565b60ff8411156113ec576113ec6114b5565b50506001821b6104f8565b5060208310610133831016604e8410600b841016171561141a575081810a6104f8565b6114248383611352565b8060001904821115611438576114386114b5565b029392505050565b600081600019048311821515161561145a5761145a6114b5565b500290565b600181811c9082168061147357607f821691505b6020821081141561149457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156114ae576114ae6114b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461074157600080fdfea2646970667358221220c2f9ffa8cbddd584db2dc82e67a34f3c66224c09240284f5783492a4cc5d5f4964736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a9059cbb116100a2578063d697d90111610071578063d697d901146103c8578063dd62ed3e146103db578063e5e808cb14610414578063f2fde38b1461044257600080fd5b8063a9059cbb14610391578063becf7741146103a4578063c50b0fb0146103b7578063cbf0b276146103c057600080fd5b80638da5cb5b116100de5780638da5cb5b1461035257806395d89b4114610363578063a22702d61461036b578063a457c2d71461037e57600080fd5b806370a082311461030e578063715018a614610337578063878e7ea51461033f57600080fd5b806332c882041161017c57806343f428021161014b57806343f42802146102b45780634da7808a146102bd5780635457d95b146102d057806362759f6c146102fb57600080fd5b806332c882041461027257806338f30a5a14610285578063395093511461028e57806342e47315146102a157600080fd5b806318160ddd116101b857806318160ddd1461023557806323b872dd146102475780632a3890621461025a578063313ce5671461026357600080fd5b806306fdde03146101df578063095ea7b3146101fd57806311a21b2114610220575b600080fd5b6101e7610455565b6040516101f491906112b0565b60405180910390f35b61021061020b366004611230565b6104e7565b60405190151581526020016101f4565b61023361022e36600461128e565b6104fe565b005b6003545b6040519081526020016101f4565b6102106102553660046111ef565b610547565b61023960095481565b604051601281526020016101f4565b610233610280366004611175565b6105f1565b61023960085481565b61021061029c366004611230565b610647565b6102336102af36600461125c565b610683565b610239600a5481565b6102336102cb36600461128e565b6106b2565b6007546102e3906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b61023361030936600461125c565b6106e7565b61023961031c366004611175565b6001600160a01b031660009081526001602052604090205490565b610233610744565b61023361034d36600461128e565b61077a565b6000546001600160a01b03166102e3565b6101e761094a565b61023361037936600461125c565b610959565b61021061038c366004611230565b61099f565b61021061039f366004611230565b610a38565b6102336103b236600461125c565b610a45565b610239600b5481565b610233610b1f565b6006546102e3906001600160a01b031681565b6102396103e93660046111b6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021061042236600461128e565b600c60209081526000928352604080842090915290825290205460ff1681565b610233610450366004611175565b610c27565b6060600480546104649061145f565b80601f01602080910402602001604051908101604052809291908181526020018280546104909061145f565b80156104dd5780601f106104b2576101008083540402835291602001916104dd565b820191906000526020600020905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b60006104f4338484610c5a565b5060015b92915050565b6000546001600160a01b031633146105315760405162461bcd60e51b815260040161052890611305565b60405180910390fd5b61053a82610683565b61054381610959565b5050565b6000610554848484610d7e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610528565b6105e68533858403610c5a565b506001949350505050565b6000546001600160a01b0316331461061b5760405162461bcd60e51b815260040161052890611305565b600680546001600160a01b039092166001600160a01b0319928316811790915560078054909216179055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104f491859061067e90869061133a565b610c5a565b6000546001600160a01b031633146106ad5760405162461bcd60e51b815260040161052890611305565b600b55565b6000546001600160a01b031633146106dc5760405162461bcd60e51b815260040161052890611305565b600991909155600a55565b6000546001600160a01b031633146107115760405162461bcd60e51b815260040161052890611305565b6107416107266000546001600160a01b031690565b6107326012600a611395565b61073c9084611440565b610f4c565b50565b6000546001600160a01b0316331461076e5760405162461bcd60e51b815260040161052890611305565b610778600061102b565b565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156107ce57600080fd5b505afa1580156107e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108069190611275565b90506000811161084a5760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b6044820152606401610528565b80821061088e5760405162461bcd60e51b8152602060048201526012602482015271494e4445585f4f55545f4f465f52414e474560701b6044820152606401610528565b825b82811161094457600754610932906001600160a01b0316632f745c59335b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810185905260440160206040518083038186803b1580156108f457600080fd5b505afa158015610908573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092c9190611275565b3361107b565b8061093c8161149a565b915050610890565b50505050565b6060600580546104649061145f565b6000546001600160a01b031633146109835760405162461bcd60e51b815260040161052890611305565b61098f6012600a611395565b6109999082611440565b60085550565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610a215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610528565b610a2e3385858403610c5a565b5060019392505050565b60006104f4338484610d7e565b6007546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b158015610a8957600080fd5b505afa158015610a9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac19190611199565b6001600160a01b0316336001600160a01b031614610b155760405162461bcd60e51b8152602060048201526011602482015270135554d517d3d5d397d513d2d15397d251607a1b6044820152606401610528565b610741813361107b565b6007546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015610b7357600080fd5b505afa158015610b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bab9190611275565b905060008111610bef5760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b6044820152606401610528565b60005b8181101561054357600754610c15906001600160a01b0316632f745c59336108ae565b80610c1f8161149a565b915050610bf2565b6000546001600160a01b03163314610c515760405162461bcd60e51b815260040161052890611305565b6107418161102b565b6001600160a01b038316610cbc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610528565b6001600160a01b038216610d1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610528565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610de25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610528565b6001600160a01b038216610e445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610528565b6001600160a01b03831660009081526001602052604090205481811015610ebc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610528565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610ef390849061133a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f91815260200190565b60405180910390a3610944565b6001600160a01b038216610fa25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610528565b8060036000828254610fb4919061133a565b90915550506001600160a01b03821660009081526001602052604081208054839290610fe190849061133a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600954821015801561108f5750600a548211155b6110d35760405162461bcd60e51b8152602060048201526015602482015274544f4b454e5f49445f4f55545f4f465f52414e474560581b6044820152606401610528565b600b546000908152600c6020908152604080832085845290915290205460ff16156111405760405162461bcd60e51b815260206004820152601960248201527f474f4c445f434c41494d45445f464f525f544f4b454e5f4944000000000000006044820152606401610528565b600b546000908152600c602090815260408083208584529091529020805460ff19166001179055600854610543908290610f4c565b60006020828403121561118757600080fd5b8135611192816114cb565b9392505050565b6000602082840312156111ab57600080fd5b8151611192816114cb565b600080604083850312156111c957600080fd5b82356111d4816114cb565b915060208301356111e4816114cb565b809150509250929050565b60008060006060848603121561120457600080fd5b833561120f816114cb565b9250602084013561121f816114cb565b929592945050506040919091013590565b6000806040838503121561124357600080fd5b823561124e816114cb565b946020939093013593505050565b60006020828403121561126e57600080fd5b5035919050565b60006020828403121561128757600080fd5b5051919050565b600080604083850312156112a157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156112dd578581018301518582016040015282016112c1565b818111156112ef576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561134d5761134d6114b5565b500190565b600181815b8085111561138d578160001904821115611373576113736114b5565b8085161561138057918102915b93841c9390800290611357565b509250929050565b600061119260ff8416836000826113ae575060016104f8565b816113bb575060006104f8565b81600181146113d157600281146113db576113f7565b60019150506104f8565b60ff8411156113ec576113ec6114b5565b50506001821b6104f8565b5060208310610133831016604e8410600b841016171561141a575081810a6104f8565b6114248383611352565b8060001904821115611438576114386114b5565b029392505050565b600081600019048311821515161561145a5761145a6114b5565b500290565b600181811c9082168061147357607f821691505b6020821081141561149457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156114ae576114ae6114b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461074157600080fdfea2646970667358221220c2f9ffa8cbddd584db2dc82e67a34f3c66224c09240284f5783492a4cc5d5f4964736f6c63430008060033
Deployed Bytecode Sourcemap
26681:10177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8617:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10925:210;;;;;;:::i;:::-;;:::i;:::-;;;2975:14:1;;2968:22;2950:41;;2938:2;2923:18;10925:210:0;2905:92:1;36612:243:0;;;;;;:::i;:::-;;:::i;:::-;;9737:108;9825:12;;9737:108;;;9285:25:1;;;9273:2;9258:18;9737:108:0;9240:76:1;11617:529:0;;;;;;:::i;:::-;;:::i;27414:31::-;;;;;;9579:93;;;9662:2;9463:36:1;;9451:2;9436:18;9579:93:0;9418:87:1;34128:237:0;;;;;;:::i;:::-;;:::i;27065:63::-;;;;;;12555:297;;;;;;:::i;:::-;;:::i;35051:91::-;;;;;;:::i;:::-;;:::i;27748:32::-;;;;;;34710:196;;;;;;:::i;:::-;;:::i;26943:38::-;;;;;-1:-1:-1;;;;;26943:38:0;;;;;;-1:-1:-1;;;;;2487:32:1;;;2469:51;;2457:2;2442:18;26943:38:0;2424:102:1;33760:136:0;;;;;;:::i;:::-;;:::i;9908:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10059:18:0;10027:7;10059:18;;;:9;:18;;;;;;;9908:177;2480:94;;;:::i;30854:955::-;;;;;;:::i;:::-;;:::i;1829:87::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;1829:87;;8836:104;;;:::i;35515:195::-;;;;;;:::i;:::-;;:::i;13355:482::-;;;;;;:::i;:::-;;:::i;10298:216::-;;;;;;:::i;:::-;;:::i;29112:526::-;;;;;;:::i;:::-;;:::i;27972:25::-;;;;;;29905:600;;;:::i;26847:89::-;;;;;-1:-1:-1;;;;;26847:89:0;;;10577:201;;;;;;:::i;:::-;-1:-1:-1;;;;;10743:18:0;;;10711:7;10743:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10577:201;28291:74;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;2846:233;;;;;;:::i;:::-;;:::i;8617:100::-;8671:13;8704:5;8697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8617:100;:::o;10925:210::-;11044:4;11066:39;760:10;11089:7;11098:6;11066:8;:39::i;:::-;-1:-1:-1;11123:4:0;10925:210;;;;;:::o;36612:243::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;;;;;;;;;36763:21:::1;36776:7;36763:12;:21::i;:::-;36795:52;36823:23;36795:27;:52::i;:::-;36612:243:::0;;:::o;11617:529::-;11757:4;11774:36;11784:6;11792:9;11803:6;11774:9;:36::i;:::-;-1:-1:-1;;;;;11850:19:0;;11823:24;11850:19;;;:11;:19;;;;;;;;760:10;11850:33;;;;;;;;11916:26;;;;11894:116;;;;-1:-1:-1;;;11894:116:0;;5946:2:1;11894:116:0;;;5928:21:1;5985:2;5965:18;;;5958:30;6024:34;6004:18;;;5997:62;-1:-1:-1;;;6075:18:1;;;6068:38;6123:19;;11894:116:0;5918:230:1;11894:116:0;12046:57;12055:6;760:10;12096:6;12077:16;:25;12046:8;:57::i;:::-;-1:-1:-1;12134:4:0;;11617:529;-1:-1:-1;;;;11617:529:0:o;34128:237::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;34247:20:::1;:44:::0;;-1:-1:-1;;;;;34247:44:0;;::::1;-1:-1:-1::0;;;;;;34247:44:0;;::::1;::::0;::::1;::::0;;;34302:13:::1;:55:::0;;;;::::1;;::::0;;34128:237::o;12555:297::-;760:10;12670:4;12764:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12764:34:0;;;;;;;;;;12670:4;;12692:130;;12742:7;;12764:47;;12801:10;;12764:47;:::i;:::-;12692:8;:130::i;35051:91::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;35118:6:::1;:16:::0;35051:91::o;34710:196::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;34835:12:::1;:28:::0;;;;34874:10:::1;:24:::0;34710:196::o;33760:136::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;33835:53:::1;33841:7;1875::::0;1902:6;-1:-1:-1;;;;;1902:6:0;;1829:87;33841:7:::1;33872:14;9662:2:::0;33872::::1;:14;:::i;:::-;33850:37;::::0;:18;:37:::1;:::i;:::-;33835:5;:53::i;:::-;33760:136:::0;:::o;2480:94::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;2545:21:::1;2563:1;2545:9;:21::i;:::-;2480:94::o:0;30854:955::-;30992:13;;30964:25;;-1:-1:-1;;;;;30992:13:0;:23;760:10;30992:37;;-1:-1:-1;;;;;;30992:37:0;;;;;;;-1:-1:-1;;;;;2487:32:1;;;30992:37:0;;;2469:51:1;2442:18;;30992:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30964:65;;31089:1;31069:17;:21;31061:49;;;;-1:-1:-1;;;31061:49:0;;8231:2:1;31061:49:0;;;8213:21:1;8270:2;8250:18;;;8243:30;-1:-1:-1;;;8289:18:1;;;8282:45;8344:18;;31061:49:0;8203:165:1;31061:49:0;31336:17;31320:13;:33;31274:125;;;;-1:-1:-1;;;31274:125:0;;4443:2:1;31274:125:0;;;4425:21:1;4482:2;4462:18;;;4455:30;-1:-1:-1;;;4501:18:1;;;4494:48;4559:18;;31274:125:0;4415:168:1;31274:125:0;31495:15;31478:324;31517:13;31512:1;:18;31478:324;;31694:13;;31669:121;;-1:-1:-1;;;;;31694:13:0;:33;760:10;31728:12;31694:50;;-1:-1:-1;;;;;;31694:50:0;;;;;;;-1:-1:-1;;;;;2723:32:1;;;31694:50:0;;;2705:51:1;2772:18;;;2765:34;;;2678:18;;31694:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;760:10;31669:6;:121::i;:::-;31532:3;;;;:::i;:::-;;;;31478:324;;;;30953:856;30854:955;;:::o;8836:104::-;8892:13;8925:7;8918:14;;;;;:::i;35515:195::-;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;35687:14:::1;9662:2:::0;35687::::1;:14;:::i;:::-;35660:42;::::0;:23;:42:::1;:::i;:::-;35636:21;:66:::0;-1:-1:-1;35515:195:0:o;13355:482::-;760:10;13475:4;13524:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13524:34:0;;;;;;;;;;13591:35;;;;13569:122;;;;-1:-1:-1;;;13569:122:0;;8575:2:1;13569:122:0;;;8557:21:1;8614:2;8594:18;;;8587:30;8653:34;8633:18;;;8626:62;-1:-1:-1;;;8704:18:1;;;8697:35;8749:19;;13569:122:0;8547:227:1;13569:122:0;13727:67;760:10;13750:7;13778:15;13759:16;:34;13727:8;:67::i;:::-;-1:-1:-1;13825:4:0;;13355:482;-1:-1:-1;;;13355:482:0:o;10298:216::-;10420:4;10442:42;760:10;10466:9;10477:6;10442:9;:42::i;29112:526::-;29404:13;;:30;;-1:-1:-1;;;29404:30:0;;;;;9285:25:1;;;-1:-1:-1;;;;;29404:13:0;;;;:21;;9258:18:1;;29404:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29388:46:0;760:10;-1:-1:-1;;;;;29388:46:0;;29366:113;;;;-1:-1:-1;;;29366:113:0;;5600:2:1;29366:113:0;;;5582:21:1;5639:2;5619:18;;;5612:30;-1:-1:-1;;;5658:18:1;;;5651:47;5715:18;;29366:113:0;5572:167:1;29366:113:0;29601:29;29608:7;760:10;31669:6;:121::i;29905:600::-;29981:13;;29953:25;;-1:-1:-1;;;;;29981:13:0;:23;760:10;29981:37;;-1:-1:-1;;;;;;29981:37:0;;;;;;;-1:-1:-1;;;;;2487:32:1;;;29981:37:0;;;2469:51:1;2442:18;;29981:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29953:65;;30078:1;30058:17;:21;30050:49;;;;-1:-1:-1;;;30050:49:0;;8231:2:1;30050:49:0;;;8213:21:1;8270:2;8250:18;;;8243:30;-1:-1:-1;;;8289:18:1;;;8282:45;8344:18;;30050:49:0;8203:165:1;30050:49:0;30190:9;30185:313;30209:17;30205:1;:21;30185:313;;;30390:13;;30365:121;;-1:-1:-1;;;;;30390:13:0;:33;760:10;30424:12;680:98;30365:121;30228:3;;;;:::i;:::-;;;;30185:313;;2846:233;1875:7;1902:6;-1:-1:-1;;;;;1902:6:0;760:10;2049:23;2041:68;;;;-1:-1:-1;;;2041:68:0;;;;;;;:::i;:::-;3052:19:::1;3062:8;3052:9;:19::i;17145:380::-:0;-1:-1:-1;;;;;17281:19:0;;17273:68;;;;-1:-1:-1;;;17273:68:0;;7476:2:1;17273:68:0;;;7458:21:1;7515:2;7495:18;;;7488:30;7554:34;7534:18;;;7527:62;-1:-1:-1;;;7605:18:1;;;7598:34;7649:19;;17273:68:0;7448:226:1;17273:68:0;-1:-1:-1;;;;;17360:21:0;;17352:68;;;;-1:-1:-1;;;17352:68:0;;4790:2:1;17352:68:0;;;4772:21:1;4829:2;4809:18;;;4802:30;4868:34;4848:18;;;4841:62;-1:-1:-1;;;4919:18:1;;;4912:32;4961:19;;17352:68:0;4762:224:1;17352:68:0;-1:-1:-1;;;;;17433:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17485:32;;9285:25:1;;;17485:32:0;;9258:18:1;17485:32:0;;;;;;;17145:380;;;:::o;14327:770::-;-1:-1:-1;;;;;14467:20:0;;14459:70;;;;-1:-1:-1;;;14459:70:0;;6716:2:1;14459:70:0;;;6698:21:1;6755:2;6735:18;;;6728:30;6794:34;6774:18;;;6767:62;-1:-1:-1;;;6845:18:1;;;6838:35;6890:19;;14459:70:0;6688:227:1;14459:70:0;-1:-1:-1;;;;;14548:23:0;;14540:71;;;;-1:-1:-1;;;14540:71:0;;4039:2:1;14540:71:0;;;4021:21:1;4078:2;4058:18;;;4051:30;4117:34;4097:18;;;4090:62;-1:-1:-1;;;4168:18:1;;;4161:33;4211:19;;14540:71:0;4011:225:1;14540:71:0;-1:-1:-1;;;;;14708:17:0;;14684:21;14708:17;;;:9;:17;;;;;;14758:23;;;;14736:111;;;;-1:-1:-1;;;14736:111:0;;5193:2:1;14736:111:0;;;5175:21:1;5232:2;5212:18;;;5205:30;5271:34;5251:18;;;5244:62;-1:-1:-1;;;5322:18:1;;;5315:36;5368:19;;14736:111:0;5165:228:1;14736:111:0;-1:-1:-1;;;;;14883:17:0;;;;;;;:9;:17;;;;;;14903:22;;;14883:42;;14947:20;;;;;;;;:30;;14919:6;;14883:17;14947:30;;14919:6;;14947:30;:::i;:::-;;;;;;;;15012:9;-1:-1:-1;;;;;14995:35:0;15004:6;-1:-1:-1;;;;;14995:35:0;;15023:6;14995:35;;;;9285:25:1;;9273:2;9258:18;;9240:76;14995:35:0;;;;;;;;15043:46;18125:125;15384:399;-1:-1:-1;;;;;15468:21:0;;15460:65;;;;-1:-1:-1;;;15460:65:0;;8981:2:1;15460:65:0;;;8963:21:1;9020:2;9000:18;;;8993:30;9059:33;9039:18;;;9032:61;9110:18;;15460:65:0;8953:181:1;15460:65:0;15616:6;15600:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15633:18:0;;;;;;:9;:18;;;;;:28;;15655:6;;15633:18;:28;;15655:6;;15633:28;:::i;:::-;;;;-1:-1:-1;;15677:37:0;;9285:25:1;;;-1:-1:-1;;;;;15677:37:0;;;15694:1;;15677:37;;9273:2:1;9258:18;15677:37:0;;;;;;;36612:243;;:::o;3087:173::-;3143:16;3162:6;;-1:-1:-1;;;;;3179:17:0;;;-1:-1:-1;;;;;;3179:17:0;;;;;;3212:40;;3162:6;;;;;;;3212:40;;3143:16;3212:40;3132:128;3087:173;:::o;31877:1124::-;32130:12;;32119:7;:23;;:48;;;;;32157:10;;32146:7;:21;;32119:48;32097:119;;;;-1:-1:-1;;;32097:119:0;;7881:2:1;32097:119:0;;;7863:21:1;7920:2;7900:18;;;7893:30;-1:-1:-1;;;7939:18:1;;;7932:51;8000:18;;32097:119:0;7853:171:1;32097:119:0;32385:6;;32362:30;;;;:22;:30;;;;;;;;:39;;;;;;;;;;;32361:40;32339:115;;;;-1:-1:-1;;;32339:115:0;;7122:2:1;32339:115:0;;;7104:21:1;7161:2;7141:18;;;7134:30;7200:27;7180:18;;;7173:55;7245:18;;32339:115:0;7094:175:1;32339:115:0;32831:6;;32808:30;;;;:22;:30;;;;;;;;:39;;;;;;;;:46;;-1:-1:-1;;32808:46:0;32850:4;32808:46;;;32971:21;;32953:40;;32959:10;;32953:5;:40::i;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;84:177;-1:-1:-1;;;84:177:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:2;;;667:1;664;657:12;619:2;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;609:301;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:2;;;1077:1;1074;1067:12;1029:2;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;1019:352;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;1019:352::o;1376:315::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:2;;;1521:1;1518;1511:12;1473:2;1560:9;1547:23;1579:31;1604:5;1579:31;:::i;:::-;1629:5;1681:2;1666:18;;;;1653:32;;-1:-1:-1;;;1463:228:1:o;1696:180::-;1755:6;1808:2;1796:9;1787:7;1783:23;1779:32;1776:2;;;1824:1;1821;1814:12;1776:2;-1:-1:-1;1847:23:1;;1766:110;-1:-1:-1;1766:110:1:o;1881:184::-;1951:6;2004:2;1992:9;1983:7;1979:23;1975:32;1972:2;;;2020:1;2017;2010:12;1972:2;-1:-1:-1;2043:16:1;;1962:103;-1:-1:-1;1962:103:1:o;2070:248::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:2;;;2215:1;2212;2205:12;2167:2;-1:-1:-1;;2238:23:1;;;2308:2;2293:18;;;2280:32;;-1:-1:-1;2157:161:1:o;3235:597::-;3347:4;3376:2;3405;3394:9;3387:21;3437:6;3431:13;3480:6;3475:2;3464:9;3460:18;3453:34;3505:1;3515:140;3529:6;3526:1;3523:13;3515:140;;;3624:14;;;3620:23;;3614:30;3590:17;;;3609:2;3586:26;3579:66;3544:10;;3515:140;;;3673:6;3670:1;3667:13;3664:2;;;3743:1;3738:2;3729:6;3718:9;3714:22;3710:31;3703:42;3664:2;-1:-1:-1;3816:2:1;3795:15;-1:-1:-1;;3791:29:1;3776:45;;;;3823:2;3772:54;;3356:476;-1:-1:-1;;;3356:476:1:o;6153:356::-;6355:2;6337:21;;;6374:18;;;6367:30;6433:34;6428:2;6413:18;;6406:62;6500:2;6485:18;;6327:182::o;9510:128::-;9550:3;9581:1;9577:6;9574:1;9571:13;9568:2;;;9587:18;;:::i;:::-;-1:-1:-1;9623:9:1;;9558:80::o;9643:422::-;9732:1;9775:5;9732:1;9789:270;9810:7;9800:8;9797:21;9789:270;;;9869:4;9865:1;9861:6;9857:17;9851:4;9848:27;9845:2;;;9878:18;;:::i;:::-;9928:7;9918:8;9914:22;9911:2;;;9948:16;;;;9911:2;10027:22;;;;9987:15;;;;9789:270;;;9793:3;9707:358;;;;;:::o;10070:140::-;10128:5;10157:47;10198:4;10188:8;10184:19;10178:4;10264:5;10294:8;10284:2;;-1:-1:-1;10335:1:1;10349:5;;10284:2;10383:4;10373:2;;-1:-1:-1;10420:1:1;10434:5;;10373:2;10465:4;10483:1;10478:59;;;;10551:1;10546:130;;;;10458:218;;10478:59;10508:1;10499:10;;10522:5;;;10546:130;10583:3;10573:8;10570:17;10567:2;;;10590:18;;:::i;:::-;-1:-1:-1;;10646:1:1;10632:16;;10661:5;;10458:218;;10760:2;10750:8;10747:16;10741:3;10735:4;10732:13;10728:36;10722:2;10712:8;10709:16;10704:2;10698:4;10695:12;10691:35;10688:77;10685:2;;;-1:-1:-1;10797:19:1;;;10829:5;;10685:2;10876:34;10901:8;10895:4;10876:34;:::i;:::-;10946:6;10942:1;10938:6;10934:19;10925:7;10922:32;10919:2;;;10957:18;;:::i;:::-;10995:20;;10274:747;-1:-1:-1;;;10274:747:1:o;11026:168::-;11066:7;11132:1;11128;11124:6;11120:14;11117:1;11114:21;11109:1;11102:9;11095:17;11091:45;11088:2;;;11139:18;;:::i;:::-;-1:-1:-1;11179:9:1;;11078:116::o;11199:380::-;11278:1;11274:12;;;;11321;;;11342:2;;11396:4;11388:6;11384:17;11374:27;;11342:2;11449;11441:6;11438:14;11418:18;11415:38;11412:2;;;11495:10;11490:3;11486:20;11483:1;11476:31;11530:4;11527:1;11520:15;11558:4;11555:1;11548:15;11412:2;;11254:325;;;:::o;11584:135::-;11623:3;-1:-1:-1;;11644:17:1;;11641:2;;;11664:18;;:::i;:::-;-1:-1:-1;11711:1:1;11700:13;;11631:88::o;11724:127::-;11785:10;11780:3;11776:20;11773:1;11766:31;11816:4;11813:1;11806:15;11840:4;11837:1;11830:15;11856:131;-1:-1:-1;;;;;11931:31:1;;11921:42;;11911:2;;11977:1;11974;11967:12
Swarm Source
ipfs://c2f9ffa8cbddd584db2dc82e67a34f3c66224c09240284f5783492a4cc5d5f49
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.