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 158 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17204652 | 636 days ago | IN | 0 ETH | 0.00282834 | ||||
Approve | 15813897 | 831 days ago | IN | 0 ETH | 0.00052023 | ||||
Approve | 15767609 | 837 days ago | IN | 0 ETH | 0.00069418 | ||||
Approve | 15582674 | 863 days ago | IN | 0 ETH | 0.00057739 | ||||
Approve | 15558082 | 867 days ago | IN | 0 ETH | 0.00017606 | ||||
Approve | 15554787 | 867 days ago | IN | 0 ETH | 0.00028724 | ||||
Approve | 15545204 | 868 days ago | IN | 0 ETH | 0.00041726 | ||||
Approve | 15501710 | 875 days ago | IN | 0 ETH | 0.00036057 | ||||
Approve | 15495884 | 876 days ago | IN | 0 ETH | 0.00044521 | ||||
Approve | 15492544 | 877 days ago | IN | 0 ETH | 0.00166115 | ||||
Approve | 15482595 | 879 days ago | IN | 0 ETH | 0.0003917 | ||||
Approve | 15459543 | 882 days ago | IN | 0 ETH | 0.00044477 | ||||
Approve | 15457832 | 883 days ago | IN | 0 ETH | 0.00036589 | ||||
Approve | 15457831 | 883 days ago | IN | 0 ETH | 0.00032968 | ||||
Approve | 15457831 | 883 days ago | IN | 0 ETH | 0.00057605 | ||||
Approve | 15456503 | 883 days ago | IN | 0 ETH | 0.00055444 | ||||
Approve | 15456497 | 883 days ago | IN | 0 ETH | 0.00063921 | ||||
Approve | 15454431 | 883 days ago | IN | 0 ETH | 0.00043674 | ||||
Approve | 15454428 | 883 days ago | IN | 0 ETH | 0.00081443 | ||||
Approve | 15454306 | 883 days ago | IN | 0 ETH | 0.00112534 | ||||
Approve | 15453275 | 883 days ago | IN | 0 ETH | 0.00108614 | ||||
Approve | 15453226 | 883 days ago | IN | 0 ETH | 0.0007153 | ||||
Approve | 15453226 | 883 days ago | IN | 0 ETH | 0.0012392 | ||||
Approve | 15452761 | 883 days ago | IN | 0 ETH | 0.00070325 | ||||
Approve | 15452644 | 883 days ago | IN | 0 ETH | 0.0005844 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PoS
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-14 */ pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() internal {} function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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, 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) { // Solidity only automatically asserts when dividing by 0 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; } } /** * @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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract PoS is Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcluded; address[] private _excluded; mapping(address => bool) private _isBlacklist; address[] private _blacklist; mapping(address => bool) private _isCollector; address[] private _feeCollectors; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; uint8 private _fee; // 1 = 1% event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); constructor() public { _name = "PROOF OF STAKE"; _symbol = "PoS"; _decimals = 18; _totalSupply = 100000000 * 10**18; _balances[msg.sender] = _totalSupply; _isExcluded[msg.sender] = true; _excluded.push(msg.sender); _fee = 1; emit Transfer(address(0), msg.sender, _totalSupply); } function getOwner() external view returns (address) { return owner(); } function decimals() external view returns (uint8) { return _decimals; } function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() external view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } function feeCollectors() external view returns (address[] memory) { return _feeCollectors; } function blacklist() external view returns (address[] memory) { return _blacklist; } function excluded() external view returns (address[] memory) { return _excluded; } function getFee() external view returns (uint8) { return _fee; } function setFee(uint8 fee) external onlyOwner returns (bool) { _setFee(fee); return true; } function _setFee(uint8 fee) internal { _fee = fee; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external returns (bool) { _approve(_msgSender(), spender, amount); return true; } function addFeeCollector(address account) external onlyOwner returns (bool) { _addFeeCollector(account); return true; } function _addFeeCollector(address account) internal { require( !_isCollector[account], "BEP20: addres already collecting fees" ); _isCollector[account] = true; _feeCollectors.push(account); } function removeFeeCollector(address account) external onlyOwner returns (bool) { _removeFeeCollector(account); return true; } function _removeFeeCollector(address account) internal { require( _isCollector[account], "BEP20: address already not collecting fees" ); for (uint256 i = 0; i < _feeCollectors.length; i++) { if (_feeCollectors[i] == account) { if (_feeCollectors.length > 1) { // if can be replaced with the last element _excluded[i] = _excluded[_excluded.length - 1]; } _excluded.pop(); _isCollector[account] = false; break; } } } function addToBlacklist(address account) external onlyOwner returns (bool) { _addToBlacklist(account); return true; } function _addToBlacklist(address account) internal { require(account != address(0), "BEP20: can not blacklist zero address"); require(account != owner(), "BEP20: can not blacklist owner"); require(!_isBlacklist[account], "BEP20: address already blacklisted"); _isBlacklist[account] = true; _blacklist.push(account); } function removeFromBlacklist(address account) external onlyOwner returns (bool) { _removeFromBlacklist(account); return true; } function _removeFromBlacklist(address account) internal { require(_isBlacklist[account], "BEP20: address not in the blacklist"); for (uint256 i = 0; i < _blacklist.length; i++) { if (_blacklist[i] == account) { if (_blacklist.length > 1) { // if can be replaced with the last element _blacklist[i] = _blacklist[_blacklist.length - 1]; } _blacklist.pop(); _isBlacklist[account] = false; break; } } } function addToExcluded(address account) external onlyOwner returns (bool) { _addToExcluded(account); return true; } function _addToExcluded(address account) internal { require( !_isExcluded[account], "BEP20: addres already excluded from fees" ); _isExcluded[account] = true; _excluded.push(account); } function removeFromExcluded(address account) external onlyOwner returns (bool) { _removeFromExcluded(account); return true; } function _removeFromExcluded(address account) internal { require(_isExcluded[account], "BEP20: address not in excluded list"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { if (_excluded.length > 1) { // if can be replaced with the last element _excluded[i] = _excluded[_excluded.length - 1]; } _excluded.pop(); _isExcluded[account] = false; break; } } } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "BEP20: 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 {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "BEP20: decreased allowance below zero" ) ); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } /** * @dev Creates `amount` tokens and assigns them to `recipient`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mintTo(address recipient, uint256 amount) public onlyOwner returns (bool) { _mint(recipient, amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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 { require( !_isBlacklist[sender], "BEP20: transfer from blacklisted address" ); require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub( amount, "BEP20: transfer amount exceeds balance" ); // send fee to the addresses if (!_isExcluded[sender] && _feeCollectors.length > 0 && _fee > 0) { uint256 feeAmount = amount.mul(_fee).div(100); uint256 destAmount = amount.sub(feeAmount); //send fee uint256 feePerWallet = feeAmount.div(_feeCollectors.length); for (uint256 i = 0; i < _feeCollectors.length; i++) { _balances[_feeCollectors[i]] = _balances[_feeCollectors[i]].add( feePerWallet ); } _balances[recipient] = _balances[recipient].add(destAmount); } else { _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 { require(account != address(0), "BEP20: 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 { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub( amount, "BEP20: 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 { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub( amount, "BEP20: burn amount exceeds allowance" ) ); } }
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":"account","type":"address"}],"name":"addFeeCollector","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"blacklist","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"excluded","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeCollectors","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFeeCollector","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"fee","type":"uint8"}],"name":"setFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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
60806040523480156200001157600080fd5b5060006200001e6200019a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600e8082526d50524f4f46204f46205354414b4560901b60209092019182526200009f91600c916200019e565b5060408051808201909152600380825262506f5360e81b6020909201918252620000cc91600b916200019e565b50600a805460ff199081166012179091556a52b7d2dcc80cd2e40000006009818155336000818152600160208181526040808420969096556003815285832080548816831790556004805480840182559084527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b03191685179055600d8054909716909117909555915483519081529251909391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a36200023a565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001e157805160ff191683800117855562000211565b8280016001018555821562000211579182015b8281111562000211578251825591602001919060010190620001f4565b506200021f92915062000223565b5090565b5b808211156200021f576000815560010162000224565b6121a4806200024a6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a4b5fa56116100a2578063cb122a0911610071578063cb122a0914610599578063ced72f87146105b9578063dd62ed3e146105c1578063f2fde38b146105ef576101cf565b8063a4b5fa5614610537578063a9059cbb1461053f578063b4d95a931461056b578063b8033a9814610591576101cf565b806391d026b9116100de57806391d026b9146104c057806395d89b41146104e6578063a0712d68146104ee578063a457c2d71461050b576101cf565b8063715018a61461048a578063893d20e8146104945780638da5cb5b146104b8576101cf565b80633950935111610171578063449a52f81161014b578063449a52f8146103ec5780634a0e963c14610418578063537df3b61461043e57806370a0823114610464576101cf565b8063395093511461037d57806342966c68146103a957806344337ea1146103c6576101cf565b806318160ddd116101ad57806318160ddd146102e95780631fa67b4d1461030357806323b872dd14610329578063313ce5671461035f576101cf565b806306fdde03146101d4578063095ea7b3146102515780630bdca9a114610291575b600080fd5b6101dc610615565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356106ab565b604080519115158252519081900360200190f35b6102996106c9565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102d55781810151838201526020016102bd565b505050509050019250505060405180910390f35b6102f161072a565b60408051918252519081900360200190f35b61027d6004803603602081101561031957600080fd5b50356001600160a01b0316610730565b61027d6004803603606081101561033f57600080fd5b506001600160a01b0381358116916020810135909116906040013561079b565b610367610822565b6040805160ff9092168252519081900360200190f35b61027d6004803603604081101561039357600080fd5b506001600160a01b03813516906020013561082b565b61027d600480360360208110156103bf57600080fd5b5035610879565b61027d600480360360208110156103dc57600080fd5b50356001600160a01b031661088c565b61027d6004803603604081101561040257600080fd5b506001600160a01b0381351690602001356108ef565b61027d6004803603602081101561042e57600080fd5b50356001600160a01b0316610953565b61027d6004803603602081101561045457600080fd5b50356001600160a01b03166109b6565b6102f16004803603602081101561047a57600080fd5b50356001600160a01b0316610a19565b610492610a34565b005b61049c610ad6565b604080516001600160a01b039092168252519081900360200190f35b61049c610ae5565b61027d600480360360208110156104d657600080fd5b50356001600160a01b0316610af4565b6101dc610b57565b61027d6004803603602081101561050457600080fd5b5035610bb8565b61027d6004803603604081101561052157600080fd5b506001600160a01b038135169060200135610c23565b610299610c8b565b61027d6004803603604081101561055557600080fd5b506001600160a01b038135169060200135610ceb565b61027d6004803603602081101561058157600080fd5b50356001600160a01b0316610cff565b610299610d62565b61027d600480360360208110156105af57600080fd5b503560ff16610dc2565b610367610e25565b6102f1600480360360408110156105d757600080fd5b506001600160a01b0381358116916020013516610e2e565b6104926004803603602081101561060557600080fd5b50356001600160a01b0316610e59565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b60006106bf6106b8610ebd565b8484610ec1565b5060015b92915050565b606060048054806020026020016040519081016040528092919081815260200182805480156106a157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610703575050505050905090565b60095490565b600061073a610ebd565b6000546001600160a01b0390811691161461078a576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382610fad565b506001919050565b60006107a8848484611113565b610818846107b4610ebd565b61081385604051806060016040528060288152602001611fbe602891396001600160a01b038a166000908152600260205260408120906107f2610ebd565b6001600160a01b031681526020810191909152604001600020549190611420565b610ec1565b5060019392505050565b600a5460ff1690565b60006106bf610838610ebd565b846108138560026000610849610ebd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114b7565b6000610793610886610ebd565b83611518565b6000610896610ebd565b6000546001600160a01b039081169116146108e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611608565b60006108f9610ebd565b6000546001600160a01b03908116911614610949576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b6106bf8383611779565b600061095d610ebd565b6000546001600160a01b039081169116146109ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b6107938261185f565b60006109c0610ebd565b6000546001600160a01b03908116911614610a10576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b6107938261191d565b6001600160a01b031660009081526001602052604090205490565b610a3c610ebd565b6000546001600160a01b03908116911614610a8c576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610ae0610ae5565b905090565b6000546001600160a01b031690565b6000610afe610ebd565b6000546001600160a01b03908116911614610b4e576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611a7f565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a15780601f10610676576101008083540402835291602001916106a1565b6000610bc2610ebd565b6000546001600160a01b03908116911614610c12576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b610793610c1d610ebd565b83611779565b60006106bf610c30610ebd565b84610813856040518060600160405280602581526020016120c26025913960026000610c5a610ebd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611420565b606060068054806020026020016040519081016040528092919081815260200182805480156106a1576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610703575050505050905090565b60006106bf610cf8610ebd565b8484611113565b6000610d09610ebd565b6000546001600160a01b03908116911614610d59576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611b3d565b606060088054806020026020016040519081016040528092919081815260200182805480156106a1576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610703575050505050905090565b6000610dcc610ebd565b6000546001600160a01b03908116911614610e1c576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611c9f565b600d5460ff1690565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610e61610ebd565b6000546001600160a01b03908116911614610eb1576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b610eba81611cb5565b50565b3390565b6001600160a01b038316610f065760405162461bcd60e51b8152600401808060200182810382526024815260200180611ebd6024913960400191505060405180910390fd5b6001600160a01b038216610f4b5760405162461bcd60e51b815260040180806020018281038252602281526020018061214d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03811660009081526007602052604090205460ff166110045760405162461bcd60e51b815260040180806020018281038252602a815260200180611fe6602a913960400191505060405180910390fd5b60005b60085481101561110f57816001600160a01b03166008828154811061102857fe5b6000918252602090912001546001600160a01b0316141561110757600854600110156110b55760048054600019810190811061106057fe5b600091825260209091200154600480546001600160a01b03909216918390811061108657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b60048054806110c057fe5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03841682526007905260409020805460ff1916905561110f565b600101611007565b5050565b6001600160a01b03831660009081526005602052604090205460ff161561116b5760405162461bcd60e51b8152600401808060200182810382526028815260200180611f4f6028913960400191505060405180910390fd5b6001600160a01b0383166111b05760405162461bcd60e51b8152600401808060200182810382526025815260200180611e986025913960400191505060405180910390fd5b6001600160a01b0382166111f55760405162461bcd60e51b81526004018080602001828103825260238152602001806120776023913960400191505060405180910390fd5b61123281604051806060016040528060268152602001612051602691396001600160a01b0386166000908152600160205260409020549190611420565b6001600160a01b03841660009081526001602090815260408083209390935560039052205460ff16158015611268575060085415155b80156112785750600d5460ff1615155b1561139357600d5460009061129e9060649061129890859060ff16611d55565b90611dae565b905060006112ac8383611df0565b6008549091506000906112c0908490611dae565b905060005b60085481101561134d5761130f8260016000600885815481106112e457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054906114b7565b600160006008848154811061132057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020556001016112c5565b506001600160a01b03851660009081526001602052604090205461137190836114b7565b6001600160a01b038616600090815260016020526040902055506113d0915050565b6001600160a01b0382166000908152600160205260409020546113b690826114b7565b6001600160a01b0383166000908152600160205260409020555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600081848411156114af5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147457818101518382015260200161145c565b50505050905090810190601f1680156114a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611511576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661155d5760405162461bcd60e51b81526004018080602001828103825260218152602001806120e76021913960400191505060405180910390fd5b61159a81604051806060016040528060228152602001612108602291396001600160a01b0385166000908152600160205260409020549190611420565b6001600160a01b0383166000908152600160205260409020556009546115c09082611df0565b6009556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03811661164d5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f996025913960400191505060405180910390fd5b611655610ae5565b6001600160a01b0316816001600160a01b031614156116bb576040805162461bcd60e51b815260206004820152601e60248201527f42455032303a2063616e206e6f7420626c61636b6c697374206f776e65720000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff16156117135760405162461bcd60e51b8152600401808060200182810382526022815260200180611f776022913960400191505060405180910390fd5b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b0382166117d4576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6009546117e190826114b7565b6009556001600160a01b03821660009081526001602052604090205461180790826114b7565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03811660009081526003602052604090205460ff16156118b75760405162461bcd60e51b815260040180806020018281038252602881526020018061209a6028913960400191505060405180910390fd5b6001600160a01b03166000818152600360205260408120805460ff191660019081179091556004805491820181559091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff166119745760405162461bcd60e51b8152600401808060200182810382526023815260200180611ee16023913960400191505060405180910390fd5b60005b60065481101561110f57816001600160a01b03166006828154811061199857fe5b6000918252602090912001546001600160a01b03161415611a775760065460011015611a25576006805460001981019081106119d057fe5b600091825260209091200154600680546001600160a01b0390921691839081106119f657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6006805480611a3057fe5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03841682526005905260409020805460ff1916905561110f565b600101611977565b6001600160a01b03811660009081526007602052604090205460ff1615611ad75760405162461bcd60e51b8152600401808060200182810382526025815260200180611f046025913960400191505060405180910390fd5b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b03811660009081526003602052604090205460ff16611b945760405162461bcd60e51b815260040180806020018281038252602381526020018061212a6023913960400191505060405180910390fd5b60005b60045481101561110f57816001600160a01b031660048281548110611bb857fe5b6000918252602090912001546001600160a01b03161415611c975760045460011015611c4557600480546000198101908110611bf057fe5b600091825260209091200154600480546001600160a01b039092169183908110611c1657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6004805480611c5057fe5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03841682526003905260409020805460ff1916905561110f565b600101611b97565b600d805460ff191660ff92909216919091179055565b6001600160a01b038116611cfa5760405162461bcd60e51b8152600401808060200182810382526026815260200180611f296026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082611d64575060006106c3565b82820282848281611d7157fe5b04146115115760405162461bcd60e51b81526004018080602001828103825260218152602001806120106021913960400191505060405180910390fd5b600061151183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e32565b600061151183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611420565b60008183611e815760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147457818101518382015260200161145c565b506000838581611e8d57fe5b049594505050505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f206164647265737342455032303a2061646472657373206e6f7420696e2074686520626c61636b6c69737442455032303a2061646472657320616c726561647920636f6c6c656374696e6720666565734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e736665722066726f6d20626c61636b6c6973746564206164647265737342455032303a206164647265737320616c726561647920626c61636b6c697374656442455032303a2063616e206e6f7420626c61636b6c697374207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a206164647265737320616c7265616479206e6f7420636f6c6c656374696e672066656573536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2061646472657320616c7265616479206578636c756465642066726f6d206665657342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a2061646472657373206e6f7420696e206578636c75646564206c69737442455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220928dad40bb1c141e84bca9477df2e09341a22e2afa69046602c038ab6554b3ee64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a4b5fa56116100a2578063cb122a0911610071578063cb122a0914610599578063ced72f87146105b9578063dd62ed3e146105c1578063f2fde38b146105ef576101cf565b8063a4b5fa5614610537578063a9059cbb1461053f578063b4d95a931461056b578063b8033a9814610591576101cf565b806391d026b9116100de57806391d026b9146104c057806395d89b41146104e6578063a0712d68146104ee578063a457c2d71461050b576101cf565b8063715018a61461048a578063893d20e8146104945780638da5cb5b146104b8576101cf565b80633950935111610171578063449a52f81161014b578063449a52f8146103ec5780634a0e963c14610418578063537df3b61461043e57806370a0823114610464576101cf565b8063395093511461037d57806342966c68146103a957806344337ea1146103c6576101cf565b806318160ddd116101ad57806318160ddd146102e95780631fa67b4d1461030357806323b872dd14610329578063313ce5671461035f576101cf565b806306fdde03146101d4578063095ea7b3146102515780630bdca9a114610291575b600080fd5b6101dc610615565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356106ab565b604080519115158252519081900360200190f35b6102996106c9565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156102d55781810151838201526020016102bd565b505050509050019250505060405180910390f35b6102f161072a565b60408051918252519081900360200190f35b61027d6004803603602081101561031957600080fd5b50356001600160a01b0316610730565b61027d6004803603606081101561033f57600080fd5b506001600160a01b0381358116916020810135909116906040013561079b565b610367610822565b6040805160ff9092168252519081900360200190f35b61027d6004803603604081101561039357600080fd5b506001600160a01b03813516906020013561082b565b61027d600480360360208110156103bf57600080fd5b5035610879565b61027d600480360360208110156103dc57600080fd5b50356001600160a01b031661088c565b61027d6004803603604081101561040257600080fd5b506001600160a01b0381351690602001356108ef565b61027d6004803603602081101561042e57600080fd5b50356001600160a01b0316610953565b61027d6004803603602081101561045457600080fd5b50356001600160a01b03166109b6565b6102f16004803603602081101561047a57600080fd5b50356001600160a01b0316610a19565b610492610a34565b005b61049c610ad6565b604080516001600160a01b039092168252519081900360200190f35b61049c610ae5565b61027d600480360360208110156104d657600080fd5b50356001600160a01b0316610af4565b6101dc610b57565b61027d6004803603602081101561050457600080fd5b5035610bb8565b61027d6004803603604081101561052157600080fd5b506001600160a01b038135169060200135610c23565b610299610c8b565b61027d6004803603604081101561055557600080fd5b506001600160a01b038135169060200135610ceb565b61027d6004803603602081101561058157600080fd5b50356001600160a01b0316610cff565b610299610d62565b61027d600480360360208110156105af57600080fd5b503560ff16610dc2565b610367610e25565b6102f1600480360360408110156105d757600080fd5b506001600160a01b0381358116916020013516610e2e565b6104926004803603602081101561060557600080fd5b50356001600160a01b0316610e59565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b60006106bf6106b8610ebd565b8484610ec1565b5060015b92915050565b606060048054806020026020016040519081016040528092919081815260200182805480156106a157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610703575050505050905090565b60095490565b600061073a610ebd565b6000546001600160a01b0390811691161461078a576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382610fad565b506001919050565b60006107a8848484611113565b610818846107b4610ebd565b61081385604051806060016040528060288152602001611fbe602891396001600160a01b038a166000908152600260205260408120906107f2610ebd565b6001600160a01b031681526020810191909152604001600020549190611420565b610ec1565b5060019392505050565b600a5460ff1690565b60006106bf610838610ebd565b846108138560026000610849610ebd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114b7565b6000610793610886610ebd565b83611518565b6000610896610ebd565b6000546001600160a01b039081169116146108e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611608565b60006108f9610ebd565b6000546001600160a01b03908116911614610949576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b6106bf8383611779565b600061095d610ebd565b6000546001600160a01b039081169116146109ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b6107938261185f565b60006109c0610ebd565b6000546001600160a01b03908116911614610a10576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b6107938261191d565b6001600160a01b031660009081526001602052604090205490565b610a3c610ebd565b6000546001600160a01b03908116911614610a8c576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610ae0610ae5565b905090565b6000546001600160a01b031690565b6000610afe610ebd565b6000546001600160a01b03908116911614610b4e576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611a7f565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a15780601f10610676576101008083540402835291602001916106a1565b6000610bc2610ebd565b6000546001600160a01b03908116911614610c12576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b610793610c1d610ebd565b83611779565b60006106bf610c30610ebd565b84610813856040518060600160405280602581526020016120c26025913960026000610c5a610ebd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611420565b606060068054806020026020016040519081016040528092919081815260200182805480156106a1576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610703575050505050905090565b60006106bf610cf8610ebd565b8484611113565b6000610d09610ebd565b6000546001600160a01b03908116911614610d59576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611b3d565b606060088054806020026020016040519081016040528092919081815260200182805480156106a1576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610703575050505050905090565b6000610dcc610ebd565b6000546001600160a01b03908116911614610e1c576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b61079382611c9f565b600d5460ff1690565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610e61610ebd565b6000546001600160a01b03908116911614610eb1576040805162461bcd60e51b81526020600482018190526024820152600080516020612031833981519152604482015290519081900360640190fd5b610eba81611cb5565b50565b3390565b6001600160a01b038316610f065760405162461bcd60e51b8152600401808060200182810382526024815260200180611ebd6024913960400191505060405180910390fd5b6001600160a01b038216610f4b5760405162461bcd60e51b815260040180806020018281038252602281526020018061214d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03811660009081526007602052604090205460ff166110045760405162461bcd60e51b815260040180806020018281038252602a815260200180611fe6602a913960400191505060405180910390fd5b60005b60085481101561110f57816001600160a01b03166008828154811061102857fe5b6000918252602090912001546001600160a01b0316141561110757600854600110156110b55760048054600019810190811061106057fe5b600091825260209091200154600480546001600160a01b03909216918390811061108657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b60048054806110c057fe5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03841682526007905260409020805460ff1916905561110f565b600101611007565b5050565b6001600160a01b03831660009081526005602052604090205460ff161561116b5760405162461bcd60e51b8152600401808060200182810382526028815260200180611f4f6028913960400191505060405180910390fd5b6001600160a01b0383166111b05760405162461bcd60e51b8152600401808060200182810382526025815260200180611e986025913960400191505060405180910390fd5b6001600160a01b0382166111f55760405162461bcd60e51b81526004018080602001828103825260238152602001806120776023913960400191505060405180910390fd5b61123281604051806060016040528060268152602001612051602691396001600160a01b0386166000908152600160205260409020549190611420565b6001600160a01b03841660009081526001602090815260408083209390935560039052205460ff16158015611268575060085415155b80156112785750600d5460ff1615155b1561139357600d5460009061129e9060649061129890859060ff16611d55565b90611dae565b905060006112ac8383611df0565b6008549091506000906112c0908490611dae565b905060005b60085481101561134d5761130f8260016000600885815481106112e457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054906114b7565b600160006008848154811061132057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020556001016112c5565b506001600160a01b03851660009081526001602052604090205461137190836114b7565b6001600160a01b038616600090815260016020526040902055506113d0915050565b6001600160a01b0382166000908152600160205260409020546113b690826114b7565b6001600160a01b0383166000908152600160205260409020555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600081848411156114af5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147457818101518382015260200161145c565b50505050905090810190601f1680156114a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611511576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661155d5760405162461bcd60e51b81526004018080602001828103825260218152602001806120e76021913960400191505060405180910390fd5b61159a81604051806060016040528060228152602001612108602291396001600160a01b0385166000908152600160205260409020549190611420565b6001600160a01b0383166000908152600160205260409020556009546115c09082611df0565b6009556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03811661164d5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f996025913960400191505060405180910390fd5b611655610ae5565b6001600160a01b0316816001600160a01b031614156116bb576040805162461bcd60e51b815260206004820152601e60248201527f42455032303a2063616e206e6f7420626c61636b6c697374206f776e65720000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff16156117135760405162461bcd60e51b8152600401808060200182810382526022815260200180611f776022913960400191505060405180910390fd5b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b0382166117d4576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6009546117e190826114b7565b6009556001600160a01b03821660009081526001602052604090205461180790826114b7565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03811660009081526003602052604090205460ff16156118b75760405162461bcd60e51b815260040180806020018281038252602881526020018061209a6028913960400191505060405180910390fd5b6001600160a01b03166000818152600360205260408120805460ff191660019081179091556004805491820181559091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff166119745760405162461bcd60e51b8152600401808060200182810382526023815260200180611ee16023913960400191505060405180910390fd5b60005b60065481101561110f57816001600160a01b03166006828154811061199857fe5b6000918252602090912001546001600160a01b03161415611a775760065460011015611a25576006805460001981019081106119d057fe5b600091825260209091200154600680546001600160a01b0390921691839081106119f657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6006805480611a3057fe5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03841682526005905260409020805460ff1916905561110f565b600101611977565b6001600160a01b03811660009081526007602052604090205460ff1615611ad75760405162461bcd60e51b8152600401808060200182810382526025815260200180611f046025913960400191505060405180910390fd5b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b03811660009081526003602052604090205460ff16611b945760405162461bcd60e51b815260040180806020018281038252602381526020018061212a6023913960400191505060405180910390fd5b60005b60045481101561110f57816001600160a01b031660048281548110611bb857fe5b6000918252602090912001546001600160a01b03161415611c975760045460011015611c4557600480546000198101908110611bf057fe5b600091825260209091200154600480546001600160a01b039092169183908110611c1657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6004805480611c5057fe5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03841682526003905260409020805460ff1916905561110f565b600101611b97565b600d805460ff191660ff92909216919091179055565b6001600160a01b038116611cfa5760405162461bcd60e51b8152600401808060200182810382526026815260200180611f296026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082611d64575060006106c3565b82820282848281611d7157fe5b04146115115760405162461bcd60e51b81526004018080602001828103825260218152602001806120106021913960400191505060405180910390fd5b600061151183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e32565b600061151183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611420565b60008183611e815760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147457818101518382015260200161145c565b506000838581611e8d57fe5b049594505050505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f206164647265737342455032303a2061646472657373206e6f7420696e2074686520626c61636b6c69737442455032303a2061646472657320616c726561647920636f6c6c656374696e6720666565734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e736665722066726f6d20626c61636b6c6973746564206164647265737342455032303a206164647265737320616c726561647920626c61636b6c697374656442455032303a2063616e206e6f7420626c61636b6c697374207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a206164647265737320616c7265616479206e6f7420636f6c6c656374696e672066656573536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2061646472657320616c7265616479206578636c756465642066726f6d206665657342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a2061646472657373206e6f7420696e206578636c75646564206c69737442455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220928dad40bb1c141e84bca9477df2e09341a22e2afa69046602c038ab6554b3ee64736f6c634300060c0033
Deployed Bytecode Sourcemap
8950:15140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10484:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12277:154;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12277:154:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11753:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10633:93;;;:::i;:::-;;;;;;;;;;;;;;;;12887:180;;;;;;;;;;;;;;;;-1:-1:-1;12887:180:0;-1:-1:-1;;;;;12887:180:0;;:::i;16661:439::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16661:439:0;;;;;;;;;;;;;;;;;:::i;10239:85::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17508:283;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17508:283:0;;;;;;;;:::i;19514:120::-;;;;;;;;;;;;;;;;-1:-1:-1;19514:120:0;;:::i;13717:140::-;;;;;;;;;;;;;;;;-1:-1:-1;13717:140:0;-1:-1:-1;;;;;13717:140:0;;:::i;19241:180::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19241:180:0;;;;;;;;:::i;15023:138::-;;;;;;;;;;;;;;;;-1:-1:-1;15023:138:0;-1:-1:-1;;;;;15023:138:0;;:::i;14242:182::-;;;;;;;;;;;;;;;;-1:-1:-1;14242:182:0;-1:-1:-1;;;;;14242:182:0;;:::i;10788:112::-;;;;;;;;;;;;;;;;-1:-1:-1;10788:112:0;-1:-1:-1;;;;;10788:112:0;;:::i;8167:140::-;;;:::i;:::-;;10146:85;;;:::i;:::-;;;;-1:-1:-1;;;;;10146:85:0;;;;;;;;;;;;;;7525:79;;;:::i;12439:174::-;;;;;;;;;;;;;;;;-1:-1:-1;12439:174:0;-1:-1:-1;;;;;12439:174:0;;:::i;10332:89::-;;;:::i;18894:130::-;;;;;;;;;;;;;;;;-1:-1:-1;18894:130:0;;:::i;18293:383::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18293:383:0;;;;;;;;:::i;11647:98::-;;;:::i;11112:183::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11112:183:0;;;;;;;;:::i;15429:180::-;;;;;;;;;;;;;;;;-1:-1:-1;15429:180:0;-1:-1:-1;;;;;15429:180:0;;:::i;11533:106::-;;;:::i;11943:114::-;;;;;;;;;;;;;;;;-1:-1:-1;11943:114:0;;;;:::i;11857:78::-;;;:::i;11357:168::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11357:168:0;;;;;;;;;;:::i;8462:109::-;;;;;;;;;;;;;;;;-1:-1:-1;8462:109:0;-1:-1:-1;;;;;8462:109:0;;:::i;10484:85::-;10556:5;10549:12;;;;;;;;-1:-1:-1;;10549:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10523:13;;10549:12;;10556:5;;10549:12;;10556:5;10549:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10484:85;:::o;12277:154::-;12345:4;12362:39;12371:12;:10;:12::i;:::-;12385:7;12394:6;12362:8;:39::i;:::-;-1:-1:-1;12419:4:0;12277:154;;;;;:::o;11753:96::-;11796:16;11832:9;11825:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11825:16:0;;;;;;;;;;;;;;;;;;;;;;11753:96;:::o;10633:93::-;10706:12;;10633:93;:::o;12887:180::-;12987:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;13009:28:::1;13029:7;13009:19;:28::i;:::-;-1:-1:-1::0;13055:4:0::1;12887:180:::0;;;:::o;16661:439::-;16786:4;16803:36;16813:6;16821:9;16832:6;16803:9;:36::i;:::-;16850:220;16873:6;16894:12;:10;:12::i;:::-;16921:138;16977:6;16921:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16921:19:0;;;;;;:11;:19;;;;;;16941:12;:10;:12::i;:::-;-1:-1:-1;;;;;16921:33:0;;;;;;;;;;;;-1:-1:-1;16921:33:0;;;:138;:37;:138::i;:::-;16850:8;:220::i;:::-;-1:-1:-1;17088:4:0;16661:439;;;;;:::o;10239:85::-;10307:9;;;;10239:85;:::o;17508:283::-;17606:4;17628:133;17651:12;:10;:12::i;:::-;17678:7;17700:50;17739:10;17700:11;:25;17712:12;:10;:12::i;:::-;-1:-1:-1;;;;;17700:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17700:25:0;;;:34;;;;;;;;;;;:38;:50::i;19514:120::-;19560:4;19577:27;19583:12;:10;:12::i;:::-;19597:6;19577:5;:27::i;13717:140::-;13786:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;13803:24:::1;13819:7;13803:15;:24::i;19241:180::-:0;19345:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;19367:24:::1;19373:9;19384:6;19367:5;:24::i;15023:138::-:0;15091:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;15108:23:::1;15123:7;15108:14;:23::i;14242:182::-:0;14343:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;14365:29:::1;14386:7;14365:20;:29::i;10788:112::-:0;-1:-1:-1;;;;;10874:18:0;10847:7;10874:18;;;:9;:18;;;;;;;10788:112::o;8167:140::-;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;8266:1:::1;8250:6:::0;;8229:40:::1;::::0;-1:-1:-1;;;;;8250:6:0;;::::1;::::0;8229:40:::1;::::0;8266:1;;8229:40:::1;8297:1;8280:19:::0;;-1:-1:-1;;;;;;8280:19:0::1;::::0;;8167:140::o;10146:85::-;10189:7;10216;:5;:7::i;:::-;10209:14;;10146:85;:::o;7525:79::-;7563:7;7590:6;-1:-1:-1;;;;;7590:6:0;7525:79;:::o;12439:174::-;12536:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;12558:25:::1;12575:7;12558:16;:25::i;10332:89::-:0;10406:7;10399:14;;;;;;;;-1:-1:-1;;10399:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10373:13;;10399:14;;10406:7;;10399:14;;10406:7;10399:14;;;;;;;;;;;;;;;;;;;;;;;;18894:130;18950:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;18967:27:::1;18973:12;:10;:12::i;:::-;18987:6;18967:5;:27::i;18293:383::-:0;18396:4;18418:228;18441:12;:10;:12::i;:::-;18468:7;18490:145;18547:15;18490:145;;;;;;;;;;;;;;;;;:11;:25;18502:12;:10;:12::i;:::-;-1:-1:-1;;;;;18490:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18490:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;11647:98::-;11691:16;11727:10;11720:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11720:17:0;;;;;;;;;;;;;;;;;;;;;;11647:98;:::o;11112:183::-;11201:4;11223:42;11233:12;:10;:12::i;:::-;11247:9;11258:6;11223:9;:42::i;15429:180::-;15529:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;15551:28:::1;15571:7;15551:19;:28::i;11533:106::-:0;11581:16;11617:14;11610:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11610:21:0;;;;;;;;;;;;;;;;;;;;;;11533:106;:::o;11943:114::-;11998:4;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;12015:12:::1;12023:3;12015:7;:12::i;11857:78::-:0;11923:4;;;;11857:78;:::o;11357:168::-;-1:-1:-1;;;;;11490:18:0;;;11458:7;11490:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11357:168::o;8462:109::-;7747:12;:10;:12::i;:::-;7737:6;;-1:-1:-1;;;;;7737:6:0;;;:22;;;7729:67;;;;;-1:-1:-1;;;7729:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7729:67:0;;;;;;;;;;;;;;;8535:28:::1;8554:8;8535:18;:28::i;:::-;8462:109:::0;:::o;750:98::-;830:10;750:98;:::o;23198:372::-;-1:-1:-1;;;;;23326:19:0;;23318:68;;;;-1:-1:-1;;;23318:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23405:21:0;;23397:68;;;;-1:-1:-1;;;23397:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23530:32;;;;;;;;;;;;;;;;;23198:372;;;:::o;13075:634::-;-1:-1:-1;;;;;13163:21:0;;;;;;:12;:21;;;;;;;;13141:113;;;;-1:-1:-1;;;13141:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13270:9;13265:437;13289:14;:21;13285:25;;13265:437;;;13357:7;-1:-1:-1;;;;;13336:28:0;:14;13351:1;13336:17;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13336:17:0;:28;13332:359;;;13389:14;:21;13413:1;-1:-1:-1;13385:185:0;;;13519:9;13529:16;;-1:-1:-1;;13529:20:0;;;13519:31;;;;;;;;;;;;;;;;13504:9;:12;;-1:-1:-1;;;;;13519:31:0;;;;13514:1;;13504:12;;;;;;;;;;;;;;:46;;;;;-1:-1:-1;;;;;13504:46:0;;;;;-1:-1:-1;;;;;13504:46:0;;;;;;13385:185;13588:9;:15;;;;;;;;;;;;;;;;;-1:-1:-1;;13588:15:0;;;;;-1:-1:-1;;;;;;13588:15:0;;;;;;;;;-1:-1:-1;;;;;13622:21:0;;;;:12;:21;;;;;:29;;-1:-1:-1;;13622:29:0;;;13670:5;;13332:359;13312:3;;13265:437;;;;13075:634;:::o;20124:1328::-;-1:-1:-1;;;;;20271:20:0;;;;;;:12;:20;;;;;;;;20270:21;20248:111;;;;-1:-1:-1;;;20248:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20378:20:0;;20370:70;;;;-1:-1:-1;;;20370:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20459:23:0;;20451:71;;;;-1:-1:-1;;;20451:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20555:108;20591:6;20555:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20555:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;20535:17:0;;;;;;:9;:17;;;;;;;;:128;;;;20719:11;:19;;;;;;20718:20;:49;;;;-1:-1:-1;20742:14:0;:21;:25;;20718:49;:61;;;;-1:-1:-1;20771:4:0;;;;:8;;20718:61;20714:678;;;20827:4;;20796:17;;20816:25;;20837:3;;20816:16;;:6;;20827:4;;20816:10;:16::i;:::-;:20;;:25::i;:::-;20796:45;-1:-1:-1;20856:18:0;20877:21;:6;20796:45;20877:10;:21::i;:::-;20976:14;:21;20856:42;;-1:-1:-1;20939:20:0;;20962:36;;:9;;:13;:36::i;:::-;20939:59;;21018:9;21013:204;21037:14;:21;21033:25;;21013:204;;;21115:86;21170:12;21115:9;:28;21125:14;21140:1;21125:17;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21125:17:0;21115:28;;;;;;;;;;;;;;:32;:86::i;:::-;21084:9;:28;21094:14;21109:1;21094:17;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21094:17:0;21084:28;;;;;;;;;;;;:117;21094:17;21060:3;21013:204;;;-1:-1:-1;;;;;;21256:20:0;;;;;;:9;:20;;;;;;:36;;21281:10;21256:24;:36::i;:::-;-1:-1:-1;;;;;21233:20:0;;;;;;:9;:20;;;;;:59;-1:-1:-1;20714:678:0;;-1:-1:-1;;20714:678:0;;-1:-1:-1;;;;;21348:20:0;;;;;;:9;:20;;;;;;:32;;21373:6;21348:24;:32::i;:::-;-1:-1:-1;;;;;21325:20:0;;;;;;:9;:20;;;;;:55;20714:678;21426:9;-1:-1:-1;;;;;21409:35:0;21418:6;-1:-1:-1;;;;;21409:35:0;;21437:6;21409:35;;;;;;;;;;;;;;;;;;20124:1328;;;:::o;2807:226::-;2927:7;2963:12;2955:6;;;;2947:29;;;;-1:-1:-1;;;2947:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2999:5:0;;;2807:226::o;1920:181::-;1978:7;2010:5;;;2034:6;;;;2026:46;;;;;-1:-1:-1;;;2026:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092:1;1920:181;-1:-1:-1;;;1920:181:0:o;22373:385::-;-1:-1:-1;;;;;22449:21:0;;22441:67;;;;-1:-1:-1;;;22441:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22542:105;22579:6;22542:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22542:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;22521:18:0;;;;;;:9;:18;;;;;:126;22673:12;;:24;;22690:6;22673:16;:24::i;:::-;22658:12;:39;22713:37;;;;;;;;22739:1;;-1:-1:-1;;;;;22713:37:0;;;;;;;;;;;;22373:385;;:::o;13865:369::-;-1:-1:-1;;;;;13935:21:0;;13927:71;;;;-1:-1:-1;;;13927:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14028:7;:5;:7::i;:::-;-1:-1:-1;;;;;14017:18:0;:7;-1:-1:-1;;;;;14017:18:0;;;14009:61;;;;;-1:-1:-1;;;14009:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14090:21:0;;;;;;:12;:21;;;;;;;;14089:22;14081:69;;;;-1:-1:-1;;;14081:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14163:21:0;;;;;:12;:21;;;;;:28;;-1:-1:-1;;14163:28:0;14187:4;14163:28;;;;;;14202:10;:24;;;;;;;;;;;;;;-1:-1:-1;;;;;;14202:24:0;;;;;;13865:369::o;21733:308::-;-1:-1:-1;;;;;21809:21:0;;21801:65;;;;;-1:-1:-1;;;21801:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21894:12;;:24;;21911:6;21894:16;:24::i;:::-;21879:12;:39;-1:-1:-1;;;;;21950:18:0;;;;;;:9;:18;;;;;;:30;;21973:6;21950:22;:30::i;:::-;-1:-1:-1;;;;;21929:18:0;;;;;;:9;:18;;;;;;;;:51;;;;21996:37;;;;;;;21929:18;;;;21996:37;;;;;;;;;;21733:308;;:::o;15169:252::-;-1:-1:-1;;;;;15253:20:0;;;;;;:11;:20;;;;;;;;15252:21;15230:111;;;;-1:-1:-1;;;15230:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15352:20:0;;;;;:11;:20;;;;;:27;;-1:-1:-1;;15352:27:0;15375:4;15352:27;;;;;;15390:9;:23;;;;;;;;;;;;;;-1:-1:-1;;;;;;15390:23:0;;;;;;15169:252::o;14432:583::-;-1:-1:-1;;;;;14507:21:0;;;;;;:12;:21;;;;;;;;14499:69;;;;-1:-1:-1;;;14499:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14584:9;14579:429;14603:10;:17;14599:21;;14579:429;;;14663:7;-1:-1:-1;;;;;14646:24:0;:10;14657:1;14646:13;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14646:13:0;:24;14642:355;;;14695:10;:17;14715:1;-1:-1:-1;14691:184:0;;;14822:10;14833:17;;-1:-1:-1;;14833:21:0;;;14822:33;;;;;;;;;;;;;;;;14806:10;:13;;-1:-1:-1;;;;;14822:33:0;;;;14817:1;;14806:13;;;;;;;;;;;;;;:49;;;;;-1:-1:-1;;;;;14806:49:0;;;;;-1:-1:-1;;;;;14806:49:0;;;;;;14691:184;14893:10;:16;;;;;;;;;;;;;;;;;-1:-1:-1;;14893:16:0;;;;;-1:-1:-1;;;;;;14893:16:0;;;;;;;;;-1:-1:-1;;;;;14928:21:0;;;;:12;:21;;;;;:29;;-1:-1:-1;;14928:29:0;;;14976:5;;14642:355;14622:3;;14579:429;;12621:258;-1:-1:-1;;;;;12707:21:0;;;;;;:12;:21;;;;;;;;12706:22;12684:109;;;;-1:-1:-1;;;12684:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12804:21:0;;;;;:12;:21;;;;;:28;;-1:-1:-1;;12804:28:0;12828:4;12804:28;;;;;;12843:14;:28;;;;;;;;;;;;;;-1:-1:-1;;;;;;12843:28:0;;;;;;12621:258::o;15617:573::-;-1:-1:-1;;;;;15691:20:0;;;;;;:11;:20;;;;;;;;15683:68;;;;-1:-1:-1;;;15683:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15767:9;15762:421;15786:9;:16;15782:20;;15762:421;;;15844:7;-1:-1:-1;;;;;15828:23:0;:9;15838:1;15828:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15828:12:0;:23;15824:348;;;15876:9;:16;15895:1;-1:-1:-1;15872:180:0;;;16001:9;16011:16;;-1:-1:-1;;16011:20:0;;;16001:31;;;;;;;;;;;;;;;;15986:9;:12;;-1:-1:-1;;;;;16001:31:0;;;;15996:1;;15986:12;;;;;;;;;;;;;;:46;;;;;-1:-1:-1;;;;;15986:46:0;;;;;-1:-1:-1;;;;;15986:46:0;;;;;;15872:180;16070:9;:15;;;;;;;;;;;;;;;;;-1:-1:-1;;16070:15:0;;;;;-1:-1:-1;;;;;;16070:15:0;;;;;;;;;-1:-1:-1;;;;;16104:20:0;;;;:11;:20;;;;;:28;;-1:-1:-1;;16104:28:0;;;16151:5;;15824:348;15804:3;;15762:421;;12065:66;12113:4;:10;;-1:-1:-1;;12113:10:0;;;;;;;;;;;;12065:66::o;8677:266::-;-1:-1:-1;;;;;8765:22:0;;8743:110;;;;-1:-1:-1;;;8743:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8890:6;;;8869:38;;-1:-1:-1;;;;;8869:38:0;;;;8890:6;;;8869:38;;;8918:6;:17;;-1:-1:-1;;;;;;8918:17:0;-1:-1:-1;;;;;8918:17:0;;;;;;;;;;8677:266::o;3284:471::-;3342:7;3587:6;3583:47;;-1:-1:-1;3617:1:0;3610:8;;3583:47;3654:5;;;3658:1;3654;:5;:1;3678:5;;;;;:10;3670:56;;;;-1:-1:-1;;;3670:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4223:132;4281:7;4308:39;4312:1;4315;4308:39;;;;;;;;;;;;;;;;;:3;:39::i;2376:136::-;2434:7;2461:43;2465:1;2468;2461:43;;;;;;;;;;;;;;;;;:3;:43::i;4843:379::-;4963:7;5065:12;5058:5;5050:28;;;;-1:-1:-1;;;5050:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5089:9;5105:1;5101;:5;;;;;;;4843:379;-1:-1:-1;;;;;4843:379:0:o
Swarm Source
ipfs://928dad40bb1c141e84bca9477df2e09341a22e2afa69046602c038ab6554b3ee
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.