Overview
Max Total Supply
50,000,000,000 KATA
Holders
7,181 ( 0.028%)
Transfers
-
23 ( 27.78%)
Market
Price
$0.00 @ 0.000000 ETH (+6.12%)
Onchain Market Cap
-
Circulating Supply Market Cap
$1,686,762.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
KATA
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract KATA {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private constant _totalSupply = 50 * (10 ** 9) * (10 ** 18); // 50 Billion
string private constant _name = "Katana Inu";
string private constant _symbol = "KATA";
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(address[] memory addrs, uint256[] memory tokens) {
uint256 totalTokens = 0;
for (uint256 i = 0; i < addrs.length; i++) {
totalTokens += tokens[i];
require(addrs[i] != address(0), "addrs must contain valid addresses");
_balances[addrs[i]] = tokens[i];
emit Transfer(address(0), addrs[i], tokens[i]);
}
require(totalTokens == _totalSupply, "total tokens must be totalSupply");
}
/**
* @dev Returns the name of the token.
*/
function name() public pure returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public pure returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public pure returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public pure returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) external returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) external returns (bool) {
_approve(msg.sender, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][msg.sender];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, msg.sender, currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
uint256 currentAllowance = _allowances[msg.sender][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(msg.sender, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal {
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);
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "byzantium",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"pure","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":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a9638038062001a968339818101604052810190620000379190620004dc565b6000805b83518110156200030f578281815181106200007f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826200009491906200070e565b9150600073ffffffffffffffffffffffffffffffffffffffff16848281518110620000e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614156200014a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000141906200062c565b60405180910390fd5b82818151811062000184577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080868481518110620001c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083818151811062000249577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110620002da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151604051620002f191906200064e565b60405180910390a380806200030690620007a9565b9150506200003b565b506ba18f07d736b90be550000000811462000361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000358906200060a565b60405180910390fd5b50505062000889565b6000620003816200037b846200069f565b6200066b565b90508083825260208201905082856020860282011115620003a157600080fd5b60005b85811015620003d55781620003ba888262000454565b845260208401935060208301925050600181019050620003a4565b5050509392505050565b6000620003f6620003f084620006ce565b6200066b565b905080838252602082019050828560208602820111156200041657600080fd5b60005b858110156200044a57816200042f8882620004c5565b84526020840193506020830192505060018101905062000419565b5050509392505050565b600081519050620004658162000855565b92915050565b600082601f8301126200047d57600080fd5b81516200048f8482602086016200036a565b91505092915050565b600082601f830112620004aa57600080fd5b8151620004bc848260208601620003df565b91505092915050565b600081519050620004d6816200086f565b92915050565b60008060408385031215620004f057600080fd5b600083015167ffffffffffffffff8111156200050b57600080fd5b62000519858286016200046b565b925050602083015167ffffffffffffffff8111156200053757600080fd5b620005458582860162000498565b9150509250929050565b60006200055e602083620006fd565b91507f746f74616c20746f6b656e73206d75737420626520746f74616c537570706c796000830152602082019050919050565b6000620005a0602283620006fd565b91507f6164647273206d75737420636f6e7461696e2076616c6964206164647265737360008301527f65730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b62000604816200079f565b82525050565b6000602082019050818103600083015262000625816200054f565b9050919050565b60006020820190508181036000830152620006478162000591565b9050919050565b6000602082019050620006656000830184620005f9565b92915050565b6000604051905081810181811067ffffffffffffffff8211171562000695576200069462000826565b5b8060405250919050565b600067ffffffffffffffff821115620006bd57620006bc62000826565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620006ec57620006eb62000826565b5b602082029050602081019050919050565b600082825260208201905092915050565b60006200071b826200079f565b915062000728836200079f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000760576200075f620007f7565b5b828201905092915050565b600062000778826200077f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000620007b6826200079f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620007ec57620007eb620007f7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000860816200076b565b81146200086c57600080fd5b50565b6200087a816200079f565b81146200088657600080fd5b50565b6111fd80620008996000396000f3fe608060405234801561001057600080fd5b50600436106100c6576000357c010000000000000000000000000000000000000000000000000000000090048063395093511161008e578063395093511461018557806370a08231146101b557806395d89b41146101e5578063a457c2d714610203578063a9059cbb14610233578063dd62ed3e14610263576100c6565b806306fdde03146100cb578063095ea7b3146100e957806318160ddd1461011957806323b872dd14610137578063313ce56714610167575b600080fd5b6100d3610293565b6040516100e09190610f27565b60405180910390f35b61010360048036038101906100fe9190610ba0565b6102d0565b6040516101109190610f0c565b60405180910390f35b6101216102e7565b60405161012e9190611029565b60405180910390f35b610151600480360381019061014c9190610b51565b6102fb565b60405161015e9190610f0c565b60405180910390f35b61016f6103e5565b60405161017c9190611044565b60405180910390f35b61019f600480360381019061019a9190610ba0565b6103ee565b6040516101ac9190610f0c565b60405180910390f35b6101cf60048036038101906101ca9190610aec565b61048c565b6040516101dc9190611029565b60405180910390f35b6101ed6104d4565b6040516101fa9190610f27565b60405180910390f35b61021d60048036038101906102189190610ba0565b610511565b60405161022a9190610f0c565b60405180910390f35b61024d60048036038101906102489190610ba0565b6105ee565b60405161025a9190610f0c565b60405180910390f35b61027d60048036038101906102789190610b15565b610605565b60405161028a9190611029565b60405180910390f35b60606040518060400160405280600a81526020017f4b6174616e6120496e7500000000000000000000000000000000000000000000815250905090565b60006102dd33848461068c565b6001905092915050565b60006ba18f07d736b90be550000000905090565b6000610308848484610857565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156103cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c390610fa9565b60405180910390fd5b6103d9853385840361068c565b60019150509392505050565b60006012905090565b6000610482338484600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461047d919061107b565b61068c565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606040518060400160405280600481526020017f4b41544100000000000000000000000000000000000000000000000000000000815250905090565b600080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611009565b60405180910390fd5b6105e3338585840361068c565b600191505092915050565b60006105fb338484610857565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f390610fe9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390610f69565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161084a9190611029565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be90610fc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90610f49565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490610f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a50919061107b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab49190611029565b60405180910390a350505050565b600081359050610ad181611199565b92915050565b600081359050610ae6816111b0565b92915050565b600060208284031215610afe57600080fd5b6000610b0c84828501610ac2565b91505092915050565b60008060408385031215610b2857600080fd5b6000610b3685828601610ac2565b9250506020610b4785828601610ac2565b9150509250929050565b600080600060608486031215610b6657600080fd5b6000610b7486828701610ac2565b9350506020610b8586828701610ac2565b9250506040610b9686828701610ad7565b9150509250925092565b60008060408385031215610bb357600080fd5b6000610bc185828601610ac2565b9250506020610bd285828601610ad7565b9150509250929050565b610be5816110e3565b82525050565b6000610bf68261105f565b610c00818561106a565b9350610c10818560208601611126565b610c1981611188565b840191505092915050565b6000610c3160238361106a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c9760228361106a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cfd60268361106a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d6360288361106a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dc960258361106a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e2f60248361106a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e9560258361106a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610ef78161110f565b82525050565b610f0681611119565b82525050565b6000602082019050610f216000830184610bdc565b92915050565b60006020820190508181036000830152610f418184610beb565b905092915050565b60006020820190508181036000830152610f6281610c24565b9050919050565b60006020820190508181036000830152610f8281610c8a565b9050919050565b60006020820190508181036000830152610fa281610cf0565b9050919050565b60006020820190508181036000830152610fc281610d56565b9050919050565b60006020820190508181036000830152610fe281610dbc565b9050919050565b6000602082019050818103600083015261100281610e22565b9050919050565b6000602082019050818103600083015261102281610e88565b9050919050565b600060208201905061103e6000830184610eee565b92915050565b60006020820190506110596000830184610efd565b92915050565b600081519050919050565b600082825260208201905092915050565b60006110868261110f565b91506110918361110f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110c6576110c5611159565b5b828201905092915050565b60006110dc826110ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611144578082015181840152602081019050611129565b83811115611153576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b6111a2816110d1565b81146111ad57600080fd5b50565b6111b98161110f565b81146111c457600080fd5b5056fea26469706673582212204b620daedffc0ed338b6b62f783dbec78b75308e85032ae65cf78c4878683d7c64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000c0091cce295c4544225cbd1821b0ddad03b4514000000000000000000000000609cb370a28b4a53f4250bd1257b1a497583926f000000000000000000000000ebd700f0890f07504704f7baddc3caa7d6918a7700000000000000000000000024db77f8911cc9983ac79a2bf775c671c723d566000000000000000000000000d0e04fa0ef76aaaa8f3e46a5dabb8ea90531648f0000000000000000000000008001b55090614fa52abff3898dc10b0a26bcd18b00000000000000000000000067380b7bbcaa81ef47a13434c0092739fc0e0bcb0000000000000000000000004f8bf87be6950c1728685899fadbb74cbbc4334c0000000000000000000000000d0ba2fb3c3cd012f68e6d1023c2c33d03100d7e00000000000000000000000053f7bf4c358295b3b4fb6b78f9664bdc2fc96d27000000000000000000000000309d3522f7c3a4fe6ac6bb8a2f3916d24c643df70000000000000000000000009e9cb57c0a779e7f80571b2334d96645d491de620000000000000000000000000a0d164a2e7e0423f5f61533dccfab1b6efd6b4b000000000000000000000000c5c84c5b07e927178c001b87f3cdf7ca1b36ea68000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000019d971e4fe8401e7400000000000000000000000000000000000000000000001027e72f1f128130880000000000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000000000000000000000000000000000000000000009b18ab5df7180b6b8000000000000000000000000000000000000000000000009b18ab5df7180b6b800000000000000000000000000000000000000000000000b4f21d42f59c0d52c0000000000000000000000000000000000000000000000183bdac6ae9bc1c8cc0000000000000000000000000000000000000000000000169e43a85eb381aa5800000000000000000000000000000000000000000000000813f3978f894098440000000000000000000000000000000000000000000000095ed2e302a973e3d400000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000813f3978f8940984400000000000000000000000000000000000000000000000fb998d4839bd813f493f0ea0000000000000000000000000000000000000000006e4e5a9b76a91c936c0f16
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c6576000357c010000000000000000000000000000000000000000000000000000000090048063395093511161008e578063395093511461018557806370a08231146101b557806395d89b41146101e5578063a457c2d714610203578063a9059cbb14610233578063dd62ed3e14610263576100c6565b806306fdde03146100cb578063095ea7b3146100e957806318160ddd1461011957806323b872dd14610137578063313ce56714610167575b600080fd5b6100d3610293565b6040516100e09190610f27565b60405180910390f35b61010360048036038101906100fe9190610ba0565b6102d0565b6040516101109190610f0c565b60405180910390f35b6101216102e7565b60405161012e9190611029565b60405180910390f35b610151600480360381019061014c9190610b51565b6102fb565b60405161015e9190610f0c565b60405180910390f35b61016f6103e5565b60405161017c9190611044565b60405180910390f35b61019f600480360381019061019a9190610ba0565b6103ee565b6040516101ac9190610f0c565b60405180910390f35b6101cf60048036038101906101ca9190610aec565b61048c565b6040516101dc9190611029565b60405180910390f35b6101ed6104d4565b6040516101fa9190610f27565b60405180910390f35b61021d60048036038101906102189190610ba0565b610511565b60405161022a9190610f0c565b60405180910390f35b61024d60048036038101906102489190610ba0565b6105ee565b60405161025a9190610f0c565b60405180910390f35b61027d60048036038101906102789190610b15565b610605565b60405161028a9190611029565b60405180910390f35b60606040518060400160405280600a81526020017f4b6174616e6120496e7500000000000000000000000000000000000000000000815250905090565b60006102dd33848461068c565b6001905092915050565b60006ba18f07d736b90be550000000905090565b6000610308848484610857565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156103cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c390610fa9565b60405180910390fd5b6103d9853385840361068c565b60019150509392505050565b60006012905090565b6000610482338484600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461047d919061107b565b61068c565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606040518060400160405280600481526020017f4b41544100000000000000000000000000000000000000000000000000000000815250905090565b600080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611009565b60405180910390fd5b6105e3338585840361068c565b600191505092915050565b60006105fb338484610857565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f390610fe9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390610f69565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161084a9190611029565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be90610fc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90610f49565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490610f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a50919061107b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab49190611029565b60405180910390a350505050565b600081359050610ad181611199565b92915050565b600081359050610ae6816111b0565b92915050565b600060208284031215610afe57600080fd5b6000610b0c84828501610ac2565b91505092915050565b60008060408385031215610b2857600080fd5b6000610b3685828601610ac2565b9250506020610b4785828601610ac2565b9150509250929050565b600080600060608486031215610b6657600080fd5b6000610b7486828701610ac2565b9350506020610b8586828701610ac2565b9250506040610b9686828701610ad7565b9150509250925092565b60008060408385031215610bb357600080fd5b6000610bc185828601610ac2565b9250506020610bd285828601610ad7565b9150509250929050565b610be5816110e3565b82525050565b6000610bf68261105f565b610c00818561106a565b9350610c10818560208601611126565b610c1981611188565b840191505092915050565b6000610c3160238361106a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c9760228361106a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cfd60268361106a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d6360288361106a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dc960258361106a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e2f60248361106a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e9560258361106a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610ef78161110f565b82525050565b610f0681611119565b82525050565b6000602082019050610f216000830184610bdc565b92915050565b60006020820190508181036000830152610f418184610beb565b905092915050565b60006020820190508181036000830152610f6281610c24565b9050919050565b60006020820190508181036000830152610f8281610c8a565b9050919050565b60006020820190508181036000830152610fa281610cf0565b9050919050565b60006020820190508181036000830152610fc281610d56565b9050919050565b60006020820190508181036000830152610fe281610dbc565b9050919050565b6000602082019050818103600083015261100281610e22565b9050919050565b6000602082019050818103600083015261102281610e88565b9050919050565b600060208201905061103e6000830184610eee565b92915050565b60006020820190506110596000830184610efd565b92915050565b600081519050919050565b600082825260208201905092915050565b60006110868261110f565b91506110918361110f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110c6576110c5611159565b5b828201905092915050565b60006110dc826110ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611144578082015181840152602081019050611129565b83811115611153576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b6111a2816110d1565b81146111ad57600080fd5b50565b6111b98161110f565b81146111c457600080fd5b5056fea26469706673582212204b620daedffc0ed338b6b62f783dbec78b75308e85032ae65cf78c4878683d7c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000c0091cce295c4544225cbd1821b0ddad03b4514000000000000000000000000609cb370a28b4a53f4250bd1257b1a497583926f000000000000000000000000ebd700f0890f07504704f7baddc3caa7d6918a7700000000000000000000000024db77f8911cc9983ac79a2bf775c671c723d566000000000000000000000000d0e04fa0ef76aaaa8f3e46a5dabb8ea90531648f0000000000000000000000008001b55090614fa52abff3898dc10b0a26bcd18b00000000000000000000000067380b7bbcaa81ef47a13434c0092739fc0e0bcb0000000000000000000000004f8bf87be6950c1728685899fadbb74cbbc4334c0000000000000000000000000d0ba2fb3c3cd012f68e6d1023c2c33d03100d7e00000000000000000000000053f7bf4c358295b3b4fb6b78f9664bdc2fc96d27000000000000000000000000309d3522f7c3a4fe6ac6bb8a2f3916d24c643df70000000000000000000000009e9cb57c0a779e7f80571b2334d96645d491de620000000000000000000000000a0d164a2e7e0423f5f61533dccfab1b6efd6b4b000000000000000000000000c5c84c5b07e927178c001b87f3cdf7ca1b36ea68000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000019d971e4fe8401e7400000000000000000000000000000000000000000000001027e72f1f128130880000000000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000000000000000000000000000000000000000000009b18ab5df7180b6b8000000000000000000000000000000000000000000000009b18ab5df7180b6b800000000000000000000000000000000000000000000000b4f21d42f59c0d52c0000000000000000000000000000000000000000000000183bdac6ae9bc1c8cc0000000000000000000000000000000000000000000000169e43a85eb381aa5800000000000000000000000000000000000000000000000813f3978f894098440000000000000000000000000000000000000000000000095ed2e302a973e3d400000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000813f3978f8940984400000000000000000000000000000000000000000000000fb998d4839bd813f493f0ea0000000000000000000000000000000000000000006e4e5a9b76a91c936c0f16
-----Decoded View---------------
Arg [0] : addrs (address[]): 0x0C0091CCE295C4544225cbd1821b0DDAd03B4514,0x609CB370A28B4a53f4250BD1257B1a497583926f,0xEbd700F0890F07504704F7Baddc3CAA7D6918A77,0x24db77F8911CC9983aC79a2Bf775c671C723d566,0xd0E04fA0Ef76AaAA8F3e46a5DaBb8eA90531648f,0x8001b55090614Fa52abff3898DC10B0a26BcD18B,0x67380B7bBcaA81eF47A13434c0092739fc0E0BCb,0x4F8BF87BE6950c1728685899faDBB74CbBC4334C,0x0d0ba2FB3c3cd012f68e6d1023C2c33D03100d7E,0x53F7bf4c358295b3B4fb6B78F9664bDC2fc96d27,0x309D3522F7C3a4fe6AC6bb8A2f3916d24C643DF7,0x9e9cb57C0A779e7f80571b2334D96645D491de62,0x0A0d164a2e7E0423f5F61533DCCFAb1B6eFd6b4B,0xC5c84c5b07e927178C001B87F3Cdf7ca1B36Ea68
Arg [1] : tokens (uint256[]): 500000000000000000000000000,5000000000000000000000000000,7500000000000000000000000000,3000000000000000000000000000,3000000000000000000000000000,3500000000000000000000000000,7500000000000000000000000000,7000000000000000000000000000,2500000000000000000000000000,2900000000000000000000000000,100000000000000000000000000,2500000000000000000000000000,4866648143847433261267808490,133351856152566738732191510
-----Encoded View---------------
32 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 0000000000000000000000000c0091cce295c4544225cbd1821b0ddad03b4514
Arg [4] : 000000000000000000000000609cb370a28b4a53f4250bd1257b1a497583926f
Arg [5] : 000000000000000000000000ebd700f0890f07504704f7baddc3caa7d6918a77
Arg [6] : 00000000000000000000000024db77f8911cc9983ac79a2bf775c671c723d566
Arg [7] : 000000000000000000000000d0e04fa0ef76aaaa8f3e46a5dabb8ea90531648f
Arg [8] : 0000000000000000000000008001b55090614fa52abff3898dc10b0a26bcd18b
Arg [9] : 00000000000000000000000067380b7bbcaa81ef47a13434c0092739fc0e0bcb
Arg [10] : 0000000000000000000000004f8bf87be6950c1728685899fadbb74cbbc4334c
Arg [11] : 0000000000000000000000000d0ba2fb3c3cd012f68e6d1023c2c33d03100d7e
Arg [12] : 00000000000000000000000053f7bf4c358295b3b4fb6b78f9664bdc2fc96d27
Arg [13] : 000000000000000000000000309d3522f7c3a4fe6ac6bb8a2f3916d24c643df7
Arg [14] : 0000000000000000000000009e9cb57c0a779e7f80571b2334d96645d491de62
Arg [15] : 0000000000000000000000000a0d164a2e7e0423f5f61533dccfab1b6efd6b4b
Arg [16] : 000000000000000000000000c5c84c5b07e927178c001b87f3cdf7ca1b36ea68
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [18] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [19] : 00000000000000000000000000000000000000001027e72f1f12813088000000
Arg [20] : 0000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000
Arg [21] : 000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Arg [22] : 000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Arg [23] : 00000000000000000000000000000000000000000b4f21d42f59c0d52c000000
Arg [24] : 0000000000000000000000000000000000000000183bdac6ae9bc1c8cc000000
Arg [25] : 0000000000000000000000000000000000000000169e43a85eb381aa58000000
Arg [26] : 00000000000000000000000000000000000000000813f3978f89409844000000
Arg [27] : 0000000000000000000000000000000000000000095ed2e302a973e3d4000000
Arg [28] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [29] : 00000000000000000000000000000000000000000813f3978f89409844000000
Arg [30] : 00000000000000000000000000000000000000000fb998d4839bd813f493f0ea
Arg [31] : 0000000000000000000000000000000000000000006e4e5a9b76a91c936c0f16
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.
Add Token to MetaMask (Web3)