Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
888,888,888 RICHU
Holders
83
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000415709725 RICHUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RICHUNCLE
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT /* ==== CONTRACT FUNCTIONS ==== 1. Airdrop (pre-saler tokens distribution) 2. Blacklist (anti-bots) 4. 8/8 tax for 3 mins 5. 1.5% of total supply holding limit for 15 mins 6. Burn tokens */ pragma solidity ^0.8.0; import { ERC20 } from "./2.ERC20.sol"; import { Ownable } from "./3.Ownable.sol"; // ==== Contract definition ===== contract RICHUNCLE is Ownable, ERC20 { // ==== Variables declaration ==== // ==== LP-related variables ==== address public uniswapContractAddress; uint256 public tradingStartTime; // ===== Whale prevention-related variables bool public holdLimitState = false; uint256 public holdLimitAmount; uint256 public holdLimitWindow = 15 minutes; // ===== Tax-related variables ==== address public taxWallet; uint256 public initialTaxWindow = 3 minutes; uint256 public taxRate = 8; // ===== BL address mapping ==== mapping(address => bool) public blacklisted; // ==== Constructor definition (Sets total supply & tax wallet address ==== constructor(uint256 _totalSupply, address _taxWallet) ERC20("RICH UNCLE", "RICHU") { _mint(msg.sender, _totalSupply); taxWallet = _taxWallet; holdLimitAmount = _totalSupply * 15 / 1000; } // ==== Burn token function ==== function burn(uint256 value) public { _burn(msg.sender, value); } // ==== Token airdrop function ==== function airdropTokens(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner { require(recipients.length == amounts.length, "Mismatched input arrays"); for (uint256 i = 0; i < recipients.length; i++) { _transfer(owner(), recipients[i], amounts[i]); } } // ==== Set holding limit ==== function setHoldLimit (bool _holdLimitState, uint256 _holdLimitAmount, uint256 _holdLimitWindow) external onlyOwner { holdLimitState = _holdLimitState; holdLimitAmount = _holdLimitAmount; holdLimitWindow = _holdLimitWindow; } // ==== BL function ==== function blacklist(address[] calldata _address, bool _isBlacklisted) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { blacklisted[_address[i]] = _isBlacklisted; } } // ==== set Uniswap V2 Pair address ==== function setUniswapContractAddress(address _uniswapContractAddress) external onlyOwner { require(tradingStartTime == 0, "Can only set pair once."); uniswapContractAddress = _uniswapContractAddress; tradingStartTime = block.timestamp; holdLimitState = true; } // ==== Token transfer logic ==== function _transfer( address from, address to, uint256 amount ) internal virtual override { // Calculate transfer and tax amounts uint256 taxAmount; uint256 transferAmount; if ((from == uniswapContractAddress || to == uniswapContractAddress) && (block.timestamp - tradingStartTime <= initialTaxWindow)) { // if within initial tax period taxAmount = (amount * taxRate) / 100; // Calculate amount of tokens to be taxed based on initial tax rate transferAmount = amount - taxAmount; //==== normal send tokens to tax wallet ==== super._transfer(from, to, transferAmount); super._transfer(from, taxWallet, taxAmount); //==== tokens burned instead of sending to tax wallet ==== /* if (to == uniswapContractAddress){ super._transfer(from, to, transferAmount); _burn(from, taxAmount); } else { super._transfer(from, to, transferAmount); _burn(msg.sender, taxAmount); } */ } else { super._transfer(from,to,amount); } } // ==== Checks before token transfer happens ==== function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { // ==== Check if wallet is blacklisted ==== require(!blacklisted[to] && !blacklisted[from], "Wallet is blacklisted"); // ==== Check if trading started ==== if (uniswapContractAddress == address(0) && from != address(0)) { require(from == owner(), "Trading yet to begin"); return; } // ==== Check if successful buy transaction will exceed holding limit ==== if (holdLimitState && from == uniswapContractAddress && (block.timestamp - tradingStartTime <= holdLimitWindow)) { require(super.balanceOf(to) + amount <= holdLimitAmount, "Exceeds allowable holding limit per wallet"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./4.IERC20.sol"; import "./5.IERC20Metadata.sol"; import "./6.Context.sol"; /** * @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.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. * * 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}. * * 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 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 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./6.Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./4.IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_taxWallet","type":"address"}],"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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":[],"name":"holdLimitAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdLimitState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdLimitWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"initialTaxWindow","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_holdLimitState","type":"bool"},{"internalType":"uint256","name":"_holdLimitAmount","type":"uint256"},{"internalType":"uint256","name":"_holdLimitWindow","type":"uint256"}],"name":"setHoldLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapContractAddress","type":"address"}],"name":"setUniswapContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"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"},{"inputs":[],"name":"uniswapContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526008805460ff19168155610384600a5560b4600c55600d5534801562000028575f80fd5b506040516200198e3803806200198e8339810160408190526200004b9162000431565b6040518060400160405280600a8152602001695249434820554e434c4560b01b81525060405180604001604052806005815260200164524943485560d81b815250620000a6620000a06200011b60201b60201c565b6200011f565b6004620000b483826200050c565b506005620000c382826200050c565b505050620000d833836200016e60201b60201c565b600b80546001600160a01b0319166001600160a01b0383161790556103e86200010383600f620005e8565b6200010f919062000608565b60095550620006549050565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001ca5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001d75f838362000242565b8060035f828254620001ea919062000628565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382165f908152600e602052604090205460ff161580156200028357506001600160a01b0383165f908152600e602052604090205460ff16155b620002d15760405162461bcd60e51b815260206004820152601560248201527f57616c6c657420697320626c61636b6c697374656400000000000000000000006044820152606401620001c1565b6006546001600160a01b0316158015620002f357506001600160a01b03831615155b156200035c575f546001600160a01b03848116911614620003575760405162461bcd60e51b815260206004820152601460248201527f54726164696e672079657420746f20626567696e0000000000000000000000006044820152606401620001c1565b505050565b60085460ff1680156200037c57506006546001600160a01b038481169116145b8015620003995750600a546007546200039690426200063e565b11155b15620003575760095481620003c2846001600160a01b03165f9081526001602052604090205490565b620003ce919062000628565b1115620003575760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f7761626c6520686f6c64696e67206c696d6974206044820152691c195c881dd85b1b195d60b21b6064820152608401620001c1565b5f806040838503121562000443575f80fd5b825160208401519092506001600160a01b038116811462000462575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200049657607f821691505b602082108103620004b557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000357575f81815260208120601f850160051c81016020861015620004e35750805b601f850160051c820191505b818110156200050457828155600101620004ef565b505050505050565b81516001600160401b038111156200052857620005286200046d565b620005408162000539845462000481565b84620004bb565b602080601f83116001811462000576575f84156200055e5750858301515b5f19600386901b1c1916600185901b17855562000504565b5f85815260208120601f198616915b82811015620005a65788860151825594840194600190910190840162000585565b5085821015620005c457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620006025762000602620005d4565b92915050565b5f826200062357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620006025762000602620005d4565b81810381811115620006025762000602620005d4565b61132c80620006625f395ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063715018a6116100f3578063a98523fa11610093578063c997eb8d1161006e578063c997eb8d1461037b578063dbac26e91461038e578063dd62ed3e146103b0578063f2fde38b146103c3575f80fd5b8063a98523fa1461034c578063b99618e014610355578063c20deeb214610368575f80fd5b80638da5cb5b116100ce5780638da5cb5b1461030e57806395d89b411461031e578063a457c2d714610326578063a9059cbb14610339575f80fd5b8063715018a6146102f4578063771a3a1d146102fc5780637b9c24c914610305575f80fd5b80632dc0562d1161015e57806342966c681161013957806342966c681461029b578063706f6937146102b057806370a08231146102c357806370b7b80c146102eb575f80fd5b80632dc0562d14610266578063313ce567146102795780633950935114610288575f80fd5b806318160ddd1161019957806318160ddd1461022b57806322586e641461023d57806323b872dd1461024a57806323bd37211461025d575f80fd5b806306fdde03146101bf57806308ed2c71146101dd578063095ea7b314610208575b5f80fd5b6101c76103d6565b6040516101d49190610fb5565b60405180910390f35b6006546101f0906001600160a01b031681565b6040516001600160a01b0390911681526020016101d4565b61021b61021636600461101b565b610466565b60405190151581526020016101d4565b6003545b6040519081526020016101d4565b60085461021b9060ff1681565b61021b610258366004611043565b61047f565b61022f60095481565b600b546101f0906001600160a01b031681565b604051601281526020016101d4565b61021b61029636600461101b565b6104a2565b6102ae6102a936600461107c565b6104c3565b005b6102ae6102be3660046110db565b6104d0565b61022f6102d1366004611142565b6001600160a01b03165f9081526001602052604090205490565b61022f60075481565b6102ae6105a8565b61022f600d5481565b61022f600c5481565b5f546001600160a01b03166101f0565b6101c76105bb565b61021b61033436600461101b565b6105ca565b61021b61034736600461101b565b610644565b61022f600a5481565b6102ae610363366004611142565b610651565b6102ae610376366004611171565b6106dc565b6102ae6103893660046111a1565b6106fe565b61021b61039c366004611142565b600e6020525f908152604090205460ff1681565b61022f6103be3660046111f1565b61077a565b6102ae6103d1366004611142565b6107a4565b6060600480546103e590611222565b80601f016020809104026020016040519081016040528092919081815260200182805461041190611222565b801561045c5780601f106104335761010080835404028352916020019161045c565b820191905f5260205f20905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b5f3361047381858561081a565b60019150505b92915050565b5f3361048c85828561093e565b6104978585856109b0565b506001949350505050565b5f336104738185856104b4838361077a565b6104be919061126e565b61081a565b6104cd3382610a57565b50565b6104d8610b91565b82811461052c5760405162461bcd60e51b815260206004820152601760248201527f4d69736d61746368656420696e7075742061727261797300000000000000000060448201526064015b60405180910390fd5b5f5b838110156105a15761058f61054a5f546001600160a01b031690565b86868481811061055c5761055c611281565b90506020020160208101906105719190611142565b85858581811061058357610583611281565b905060200201356109b0565b8061059981611295565b91505061052e565b5050505050565b6105b0610b91565b6105b95f610bea565b565b6060600580546103e590611222565b5f33816105d7828661077a565b9050838110156106375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610523565b610497828686840361081a565b5f336104738185856109b0565b610659610b91565b600754156106a95760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79207365742070616972206f6e63652e0000000000000000006044820152606401610523565b600680546001600160a01b0319166001600160a01b0392909216919091179055426007556008805460ff19166001179055565b6106e4610b91565b6008805460ff191693151593909317909255600955600a55565b610706610b91565b5f5b828110156107745781600e5f86868581811061072657610726611281565b905060200201602081019061073b9190611142565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061076c81611295565b915050610708565b50505050565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6107ac610b91565b6001600160a01b0381166108115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610523565b6104cd81610bea565b6001600160a01b03831661087c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610523565b6001600160a01b0382166108dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610523565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610949848461077a565b90505f19811461077457818110156109a35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610523565b610774848484840361081a565b6006545f9081906001600160a01b03868116911614806109dd57506006546001600160a01b038581169116145b80156109f75750600c546007546109f490426112ad565b11155b15610a4c576064600d5484610a0c91906112c0565b610a1691906112d7565b9150610a2282846112ad565b9050610a2f858583610c39565b600b54610a479086906001600160a01b031684610c39565b6105a1565b6105a1858585610c39565b6001600160a01b038216610ab75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610523565b610ac2825f83610ded565b6001600160a01b0382165f9081526001602052604090205481811015610b355760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610523565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610931565b505050565b5f546001600160a01b031633146105b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610523565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c9d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610523565b6001600160a01b038216610cff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610523565b610d0a838383610ded565b6001600160a01b0383165f9081526001602052604090205481811015610d815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610523565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610de09086815260200190565b60405180910390a3610774565b6001600160a01b0382165f908152600e602052604090205460ff16158015610e2d57506001600160a01b0383165f908152600e602052604090205460ff16155b610e715760405162461bcd60e51b815260206004820152601560248201527415d85b1b195d081a5cc8189b1858dadb1a5cdd1959605a1b6044820152606401610523565b6006546001600160a01b0316158015610e9257506001600160a01b03831615155b15610eea575f546001600160a01b03848116911614610b8c5760405162461bcd60e51b81526020600482015260146024820152732a3930b234b733903cb2ba103a37903132b3b4b760611b6044820152606401610523565b60085460ff168015610f0957506006546001600160a01b038481169116145b8015610f235750600a54600754610f2090426112ad565b11155b15610b8c5760095481610f4a846001600160a01b03165f9081526001602052604090205490565b610f54919061126e565b1115610b8c5760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f7761626c6520686f6c64696e67206c696d6974206044820152691c195c881dd85b1b195d60b21b6064820152608401610523565b5f6020808352835180828501525f5b81811015610fe057858101830151858201604001528201610fc4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611016575f80fd5b919050565b5f806040838503121561102c575f80fd5b61103583611000565b946020939093013593505050565b5f805f60608486031215611055575f80fd5b61105e84611000565b925061106c60208501611000565b9150604084013590509250925092565b5f6020828403121561108c575f80fd5b5035919050565b5f8083601f8401126110a3575f80fd5b50813567ffffffffffffffff8111156110ba575f80fd5b6020830191508360208260051b85010111156110d4575f80fd5b9250929050565b5f805f80604085870312156110ee575f80fd5b843567ffffffffffffffff80821115611105575f80fd5b61111188838901611093565b90965094506020870135915080821115611129575f80fd5b5061113687828801611093565b95989497509550505050565b5f60208284031215611152575f80fd5b61115b82611000565b9392505050565b80358015158114611016575f80fd5b5f805f60608486031215611183575f80fd5b61118c84611162565b95602085013595506040909401359392505050565b5f805f604084860312156111b3575f80fd5b833567ffffffffffffffff8111156111c9575f80fd5b6111d586828701611093565b90945092506111e8905060208501611162565b90509250925092565b5f8060408385031215611202575f80fd5b61120b83611000565b915061121960208401611000565b90509250929050565b600181811c9082168061123657607f821691505b60208210810361125457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104795761047961125a565b634e487b7160e01b5f52603260045260245ffd5b5f600182016112a6576112a661125a565b5060010190565b818103818111156104795761047961125a565b80820281158282048414176104795761047961125a565b5f826112f157634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122035b09e2e91468af0595daa84933af7f22d16a4d12b3735c017e8a4606368bb8c64736f6c63430008140033000000000000000000000000000000000000000002df458b2c635dcf55e00000000000000000000000000000a820521fa499eedfb5461072ebb3cd22993069d4
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063715018a6116100f3578063a98523fa11610093578063c997eb8d1161006e578063c997eb8d1461037b578063dbac26e91461038e578063dd62ed3e146103b0578063f2fde38b146103c3575f80fd5b8063a98523fa1461034c578063b99618e014610355578063c20deeb214610368575f80fd5b80638da5cb5b116100ce5780638da5cb5b1461030e57806395d89b411461031e578063a457c2d714610326578063a9059cbb14610339575f80fd5b8063715018a6146102f4578063771a3a1d146102fc5780637b9c24c914610305575f80fd5b80632dc0562d1161015e57806342966c681161013957806342966c681461029b578063706f6937146102b057806370a08231146102c357806370b7b80c146102eb575f80fd5b80632dc0562d14610266578063313ce567146102795780633950935114610288575f80fd5b806318160ddd1161019957806318160ddd1461022b57806322586e641461023d57806323b872dd1461024a57806323bd37211461025d575f80fd5b806306fdde03146101bf57806308ed2c71146101dd578063095ea7b314610208575b5f80fd5b6101c76103d6565b6040516101d49190610fb5565b60405180910390f35b6006546101f0906001600160a01b031681565b6040516001600160a01b0390911681526020016101d4565b61021b61021636600461101b565b610466565b60405190151581526020016101d4565b6003545b6040519081526020016101d4565b60085461021b9060ff1681565b61021b610258366004611043565b61047f565b61022f60095481565b600b546101f0906001600160a01b031681565b604051601281526020016101d4565b61021b61029636600461101b565b6104a2565b6102ae6102a936600461107c565b6104c3565b005b6102ae6102be3660046110db565b6104d0565b61022f6102d1366004611142565b6001600160a01b03165f9081526001602052604090205490565b61022f60075481565b6102ae6105a8565b61022f600d5481565b61022f600c5481565b5f546001600160a01b03166101f0565b6101c76105bb565b61021b61033436600461101b565b6105ca565b61021b61034736600461101b565b610644565b61022f600a5481565b6102ae610363366004611142565b610651565b6102ae610376366004611171565b6106dc565b6102ae6103893660046111a1565b6106fe565b61021b61039c366004611142565b600e6020525f908152604090205460ff1681565b61022f6103be3660046111f1565b61077a565b6102ae6103d1366004611142565b6107a4565b6060600480546103e590611222565b80601f016020809104026020016040519081016040528092919081815260200182805461041190611222565b801561045c5780601f106104335761010080835404028352916020019161045c565b820191905f5260205f20905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b5f3361047381858561081a565b60019150505b92915050565b5f3361048c85828561093e565b6104978585856109b0565b506001949350505050565b5f336104738185856104b4838361077a565b6104be919061126e565b61081a565b6104cd3382610a57565b50565b6104d8610b91565b82811461052c5760405162461bcd60e51b815260206004820152601760248201527f4d69736d61746368656420696e7075742061727261797300000000000000000060448201526064015b60405180910390fd5b5f5b838110156105a15761058f61054a5f546001600160a01b031690565b86868481811061055c5761055c611281565b90506020020160208101906105719190611142565b85858581811061058357610583611281565b905060200201356109b0565b8061059981611295565b91505061052e565b5050505050565b6105b0610b91565b6105b95f610bea565b565b6060600580546103e590611222565b5f33816105d7828661077a565b9050838110156106375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610523565b610497828686840361081a565b5f336104738185856109b0565b610659610b91565b600754156106a95760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79207365742070616972206f6e63652e0000000000000000006044820152606401610523565b600680546001600160a01b0319166001600160a01b0392909216919091179055426007556008805460ff19166001179055565b6106e4610b91565b6008805460ff191693151593909317909255600955600a55565b610706610b91565b5f5b828110156107745781600e5f86868581811061072657610726611281565b905060200201602081019061073b9190611142565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061076c81611295565b915050610708565b50505050565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6107ac610b91565b6001600160a01b0381166108115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610523565b6104cd81610bea565b6001600160a01b03831661087c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610523565b6001600160a01b0382166108dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610523565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610949848461077a565b90505f19811461077457818110156109a35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610523565b610774848484840361081a565b6006545f9081906001600160a01b03868116911614806109dd57506006546001600160a01b038581169116145b80156109f75750600c546007546109f490426112ad565b11155b15610a4c576064600d5484610a0c91906112c0565b610a1691906112d7565b9150610a2282846112ad565b9050610a2f858583610c39565b600b54610a479086906001600160a01b031684610c39565b6105a1565b6105a1858585610c39565b6001600160a01b038216610ab75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610523565b610ac2825f83610ded565b6001600160a01b0382165f9081526001602052604090205481811015610b355760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610523565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610931565b505050565b5f546001600160a01b031633146105b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610523565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c9d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610523565b6001600160a01b038216610cff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610523565b610d0a838383610ded565b6001600160a01b0383165f9081526001602052604090205481811015610d815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610523565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610de09086815260200190565b60405180910390a3610774565b6001600160a01b0382165f908152600e602052604090205460ff16158015610e2d57506001600160a01b0383165f908152600e602052604090205460ff16155b610e715760405162461bcd60e51b815260206004820152601560248201527415d85b1b195d081a5cc8189b1858dadb1a5cdd1959605a1b6044820152606401610523565b6006546001600160a01b0316158015610e9257506001600160a01b03831615155b15610eea575f546001600160a01b03848116911614610b8c5760405162461bcd60e51b81526020600482015260146024820152732a3930b234b733903cb2ba103a37903132b3b4b760611b6044820152606401610523565b60085460ff168015610f0957506006546001600160a01b038481169116145b8015610f235750600a54600754610f2090426112ad565b11155b15610b8c5760095481610f4a846001600160a01b03165f9081526001602052604090205490565b610f54919061126e565b1115610b8c5760405162461bcd60e51b815260206004820152602a60248201527f4578636565647320616c6c6f7761626c6520686f6c64696e67206c696d6974206044820152691c195c881dd85b1b195d60b21b6064820152608401610523565b5f6020808352835180828501525f5b81811015610fe057858101830151858201604001528201610fc4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611016575f80fd5b919050565b5f806040838503121561102c575f80fd5b61103583611000565b946020939093013593505050565b5f805f60608486031215611055575f80fd5b61105e84611000565b925061106c60208501611000565b9150604084013590509250925092565b5f6020828403121561108c575f80fd5b5035919050565b5f8083601f8401126110a3575f80fd5b50813567ffffffffffffffff8111156110ba575f80fd5b6020830191508360208260051b85010111156110d4575f80fd5b9250929050565b5f805f80604085870312156110ee575f80fd5b843567ffffffffffffffff80821115611105575f80fd5b61111188838901611093565b90965094506020870135915080821115611129575f80fd5b5061113687828801611093565b95989497509550505050565b5f60208284031215611152575f80fd5b61115b82611000565b9392505050565b80358015158114611016575f80fd5b5f805f60608486031215611183575f80fd5b61118c84611162565b95602085013595506040909401359392505050565b5f805f604084860312156111b3575f80fd5b833567ffffffffffffffff8111156111c9575f80fd5b6111d586828701611093565b90945092506111e8905060208501611162565b90509250925092565b5f8060408385031215611202575f80fd5b61120b83611000565b915061121960208401611000565b90509250929050565b600181811c9082168061123657607f821691505b60208210810361125457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104795761047961125a565b634e487b7160e01b5f52603260045260245ffd5b5f600182016112a6576112a661125a565b5060010190565b818103818111156104795761047961125a565b80820281158282048414176104795761047961125a565b5f826112f157634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122035b09e2e91468af0595daa84933af7f22d16a4d12b3735c017e8a4606368bb8c64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000002df458b2c635dcf55e00000000000000000000000000000a820521fa499eedfb5461072ebb3cd22993069d4
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 888888888000000000000000000
Arg [1] : _taxWallet (address): 0xa820521fa499EEdFB5461072Ebb3CD22993069d4
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000002df458b2c635dcf55e00000
Arg [1] : 000000000000000000000000a820521fa499eedfb5461072ebb3cd22993069d4
Deployed Bytecode Sourcemap
389:4702:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2143:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;522:37:0;;;;;-1:-1:-1;;;;;522:37:0;;;;;;-1:-1:-1;;;;;731:32:6;;;713:51;;701:2;686:18;522:37:0;567:203:6;4429:197:1;;;;;;:::i;:::-;;:::i;:::-;;;1377:14:6;;1370:22;1352:41;;1340:2;1325:18;4429:197:1;1212:187:6;3240:106:1;3327:12;;3240:106;;;1550:25:6;;;1538:2;1523:18;3240:106:1;1404:177:6;667:34:0;;;;;;;;;5188:256:1;;;;;;:::i;:::-;;:::i;712:30:0:-;;;;;;854:24;;;;;-1:-1:-1;;;;;854:24:0;;;3089:91:1;;;3171:2;2061:36:6;;2049:2;2034:18;3089:91:1;1919:184:6;5839:234:1;;;;;;:::i;:::-;;:::i;1446:75:0:-;;;;;;:::i;:::-;;:::i;:::-;;1572:325;;;;;;:::i;:::-;;:::i;3404:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3504:18:1;3478:7;3504:18;;;:9;:18;;;;;;;3404:125;570:31:0;;;;;;1819:101:2;;;:::i;943:26:0:-;;;;;;889:43;;;;;;1196:85:2;1242:7;1268:6;-1:-1:-1;;;;;1268:6:2;1196:85;;2354:102:1;;;:::i;6560:427::-;;;;;;:::i;:::-;;:::i;3725:189::-;;;;;;:::i;:::-;;:::i;753:43:0:-;;;;;;2514:301;;;;;;:::i;:::-;;:::i;1941:259::-;;;;;;:::i;:::-;;:::i;2238:222::-;;;;;;:::i;:::-;;:::i;1032:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3972:149:1;;;;;;:::i;:::-;;:::i;2069:198:2:-;;;;;;:::i;:::-;;:::i;2143:98:1:-;2197:13;2229:5;2222:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2143:98;:::o;4429:197::-;4512:4;719:10:5;4566:32:1;719:10:5;4582:7:1;4591:6;4566:8;:32::i;:::-;4615:4;4608:11;;;4429:197;;;;;:::o;5188:256::-;5285:4;719:10:5;5341:38:1;5357:4;719:10:5;5372:6:1;5341:15;:38::i;:::-;5389:27;5399:4;5405:2;5409:6;5389:9;:27::i;:::-;-1:-1:-1;5433:4:1;;5188:256;-1:-1:-1;;;;5188:256:1:o;5839:234::-;5927:4;719:10:5;5981:64:1;719:10:5;5997:7:1;6034:10;6006:25;719:10:5;5997:7:1;6006:9;:25::i;:::-;:38;;;;:::i;:::-;5981:8;:64::i;1446:75:0:-;1489:24;1495:10;1507:5;1489;:24::i;:::-;1446:75;:::o;1572:325::-;1089:13:2;:11;:13::i;:::-;1694:35:0;;::::1;1686:71;;;::::0;-1:-1:-1;;;1686:71:0;;5744:2:6;1686:71:0::1;::::0;::::1;5726:21:6::0;5783:2;5763:18;;;5756:30;5822:25;5802:18;;;5795:53;5865:18;;1686:71:0::1;;;;;;;;;1775:9;1770:120;1790:21:::0;;::::1;1770:120;;;1833:45;1843:7;1242::2::0;1268:6;-1:-1:-1;;;;;1268:6:2;;1196:85;1843:7:0::1;1852:10;;1863:1;1852:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1867:7;;1875:1;1867:10;;;;;;;:::i;:::-;;;;;;;1833:9;:45::i;:::-;1813:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1770:120;;;;1572:325:::0;;;;:::o;1819:101:2:-;1089:13;:11;:13::i;:::-;1883:30:::1;1910:1;1883:18;:30::i;:::-;1819:101::o:0;2354:102:1:-;2410:13;2442:7;2435:14;;;;;:::i;6560:427::-;6653:4;719:10:5;6653:4:1;6734:25;719:10:5;6751:7:1;6734:9;:25::i;:::-;6707:52;;6797:15;6777:16;:35;;6769:85;;;;-1:-1:-1;;;6769:85:1;;6368:2:6;6769:85:1;;;6350:21:6;6407:2;6387:18;;;6380:30;6446:34;6426:18;;;6419:62;-1:-1:-1;;;6497:18:6;;;6490:35;6542:19;;6769:85:1;6166:401:6;6769:85:1;6888:60;6897:5;6904:7;6932:15;6913:16;:34;6888:8;:60::i;3725:189::-;3804:4;719:10:5;3858:28:1;719:10:5;3875:2:1;3879:6;3858:9;:28::i;2514:301:0:-;1089:13:2;:11;:13::i;:::-;2622:16:0::1;::::0;:21;2614:57:::1;;;::::0;-1:-1:-1;;;2614:57:0;;6774:2:6;2614:57:0::1;::::0;::::1;6756:21:6::0;6813:2;6793:18;;;6786:30;6852:25;6832:18;;;6825:53;6895:18;;2614:57:0::1;6572:347:6::0;2614:57:0::1;2682:22;:48:::0;;-1:-1:-1;;;;;;2682:48:0::1;-1:-1:-1::0;;;;;2682:48:0;;;::::1;::::0;;;::::1;::::0;;2760:15:::1;2741:16;:34:::0;2786:14:::1;:21:::0;;-1:-1:-1;;2786:21:0::1;-1:-1:-1::0;2786:21:0::1;::::0;;2514:301::o;1941:259::-;1089:13:2;:11;:13::i;:::-;2070:14:0::1;:32:::0;;-1:-1:-1;;2070:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;2113:15:::1;:34:::0;2158:15:::1;:34:::0;1941:259::o;2238:222::-;1089:13:2;:11;:13::i;:::-;2344:9:0::1;2339:114;2359:19:::0;;::::1;2339:114;;;2427:14;2400:11;:24;2412:8;;2421:1;2412:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2400:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2400:24:0;:41;;-1:-1:-1;;2400:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;2380:3;::::1;::::0;::::1;:::i;:::-;;;;2339:114;;;;2238:222:::0;;;:::o;3972:149:1:-;-1:-1:-1;;;;;4087:18:1;;;4061:7;4087:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3972:149::o;2069:198:2:-;1089:13;:11;:13::i;:::-;-1:-1:-1;;;;;2157:22:2;::::1;2149:73;;;::::0;-1:-1:-1;;;2149:73:2;;7126:2:6;2149:73:2::1;::::0;::::1;7108:21:6::0;7165:2;7145:18;;;7138:30;7204:34;7184:18;;;7177:62;-1:-1:-1;;;7255:18:6;;;7248:36;7301:19;;2149:73:2::1;6924:402:6::0;2149:73:2::1;2232:28;2251:8;2232:18;:28::i;10442:340:1:-:0;-1:-1:-1;;;;;10543:19:1;;10535:68;;;;-1:-1:-1;;;10535:68:1;;7533:2:6;10535:68:1;;;7515:21:6;7572:2;7552:18;;;7545:30;7611:34;7591:18;;;7584:62;-1:-1:-1;;;7662:18:6;;;7655:34;7706:19;;10535:68:1;7331:400:6;10535:68:1;-1:-1:-1;;;;;10621:21:1;;10613:68;;;;-1:-1:-1;;;10613:68:1;;7938:2:6;10613:68:1;;;7920:21:6;7977:2;7957:18;;;7950:30;8016:34;7996:18;;;7989:62;-1:-1:-1;;;8067:18:6;;;8060:32;8109:19;;10613:68:1;7736:398:6;10613:68:1;-1:-1:-1;;;;;10692:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10743:32;;1550:25:6;;;10743:32:1;;1523:18:6;10743:32:1;;;;;;;;10442:340;;;:::o;11063:411::-;11163:24;11190:25;11200:5;11207:7;11190:9;:25::i;:::-;11163:52;;-1:-1:-1;;11229:16:1;:37;11225:243;;11310:6;11290:16;:26;;11282:68;;;;-1:-1:-1;;;11282:68:1;;8341:2:6;11282:68:1;;;8323:21:6;8380:2;8360:18;;;8353:30;8419:31;8399:18;;;8392:59;8468:18;;11282:68:1;8139:353:6;11282:68:1;11392:51;11401:5;11408:7;11436:6;11417:16;:25;11392:8;:51::i;2865:1316:0:-;3110:22;;3034:17;;;;-1:-1:-1;;;;;3102:30:0;;;3110:22;;3102:30;;:62;;-1:-1:-1;3142:22:0;;-1:-1:-1;;;;;3136:28:0;;;3142:22;;3136:28;3102:62;3101:124;;;;-1:-1:-1;3208:16:0;;3188;;3170:34;;:15;:34;:::i;:::-;:54;;3101:124;3097:1057;;;3307:3;3296:7;;3287:6;:16;;;;:::i;:::-;3286:24;;;;:::i;:::-;3274:36;-1:-1:-1;3411:18:0;3274:36;3411:6;:18;:::i;:::-;3394:35;;3531:41;3547:4;3553:2;3557:14;3531:15;:41::i;:::-;3609:9;;3587:43;;3603:4;;-1:-1:-1;;;;;3609:9:0;3620;3587:15;:43::i;:::-;3097:1057;;;4111:31;4127:4;4132:2;4135:6;4111:15;:31::i;9360:659:1:-;-1:-1:-1;;;;;9443:21:1;;9435:67;;;;-1:-1:-1;;;9435:67:1;;9227:2:6;9435:67:1;;;9209:21:6;9266:2;9246:18;;;9239:30;9305:34;9285:18;;;9278:62;-1:-1:-1;;;9356:18:6;;;9349:31;9397:19;;9435:67:1;9025:397:6;9435:67:1;9513:49;9534:7;9551:1;9555:6;9513:20;:49::i;:::-;-1:-1:-1;;;;;9598:18:1;;9573:22;9598:18;;;:9;:18;;;;;;9634:24;;;;9626:71;;;;-1:-1:-1;;;9626:71:1;;9629:2:6;9626:71:1;;;9611:21:6;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:6;;;9751:32;9800:19;;9626:71:1;9427:398:6;9626:71:1;-1:-1:-1;;;;;9731:18:1;;;;;;:9;:18;;;;;;;;9752:23;;;9731:44;;9868:12;:22;;;;;;;9916:37;1550:25:6;;;9731:18:1;;;9916:37;;1523:18:6;9916:37:1;1404:177:6;9964:48:1;9425:594;9360:659;;:::o;1354:130:2:-;1242:7;1268:6;-1:-1:-1;;;;;1268:6:2;719:10:5;1417:23:2;1409:68;;;;-1:-1:-1;;;1409:68:2;;10032:2:6;1409:68:2;;;10014:21:6;;;10051:18;;;10044:30;10110:34;10090:18;;;10083:62;10162:18;;1409:68:2;9830:356:6;2421:187:2;2494:16;2513:6;;-1:-1:-1;;;;;2529:17:2;;;-1:-1:-1;;;;;;2529:17:2;;;;;;2561:40;;2513:6;;;;;;;2561:40;;2494:16;2561:40;2484:124;2421:187;:::o;7441:788:1:-;-1:-1:-1;;;;;7537:18:1;;7529:68;;;;-1:-1:-1;;;7529:68:1;;10393:2:6;7529:68:1;;;10375:21:6;10432:2;10412:18;;;10405:30;10471:34;10451:18;;;10444:62;-1:-1:-1;;;10522:18:6;;;10515:35;10567:19;;7529:68:1;10191:401:6;7529:68:1;-1:-1:-1;;;;;7615:16:1;;7607:64;;;;-1:-1:-1;;;7607:64:1;;10799:2:6;7607:64:1;;;10781:21:6;10838:2;10818:18;;;10811:30;10877:34;10857:18;;;10850:62;-1:-1:-1;;;10928:18:6;;;10921:33;10971:19;;7607:64:1;10597:399:6;7607:64:1;7682:38;7703:4;7709:2;7713:6;7682:20;:38::i;:::-;-1:-1:-1;;;;;7753:15:1;;7731:19;7753:15;;;:9;:15;;;;;;7786:21;;;;7778:72;;;;-1:-1:-1;;;7778:72:1;;11203:2:6;7778:72:1;;;11185:21:6;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:6;;;11325:36;11378:19;;7778:72:1;11001:402:6;7778:72:1;-1:-1:-1;;;;;7884:15:1;;;;;;;:9;:15;;;;;;7902:20;;;7884:38;;8099:13;;;;;;;;;;:23;;;;;;8148:26;;;;;;7916:6;1550:25:6;;1538:2;1523:18;;1404:177;8148:26:1;;;;;;;;8185:37;9360:659;4246:842:0;-1:-1:-1;;;;;4458:15:0;;;;;;:11;:15;;;;;;;;4457:16;:38;;;;-1:-1:-1;;;;;;4478:17:0;;;;;;:11;:17;;;;;;;;4477:18;4457:38;4449:72;;;;-1:-1:-1;;;4449:72:0;;11610:2:6;4449:72:0;;;11592:21:6;11649:2;11629:18;;;11622:30;-1:-1:-1;;;11668:18:6;;;11661:51;11729:18;;4449:72:0;11408:345:6;4449:72:0;4585:22;;-1:-1:-1;;;;;4585:22:0;:36;:58;;;;-1:-1:-1;;;;;;4625:18:0;;;;4585:58;4581:160;;;1242:7:2;1268:6;-1:-1:-1;;;;;4668:15:0;;;1268:6:2;;4668:15:0;4660:48;;;;-1:-1:-1;;;4660:48:0;;11960:2:6;4660:48:0;;;11942:21:6;11999:2;11979:18;;;11972:30;-1:-1:-1;;;12018:18:6;;;12011:50;12078:18;;4660:48:0;11758:344:6;4581:160:0;4841:14;;;;:48;;;;-1:-1:-1;4867:22:0;;-1:-1:-1;;;;;4859:30:0;;;4867:22;;4859:30;4841:48;:107;;;;-1:-1:-1;4932:15:0;;4912:16;;4894:34;;:15;:34;:::i;:::-;:53;;4841:107;4837:242;;;5005:15;;4995:6;4973:19;4989:2;-1:-1:-1;;;;;3504:18:1;3478:7;3504:18;;;:9;:18;;;;;;;3404:125;4973:19:0;:28;;;;:::i;:::-;:47;;4965:102;;;;-1:-1:-1;;;4965:102:0;;12309:2:6;4965:102:0;;;12291:21:6;12348:2;12328:18;;;12321:30;12387:34;12367:18;;;12360:62;-1:-1:-1;;;12438:18:6;;;12431:40;12488:19;;4965:102:0;12107:406:6;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;775:173::-;843:20;;-1:-1:-1;;;;;892:31:6;;882:42;;872:70;;938:1;935;928:12;872:70;775:173;;;:::o;953:254::-;1021:6;1029;1082:2;1070:9;1061:7;1057:23;1053:32;1050:52;;;1098:1;1095;1088:12;1050:52;1121:29;1140:9;1121:29;:::i;:::-;1111:39;1197:2;1182:18;;;;1169:32;;-1:-1:-1;;;953:254:6:o;1586:328::-;1663:6;1671;1679;1732:2;1720:9;1711:7;1707:23;1703:32;1700:52;;;1748:1;1745;1738:12;1700:52;1771:29;1790:9;1771:29;:::i;:::-;1761:39;;1819:38;1853:2;1842:9;1838:18;1819:38;:::i;:::-;1809:48;;1904:2;1893:9;1889:18;1876:32;1866:42;;1586:328;;;;;:::o;2108:180::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;-1:-1:-1;2259:23:6;;2108:180;-1:-1:-1;2108:180:6:o;2293:367::-;2356:8;2366:6;2420:3;2413:4;2405:6;2401:17;2397:27;2387:55;;2438:1;2435;2428:12;2387:55;-1:-1:-1;2461:20:6;;2504:18;2493:30;;2490:50;;;2536:1;2533;2526:12;2490:50;2573:4;2565:6;2561:17;2549:29;;2633:3;2626:4;2616:6;2613:1;2609:14;2601:6;2597:27;2593:38;2590:47;2587:67;;;2650:1;2647;2640:12;2587:67;2293:367;;;;;:::o;2665:773::-;2787:6;2795;2803;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2920:9;2907:23;2949:18;2990:2;2982:6;2979:14;2976:34;;;3006:1;3003;2996:12;2976:34;3045:70;3107:7;3098:6;3087:9;3083:22;3045:70;:::i;:::-;3134:8;;-1:-1:-1;3019:96:6;-1:-1:-1;3222:2:6;3207:18;;3194:32;;-1:-1:-1;3238:16:6;;;3235:36;;;3267:1;3264;3257:12;3235:36;;3306:72;3370:7;3359:8;3348:9;3344:24;3306:72;:::i;:::-;2665:773;;;;-1:-1:-1;3397:8:6;-1:-1:-1;;;;2665:773:6:o;3443:186::-;3502:6;3555:2;3543:9;3534:7;3530:23;3526:32;3523:52;;;3571:1;3568;3561:12;3523:52;3594:29;3613:9;3594:29;:::i;:::-;3584:39;3443:186;-1:-1:-1;;;3443:186:6:o;3634:160::-;3699:20;;3755:13;;3748:21;3738:32;;3728:60;;3784:1;3781;3774:12;3799:316;3873:6;3881;3889;3942:2;3930:9;3921:7;3917:23;3913:32;3910:52;;;3958:1;3955;3948:12;3910:52;3981:26;3997:9;3981:26;:::i;:::-;3971:36;4054:2;4039:18;;4026:32;;-1:-1:-1;4105:2:6;4090:18;;;4077:32;;3799:316;-1:-1:-1;;;3799:316:6:o;4120:505::-;4212:6;4220;4228;4281:2;4269:9;4260:7;4256:23;4252:32;4249:52;;;4297:1;4294;4287:12;4249:52;4337:9;4324:23;4370:18;4362:6;4359:30;4356:50;;;4402:1;4399;4392:12;4356:50;4441:70;4503:7;4494:6;4483:9;4479:22;4441:70;:::i;:::-;4530:8;;-1:-1:-1;4415:96:6;-1:-1:-1;4584:35:6;;-1:-1:-1;4615:2:6;4600:18;;4584:35;:::i;:::-;4574:45;;4120:505;;;;;:::o;4630:260::-;4698:6;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4798:29;4817:9;4798:29;:::i;:::-;4788:39;;4846:38;4880:2;4869:9;4865:18;4846:38;:::i;:::-;4836:48;;4630:260;;;;;:::o;4895:380::-;4974:1;4970:12;;;;5017;;;5038:61;;5092:4;5084:6;5080:17;5070:27;;5038:61;5145:2;5137:6;5134:14;5114:18;5111:38;5108:161;;5191:10;5186:3;5182:20;5179:1;5172:31;5226:4;5223:1;5216:15;5254:4;5251:1;5244:15;5108:161;;4895:380;;;:::o;5280:127::-;5341:10;5336:3;5332:20;5329:1;5322:31;5372:4;5369:1;5362:15;5396:4;5393:1;5386:15;5412:125;5477:9;;;5498:10;;;5495:36;;;5511:18;;:::i;5894:127::-;5955:10;5950:3;5946:20;5943:1;5936:31;5986:4;5983:1;5976:15;6010:4;6007:1;6000:15;6026:135;6065:3;6086:17;;;6083:43;;6106:18;;:::i;:::-;-1:-1:-1;6153:1:6;6142:13;;6026:135::o;8497:128::-;8564:9;;;8585:11;;;8582:37;;;8599:18;;:::i;8630:168::-;8703:9;;;8734;;8751:15;;;8745:22;;8731:37;8721:71;;8772:18;;:::i;8803:217::-;8843:1;8869;8859:132;;8913:10;8908:3;8904:20;8901:1;8894:31;8948:4;8945:1;8938:15;8976:4;8973:1;8966:15;8859:132;-1:-1:-1;9005:9:6;;8803:217::o
Swarm Source
ipfs://35b09e2e91468af0595daa84933af7f22d16a4d12b3735c017e8a4606368bb8c
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.