Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
GrowingERC20
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-31 */ /** *Submitted for verification at Etherscan.io on 2021-04-09 */ /** *Submitted for verification at Etherscan.io on 2021-03-30 */ pragma solidity >=0.6.0 <0.8.0; // SPDX-License-Identifier: MIT /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol pragma solidity >=0.6.0 <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: node_modules\@openzeppelin\contracts\math\SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol pragma solidity >=0.6.0 <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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(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: ERC20Growing.sol contract Ownable { address payable public owner = msg.sender; address payable public newOwnerCandidate; modifier onlyOwner { require(msg.sender == owner); _; } function changeOwner(address payable newOwner) public onlyOwner { newOwnerCandidate = newOwner; } function acceptOwner() public { require(msg.sender == newOwnerCandidate); owner = newOwnerCandidate; } } /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } contract GrowingERC20 is ERC20, Ownable, Initializable { using SafeMath for uint256; mapping (address => uint256) public lastUpdateTime; mapping (address => bool) public blackList; uint256 public rate; string public name; string public symbol; function initialize() public initializer { // owner 0x103F26C79095ac6E910d70fA13678C479704d063 owner = 0x103F26C79095ac6E910d70fA13678C479704d063; name = "Trust Coin"; symbol = "TRC"; _mint(owner, 18000000 * 10**18); // 31% rate = uint256(3100).mul(1e27).div(2592000).div(10000); } function decimals() public view returns (uint8) { return 18; } // 3100 == 31% function changeRate(uint256 _newRateMultipliedBy100) public onlyOwner { rate = _newRateMultipliedBy100.mul(1e27).div(2592000).div(10000); } function mintByOwner(uint256 _amountInWei) public onlyOwner { _mint(msg.sender, _amountInWei); } function changeNameAndSymbol(string memory _newName, string memory _newSymbol) public onlyOwner { name = _newName; symbol = _newSymbol; } function setBlackList(address _account, bool _isBlacklisted) public onlyOwner { blackList[_account] = _isBlacklisted; } function updateAccountsAndChangeRate(address[] memory _accounts, uint256 _newRate) public onlyOwner { uint256 _len = _accounts.length; for(uint256 i=0;i < _len;i++) updateAccount(_accounts[i]); rate = _newRate; } function balanceOf(address _account) public view override returns (uint256) { uint256 _lastTime = lastUpdateTime[_account]; uint256 _bal = ERC20.balanceOf(_account); if (_lastTime == 0 || isBlackListed(_account)) return _bal; uint256 diff = uint256(block.timestamp).sub(_lastTime); return _bal.add(_bal.mul(rate).mul(diff).div(1e27)); } function isBlackListed(address _account) public view returns(bool) { if (_account == owner) return true; return blackList[_account]; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (from == address(0)) return; updateAccount(from); if (to != address(0)) updateAccount(to); } function getTime() view public returns (uint256) { return block.timestamp; } function updateAccount(address _account) internal { uint256 _lastTime = lastUpdateTime[_account]; if (_lastTime == block.timestamp) return; lastUpdateTime[_account] = block.timestamp; if (_lastTime == 0) return; if (isBlackListed(_account)) return; uint256 _bal = ERC20.balanceOf(_account); if (_bal > 0) { uint256 diff = uint256(block.timestamp).sub(_lastTime); _mint(_account, _bal.mul(rate).mul(diff).div(1e27)); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[],"name":"acceptOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newName","type":"string"},{"internalType":"string","name":"_newSymbol","type":"string"}],"name":"changeNameAndSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newRateMultipliedBy100","type":"uint256"}],"name":"changeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountInWei","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newOwnerCandidate","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"setBlackList","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":"_accounts","type":"address[]"},{"internalType":"uint256","name":"_newRate","type":"uint256"}],"name":"updateAccountsAndChangeRate","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600380546001600160a01b0319163317905534801561002257600080fd5b5061162a806100326000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d5380a2116100de578063a457c2d711610097578063d091b55011610071578063d091b5501461065a578063dd62ed3e14610662578063e47d606014610690578063ebbc4965146106b65761018e565b8063a457c2d7146105dc578063a6f9dae114610608578063a9059cbb1461062e5761018e565b80636d5380a2146104c057806370a082311461056557806374e7493b1461058b5780638129fc1c146105a85780638da5cb5b146105b057806395d89b41146105d45761018e565b80632c4e722e1161014b578063395093511161012557806339509351146104385780634838d16514610464578063557ed1ba1461048a57806368092bd9146104925761018e565b80632c4e722e146103ec5780632ce9aead146103f4578063313ce5671461041a5761018e565b806306fdde0314610193578063089bb99a14610210578063095ea7b31461033f57806318160ddd1461037f57806323b872dd146103995780632a944b19146103cf575b600080fd5b61019b6106be565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61033d6004803603604081101561022657600080fd5b81019060208101813564010000000081111561024157600080fd5b82018360208201111561025357600080fd5b8035906020019184600183028401116401000000008311171561027557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156102c857600080fd5b8201836020820111156102da57600080fd5b803590602001918460018302840111640100000000831117156102fc57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061074c945050505050565b005b61036b6004803603604081101561035557600080fd5b506001600160a01b03813516906020013561078f565b604080519115158252519081900360200190f35b6103876107ad565b60408051918252519081900360200190f35b61036b600480360360608110156103af57600080fd5b506001600160a01b038135811691602081013590911690604001356107b3565b61033d600480360360208110156103e557600080fd5b503561083a565b61038761085e565b6103876004803603602081101561040a57600080fd5b50356001600160a01b0316610864565b610422610876565b6040805160ff9092168252519081900360200190f35b61036b6004803603604081101561044e57600080fd5b506001600160a01b03813516906020013561087b565b61036b6004803603602081101561047a57600080fd5b50356001600160a01b03166108c9565b6103876108de565b61033d600480360360408110156104a857600080fd5b506001600160a01b03813516906020013515156108e2565b61033d600480360360408110156104d657600080fd5b8101906020810181356401000000008111156104f157600080fd5b82018360208201111561050357600080fd5b8035906020019184602083028401116401000000008311171561052557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610924915050565b6103876004803603602081101561057b57600080fd5b50356001600160a01b0316610974565b61033d600480360360208110156105a157600080fd5b5035610a10565b61033d610a4e565b6105b8610bd0565b604080516001600160a01b039092168252519081900360200190f35b61019b610bdf565b61036b600480360360408110156105f257600080fd5b506001600160a01b038135169060200135610c3a565b61033d6004803603602081101561061e57600080fd5b50356001600160a01b0316610ca2565b61036b6004803603604081101561064457600080fd5b506001600160a01b038135169060200135610cdb565b6105b8610cef565b6103876004803603604081101561067857600080fd5b506001600160a01b0381358116916020013516610cfe565b61036b600480360360208110156106a657600080fd5b50356001600160a01b0316610d29565b61033d610d69565b603a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b505050505081565b6003546001600160a01b0316331461076357600080fd5b815161077690603a906020850190611403565b50805161078a90603b906020840190611403565b505050565b60006107a361079c610da4565b8484610da8565b5060015b92915050565b60025490565b60006107c0848484610e94565b610830846107cc610da4565b61082b85604051806060016040528060288152602001611531602891396001600160a01b038a1660009081526001602052604081209061080a610da4565b6001600160a01b031681526020810191909152604001600020549190610fef565b610da8565b5060019392505050565b6003546001600160a01b0316331461085157600080fd5b61085b3382611086565b50565b60395481565b60376020526000908152604090205481565b601290565b60006107a3610888610da4565b8461082b8560016000610899610da4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611176565b60386020526000908152604090205460ff1681565b4290565b6003546001600160a01b031633146108f957600080fd5b6001600160a01b03919091166000908152603860205260409020805460ff1916911515919091179055565b6003546001600160a01b0316331461093b57600080fd5b815160005b8181101561096c5761096484828151811061095757fe5b60200260200101516111d7565b600101610940565b505060395550565b6001600160a01b0381166000908152603760205260408120548161099784611291565b90508115806109aa57506109aa84610d29565b156109b8579150610a0b9050565b60006109c442846112ac565b9050610a056109fe6b033b2e3c9fd0803ce80000006109f8846109f26039548861130990919063ffffffff16565b90611309565b90611362565b8390611176565b93505050505b919050565b6003546001600160a01b03163314610a2757600080fd5b610a486127106109f862278d0081856b033b2e3c9fd0803ce8000000611309565b60395550565b600454600160a81b900460ff1680610a695750610a696113c9565b80610a7e5750600454600160a01b900460ff16155b610ab95760405162461bcd60e51b815260040180806020018281038252602e815260200180611559602e913960400191505060405180910390fd5b600454600160a81b900460ff16158015610af0576004805460ff60a01b1960ff60a81b19909116600160a81b1716600160a01b1790555b600380546001600160a01b03191673103f26c79095ac6e910d70fa13678c479704d06317905560408051808201909152600a808252692a393ab9ba1021b7b4b760b11b6020909201918252610b4791603a91611403565b506040805180820190915260038082526254524360e81b6020909201918252610b7291603b91611403565b50600354610b94906001600160a01b03166a0ee3a5f48a68b552000000611086565b610bb76127106109f862278d0081610c1c6b033b2e3c9fd0803ce8000000611309565b603955801561085b576004805460ff60a81b1916905550565b6003546001600160a01b031681565b603b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107445780601f1061071957610100808354040283529160200191610744565b60006107a3610c47610da4565b8461082b856040518060600160405280602581526020016115d06025913960016000610c71610da4565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610fef565b6003546001600160a01b03163314610cb957600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60006107a3610ce8610da4565b8484610e94565b6004546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546000906001600160a01b0383811691161415610d4a57506001610a0b565b506001600160a01b031660009081526038602052604090205460ff1690565b6004546001600160a01b03163314610d8057600080fd5b600454600380546001600160a01b0319166001600160a01b03909216919091179055565b3390565b6001600160a01b038316610ded5760405162461bcd60e51b81526004018080602001828103825260248152602001806115ac6024913960400191505060405180910390fd5b6001600160a01b038216610e325760405162461bcd60e51b81526004018080602001828103825260228152602001806114c86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ed95760405162461bcd60e51b81526004018080602001828103825260258152602001806115876025913960400191505060405180910390fd5b6001600160a01b038216610f1e5760405162461bcd60e51b81526004018080602001828103825260238152602001806114a56023913960400191505060405180910390fd5b610f298383836113cf565b610f66816040518060600160405280602681526020016114ea602691396001600160a01b0386166000908152602081905260409020549190610fef565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f959082611176565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561107e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561104357818101518382015260200161102b565b50505050905090810190601f1680156110705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166110e1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6110ed600083836113cf565b6002546110fa9082611176565b6002556001600160a01b0382166000908152602081905260409020546111209082611176565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156111d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116600090815260376020526040902054428114156111fe575061085b565b6001600160a01b038216600090815260376020526040902042905580611224575061085b565b61122d82610d29565b15611238575061085b565b600061124383611291565b9050801561078a57600061125742846112ac565b905061128b846112866b033b2e3c9fd0803ce80000006109f8856109f26039548961130990919063ffffffff16565b611086565b50505050565b6001600160a01b031660009081526020819052604090205490565b600082821115611303576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611318575060006107a7565b8282028284828161132557fe5b04146111d05760405162461bcd60e51b81526004018080602001828103825260218152602001806115106021913960400191505060405180910390fd5b60008082116113b8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816113c157fe5b049392505050565b303b1590565b6001600160a01b0383166113e25761078a565b6113eb836111d7565b6001600160a01b0382161561078a5761078a826111d7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611439576000855561147f565b82601f1061145257805160ff191683800117855561147f565b8280016001018555821561147f579182015b8281111561147f578251825591602001919060010190611464565b5061148b92915061148f565b5090565b5b8082111561148b576000815560010161149056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122030a451dd0a3a35dcca7b0782f734779933678bfd4a4981c9764efdc10c6ca88464736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d5380a2116100de578063a457c2d711610097578063d091b55011610071578063d091b5501461065a578063dd62ed3e14610662578063e47d606014610690578063ebbc4965146106b65761018e565b8063a457c2d7146105dc578063a6f9dae114610608578063a9059cbb1461062e5761018e565b80636d5380a2146104c057806370a082311461056557806374e7493b1461058b5780638129fc1c146105a85780638da5cb5b146105b057806395d89b41146105d45761018e565b80632c4e722e1161014b578063395093511161012557806339509351146104385780634838d16514610464578063557ed1ba1461048a57806368092bd9146104925761018e565b80632c4e722e146103ec5780632ce9aead146103f4578063313ce5671461041a5761018e565b806306fdde0314610193578063089bb99a14610210578063095ea7b31461033f57806318160ddd1461037f57806323b872dd146103995780632a944b19146103cf575b600080fd5b61019b6106be565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61033d6004803603604081101561022657600080fd5b81019060208101813564010000000081111561024157600080fd5b82018360208201111561025357600080fd5b8035906020019184600183028401116401000000008311171561027557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156102c857600080fd5b8201836020820111156102da57600080fd5b803590602001918460018302840111640100000000831117156102fc57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061074c945050505050565b005b61036b6004803603604081101561035557600080fd5b506001600160a01b03813516906020013561078f565b604080519115158252519081900360200190f35b6103876107ad565b60408051918252519081900360200190f35b61036b600480360360608110156103af57600080fd5b506001600160a01b038135811691602081013590911690604001356107b3565b61033d600480360360208110156103e557600080fd5b503561083a565b61038761085e565b6103876004803603602081101561040a57600080fd5b50356001600160a01b0316610864565b610422610876565b6040805160ff9092168252519081900360200190f35b61036b6004803603604081101561044e57600080fd5b506001600160a01b03813516906020013561087b565b61036b6004803603602081101561047a57600080fd5b50356001600160a01b03166108c9565b6103876108de565b61033d600480360360408110156104a857600080fd5b506001600160a01b03813516906020013515156108e2565b61033d600480360360408110156104d657600080fd5b8101906020810181356401000000008111156104f157600080fd5b82018360208201111561050357600080fd5b8035906020019184602083028401116401000000008311171561052557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610924915050565b6103876004803603602081101561057b57600080fd5b50356001600160a01b0316610974565b61033d600480360360208110156105a157600080fd5b5035610a10565b61033d610a4e565b6105b8610bd0565b604080516001600160a01b039092168252519081900360200190f35b61019b610bdf565b61036b600480360360408110156105f257600080fd5b506001600160a01b038135169060200135610c3a565b61033d6004803603602081101561061e57600080fd5b50356001600160a01b0316610ca2565b61036b6004803603604081101561064457600080fd5b506001600160a01b038135169060200135610cdb565b6105b8610cef565b6103876004803603604081101561067857600080fd5b506001600160a01b0381358116916020013516610cfe565b61036b600480360360208110156106a657600080fd5b50356001600160a01b0316610d29565b61033d610d69565b603a805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b505050505081565b6003546001600160a01b0316331461076357600080fd5b815161077690603a906020850190611403565b50805161078a90603b906020840190611403565b505050565b60006107a361079c610da4565b8484610da8565b5060015b92915050565b60025490565b60006107c0848484610e94565b610830846107cc610da4565b61082b85604051806060016040528060288152602001611531602891396001600160a01b038a1660009081526001602052604081209061080a610da4565b6001600160a01b031681526020810191909152604001600020549190610fef565b610da8565b5060019392505050565b6003546001600160a01b0316331461085157600080fd5b61085b3382611086565b50565b60395481565b60376020526000908152604090205481565b601290565b60006107a3610888610da4565b8461082b8560016000610899610da4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611176565b60386020526000908152604090205460ff1681565b4290565b6003546001600160a01b031633146108f957600080fd5b6001600160a01b03919091166000908152603860205260409020805460ff1916911515919091179055565b6003546001600160a01b0316331461093b57600080fd5b815160005b8181101561096c5761096484828151811061095757fe5b60200260200101516111d7565b600101610940565b505060395550565b6001600160a01b0381166000908152603760205260408120548161099784611291565b90508115806109aa57506109aa84610d29565b156109b8579150610a0b9050565b60006109c442846112ac565b9050610a056109fe6b033b2e3c9fd0803ce80000006109f8846109f26039548861130990919063ffffffff16565b90611309565b90611362565b8390611176565b93505050505b919050565b6003546001600160a01b03163314610a2757600080fd5b610a486127106109f862278d0081856b033b2e3c9fd0803ce8000000611309565b60395550565b600454600160a81b900460ff1680610a695750610a696113c9565b80610a7e5750600454600160a01b900460ff16155b610ab95760405162461bcd60e51b815260040180806020018281038252602e815260200180611559602e913960400191505060405180910390fd5b600454600160a81b900460ff16158015610af0576004805460ff60a01b1960ff60a81b19909116600160a81b1716600160a01b1790555b600380546001600160a01b03191673103f26c79095ac6e910d70fa13678c479704d06317905560408051808201909152600a808252692a393ab9ba1021b7b4b760b11b6020909201918252610b4791603a91611403565b506040805180820190915260038082526254524360e81b6020909201918252610b7291603b91611403565b50600354610b94906001600160a01b03166a0ee3a5f48a68b552000000611086565b610bb76127106109f862278d0081610c1c6b033b2e3c9fd0803ce8000000611309565b603955801561085b576004805460ff60a81b1916905550565b6003546001600160a01b031681565b603b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107445780601f1061071957610100808354040283529160200191610744565b60006107a3610c47610da4565b8461082b856040518060600160405280602581526020016115d06025913960016000610c71610da4565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610fef565b6003546001600160a01b03163314610cb957600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60006107a3610ce8610da4565b8484610e94565b6004546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6003546000906001600160a01b0383811691161415610d4a57506001610a0b565b506001600160a01b031660009081526038602052604090205460ff1690565b6004546001600160a01b03163314610d8057600080fd5b600454600380546001600160a01b0319166001600160a01b03909216919091179055565b3390565b6001600160a01b038316610ded5760405162461bcd60e51b81526004018080602001828103825260248152602001806115ac6024913960400191505060405180910390fd5b6001600160a01b038216610e325760405162461bcd60e51b81526004018080602001828103825260228152602001806114c86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ed95760405162461bcd60e51b81526004018080602001828103825260258152602001806115876025913960400191505060405180910390fd5b6001600160a01b038216610f1e5760405162461bcd60e51b81526004018080602001828103825260238152602001806114a56023913960400191505060405180910390fd5b610f298383836113cf565b610f66816040518060600160405280602681526020016114ea602691396001600160a01b0386166000908152602081905260409020549190610fef565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f959082611176565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561107e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561104357818101518382015260200161102b565b50505050905090810190601f1680156110705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166110e1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6110ed600083836113cf565b6002546110fa9082611176565b6002556001600160a01b0382166000908152602081905260409020546111209082611176565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156111d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116600090815260376020526040902054428114156111fe575061085b565b6001600160a01b038216600090815260376020526040902042905580611224575061085b565b61122d82610d29565b15611238575061085b565b600061124383611291565b9050801561078a57600061125742846112ac565b905061128b846112866b033b2e3c9fd0803ce80000006109f8856109f26039548961130990919063ffffffff16565b611086565b50505050565b6001600160a01b031660009081526020819052604090205490565b600082821115611303576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611318575060006107a7565b8282028284828161132557fe5b04146111d05760405162461bcd60e51b81526004018080602001828103825260218152602001806115106021913960400191505060405180910390fd5b60008082116113b8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816113c157fe5b049392505050565b303b1590565b6001600160a01b0383166113e25761078a565b6113eb836111d7565b6001600160a01b0382161561078a5761078a826111d7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611439576000855561147f565b82601f1061145257805160ff191683800117855561147f565b8280016001018555821561147f579182015b8281111561147f578251825591602001919060010190611464565b5061148b92915061148f565b5090565b5b8082111561148b576000815560010161149056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122030a451dd0a3a35dcca7b0782f734779933678bfd4a4981c9764efdc10c6ca88464736f6c63430007060033
Deployed Bytecode Sourcemap
22991:3014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23226:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24025:160:0;;;;;;;;-1:-1:-1;24025:160:0;;-1:-1:-1;;24025:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24025:160:0;;-1:-1:-1;24025:160:0;;-1:-1:-1;;;;;24025:160:0:i;:::-;;14046:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14046:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12999:108;;;:::i;:::-;;;;;;;;;;;;;;;;14697:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14697:321:0;;;;;;;;;;;;;;;;;:::i;23907:110::-;;;;;;;;;;;;;;;;-1:-1:-1;23907:110:0;;:::i;23198:19::-;;;:::i;23092:50::-;;;;;;;;;;;;;;;;-1:-1:-1;23092:50:0;-1:-1:-1;;;;;23092:50:0;;:::i;23637:77::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15427:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15427:218:0;;;;;;;;:::i;23149:42::-;;;;;;;;;;;;;;;;-1:-1:-1;23149:42:0;-1:-1:-1;;;;;23149:42:0;;:::i;25372:90::-;;;:::i;24193:133::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24193:133:0;;;;;;;;;;:::i;24334:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24334:244:0;;-1:-1:-1;;24334:244:0;;;-1:-1:-1;24334:244:0;;-1:-1:-1;;24334:244:0:i;24586:386::-;;;;;;;;;;;;;;;;-1:-1:-1;24586:386:0;-1:-1:-1;;;;;24586:386:0;;:::i;23742:153::-;;;;;;;;;;;;;;;;-1:-1:-1;23742:153:0;;:::i;23280:349::-;;;:::i;20398:41::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20398:41:0;;;;;;;;;;;;;;23251:20;;;:::i;16148:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16148:269:0;;;;;;;;:::i;20581:111::-;;;;;;;;;;;;;;;;-1:-1:-1;20581:111:0;-1:-1:-1;;;;;20581:111:0;;:::i;13510:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13510:175:0;;;;;;;;:::i;20446:40::-;;;:::i;13748:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13748:151:0;;;;;;;;;;:::i;24980:157::-;;;;;;;;;;;;;;;;-1:-1:-1;24980:157:0;-1:-1:-1;;;;;24980:157:0;;:::i;20700:125::-;;;:::i;23226:18::-;;;;;;;;;;;;;;;-1:-1:-1;;23226:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24025:160::-;20547:5;;-1:-1:-1;;;;;20547:5:0;20533:10;:19;20525:28;;;;;;24132:15;;::::1;::::0;:4:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;24158:19:0;;::::1;::::0;:6:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;24025:160:::0;;:::o;14046:169::-;14129:4;14146:39;14155:12;:10;:12::i;:::-;14169:7;14178:6;14146:8;:39::i;:::-;-1:-1:-1;14203:4:0;14046:169;;;;;:::o;12999:108::-;13087:12;;12999:108;:::o;14697:321::-;14803:4;14820:36;14830:6;14838:9;14849:6;14820:9;:36::i;:::-;14867:121;14876:6;14884:12;:10;:12::i;:::-;14898:89;14936:6;14898:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14898:19:0;;;;;;:11;:19;;;;;;14918:12;:10;:12::i;:::-;-1:-1:-1;;;;;14898:33:0;;;;;;;;;;;;-1:-1:-1;14898:33:0;;;:89;:37;:89::i;:::-;14867:8;:121::i;:::-;-1:-1:-1;15006:4:0;14697:321;;;;;:::o;23907:110::-;20547:5;;-1:-1:-1;;;;;20547:5:0;20533:10;:19;20525:28;;;;;;23978:31:::1;23984:10;23996:12;23978:5;:31::i;:::-;23907:110:::0;:::o;23198:19::-;;;;:::o;23092:50::-;;;;;;;;;;;;;:::o;23637:77::-;23704:2;23637:77;:::o;15427:218::-;15515:4;15532:83;15541:12;:10;:12::i;:::-;15555:7;15564:50;15603:10;15564:11;:25;15576:12;:10;:12::i;:::-;-1:-1:-1;;;;;15564:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15564:25:0;;;:34;;;;;;;;;;;:38;:50::i;23149:42::-;;;;;;;;;;;;;;;:::o;25372:90::-;25439:15;25372:90;:::o;24193:133::-;20547:5;;-1:-1:-1;;;;;20547:5:0;20533:10;:19;20525:28;;;;;;-1:-1:-1;;;;;24282:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:36;;-1:-1:-1;;24282:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24193:133::o;24334:244::-;20547:5;;-1:-1:-1;;;;;20547:5:0;20533:10;:19;20525:28;;;;;;24460:16;;24445:12:::1;24487:57;24507:4;24503:1;:8;24487:57;;;24517:27;24531:9;24541:1;24531:12;;;;;;;;;;;;;;24517:13;:27::i;:::-;24512:3;;24487:57;;;-1:-1:-1::0;;24555:4:0::1;:15:::0;-1:-1:-1;24334:244:0:o;24586:386::-;-1:-1:-1;;;;;24693:24:0;;24653:7;24693:24;;;:14;:24;;;;;;24653:7;24743:25;24708:8;24743:15;:25::i;:::-;24728:40;-1:-1:-1;24783:14:0;;;:41;;;24801:23;24815:8;24801:13;:23::i;:::-;24779:58;;;24833:4;-1:-1:-1;24826:11:0;;-1:-1:-1;24826:11:0;24779:58;24848:12;24863:39;24871:15;24892:9;24863:28;:39::i;:::-;24848:54;;24920:44;24929:34;24958:4;24929:24;24948:4;24929:14;24938:4;;24929;:8;;:14;;;;:::i;:::-;:18;;:24::i;:::-;:28;;:34::i;:::-;24920:4;;:8;:44::i;:::-;24913:51;;;;;24586:386;;;;:::o;23742:153::-;20547:5;;-1:-1:-1;;;;;20547:5:0;20533:10;:19;20525:28;;;;;;23830:57:::1;23881:5;23830:46;23868:7;23830:46:::0;:23;23858:4:::1;23830:27;:33::i;:57::-;23823:4;:64:::0;-1:-1:-1;23742:153:0:o;23280:349::-;21877:12;;-1:-1:-1;;;21877:12:0;;;;;:31;;;21893:15;:13;:15::i;:::-;21877:47;;;-1:-1:-1;21913:11:0;;-1:-1:-1;;;21913:11:0;;;;21912:12;21877:47;21869:106;;;;-1:-1:-1;;;21869:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22011:12;;-1:-1:-1;;;22011:12:0;;;;22010:13;22034:99;;;;22069:12;:19;;-1:-1:-1;;;;;;;;22069:19:0;;;-1:-1:-1;;;22069:19:0;22103:18;-1:-1:-1;;;22103:18:0;;;22034:99;23393:5:::1;:50:::0;;-1:-1:-1;;;;;;23393:50:0::1;23401:42;23393:50;::::0;;23454:19:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;23454:19:0::1;::::0;;::::1;::::0;;;::::1;::::0;:4:::1;::::0;:19:::1;:::i;:::-;-1:-1:-1::0;23484:14:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;23484:14:0::1;::::0;;::::1;::::0;;;::::1;::::0;:6:::1;::::0;:14:::1;:::i;:::-;-1:-1:-1::0;23515:5:0::1;::::0;23509:31:::1;::::0;-1:-1:-1;;;;;23515:5:0::1;23522:17;23509:5;:31::i;:::-;23574:47;23615:5;23574:36;23602:7;23574:36:::0;23582:4:::1;23592;23574:17;:23::i;:47::-;23567:4;:54:::0;22159:67;;;;22194:12;:20;;-1:-1:-1;;;;22194:20:0;;;23280:349;:::o;20398:41::-;;;-1:-1:-1;;;;;20398:41:0;;:::o;23251:20::-;;;;;;;;;;;;;;;-1:-1:-1;;23251:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16148:269;16241:4;16258:129;16267:12;:10;:12::i;:::-;16281:7;16290:96;16329:15;16290:96;;;;;;;;;;;;;;;;;:11;:25;16302:12;:10;:12::i;:::-;-1:-1:-1;;;;;16290:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16290:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;20581:111::-;20547:5;;-1:-1:-1;;;;;20547:5:0;20533:10;:19;20525:28;;;;;;20656:17:::1;:28:::0;;-1:-1:-1;;;;;;20656:28:0::1;-1:-1:-1::0;;;;;20656:28:0;;;::::1;::::0;;;::::1;::::0;;20581:111::o;13510:175::-;13596:4;13613:42;13623:12;:10;:12::i;:::-;13637:9;13648:6;13613:9;:42::i;20446:40::-;;;-1:-1:-1;;;;;20446:40:0;;:::o;13748:151::-;-1:-1:-1;;;;;13864:18:0;;;13837:7;13864:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13748:151::o;24980:157::-;25074:5;;25041:4;;-1:-1:-1;;;;;25062:17:0;;;25074:5;;25062:17;25058:34;;;-1:-1:-1;25088:4:0;25081:11;;25058:34;-1:-1:-1;;;;;;25110:19:0;;;;;:9;:19;;;;;;;;;24980:157::o;20700:125::-;20763:17;;-1:-1:-1;;;;;20763:17:0;20749:10;:31;20741:40;;;;;;20800:17;;20792:5;:25;;-1:-1:-1;;;;;;20792:25:0;-1:-1:-1;;;;;20800:17:0;;;20792:25;;;;;;20700:125::o;755:106::-;843:10;755:106;:::o;19295:346::-;-1:-1:-1;;;;;19397:19:0;;19389:68;;;;-1:-1:-1;;;19389:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19476:21:0;;19468:68;;;;-1:-1:-1;;;19468:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19549:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19601:32;;;;;;;;;;;;;;;;;19295:346;;;:::o;16907:539::-;-1:-1:-1;;;;;17013:20:0;;17005:70;;;;-1:-1:-1;;;17005:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17094:23:0;;17086:71;;;;-1:-1:-1;;;17086:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17170:47;17191:6;17199:9;17210:6;17170:20;:47::i;:::-;17250:71;17272:6;17250:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17250:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;17230:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17355:20;;;;;;;:32;;17380:6;17355:24;:32::i;:::-;-1:-1:-1;;;;;17332:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17403:35;;;;;;;17332:20;;17403:35;;;;;;;;;;;;;16907:539;;;:::o;9566:166::-;9652:7;9688:12;9680:6;;;;9672:29;;;;-1:-1:-1;;;9672:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9719:5:0;;;9566:166::o;17728:378::-;-1:-1:-1;;;;;17812:21:0;;17804:65;;;;;-1:-1:-1;;;17804:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17882:49;17911:1;17915:7;17924:6;17882:20;:49::i;:::-;17959:12;;:24;;17976:6;17959:16;:24::i;:::-;17944:12;:39;-1:-1:-1;;;;;18015:18:0;;:9;:18;;;;;;;;;;;:30;;18038:6;18015:22;:30::i;:::-;-1:-1:-1;;;;;17994:18:0;;:9;:18;;;;;;;;;;;:51;;;;18061:37;;;;;;;17994:18;;:9;;18061:37;;;;;;;;;;17728:378;;:::o;6739:179::-;6797:7;6829:5;;;6853:6;;;;6845:46;;;;;-1:-1:-1;;;6845:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6909:1;6739:179;-1:-1:-1;;;6739:179:0:o;25474:528::-;-1:-1:-1;;;;;25555:24:0;;25535:17;25555:24;;;:14;:24;;;;;;25607:15;25594:28;;25590:41;;;25624:7;;;25590:41;-1:-1:-1;;;;;25641:24:0;;;;;;:14;:24;;;;;25668:15;25641:42;;25698:14;25694:27;;25714:7;;;25694:27;25735:23;25749:8;25735:13;:23::i;:::-;25731:36;;;25760:7;;;25731:36;25779:12;25794:25;25810:8;25794:15;:25::i;:::-;25779:40;-1:-1:-1;25834:8:0;;25830:165;;25859:12;25874:39;25882:15;25903:9;25874:28;:39::i;:::-;25859:54;;25928:51;25934:8;25944:34;25973:4;25944:24;25963:4;25944:14;25953:4;;25944;:8;;:14;;;;:::i;:34::-;25928:5;:51::i;:::-;25830:165;25474:528;;;:::o;13170:127::-;-1:-1:-1;;;;;13271:18:0;13244:7;13271:18;;;;;;;;;;;;13170:127::o;7201:158::-;7259:7;7292:1;7287;:6;;7279:49;;;;;-1:-1:-1;;;7279:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7346:5:0;;;7201:158::o;7618:220::-;7676:7;7700:6;7696:20;;-1:-1:-1;7715:1:0;7708:8;;7696:20;7739:5;;;7743:1;7739;:5;:1;7763:5;;;;;:10;7755:56;;;;-1:-1:-1;;;7755:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8316:153;8374:7;8406:1;8402;:5;8394:44;;;;;-1:-1:-1;;;8394:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8460:1;8456;:5;;;;;;;8316:153;-1:-1:-1;;;8316:153:0:o;22326:546::-;22767:4;22821:17;22857:7;22326:546;:::o;25145:219::-;-1:-1:-1;;;;;25250:18:0;;25246:31;;25270:7;;25246:31;25287:19;25301:4;25287:13;:19::i;:::-;-1:-1:-1;;;;;25321:16:0;;;25317:39;;25339:17;25353:2;25339:13;:17::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://30a451dd0a3a35dcca7b0782f734779933678bfd4a4981c9764efdc10c6ca884
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.