ERC-20
Overview
Max Total Supply
1,000,000,000,000 🟩
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,915,742,248.502190537086427289 🟩Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GREEN
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-05 */ // SPDX-License-Identifier: MIT /** WEN 🟩? */ // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: token.sol pragma solidity ^0.8.20; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } pragma solidity ^0.8.20; contract GREEN is ERC20, Ownable { using SafeMath for uint256; bool public antiWhaleEnabled=true; uint256 _tTotal= 1000000000000 *10**decimals(); //1 trillion uint256 public maxTX = 7000000000 *10**decimals(); constructor(string memory name, string memory symbol ) payable ERC20(name, symbol) Ownable(msg.sender) { super._update(address(0),msg.sender, _tTotal); } function _update(address from, address to, uint256 amount) internal override virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (tx.origin!=owner()){ // antiwhale if(antiWhaleEnabled== true){ require(amount <= maxTX,"Max Amount of tokens in tx"); } } super._update(from,to,amount); } function removeLimits() public onlyOwner{ antiWhaleEnabled = !antiWhaleEnabled; } function setMaxLimit(uint256 _maxTX) public onlyOwner{ maxTX = _maxTX*10**decimals(); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"antiWhaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTX","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":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTX","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600560146101000a81548160ff0219169083151502179055506200002f6200017560201b60201c565b600a6200003d9190620005f6565b64e8d4a510006200004f919062000646565b600655620000626200017560201b60201c565b600a620000709190620005f6565b6401a13b860062000082919062000646565b600755604051620024cb380380620024cb8339818101604052810190620000aa919062000815565b3382828160039081620000be919062000ac6565b508060049081620000d0919062000ac6565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000146575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013d919062000bed565b60405180910390fd5b62000157816200017d60201b60201c565b506200016d5f336006546200024060201b60201c565b505062000ca9565b5f6012905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000294578060025f82825462000287919062000c08565b9250508190555062000365565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000320578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003179392919062000c53565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003ae578060025f8282540392505081905550620003f8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000457919062000c8e565b60405180910390a3505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620004ee57808604811115620004c657620004c562000464565b5b6001851615620004d65780820291505b8081029050620004e68562000491565b9450620004a6565b94509492505050565b5f82620005085760019050620005da565b8162000517575f9050620005da565b81600181146200053057600281146200053b5762000571565b6001915050620005da565b60ff84111562000550576200054f62000464565b5b8360020a9150848211156200056a576200056962000464565b5b50620005da565b5060208310610133831016604e8410600b8410161715620005ab5782820a905083811115620005a557620005a462000464565b5b620005da565b620005ba84848460016200049d565b92509050818404811115620005d457620005d362000464565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200060282620005e1565b91506200060f83620005ea565b92506200063e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004f7565b905092915050565b5f6200065282620005e1565b91506200065f83620005e1565b92508282026200066f81620005e1565b9150828204841483151762000689576200068862000464565b5b5092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620006f182620006a9565b810181811067ffffffffffffffff82111715620007135762000712620006b9565b5b80604052505050565b5f6200072762000690565b9050620007358282620006e6565b919050565b5f67ffffffffffffffff821115620007575762000756620006b9565b5b6200076282620006a9565b9050602081019050919050565b5f5b838110156200078e57808201518184015260208101905062000771565b5f8484015250505050565b5f620007af620007a9846200073a565b6200071c565b905082815260208101848484011115620007ce57620007cd620006a5565b5b620007db8482856200076f565b509392505050565b5f82601f830112620007fa57620007f9620006a1565b5b81516200080c84826020860162000799565b91505092915050565b5f80604083850312156200082e576200082d62000699565b5b5f83015167ffffffffffffffff8111156200084e576200084d6200069d565b5b6200085c85828601620007e3565b925050602083015167ffffffffffffffff81111562000880576200087f6200069d565b5b6200088e85828601620007e3565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620008e757607f821691505b602082108103620008fd57620008fc620008a2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000924565b6200096d868362000924565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620009ae620009a8620009a284620005e1565b62000985565b620005e1565b9050919050565b5f819050919050565b620009c9836200098e565b620009e1620009d882620009b5565b84845462000930565b825550505050565b5f90565b620009f7620009e9565b62000a04818484620009be565b505050565b5b8181101562000a2b5762000a1f5f82620009ed565b60018101905062000a0a565b5050565b601f82111562000a7a5762000a448162000903565b62000a4f8462000915565b8101602085101562000a5f578190505b62000a7762000a6e8562000915565b83018262000a09565b50505b505050565b5f82821c905092915050565b5f62000a9c5f198460080262000a7f565b1980831691505092915050565b5f62000ab6838362000a8b565b9150826002028217905092915050565b62000ad18262000898565b67ffffffffffffffff81111562000aed5762000aec620006b9565b5b62000af98254620008cf565b62000b0682828562000a2f565b5f60209050601f83116001811462000b3c575f841562000b27578287015190505b62000b33858262000aa9565b86555062000ba2565b601f19841662000b4c8662000903565b5f5b8281101562000b755784890151825560018201915060208501945060208101905062000b4e565b8683101562000b95578489015162000b91601f89168262000a8b565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000bd58262000baa565b9050919050565b62000be78162000bc9565b82525050565b5f60208201905062000c025f83018462000bdc565b92915050565b5f62000c1482620005e1565b915062000c2183620005e1565b925082820190508082111562000c3c5762000c3b62000464565b5b92915050565b62000c4d81620005e1565b82525050565b5f60608201905062000c685f83018662000bdc565b62000c77602083018562000c42565b62000c86604083018462000c42565b949350505050565b5f60208201905062000ca35f83018462000c42565b92915050565b6118148062000cb75f395ff3fe6080604052600436106100f6575f3560e01c8063751039fc11610089578063bf8bcee411610058578063bf8bcee414610319578063dd62ed3e14610341578063ebae7c1c1461037d578063f2fde38b146103a7576100fd565b8063751039fc146102735780638da5cb5b1461028957806395d89b41146102b3578063a9059cbb146102dd576100fd565b8063313ce567116100c5578063313ce567146101cd57806357d87f0d146101f757806370a0823114610221578063715018a61461025d576100fd565b806306fdde0314610101578063095ea7b31461012b57806318160ddd1461016757806323b872dd14610191576100fd565b366100fd57005b5f80fd5b34801561010c575f80fd5b506101156103cf565b6040516101229190611096565b60405180910390f35b348015610136575f80fd5b50610151600480360381019061014c9190611147565b61045f565b60405161015e919061119f565b60405180910390f35b348015610172575f80fd5b5061017b610481565b60405161018891906111c7565b60405180910390f35b34801561019c575f80fd5b506101b760048036038101906101b291906111e0565b61048a565b6040516101c4919061119f565b60405180910390f35b3480156101d8575f80fd5b506101e16104b8565b6040516101ee919061124b565b60405180910390f35b348015610202575f80fd5b5061020b6104c0565b604051610218919061119f565b60405180910390f35b34801561022c575f80fd5b5061024760048036038101906102429190611264565b6104d3565b60405161025491906111c7565b60405180910390f35b348015610268575f80fd5b50610271610518565b005b34801561027e575f80fd5b5061028761052b565b005b348015610294575f80fd5b5061029d61055f565b6040516102aa919061129e565b60405180910390f35b3480156102be575f80fd5b506102c7610587565b6040516102d49190611096565b60405180910390f35b3480156102e8575f80fd5b5061030360048036038101906102fe9190611147565b610617565b604051610310919061119f565b60405180910390f35b348015610324575f80fd5b5061033f600480360381019061033a91906112b7565b610639565b005b34801561034c575f80fd5b50610367600480360381019061036291906112e2565b610669565b60405161037491906111c7565b60405180910390f35b348015610388575f80fd5b506103916106eb565b60405161039e91906111c7565b60405180910390f35b3480156103b2575f80fd5b506103cd60048036038101906103c89190611264565b6106f1565b005b6060600380546103de9061134d565b80601f016020809104026020016040519081016040528092919081815260200182805461040a9061134d565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b5050505050905090565b5f80610469610775565b905061047681858561077c565b600191505092915050565b5f600254905090565b5f80610494610775565b90506104a185828561078e565b6104ac858585610820565b60019150509392505050565b5f6012905090565b600560149054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610520610910565b6105295f610997565b565b610533610910565b600560149054906101000a900460ff1615600560146101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105969061134d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c29061134d565b801561060d5780601f106105e45761010080835404028352916020019161060d565b820191905f5260205f20905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b5f80610621610775565b905061062e818585610820565b600191505092915050565b610641610910565b6106496104b8565b600a61065591906114d9565b816106609190611523565b60078190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075481565b6106f9610910565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610769575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610760919061129e565b60405180910390fd5b61077281610997565b50565b5f33905090565b6107898383836001610a5a565b505050565b5f6107998484610669565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461081a578181101561080b578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161080293929190611564565b60405180910390fd5b61081984848484035f610a5a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610890575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610887919061129e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610900575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108f7919061129e565b60405180910390fd5b61090b838383610c29565b505050565b610918610775565b73ffffffffffffffffffffffffffffffffffffffff1661093661055f565b73ffffffffffffffffffffffffffffffffffffffff161461099557610959610775565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161098c919061129e565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aca575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ac1919061129e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b31919061129e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c23578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c1a91906111c7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90611609565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90611697565b60405180910390fd5b5f8111610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611725565b60405180910390fd5b610d4f61055f565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610de35760011515600560149054906101000a900460ff16151503610de257600754811115610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061178d565b60405180910390fd5b5b5b610dee838383610df3565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e43578060025f828254610e3791906117ab565b92505081905550610f11565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ecc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ec393929190611564565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f58578060025f8282540392505081905550610fa2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fff91906111c7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611043578082015181840152602081019050611028565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110688261100c565b6110728185611016565b9350611082818560208601611026565b61108b8161104e565b840191505092915050565b5f6020820190508181035f8301526110ae818461105e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110e3826110ba565b9050919050565b6110f3816110d9565b81146110fd575f80fd5b50565b5f8135905061110e816110ea565b92915050565b5f819050919050565b61112681611114565b8114611130575f80fd5b50565b5f813590506111418161111d565b92915050565b5f806040838503121561115d5761115c6110b6565b5b5f61116a85828601611100565b925050602061117b85828601611133565b9150509250929050565b5f8115159050919050565b61119981611185565b82525050565b5f6020820190506111b25f830184611190565b92915050565b6111c181611114565b82525050565b5f6020820190506111da5f8301846111b8565b92915050565b5f805f606084860312156111f7576111f66110b6565b5b5f61120486828701611100565b935050602061121586828701611100565b925050604061122686828701611133565b9150509250925092565b5f60ff82169050919050565b61124581611230565b82525050565b5f60208201905061125e5f83018461123c565b92915050565b5f60208284031215611279576112786110b6565b5b5f61128684828501611100565b91505092915050565b611298816110d9565b82525050565b5f6020820190506112b15f83018461128f565b92915050565b5f602082840312156112cc576112cb6110b6565b5b5f6112d984828501611133565b91505092915050565b5f80604083850312156112f8576112f76110b6565b5b5f61130585828601611100565b925050602061131685828601611100565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061136457607f821691505b60208210810361137757611376611320565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156113ff578086048111156113db576113da61137d565b5b60018516156113ea5780820291505b80810290506113f8856113aa565b94506113bf565b94509492505050565b5f8261141757600190506114d2565b81611424575f90506114d2565b816001811461143a576002811461144457611473565b60019150506114d2565b60ff8411156114565761145561137d565b5b8360020a91508482111561146d5761146c61137d565b5b506114d2565b5060208310610133831016604e8410600b84101617156114a85782820a9050838111156114a3576114a261137d565b5b6114d2565b6114b584848460016113b6565b925090508184048111156114cc576114cb61137d565b5b81810290505b9392505050565b5f6114e382611114565b91506114ee83611230565b925061151b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611408565b905092915050565b5f61152d82611114565b915061153883611114565b925082820261154681611114565b9150828204841483151761155d5761155c61137d565b5b5092915050565b5f6060820190506115775f83018661128f565b61158460208301856111b8565b61159160408301846111b8565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115f3602583611016565b91506115fe82611599565b604082019050919050565b5f6020820190508181035f830152611620816115e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611681602383611016565b915061168c82611627565b604082019050919050565b5f6020820190508181035f8301526116ae81611675565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61170f602983611016565b915061171a826116b5565b604082019050919050565b5f6020820190508181035f83015261173c81611703565b9050919050565b7f4d617820416d6f756e74206f6620746f6b656e7320696e2074780000000000005f82015250565b5f611777601a83611016565b915061178282611743565b602082019050919050565b5f6020820190508181035f8301526117a48161176b565b9050919050565b5f6117b582611114565b91506117c083611114565b92508282019050808211156117d8576117d761137d565b5b9291505056fea2646970667358221220ce43122447f5ef91d624d185599d076723788839259e539072159ce229740c5d64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004f09f9fa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09f9fa900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100f6575f3560e01c8063751039fc11610089578063bf8bcee411610058578063bf8bcee414610319578063dd62ed3e14610341578063ebae7c1c1461037d578063f2fde38b146103a7576100fd565b8063751039fc146102735780638da5cb5b1461028957806395d89b41146102b3578063a9059cbb146102dd576100fd565b8063313ce567116100c5578063313ce567146101cd57806357d87f0d146101f757806370a0823114610221578063715018a61461025d576100fd565b806306fdde0314610101578063095ea7b31461012b57806318160ddd1461016757806323b872dd14610191576100fd565b366100fd57005b5f80fd5b34801561010c575f80fd5b506101156103cf565b6040516101229190611096565b60405180910390f35b348015610136575f80fd5b50610151600480360381019061014c9190611147565b61045f565b60405161015e919061119f565b60405180910390f35b348015610172575f80fd5b5061017b610481565b60405161018891906111c7565b60405180910390f35b34801561019c575f80fd5b506101b760048036038101906101b291906111e0565b61048a565b6040516101c4919061119f565b60405180910390f35b3480156101d8575f80fd5b506101e16104b8565b6040516101ee919061124b565b60405180910390f35b348015610202575f80fd5b5061020b6104c0565b604051610218919061119f565b60405180910390f35b34801561022c575f80fd5b5061024760048036038101906102429190611264565b6104d3565b60405161025491906111c7565b60405180910390f35b348015610268575f80fd5b50610271610518565b005b34801561027e575f80fd5b5061028761052b565b005b348015610294575f80fd5b5061029d61055f565b6040516102aa919061129e565b60405180910390f35b3480156102be575f80fd5b506102c7610587565b6040516102d49190611096565b60405180910390f35b3480156102e8575f80fd5b5061030360048036038101906102fe9190611147565b610617565b604051610310919061119f565b60405180910390f35b348015610324575f80fd5b5061033f600480360381019061033a91906112b7565b610639565b005b34801561034c575f80fd5b50610367600480360381019061036291906112e2565b610669565b60405161037491906111c7565b60405180910390f35b348015610388575f80fd5b506103916106eb565b60405161039e91906111c7565b60405180910390f35b3480156103b2575f80fd5b506103cd60048036038101906103c89190611264565b6106f1565b005b6060600380546103de9061134d565b80601f016020809104026020016040519081016040528092919081815260200182805461040a9061134d565b80156104555780601f1061042c57610100808354040283529160200191610455565b820191905f5260205f20905b81548152906001019060200180831161043857829003601f168201915b5050505050905090565b5f80610469610775565b905061047681858561077c565b600191505092915050565b5f600254905090565b5f80610494610775565b90506104a185828561078e565b6104ac858585610820565b60019150509392505050565b5f6012905090565b600560149054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610520610910565b6105295f610997565b565b610533610910565b600560149054906101000a900460ff1615600560146101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105969061134d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c29061134d565b801561060d5780601f106105e45761010080835404028352916020019161060d565b820191905f5260205f20905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b5f80610621610775565b905061062e818585610820565b600191505092915050565b610641610910565b6106496104b8565b600a61065591906114d9565b816106609190611523565b60078190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075481565b6106f9610910565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610769575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610760919061129e565b60405180910390fd5b61077281610997565b50565b5f33905090565b6107898383836001610a5a565b505050565b5f6107998484610669565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461081a578181101561080b578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161080293929190611564565b60405180910390fd5b61081984848484035f610a5a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610890575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610887919061129e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610900575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108f7919061129e565b60405180910390fd5b61090b838383610c29565b505050565b610918610775565b73ffffffffffffffffffffffffffffffffffffffff1661093661055f565b73ffffffffffffffffffffffffffffffffffffffff161461099557610959610775565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161098c919061129e565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aca575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ac1919061129e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b31919061129e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c23578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c1a91906111c7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90611609565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90611697565b60405180910390fd5b5f8111610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611725565b60405180910390fd5b610d4f61055f565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610de35760011515600560149054906101000a900460ff16151503610de257600754811115610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061178d565b60405180910390fd5b5b5b610dee838383610df3565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e43578060025f828254610e3791906117ab565b92505081905550610f11565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ecc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ec393929190611564565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f58578060025f8282540392505081905550610fa2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fff91906111c7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611043578082015181840152602081019050611028565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110688261100c565b6110728185611016565b9350611082818560208601611026565b61108b8161104e565b840191505092915050565b5f6020820190508181035f8301526110ae818461105e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110e3826110ba565b9050919050565b6110f3816110d9565b81146110fd575f80fd5b50565b5f8135905061110e816110ea565b92915050565b5f819050919050565b61112681611114565b8114611130575f80fd5b50565b5f813590506111418161111d565b92915050565b5f806040838503121561115d5761115c6110b6565b5b5f61116a85828601611100565b925050602061117b85828601611133565b9150509250929050565b5f8115159050919050565b61119981611185565b82525050565b5f6020820190506111b25f830184611190565b92915050565b6111c181611114565b82525050565b5f6020820190506111da5f8301846111b8565b92915050565b5f805f606084860312156111f7576111f66110b6565b5b5f61120486828701611100565b935050602061121586828701611100565b925050604061122686828701611133565b9150509250925092565b5f60ff82169050919050565b61124581611230565b82525050565b5f60208201905061125e5f83018461123c565b92915050565b5f60208284031215611279576112786110b6565b5b5f61128684828501611100565b91505092915050565b611298816110d9565b82525050565b5f6020820190506112b15f83018461128f565b92915050565b5f602082840312156112cc576112cb6110b6565b5b5f6112d984828501611133565b91505092915050565b5f80604083850312156112f8576112f76110b6565b5b5f61130585828601611100565b925050602061131685828601611100565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061136457607f821691505b60208210810361137757611376611320565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156113ff578086048111156113db576113da61137d565b5b60018516156113ea5780820291505b80810290506113f8856113aa565b94506113bf565b94509492505050565b5f8261141757600190506114d2565b81611424575f90506114d2565b816001811461143a576002811461144457611473565b60019150506114d2565b60ff8411156114565761145561137d565b5b8360020a91508482111561146d5761146c61137d565b5b506114d2565b5060208310610133831016604e8410600b84101617156114a85782820a9050838111156114a3576114a261137d565b5b6114d2565b6114b584848460016113b6565b925090508184048111156114cc576114cb61137d565b5b81810290505b9392505050565b5f6114e382611114565b91506114ee83611230565b925061151b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611408565b905092915050565b5f61152d82611114565b915061153883611114565b925082820261154681611114565b9150828204841483151761155d5761155c61137d565b5b5092915050565b5f6060820190506115775f83018661128f565b61158460208301856111b8565b61159160408301846111b8565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115f3602583611016565b91506115fe82611599565b604082019050919050565b5f6020820190508181035f830152611620816115e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611681602383611016565b915061168c82611627565b604082019050919050565b5f6020820190508181035f8301526116ae81611675565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61170f602983611016565b915061171a826116b5565b604082019050919050565b5f6020820190508181035f83015261173c81611703565b9050919050565b7f4d617820416d6f756e74206f6620746f6b656e7320696e2074780000000000005f82015250565b5f611777601a83611016565b915061178282611743565b602082019050919050565b5f6020820190508181035f8301526117a48161176b565b9050919050565b5f6117b582611114565b91506117c083611114565b92508282019050808211156117d8576117d761137d565b5b9291505056fea2646970667358221220ce43122447f5ef91d624d185599d076723788839259e539072159ce229740c5d64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004f09f9fa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f09f9fa900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): 🟩
Arg [1] : symbol (string): 🟩
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : f09f9fa900000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : f09f9fa900000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
27035:1329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16475:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18768:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17577:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19536:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17428:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27108:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17739:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10088:103;;;;;;;;;;;;;:::i;:::-;;28096:95;;;;;;;;;;;;;:::i;:::-;;9413:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16685:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18062:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28199:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18307:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27214:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10346:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16475:91;16520:13;16553:5;16546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16475:91;:::o;18768:190::-;18841:4;18858:13;18874:12;:10;:12::i;:::-;18858:28;;18897:31;18906:5;18913:7;18922:5;18897:8;:31::i;:::-;18946:4;18939:11;;;18768:190;;;;:::o;17577:99::-;17629:7;17656:12;;17649:19;;17577:99;:::o;19536:249::-;19623:4;19640:15;19658:12;:10;:12::i;:::-;19640:30;;19681:37;19697:4;19703:7;19712:5;19681:15;:37::i;:::-;19729:26;19739:4;19745:2;19749:5;19729:9;:26::i;:::-;19773:4;19766:11;;;19536:249;;;;;:::o;17428:84::-;17477:5;17502:2;17495:9;;17428:84;:::o;27108:33::-;;;;;;;;;;;;;:::o;17739:118::-;17804:7;17831:9;:18;17841:7;17831:18;;;;;;;;;;;;;;;;17824:25;;17739:118;;;:::o;10088:103::-;9299:13;:11;:13::i;:::-;10153:30:::1;10180:1;10153:18;:30::i;:::-;10088:103::o:0;28096:95::-;9299:13;:11;:13::i;:::-;28167:16:::1;;;;;;;;;;;28166:17;28147:16;;:36;;;;;;;;;;;;;;;;;;28096:95::o:0;9413:87::-;9459:7;9486:6;;;;;;;;;;;9479:13;;9413:87;:::o;16685:95::-;16732:13;16765:7;16758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16685:95;:::o;18062:182::-;18131:4;18148:13;18164:12;:10;:12::i;:::-;18148:28;;18187:27;18197:5;18204:2;18208:5;18187:9;:27::i;:::-;18232:4;18225:11;;;18062:182;;;;:::o;28199:102::-;9299:13;:11;:13::i;:::-;28283:10:::1;:8;:10::i;:::-;28279:2;:14;;;;:::i;:::-;28272:6;:21;;;;:::i;:::-;28264:5;:29;;;;28199:102:::0;:::o;18307:142::-;18387:7;18414:11;:18;18426:5;18414:18;;;;;;;;;;;;;;;:27;18433:7;18414:27;;;;;;;;;;;;;;;;18407:34;;18307:142;;;;:::o;27214:49::-;;;;:::o;10346:220::-;9299:13;:11;:13::i;:::-;10451:1:::1;10431:22;;:8;:22;;::::0;10427:93:::1;;10505:1;10477:31;;;;;;;;;;;:::i;:::-;;;;;;;;10427:93;10530:28;10549:8;10530:18;:28::i;:::-;10346:220:::0;:::o;7422:98::-;7475:7;7502:10;7495:17;;7422:98;:::o;23596:130::-;23681:37;23690:5;23697:7;23706:5;23713:4;23681:8;:37::i;:::-;23596:130;;;:::o;25312:487::-;25412:24;25439:25;25449:5;25456:7;25439:9;:25::i;:::-;25412:52;;25499:17;25479:16;:37;25475:317;;25556:5;25537:16;:24;25533:132;;;25616:7;25625:16;25643:5;25589:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25533:132;25708:57;25717:5;25724:7;25752:5;25733:16;:24;25759:5;25708:8;:57::i;:::-;25475:317;25401:398;25312:487;;;:::o;20170:309::-;20271:1;20255:18;;:4;:18;;;20251:88;;20324:1;20297:30;;;;;;;;;;;:::i;:::-;;;;;;;;20251:88;20367:1;20353:16;;:2;:16;;;20349:88;;20422:1;20393:32;;;;;;;;;;;:::i;:::-;;;;;;;;20349:88;20447:24;20455:4;20461:2;20465:5;20447:7;:24::i;:::-;20170:309;;;:::o;9578:166::-;9649:12;:10;:12::i;:::-;9638:23;;:7;:5;:7::i;:::-;:23;;;9634:103;;9712:12;:10;:12::i;:::-;9685:40;;;;;;;;;;;:::i;:::-;;;;;;;;9634:103;9578:166::o;10726:191::-;10800:16;10819:6;;;;;;;;;;;10800:25;;10845:8;10836:6;;:17;;;;;;;;;;;;;;;;;;10900:8;10869:40;;10890:8;10869:40;;;;;;;;;;;;10789:128;10726:191;:::o;24577:443::-;24707:1;24690:19;;:5;:19;;;24686:91;;24762:1;24733:32;;;;;;;;;;;:::i;:::-;;;;;;;;24686:91;24810:1;24791:21;;:7;:21;;;24787:92;;24864:1;24836:31;;;;;;;;;;;:::i;:::-;;;;;;;;24787:92;24919:5;24889:11;:18;24901:5;24889:18;;;;;;;;;;;;;;;:27;24908:7;24889:27;;;;;;;;;;;;;;;:35;;;;24939:9;24935:78;;;24986:7;24970:31;;24979:5;24970:31;;;24995:5;24970:31;;;;;;:::i;:::-;;;;;;;;24935:78;24577:443;;;;:::o;27480:596::-;27602:1;27586:18;;:4;:18;;;27578:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27679:1;27665:16;;:2;:16;;;27657:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27749:1;27740:6;:10;27732:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27830:7;:5;:7::i;:::-;27819:18;;:9;:18;;;27815:202;;27905:4;27886:23;;:16;;;;;;;;;;;:23;;;27883:123;;27951:5;;27941:6;:15;;27933:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;27883:123;27815:202;28037:29;28051:4;28056:2;28059:6;28037:13;:29::i;:::-;27480:596;;;:::o;20803:1135::-;20909:1;20893:18;;:4;:18;;;20889:552;;21047:5;21031:12;;:21;;;;;;;:::i;:::-;;;;;;;;20889:552;;;21085:19;21107:9;:15;21117:4;21107:15;;;;;;;;;;;;;;;;21085:37;;21155:5;21141:11;:19;21137:117;;;21213:4;21219:11;21232:5;21188:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21137:117;21409:5;21395:11;:19;21377:9;:15;21387:4;21377:15;;;;;;;;;;;;;;;:37;;;;21070:371;20889:552;21471:1;21457:16;;:2;:16;;;21453:435;;21639:5;21623:12;;:21;;;;;;;;;;;21453:435;;;21856:5;21839:9;:13;21849:2;21839:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21453:435;21920:2;21905:25;;21914:4;21905:25;;;21924:5;21905:25;;;;;;:::i;:::-;;;;;;;;20803:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:102;7095:8;7142:5;7139:1;7135:13;7114:34;;7053:102;;;:::o;7161:848::-;7222:5;7229:4;7253:6;7244:15;;7277:5;7268:14;;7291:712;7312:1;7302:8;7299:15;7291:712;;;7407:4;7402:3;7398:14;7392:4;7389:24;7386:50;;;7416:18;;:::i;:::-;7386:50;7466:1;7456:8;7452:16;7449:451;;;7881:4;7874:5;7870:16;7861:25;;7449:451;7931:4;7925;7921:15;7913:23;;7961:32;7984:8;7961:32;:::i;:::-;7949:44;;7291:712;;;7161:848;;;;;;;:::o;8015:1073::-;8069:5;8260:8;8250:40;;8281:1;8272:10;;8283:5;;8250:40;8309:4;8299:36;;8326:1;8317:10;;8328:5;;8299:36;8395:4;8443:1;8438:27;;;;8479:1;8474:191;;;;8388:277;;8438:27;8456:1;8447:10;;8458:5;;;8474:191;8519:3;8509:8;8506:17;8503:43;;;8526:18;;:::i;:::-;8503:43;8575:8;8572:1;8568:16;8559:25;;8610:3;8603:5;8600:14;8597:40;;;8617:18;;:::i;:::-;8597:40;8650:5;;;8388:277;;8774:2;8764:8;8761:16;8755:3;8749:4;8746:13;8742:36;8724:2;8714:8;8711:16;8706:2;8700:4;8697:12;8693:35;8677:111;8674:246;;;8830:8;8824:4;8820:19;8811:28;;8865:3;8858:5;8855:14;8852:40;;;8872:18;;:::i;:::-;8852:40;8905:5;;8674:246;8945:42;8983:3;8973:8;8967:4;8964:1;8945:42;:::i;:::-;8930:57;;;;9019:4;9014:3;9010:14;9003:5;9000:25;8997:51;;;9028:18;;:::i;:::-;8997:51;9077:4;9070:5;9066:16;9057:25;;8015:1073;;;;;;:::o;9094:281::-;9152:5;9176:23;9194:4;9176:23;:::i;:::-;9168:31;;9220:25;9236:8;9220:25;:::i;:::-;9208:37;;9264:104;9301:66;9291:8;9285:4;9264:104;:::i;:::-;9255:113;;9094:281;;;;:::o;9381:410::-;9421:7;9444:20;9462:1;9444:20;:::i;:::-;9439:25;;9478:20;9496:1;9478:20;:::i;:::-;9473:25;;9533:1;9530;9526:9;9555:30;9573:11;9555:30;:::i;:::-;9544:41;;9734:1;9725:7;9721:15;9718:1;9715:22;9695:1;9688:9;9668:83;9645:139;;9764:18;;:::i;:::-;9645:139;9429:362;9381:410;;;;:::o;9797:442::-;9946:4;9984:2;9973:9;9969:18;9961:26;;9997:71;10065:1;10054:9;10050:17;10041:6;9997:71;:::i;:::-;10078:72;10146:2;10135:9;10131:18;10122:6;10078:72;:::i;:::-;10160;10228:2;10217:9;10213:18;10204:6;10160:72;:::i;:::-;9797:442;;;;;;:::o;10245:224::-;10385:34;10381:1;10373:6;10369:14;10362:58;10454:7;10449:2;10441:6;10437:15;10430:32;10245:224;:::o;10475:366::-;10617:3;10638:67;10702:2;10697:3;10638:67;:::i;:::-;10631:74;;10714:93;10803:3;10714:93;:::i;:::-;10832:2;10827:3;10823:12;10816:19;;10475:366;;;:::o;10847:419::-;11013:4;11051:2;11040:9;11036:18;11028:26;;11100:9;11094:4;11090:20;11086:1;11075:9;11071:17;11064:47;11128:131;11254:4;11128:131;:::i;:::-;11120:139;;10847:419;;;:::o;11272:222::-;11412:34;11408:1;11400:6;11396:14;11389:58;11481:5;11476:2;11468:6;11464:15;11457:30;11272:222;:::o;11500:366::-;11642:3;11663:67;11727:2;11722:3;11663:67;:::i;:::-;11656:74;;11739:93;11828:3;11739:93;:::i;:::-;11857:2;11852:3;11848:12;11841:19;;11500:366;;;:::o;11872:419::-;12038:4;12076:2;12065:9;12061:18;12053:26;;12125:9;12119:4;12115:20;12111:1;12100:9;12096:17;12089:47;12153:131;12279:4;12153:131;:::i;:::-;12145:139;;11872:419;;;:::o;12297:228::-;12437:34;12433:1;12425:6;12421:14;12414:58;12506:11;12501:2;12493:6;12489:15;12482:36;12297:228;:::o;12531:366::-;12673:3;12694:67;12758:2;12753:3;12694:67;:::i;:::-;12687:74;;12770:93;12859:3;12770:93;:::i;:::-;12888:2;12883:3;12879:12;12872:19;;12531:366;;;:::o;12903:419::-;13069:4;13107:2;13096:9;13092:18;13084:26;;13156:9;13150:4;13146:20;13142:1;13131:9;13127:17;13120:47;13184:131;13310:4;13184:131;:::i;:::-;13176:139;;12903:419;;;:::o;13328:176::-;13468:28;13464:1;13456:6;13452:14;13445:52;13328:176;:::o;13510:366::-;13652:3;13673:67;13737:2;13732:3;13673:67;:::i;:::-;13666:74;;13749:93;13838:3;13749:93;:::i;:::-;13867:2;13862:3;13858:12;13851:19;;13510:366;;;:::o;13882:419::-;14048:4;14086:2;14075:9;14071:18;14063:26;;14135:9;14129:4;14125:20;14121:1;14110:9;14106:17;14099:47;14163:131;14289:4;14163:131;:::i;:::-;14155:139;;13882:419;;;:::o;14307:191::-;14347:3;14366:20;14384:1;14366:20;:::i;:::-;14361:25;;14400:20;14418:1;14400:20;:::i;:::-;14395:25;;14443:1;14440;14436:9;14429:16;;14464:3;14461:1;14458:10;14455:36;;;14471:18;;:::i;:::-;14455:36;14307:191;;;;:::o
Swarm Source
ipfs://ce43122447f5ef91d624d185599d076723788839259e539072159ce229740c5d
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.