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
TokenTracker
Latest 25 from a total of 269 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19070661 | 334 days ago | IN | 0 ETH | 0.0003926 | ||||
Approve | 17306423 | 582 days ago | IN | 0 ETH | 0.00136978 | ||||
Approve | 17002278 | 625 days ago | IN | 0 ETH | 0.00053425 | ||||
Approve | 15159501 | 890 days ago | IN | 0 ETH | 0.00018018 | ||||
Approve | 14564113 | 987 days ago | IN | 0 ETH | 0.00055257 | ||||
Approve | 13909954 | 1088 days ago | IN | 0 ETH | 0.00222237 | ||||
Approve | 11941312 | 1394 days ago | IN | 0 ETH | 0.00178485 | ||||
Approve | 11238133 | 1502 days ago | IN | 0 ETH | 0.00075934 | ||||
Approve | 11238070 | 1502 days ago | IN | 0 ETH | 0.00088812 | ||||
Approve | 11237238 | 1502 days ago | IN | 0 ETH | 0.00359688 | ||||
Transfer | 11211560 | 1506 days ago | IN | 0 ETH | 0.00250512 | ||||
Approve | 11189849 | 1510 days ago | IN | 0 ETH | 0.00071049 | ||||
Approve | 11183965 | 1511 days ago | IN | 0 ETH | 0.00102133 | ||||
Transfer | 11183395 | 1511 days ago | IN | 0 ETH | 0.00194275 | ||||
Transfer | 11183215 | 1511 days ago | IN | 0 ETH | 0.00240343 | ||||
Approve | 11181031 | 1511 days ago | IN | 0 ETH | 0.00102133 | ||||
Approve | 11180206 | 1511 days ago | IN | 0 ETH | 0.00124336 | ||||
Approve | 11179507 | 1511 days ago | IN | 0 ETH | 0.00186505 | ||||
Approve | 11177822 | 1511 days ago | IN | 0 ETH | 0.00364129 | ||||
Approve | 11177418 | 1512 days ago | IN | 0 ETH | 0.0035658 | ||||
Approve | 11177407 | 1512 days ago | IN | 0 ETH | 0.00324163 | ||||
Approve | 11177034 | 1512 days ago | IN | 0 ETH | 0.00368569 | ||||
Approve | 11175852 | 1512 days ago | IN | 0 ETH | 0.00133218 | ||||
Approve | 11175800 | 1512 days ago | IN | 0 ETH | 0.00107018 | ||||
Approve | 11174825 | 1512 days ago | IN | 0 ETH | 0.00177624 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ERC20
Compiler Version
v0.6.8+commit.0bbfe453
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-01 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.8; library SafeMath { /** * @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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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; } } /** * @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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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; } } /** * @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); } contract ERC20 is Ownable, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name = "ZSEC PROTOCOL"; string private _symbol = "ZSEC"; uint8 private _decimals = 18; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor () public { _mint(_msgSender(), 40000E18); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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"); _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"); _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"); _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 is 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600d60808190526c1694d150c8141493d513d0d3d3609a1b60a09081526200003091600491906200027c565b50604080518082019091526004808252635a53454360e01b60209092019182526200005e916005916200027c565b506006805460ff191660121790553480156200007957600080fd5b5060006200008f6001600160e01b036200011016565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200010a620000f06001600160e01b036200011016565b690878678326eac90000006001600160e01b036200011516565b6200031e565b335b90565b6001600160a01b03821662000171576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200018d816003546200021a60201b620007e71790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001c2918390620007e76200021a821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101562000275576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002bf57805160ff1916838001178555620002ef565b82800160010185558215620002ef579182015b82811115620002ef578251825591602001919060010190620002d2565b50620002fd92915062000301565b5090565b6200011291905b80821115620002fd576000815560010162000308565b610c8a806200032e6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146102a2578063a9059cbb146102ce578063dd62ed3e146102fa578063f2fde38b14610328576100ea565b8063715018a61461026c5780638da5cb5b1461027657806395d89b411461029a576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806370a0823114610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761034e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e4565b604080519115158252519081900360200190f35b6101b4610401565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610407565b610204610494565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b03813516906020013561049d565b6101b46004803603602081101561025c57600080fd5b50356001600160a01b03166104f1565b61027461050c565b005b61027e6105c0565b604080516001600160a01b039092168252519081900360200190f35b6100f76105cf565b610198600480360360408110156102b857600080fd5b506001600160a01b038135169060200135610630565b610198600480360360408110156102e457600080fd5b506001600160a01b03813516906020013561069e565b6101b46004803603604081101561031057600080fd5b506001600160a01b03813581169160200135166106b2565b6102746004803603602081101561033e57600080fd5b50356001600160a01b03166106dd565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b60006103f86103f1610848565b848461084c565b50600192915050565b60035490565b6000610414848484610938565b61048a84610420610848565b61048585604051806060016040528060288152602001610bbf602891396001600160a01b038a1660009081526002602052604081209061045e610848565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610a9616565b61084c565b5060019392505050565b60065460ff1690565b60006103f86104aa610848565b8461048585600260006104bb610848565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6107e716565b6001600160a01b031660009081526001602052604090205490565b610514610848565b6000546001600160a01b03908116911614610576576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b60006103f861063d610848565b8461048585604051806060016040528060258152602001610c306025913960026000610667610848565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610a9616565b60006103f86106ab610848565b8484610938565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e5610848565b6000546001600160a01b03908116911614610747576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661078c5760405162461bcd60e51b8152600401808060200182810382526026815260200180610b516026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610841576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166108915760405162461bcd60e51b8152600401808060200182810382526024815260200180610c0c6024913960400191505060405180910390fd5b6001600160a01b0382166108d65760405162461bcd60e51b8152600401808060200182810382526022815260200180610b776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661097d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610be76025913960400191505060405180910390fd5b6001600160a01b0382166109c25760405162461bcd60e51b8152600401808060200182810382526023815260200180610b2e6023913960400191505060405180910390fd5b610a0581604051806060016040528060268152602001610b99602691396001600160a01b038616600090815260016020526040902054919063ffffffff610a9616565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610a3a908263ffffffff6107e716565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b255760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610aea578181015183820152602001610ad2565b50505050905090810190601f168015610b175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e9fbe6132d662700bde579da29794232eb7d8ed66afe71017b753a000e7dbd3a64736f6c63430006080033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146102a2578063a9059cbb146102ce578063dd62ed3e146102fa578063f2fde38b14610328576100ea565b8063715018a61461026c5780638da5cb5b1461027657806395d89b411461029a576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806370a0823114610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761034e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e4565b604080519115158252519081900360200190f35b6101b4610401565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610407565b610204610494565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b03813516906020013561049d565b6101b46004803603602081101561025c57600080fd5b50356001600160a01b03166104f1565b61027461050c565b005b61027e6105c0565b604080516001600160a01b039092168252519081900360200190f35b6100f76105cf565b610198600480360360408110156102b857600080fd5b506001600160a01b038135169060200135610630565b610198600480360360408110156102e457600080fd5b506001600160a01b03813516906020013561069e565b6101b46004803603604081101561031057600080fd5b506001600160a01b03813581169160200135166106b2565b6102746004803603602081101561033e57600080fd5b50356001600160a01b03166106dd565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b60006103f86103f1610848565b848461084c565b50600192915050565b60035490565b6000610414848484610938565b61048a84610420610848565b61048585604051806060016040528060288152602001610bbf602891396001600160a01b038a1660009081526002602052604081209061045e610848565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610a9616565b61084c565b5060019392505050565b60065460ff1690565b60006103f86104aa610848565b8461048585600260006104bb610848565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6107e716565b6001600160a01b031660009081526001602052604090205490565b610514610848565b6000546001600160a01b03908116911614610576576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b60006103f861063d610848565b8461048585604051806060016040528060258152602001610c306025913960026000610667610848565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610a9616565b60006103f86106ab610848565b8484610938565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e5610848565b6000546001600160a01b03908116911614610747576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661078c5760405162461bcd60e51b8152600401808060200182810382526026815260200180610b516026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610841576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166108915760405162461bcd60e51b8152600401808060200182810382526024815260200180610c0c6024913960400191505060405180910390fd5b6001600160a01b0382166108d65760405162461bcd60e51b8152600401808060200182810382526022815260200180610b776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661097d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610be76025913960400191505060405180910390fd5b6001600160a01b0382166109c25760405162461bcd60e51b8152600401808060200182810382526023815260200180610b2e6023913960400191505060405180910390fd5b610a0581604051806060016040528060268152602001610b99602691396001600160a01b038616600090815260016020526040902054919063ffffffff610a9616565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610a3a908263ffffffff6107e716565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b255760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610aea578181015183820152602001610ad2565b50505050905090810190601f168015610b175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e9fbe6132d662700bde579da29794232eb7d8ed66afe71017b753a000e7dbd3a64736f6c63430006080033
Deployed Bytecode Sourcemap
10090:8351:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10090:8351:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10925:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10925:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13031:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13031:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12000:100;;;:::i;:::-;;;;;;;;;;;;;;;;13674:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13674:321:0;;;;;;;;;;;;;;;;;:::i;11852:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14404:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14404:218:0;;;;;;;;:::i;12163:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12163:119:0;-1:-1:-1;;;;;12163:119:0;;:::i;6821:148::-;;;:::i;:::-;;6179:79;;;:::i;:::-;;;;-1:-1:-1;;;;;6179:79:0;;;;;;;;;;;;;;11127:87;;;:::i;15125:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15125:269:0;;;;;;;;:::i;12495:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12495:175:0;;;;;;;;:::i;12733:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12733:151:0;;;;;;;;;;:::i;7124:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;7124:244:0;-1:-1:-1;;;;;7124:244:0;;:::i;10925:83::-;10995:5;10988:12;;;;;;;;-1:-1:-1;;10988:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10962:13;;10988:12;;10995:5;;10988:12;;10995:5;10988:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10925:83;:::o;13031:169::-;13114:4;13131:39;13140:12;:10;:12::i;:::-;13154:7;13163:6;13131:8;:39::i;:::-;-1:-1:-1;13188:4:0;13031:169;;;;:::o;12000:100::-;12080:12;;12000:100;:::o;13674:321::-;13780:4;13797:36;13807:6;13815:9;13826:6;13797:9;:36::i;:::-;13844:121;13853:6;13861:12;:10;:12::i;:::-;13875:89;13913:6;13875:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13875:19:0;;;;;;:11;:19;;;;;;13895:12;:10;:12::i;:::-;-1:-1:-1;;;;;13875:33:0;;;;;;;;;;;;-1:-1:-1;13875:33:0;;;:89;;:37;:89;:::i;:::-;13844:8;:121::i;:::-;-1:-1:-1;13983:4:0;13674:321;;;;;:::o;11852:83::-;11918:9;;;;11852:83;:::o;14404:218::-;14492:4;14509:83;14518:12;:10;:12::i;:::-;14532:7;14541:50;14580:10;14541:11;:25;14553:12;:10;:12::i;:::-;-1:-1:-1;;;;;14541:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14541:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;12163:119::-;-1:-1:-1;;;;;12256:18:0;12229:7;12256:18;;;:9;:18;;;;;;;12163:119::o;6821:148::-;6401:12;:10;:12::i;:::-;6391:6;;-1:-1:-1;;;;;6391:6:0;;;:22;;;6383:67;;;;;-1:-1:-1;;;6383:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6928:1:::1;6912:6:::0;;6891:40:::1;::::0;-1:-1:-1;;;;;6912:6:0;;::::1;::::0;6891:40:::1;::::0;6928:1;;6891:40:::1;6959:1;6942:19:::0;;-1:-1:-1;;;;;;6942:19:0::1;::::0;;6821:148::o;6179:79::-;6217:7;6244:6;-1:-1:-1;;;;;6244:6:0;6179:79;:::o;11127:87::-;11199:7;11192:14;;;;;;;;-1:-1:-1;;11192:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11166:13;;11192:14;;11199:7;;11192:14;;11199:7;11192:14;;;;;;;;;;;;;;;;;;;;;;;;15125:269;15218:4;15235:129;15244:12;:10;:12::i;:::-;15258:7;15267:96;15306:15;15267:96;;;;;;;;;;;;;;;;;:11;:25;15279:12;:10;:12::i;:::-;-1:-1:-1;;;;;15267:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15267:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12495:175::-;12581:4;12598:42;12608:12;:10;:12::i;:::-;12622:9;12633:6;12598:9;:42::i;12733:151::-;-1:-1:-1;;;;;12849:18:0;;;12822:7;12849:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12733:151::o;7124:244::-;6401:12;:10;:12::i;:::-;6391:6;;-1:-1:-1;;;;;6391:6:0;;;:22;;;6383:67;;;;;-1:-1:-1;;;6383:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7213:22:0;::::1;7205:73;;;;-1:-1:-1::0;;;7205:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7315:6;::::0;;7294:38:::1;::::0;-1:-1:-1;;;;;7294:38:0;;::::1;::::0;7315:6;::::1;::::0;7294:38:::1;::::0;::::1;7343:6;:17:::0;;-1:-1:-1;;;;;;7343:17:0::1;-1:-1:-1::0;;;;;7343:17:0;;;::::1;::::0;;;::::1;::::0;;7124:244::o;324:181::-;382:7;414:5;;;438:6;;;;430:46;;;;;-1:-1:-1;;;430:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;496:1;324:181;-1:-1:-1;;;324:181:0:o;4817:106::-;4905:10;4817:106;:::o;18090:346::-;-1:-1:-1;;;;;18192:19:0;;18184:68;;;;-1:-1:-1;;;18184:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18271:21:0;;18263:68;;;;-1:-1:-1;;;18263:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18344:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18396:32;;;;;;;;;;;;;;;;;18090:346;;;:::o;15884:479::-;-1:-1:-1;;;;;15990:20:0;;15982:70;;;;-1:-1:-1;;;15982:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16071:23:0;;16063:71;;;;-1:-1:-1;;;16063:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16167;16189:6;16167:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16167:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16147:17:0;;;;;;;:9;:17;;;;;;:91;;;;16272:20;;;;;;;:32;;16297:6;16272:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16249:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16320:35;;;;;;;16249:20;;16320:35;;;;;;;;;;;;;15884:479;;;:::o;1227:192::-;1313:7;1349:12;1341:6;;;;1333:29;;;;-1:-1:-1;;;1333:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1333:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1385:5:0;;;1227:192::o
Swarm Source
ipfs://e9fbe6132d662700bde579da29794232eb7d8ed66afe71017b753a000e7dbd3a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.