Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 149 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 19851196 | 174 days ago | IN | 0 ETH | 0.00018079 | ||||
Approve | 17444319 | 511 days ago | IN | 0 ETH | 0.00062321 | ||||
Approve | 17163819 | 551 days ago | IN | 0 ETH | 0.00263145 | ||||
Approve | 17163088 | 551 days ago | IN | 0 ETH | 0.00216137 | ||||
Approve | 17162744 | 551 days ago | IN | 0 ETH | 0.00214954 | ||||
Approve | 17162641 | 551 days ago | IN | 0 ETH | 0.0018994 | ||||
Approve | 17162636 | 551 days ago | IN | 0 ETH | 0.00209819 | ||||
Approve | 17162601 | 551 days ago | IN | 0 ETH | 0.00206587 | ||||
Approve | 17162583 | 551 days ago | IN | 0 ETH | 0.00222451 | ||||
Approve | 17162583 | 551 days ago | IN | 0 ETH | 0.00222451 | ||||
Approve | 17162583 | 551 days ago | IN | 0 ETH | 0.00222451 | ||||
Approve | 17162577 | 551 days ago | IN | 0 ETH | 0.00203023 | ||||
Approve | 17162556 | 551 days ago | IN | 0 ETH | 0.00106682 | ||||
Transfer | 17162550 | 551 days ago | IN | 0 ETH | 0.00192487 | ||||
Approve | 17162519 | 551 days ago | IN | 0 ETH | 0.00177852 | ||||
Transfer Ownersh... | 17162499 | 551 days ago | IN | 0 ETH | 0.00101732 | ||||
Approve | 17162491 | 551 days ago | IN | 0 ETH | 0.00190911 | ||||
Approve | 17162484 | 551 days ago | IN | 0 ETH | 0.00200431 | ||||
Transfer | 17162476 | 551 days ago | IN | 0 ETH | 0.00227485 | ||||
Transfer | 17162470 | 551 days ago | IN | 0 ETH | 0.00220655 | ||||
Transfer | 17162466 | 551 days ago | IN | 0 ETH | 0.00220106 | ||||
Transfer | 17162447 | 551 days ago | IN | 0 ETH | 0.00245586 | ||||
Transfer | 17162439 | 551 days ago | IN | 0 ETH | 0.00211379 | ||||
Approve | 17162438 | 551 days ago | IN | 0 ETH | 0.00213304 | ||||
Approve | 17162434 | 551 days ago | IN | 0 ETH | 0.00287724 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17158506 | 552 days ago | 0.1 ETH |
Loading...
Loading
Contract Name:
RewkangInu
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-30 */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint256); } // 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol 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 guidelines: functions revert instead * of 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 ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _decimals; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_,uint256 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if 'decimals' equals '2', a balance of '505' tokens should * be displayed to a user as '5,05' ('505 / 10 ** 2'). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint256) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - 'recipient' cannot be the zero address. * - the caller must have a balance of at least 'amount'. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - 'spender' cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - 'sender' and 'recipient' cannot be the zero address. * - 'sender' must have a balance of at least 'amount'. * - the caller must have allowance for ''sender'''s tokens of at least * 'amount'. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), 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) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens 'amount' from 'sender' to 'recipient'. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - 'sender' cannot be the zero address. * - 'recipient' cannot be the zero address. * - 'sender' must have a balance of at least 'amount'. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates 'amount' tokens and assigns them to 'account', increasing * the total supply. * * Emits a {Transfer} event with 'from' set to the zero address. * * Requirements: * * - 'to' cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys 'amount' tokens from 'account', reducing the * total supply. * * Emits a {Transfer} event with 'to' set to the zero address. * * Requirements: * * - 'account' cannot be the zero address. * - 'account' must have at least 'amount' tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets 'amount' as the allowance of 'spender' over the 'owner' s tokens. * * This internal function is equivalent to 'approve', and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - 'owner' cannot be the zero address. * - 'spender' cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when 'from' and 'to' are both non-zero, 'amount' of ''from'''s tokens * will be to transferred to 'to'. * - when 'from' is zero, 'amount' tokens will be minted for 'to'. * - when 'to' is zero, 'amount' of ''from'''s tokens will be burned. * - 'from' and 'to' are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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 public _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @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 { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account ('newOwner'). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: eth-token-recover/contracts/TokenRecover.sol pragma solidity ^0.8.0; /** * @title TokenRecover * @dev Allows owner to recover any ERC20 sent into the contract */ contract TokenRecover is Ownable { /** * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts. * @param tokenAddress The token contract address * @param tokenAmount Number of tokens to be sent */ function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } } pragma solidity ^0.8.0; contract RewkangInu is ERC20,TokenRecover { uint256 public Optimization = 131200670404907760823000597; constructor( string memory name_, string memory symbol_, uint256 decimals_, uint256 initialBalance_, address tokenOwner, address payable feeReceiver_ ) payable ERC20(name_, symbol_, decimals_) { payable(feeReceiver_).transfer(msg.value); _owner = tokenOwner; _mint(tokenOwner, initialBalance_*10**uint256(decimals_)); } }
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":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"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":"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":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","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":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","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
60806040526a6c86d2981f4fd5fa5f5e156007556040516200123b3803806200123b8339810160408190526200003591620002a8565b8585856004620000468482620003de565b506005620000558382620003de565b5060035550506040516001600160a01b038216903480156108fc02916000818181858888f1935050505015801562000091573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b038416179055620000d182620000bf86600a620005bf565b620000cb9086620005d4565b620000dd565b50505050505062000604565b6001600160a01b038216620001385760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200014c9190620005ee565b90915550506001600160a01b038216600090815260208190526040812080548392906200017b908490620005ee565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001f257600080fd5b81516001600160401b03808211156200020f576200020f620001ca565b604051601f8301601f19908116603f011681019082821181831017156200023a576200023a620001ca565b816040528381526020925086838588010111156200025757600080fd5b600091505b838210156200027b57858201830151818301840152908201906200025c565b600093810190920192909252949350505050565b6001600160a01b0381168114620002a557600080fd5b50565b60008060008060008060c08789031215620002c257600080fd5b86516001600160401b0380821115620002da57600080fd5b620002e88a838b01620001e0565b97506020890151915080821115620002ff57600080fd5b506200030e89828a01620001e0565b955050604087015193506060870151925060808701516200032f816200028f565b60a088015190925062000342816200028f565b809150509295509295509295565b600181811c908216806200036557607f821691505b6020821081036200038657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c557600081815260208120601f850160051c81016020861015620003b55750805b601f850160051c820191505b81811015620003d657828155600101620003c1565b505050505050565b81516001600160401b03811115620003fa57620003fa620001ca565b62000412816200040b845462000350565b846200038c565b602080601f8311600181146200044a5760008415620004315750858301515b600019600386901b1c1916600185901b178555620003d6565b600085815260208120601f198616915b828110156200047b578886015182559484019460019091019084016200045a565b50858210156200049a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000501578160001904821115620004e557620004e5620004aa565b80851615620004f357918102915b93841c9390800290620004c5565b509250929050565b6000826200051a57506001620005b9565b816200052957506000620005b9565b81600181146200054257600281146200054d576200056d565b6001915050620005b9565b60ff841115620005615762000561620004aa565b50506001821b620005b9565b5060208310610133831016604e8410600b841016171562000592575081810a620005b9565b6200059e8383620004c0565b8060001904821115620005b557620005b5620004aa565b0290505b92915050565b6000620005cd838362000509565b9392505050565b8082028115828204841417620005b957620005b9620004aa565b80820180821115620005b957620005b9620004aa565b610c2780620006146000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610211578063a9059cbb14610224578063b2bdfa7b14610237578063dd62ed3e1461024a578063f2fde38b1461028357600080fd5b8063715018a6146101c75780638980f11f146101d15780638da5cb5b146101e457806395d89b411461020957600080fd5b806323b872dd116100de57806323b872dd14610170578063313ce56714610183578063395093511461018b57806370a082311461019e57600080fd5b806306fdde0314610110578063095ea7b31461012e57806310c8aeac1461015157806318160ddd14610168575b600080fd5b610118610296565b60405161012591906109ff565b60405180910390f35b61014161013c366004610a69565b610328565b6040519015158152602001610125565b61015a60075481565b604051908152602001610125565b60025461015a565b61014161017e366004610a93565b61033f565b60035461015a565b610141610199366004610a69565b6103f5565b61015a6101ac366004610acf565b6001600160a01b031660009081526020819052604090205490565b6101cf61042c565b005b6101cf6101df366004610a69565b6104a0565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610125565b610118610561565b61014161021f366004610a69565b610570565b610141610232366004610a69565b61060b565b6006546101f1906001600160a01b031681565b61015a610258366004610af1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101cf610291366004610acf565b610618565b6060600480546102a590610b24565b80601f01602080910402602001604051908101604052809291908181526020018280546102d190610b24565b801561031e5780601f106102f35761010080835404028352916020019161031e565b820191906000526020600020905b81548152906001019060200180831161030157829003601f168201915b5050505050905090565b6000610335338484610703565b5060015b92915050565b600061034c848484610827565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103d65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ea85336103e58685610b74565b610703565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103359185906103e5908690610b87565b6006546001600160a01b031633146104565760405162461bcd60e51b81526004016103cd90610b9a565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146104ca5760405162461bcd60e51b81526004016103cd90610b9a565b816001600160a01b031663a9059cbb6104eb6006546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610538573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055c9190610bcf565b505050565b6060600580546102a590610b24565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103cd565b61060133856103e58685610b74565b5060019392505050565b6000610335338484610827565b6006546001600160a01b031633146106425760405162461bcd60e51b81526004016103cd90610b9a565b6001600160a01b0381166106a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cd565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cd565b6001600160a01b0382166107c65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661088b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cd565b6001600160a01b0382166108ed5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cd565b6001600160a01b038316600090815260208190526040902054818110156109655760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cd565b61096f8282610b74565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109a5908490610b87565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109f191815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610a2c57858101830151858201604001528201610a10565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a6457600080fd5b919050565b60008060408385031215610a7c57600080fd5b610a8583610a4d565b946020939093013593505050565b600080600060608486031215610aa857600080fd5b610ab184610a4d565b9250610abf60208501610a4d565b9150604084013590509250925092565b600060208284031215610ae157600080fd5b610aea82610a4d565b9392505050565b60008060408385031215610b0457600080fd5b610b0d83610a4d565b9150610b1b60208401610a4d565b90509250929050565b600181811c90821680610b3857607f821691505b602082108103610b5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561033957610339610b5e565b8082018082111561033957610339610b5e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610be157600080fd5b81518015158114610aea57600080fdfea2646970667358221220ff13a65be13d20a19e872d0d95ada51a91741ac657b8a51706d1eca6ebf3112b64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000019dc7deb800000000000000000000000067c0fc4b0490ab7e76c08c2bbd30fac0059bbc7a00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a000000000000000000000000000000000000000000000000000000000000000b5265776b616e6720496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035245570000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610211578063a9059cbb14610224578063b2bdfa7b14610237578063dd62ed3e1461024a578063f2fde38b1461028357600080fd5b8063715018a6146101c75780638980f11f146101d15780638da5cb5b146101e457806395d89b411461020957600080fd5b806323b872dd116100de57806323b872dd14610170578063313ce56714610183578063395093511461018b57806370a082311461019e57600080fd5b806306fdde0314610110578063095ea7b31461012e57806310c8aeac1461015157806318160ddd14610168575b600080fd5b610118610296565b60405161012591906109ff565b60405180910390f35b61014161013c366004610a69565b610328565b6040519015158152602001610125565b61015a60075481565b604051908152602001610125565b60025461015a565b61014161017e366004610a93565b61033f565b60035461015a565b610141610199366004610a69565b6103f5565b61015a6101ac366004610acf565b6001600160a01b031660009081526020819052604090205490565b6101cf61042c565b005b6101cf6101df366004610a69565b6104a0565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610125565b610118610561565b61014161021f366004610a69565b610570565b610141610232366004610a69565b61060b565b6006546101f1906001600160a01b031681565b61015a610258366004610af1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101cf610291366004610acf565b610618565b6060600480546102a590610b24565b80601f01602080910402602001604051908101604052809291908181526020018280546102d190610b24565b801561031e5780601f106102f35761010080835404028352916020019161031e565b820191906000526020600020905b81548152906001019060200180831161030157829003601f168201915b5050505050905090565b6000610335338484610703565b5060015b92915050565b600061034c848484610827565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103d65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ea85336103e58685610b74565b610703565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103359185906103e5908690610b87565b6006546001600160a01b031633146104565760405162461bcd60e51b81526004016103cd90610b9a565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146104ca5760405162461bcd60e51b81526004016103cd90610b9a565b816001600160a01b031663a9059cbb6104eb6006546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610538573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055c9190610bcf565b505050565b6060600580546102a590610b24565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103cd565b61060133856103e58685610b74565b5060019392505050565b6000610335338484610827565b6006546001600160a01b031633146106425760405162461bcd60e51b81526004016103cd90610b9a565b6001600160a01b0381166106a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cd565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cd565b6001600160a01b0382166107c65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661088b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cd565b6001600160a01b0382166108ed5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cd565b6001600160a01b038316600090815260208190526040902054818110156109655760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cd565b61096f8282610b74565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109a5908490610b87565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109f191815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610a2c57858101830151858201604001528201610a10565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a6457600080fd5b919050565b60008060408385031215610a7c57600080fd5b610a8583610a4d565b946020939093013593505050565b600080600060608486031215610aa857600080fd5b610ab184610a4d565b9250610abf60208501610a4d565b9150604084013590509250925092565b600060208284031215610ae157600080fd5b610aea82610a4d565b9392505050565b60008060408385031215610b0457600080fd5b610b0d83610a4d565b9150610b1b60208401610a4d565b90509250929050565b600181811c90821680610b3857607f821691505b602082108103610b5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561033957610339610b5e565b8082018082111561033957610339610b5e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610be157600080fd5b81518015158114610aea57600080fdfea2646970667358221220ff13a65be13d20a19e872d0d95ada51a91741ac657b8a51706d1eca6ebf3112b64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000019dc7deb800000000000000000000000067c0fc4b0490ab7e76c08c2bbd30fac0059bbc7a00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a000000000000000000000000000000000000000000000000000000000000000b5265776b616e6720496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035245570000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Rewkang Inu
Arg [1] : symbol_ (string): REW
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 6942088888
Arg [4] : tokenOwner (address): 0x67C0fc4B0490ab7E76C08C2bbD30fAc0059bbc7A
Arg [5] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000019dc7deb8
Arg [4] : 00000000000000000000000067c0fc4b0490ab7e76c08c2bbd30fac0059bbc7a
Arg [5] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 5265776b616e6720496e75000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 5245570000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18062:552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6566:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8742:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8742:169:0;1004:187:1;18111:57:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;18111:57:0;1196:177:1;7695:108:0;7783:12;;7695:108;;9393:422;;;;;;:::i;:::-;;:::i;7528:102::-;7613:9;;7528:102;;10224:215;;;;;;:::i;:::-;;:::i;7866:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7967:18:0;7940:7;7967:18;;;;;;;;;;;;7866:127;16835:148;;;:::i;:::-;;17864:160;;;;;;:::i;:::-;;:::i;16184:87::-;16257:6;;-1:-1:-1;;;;;16257:6:0;16184:87;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;16184:87:0;1902:203:1;6785:104:0;;;:::i;10942:377::-;;;;;;:::i;:::-;;:::i;8206:175::-;;;;;;:::i;:::-;;:::i;15987:21::-;;;;;-1:-1:-1;;;;;15987:21:0;;;8444:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8560:18:0;;;8533:7;8560:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8444:151;17138:244;;;;;;:::i;:::-;;:::i;6566:100::-;6620:13;6653:5;6646:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6566:100;:::o;8742:169::-;8825:4;8842:39;4143:10;8865:7;8874:6;8842:8;:39::i;:::-;-1:-1:-1;8899:4:0;8742:169;;;;;:::o;9393:422::-;9499:4;9516:36;9526:6;9534:9;9545:6;9516:9;:36::i;:::-;-1:-1:-1;;;;;9592:19:0;;9565:24;9592:19;;;:11;:19;;;;;;;;4143:10;9592:33;;;;;;;;9644:26;;;;9636:79;;;;-1:-1:-1;;;9636:79:0;;2962:2:1;9636:79:0;;;2944:21:1;3001:2;2981:18;;;2974:30;3040:34;3020:18;;;3013:62;-1:-1:-1;;;3091:18:1;;;3084:38;3139:19;;9636:79:0;;;;;;;;;9726:57;9735:6;4143:10;9757:25;9776:6;9757:16;:25;:::i;:::-;9726:8;:57::i;:::-;-1:-1:-1;9803:4:0;;9393:422;-1:-1:-1;;;;9393:422:0:o;10224:215::-;4143:10;10312:4;10361:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10361:34:0;;;;;;;;;;10312:4;;10329:80;;10352:7;;10361:47;;10398:10;;10361:47;:::i;16835:148::-;16257:6;;-1:-1:-1;;;;;16257:6:0;4143:10;16404:23;16396:68;;;;-1:-1:-1;;;16396:68:0;;;;;;;:::i;:::-;16926:6:::1;::::0;16905:40:::1;::::0;16942:1:::1;::::0;-1:-1:-1;;;;;16926:6:0::1;::::0;16905:40:::1;::::0;16942:1;;16905:40:::1;16956:6;:19:::0;;-1:-1:-1;;;;;;16956:19:0::1;::::0;;16835:148::o;17864:160::-;16257:6;;-1:-1:-1;;;;;16257:6:0;4143:10;16404:23;16396:68;;;;-1:-1:-1;;;16396:68:0;;;;;;;:::i;:::-;17972:12:::1;-1:-1:-1::0;;;;;17965:29:0::1;;17995:7;16257:6:::0;;-1:-1:-1;;;;;16257:6:0;;16184:87;17995:7:::1;17965:51;::::0;-1:-1:-1;;;;;;17965:51:0::1;::::0;;;;;;-1:-1:-1;;;;;4117:32:1;;;17965:51:0::1;::::0;::::1;4099::1::0;4166:18;;;4159:34;;;4072:18;;17965:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17864:160:::0;;:::o;6785:104::-;6841:13;6874:7;6867:14;;;;;:::i;10942:377::-;4143:10;11035:4;11079:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11079:34:0;;;;;;;;;;11132:35;;;;11124:85;;;;-1:-1:-1;;;11124:85:0;;4688:2:1;11124:85:0;;;4670:21:1;4727:2;4707:18;;;4700:30;4766:34;4746:18;;;4739:62;-1:-1:-1;;;4817:18:1;;;4810:35;4862:19;;11124:85:0;4486:401:1;11124:85:0;11220:67;4143:10;11243:7;11252:34;11271:15;11252:16;:34;:::i;11220:67::-;-1:-1:-1;11307:4:0;;10942:377;-1:-1:-1;;;10942:377:0:o;8206:175::-;8292:4;8309:42;4143:10;8333:9;8344:6;8309:9;:42::i;17138:244::-;16257:6;;-1:-1:-1;;;;;16257:6:0;4143:10;16404:23;16396:68;;;;-1:-1:-1;;;16396:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17227:22:0;::::1;17219:73;;;::::0;-1:-1:-1;;;17219:73:0;;5094:2:1;17219:73:0::1;::::0;::::1;5076:21:1::0;5133:2;5113:18;;;5106:30;5172:34;5152:18;;;5145:62;-1:-1:-1;;;5223:18:1;;;5216:36;5269:19;;17219:73:0::1;4892:402:1::0;17219:73:0::1;17329:6;::::0;17308:38:::1;::::0;-1:-1:-1;;;;;17308:38:0;;::::1;::::0;17329:6:::1;::::0;17308:38:::1;::::0;17329:6:::1;::::0;17308:38:::1;17357:6;:17:::0;;-1:-1:-1;;;;;;17357:17:0::1;-1:-1:-1::0;;;;;17357:17:0;;;::::1;::::0;;;::::1;::::0;;17138:244::o;14302:346::-;-1:-1:-1;;;;;14404:19:0;;14396:68;;;;-1:-1:-1;;;14396:68:0;;5501:2:1;14396:68:0;;;5483:21:1;5540:2;5520:18;;;5513:30;5579:34;5559:18;;;5552:62;-1:-1:-1;;;5630:18:1;;;5623:34;5674:19;;14396:68:0;5299:400:1;14396:68:0;-1:-1:-1;;;;;14483:21:0;;14475:68;;;;-1:-1:-1;;;14475:68:0;;5906:2:1;14475:68:0;;;5888:21:1;5945:2;5925:18;;;5918:30;5984:34;5964:18;;;5957:62;-1:-1:-1;;;6035:18:1;;;6028:32;6077:19;;14475:68:0;5704:398:1;14475:68:0;-1:-1:-1;;;;;14556:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14608:32;;1342:25:1;;;14608:32:0;;1315:18:1;14608:32:0;;;;;;;14302:346;;;:::o;11809:608::-;-1:-1:-1;;;;;11915:20:0;;11907:70;;;;-1:-1:-1;;;11907:70:0;;6309:2:1;11907:70:0;;;6291:21:1;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:1;;;6431:35;6483:19;;11907:70:0;6107:401:1;11907:70:0;-1:-1:-1;;;;;11996:23:0;;11988:71;;;;-1:-1:-1;;;11988:71:0;;6715:2:1;11988:71:0;;;6697:21:1;6754:2;6734:18;;;6727:30;6793:34;6773:18;;;6766:62;-1:-1:-1;;;6844:18:1;;;6837:33;6887:19;;11988:71:0;6513:399:1;11988:71:0;-1:-1:-1;;;;;12160:17:0;;12136:21;12160:17;;;;;;;;;;;12196:23;;;;12188:74;;;;-1:-1:-1;;;12188:74:0;;7119:2:1;12188:74:0;;;7101:21:1;7158:2;7138:18;;;7131:30;7197:34;7177:18;;;7170:62;-1:-1:-1;;;7248:18:1;;;7241:36;7294:19;;12188:74:0;6917:402:1;12188:74:0;12293:22;12309:6;12293:13;:22;:::i;:::-;-1:-1:-1;;;;;12273:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12326:20;;;;;;;;:30;;12350:6;;12273:9;12326:30;;12350:6;;12326:30;:::i;:::-;;;;;;;;12391:9;-1:-1:-1;;;;;12374:35:0;12383:6;-1:-1:-1;;;;;12374:35:0;;12402:6;12374:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;12374:35:0;;;;;;;;11896:521;11809:608;;;:::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;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;:::-;1852:39;1711:186;-1:-1:-1;;;1711:186:1:o;2110:260::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;;2326:38;2360:2;2349:9;2345:18;2326:38;:::i;:::-;2316:48;;2110:260;;;;;:::o;2375:380::-;2454:1;2450:12;;;;2497;;;2518:61;;2572:4;2564:6;2560:17;2550:27;;2518:61;2625:2;2617:6;2614:14;2594:18;2591:38;2588:161;;2671:10;2666:3;2662:20;2659:1;2652:31;2706:4;2703:1;2696:15;2734:4;2731:1;2724:15;2588:161;;2375:380;;;:::o;3169:127::-;3230:10;3225:3;3221:20;3218:1;3211:31;3261:4;3258:1;3251:15;3285:4;3282:1;3275:15;3301:128;3368:9;;;3389:11;;;3386:37;;;3403:18;;:::i;3434:125::-;3499:9;;;3520:10;;;3517:36;;;3533:18;;:::i;3564:356::-;3766:2;3748:21;;;3785:18;;;3778:30;3844:34;3839:2;3824:18;;3817:62;3911:2;3896:18;;3564:356::o;4204:277::-;4271:6;4324:2;4312:9;4303:7;4299:23;4295:32;4292:52;;;4340:1;4337;4330:12;4292:52;4372:9;4366:16;4425:5;4418:13;4411:21;4404:5;4401:32;4391:60;;4447:1;4444;4437:12
Swarm Source
ipfs://ff13a65be13d20a19e872d0d95ada51a91741ac657b8a51706d1eca6ebf3112b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.