Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 540 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20249760 | 174 days ago | IN | 0 ETH | 0.0002089 | ||||
Approve | 20189332 | 183 days ago | IN | 0 ETH | 0.00027951 | ||||
Transfer | 20015996 | 207 days ago | IN | 0 ETH | 0.00043778 | ||||
Transfer | 20010835 | 208 days ago | IN | 0 ETH | 0.00083787 | ||||
Transfer | 19983577 | 212 days ago | IN | 0 ETH | 0.00142193 | ||||
Transfer | 19983577 | 212 days ago | IN | 0 ETH | 0.00142193 | ||||
Transfer | 19983543 | 212 days ago | IN | 0 ETH | 0.0016278 | ||||
Transfer | 19983543 | 212 days ago | IN | 0 ETH | 0.00162814 | ||||
Transfer | 19955531 | 216 days ago | IN | 0 ETH | 0.00062017 | ||||
Transfer | 19910033 | 222 days ago | IN | 0 ETH | 0.00031425 | ||||
Approve | 19563023 | 270 days ago | IN | 0 ETH | 0.00136752 | ||||
Transfer | 19563016 | 270 days ago | IN | 0 ETH | 0.00301514 | ||||
Transfer | 19447720 | 287 days ago | IN | 0 ETH | 0.00330547 | ||||
Transfer | 16765876 | 663 days ago | IN | 0 ETH | 0.00163871 | ||||
Transfer | 16614142 | 685 days ago | IN | 0 ETH | 0.00122345 | ||||
Transfer | 16614019 | 685 days ago | IN | 0 ETH | 0.00195176 | ||||
Transfer | 16589366 | 688 days ago | IN | 0 ETH | 0.002475 | ||||
Approve | 16572450 | 690 days ago | IN | 0 ETH | 0.00198018 | ||||
Transfer | 16564747 | 691 days ago | IN | 0 ETH | 0.00233957 | ||||
Transfer | 16548630 | 694 days ago | IN | 0 ETH | 0.00383081 | ||||
Transfer | 16494471 | 701 days ago | IN | 0 ETH | 0.00197516 | ||||
Transfer | 16412120 | 713 days ago | IN | 0 ETH | 0.00100995 | ||||
Transfer | 16412103 | 713 days ago | IN | 0 ETH | 0.00106119 | ||||
Transfer | 16395205 | 715 days ago | IN | 0 ETH | 0.00128754 | ||||
Transfer | 16390726 | 716 days ago | IN | 0 ETH | 0.00106408 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
EspToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-14 */ pragma solidity 0.8.0; // SPDX-License-Identifier: MIT /** * @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); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // contracts/EspToken.sol /* EspToken is a ERC20 compatible token with a initial supply and final supply. The token cannot be diluted with addtional minted supply after contract creation and can only be burned down to the final supply. 1% Tax is charged on each transaction Split 50/50 to a random account holder distribution and burn Once total supply is equal to final supply, the full 1% is randomly distributed to an account holder Special Admin Functions (non-ERC20 additions) adminBurn - Allows admin to burn owner held tokens, used to execute buy back and burn policy adminTransfer - Admin can transfer tokens without incurring Tax & Burn */ contract EspToken is ERC20, Ownable { mapping (uint256 => address) private accountList; uint256 private numberOfAccounts; uint256 immutable private finalSupply; constructor(uint256 _initialSupply, uint256 _finalSupply ) ERC20("E$P Token", "E$P"){ _mint(msg.sender, _initialSupply * 10 ** 18); require(_initialSupply * 10 ** 18 >= _finalSupply * 10 ** 18, 'Inital Supply Must Be Equal Or Greater Than Final Supply'); finalSupply = _finalSupply * 10 ** 18; // Variables used to randomly select accounts to distrubute tax to accountList[0] = _msgSender(); numberOfAccounts = 1; } // Override to include 1% Tansaction Tax split between burn and random distribution // Transaction Tax is netted on the recipient function transfer(address recipient, uint256 amount) public override virtual returns (bool) { _taxAndSend(_msgSender(), recipient, amount); return true; } // Override to include 1% Tansaction Tax split between burn and random distribution // Transaction Tax is netted on the recipient function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _taxAndSend(sender, recipient, amount); uint256 currentAllowance = allowance(sender,_msgSender()); require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } // internal function to process tax & transfer function _taxAndSend(address sender, address recipient, uint256 amount) internal virtual { //Tax Burn & Distribute uint256 _burnAmount; _burnAmount = amount / 200; if(balanceOf(recipient) == 0) { accountList[numberOfAccounts] = recipient; numberOfAccounts += 1; } //Transfer 1% Tax to owner before burn and distribute _transfer(sender, owner(), _burnAmount * 2); if ((totalSupply() - _burnAmount) >= finalSupply ) { //If total supply has not burned down to finalSupply, burn and disribute (50/50) _burn(owner(), _burnAmount); //send equal amount to be distributed. _distribute(_burnAmount); } else { // If total supply has been burned down to finalSupply, just distribute with no burn. _distribute(_burnAmount * 2); } //send amount less tax to recipient _transfer(sender, recipient, (amount - _burnAmount * 2)); } // Non ERC-20 Function to allow admin transfers without incurring the transaction tax function adminTransfer(address recipient, uint256 amount) public virtual onlyOwner returns (bool) { //No Tax Transfer From Admin Account if(balanceOf(recipient) == 0) { accountList[numberOfAccounts] = recipient; numberOfAccounts += 1; } _transfer(owner(), recipient, amount); return true; } // Admin Burn function of owner held tokens. Used as part of the buy back & burn policy. Only can burn Admin held tokens // Can only burn down to final supply function adminBurn(uint256 _amount) public virtual onlyOwner returns (bool) { //Only if resultant supply is greater or equal to final supply require ((totalSupply() - _amount) >= finalSupply); _burn(owner(), _amount); return true; } // Internal Non ERC-20 function to randomly distribute the collected fee (unburned portion) to a non-zero balance account. function _distribute(uint256 _amount) internal virtual { uint256 _select; address _addressToSend; require(numberOfAccounts != 0, 'Accounts Cannot Be Zero (Admin is 1) -- Contract Not Initialized Properly'); _select = block.number % numberOfAccounts; _addressToSend = accountList[_select]; if (balanceOf(_addressToSend) != 0) { _transfer(owner(), _addressToSend, _amount); } } // Admin function to return number of unzeroed accounts. function numOfAccounts() public view virtual returns (uint256) { return numberOfAccounts; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint256","name":"_finalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"_amount","type":"uint256"}],"name":"adminBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminTransfer","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":"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":"numOfAccounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
60a06040523480156200001157600080fd5b50604051620028d8380380620028d88339818101604052810190620000379190620004e6565b6040518060400160405280600981526020017f45245020546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45245000000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb9291906200041f565b508060049080519060200190620000d49291906200041f565b5050506000620000e9620002ad60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001af33670de0b6b3a764000084620001a39190620006b1565b620002b560201b60201c565b670de0b6b3a764000081620001c59190620006b1565b670de0b6b3a764000083620001db9190620006b1565b10156200021f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002169062000604565b60405180910390fd5b670de0b6b3a764000081620002359190620006b1565b608081815250506200024c620002ad60201b60201c565b6006600080815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016007819055505050620007ca565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031f90620005e2565b60405180910390fd5b6200033c600083836200041a60201b60201c565b806002600082825462000350919062000654565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003a7919062000654565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200040e919062000626565b60405180910390a35050565b505050565b8280546200042d906200071c565b90600052602060002090601f0160209004810192826200045157600085556200049d565b82601f106200046c57805160ff19168380011785556200049d565b828001600101855582156200049d579182015b828111156200049c5782518255916020019190600101906200047f565b5b509050620004ac9190620004b0565b5090565b5b80821115620004cb576000816000905550600101620004b1565b5090565b600081519050620004e081620007b0565b92915050565b60008060408385031215620004fa57600080fd5b60006200050a85828601620004cf565b92505060206200051d85828601620004cf565b9150509250929050565b600062000536601f8362000643565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b60006200057860388362000643565b91507f496e6974616c20537570706c79204d75737420426520457175616c204f72204760008301527f726561746572205468616e2046696e616c20537570706c7900000000000000006020830152604082019050919050565b620005dc8162000712565b82525050565b60006020820190508181036000830152620005fd8162000527565b9050919050565b600060208201905081810360008301526200061f8162000569565b9050919050565b60006020820190506200063d6000830184620005d1565b92915050565b600082825260208201905092915050565b6000620006618262000712565b91506200066e8362000712565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006a657620006a562000752565b5b828201905092915050565b6000620006be8262000712565b9150620006cb8362000712565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000707576200070662000752565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200073557607f821691505b602082108114156200074c576200074b62000781565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620007bb8162000712565b8114620007c757600080fd5b50565b6080516120eb620007ed600039600081816109740152610f9c01526120eb6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102be578063badb97ff146102ee578063dd62ed3e1461031e578063f17e48ec1461034e578063f2fde38b1461037e5761010b565b8063715018a6146102485780638da5cb5b1461025257806395d89b4114610270578063a457c2d71461028e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca578063511efb41146101fa57806370a08231146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861039a565b6040516101259190611bf5565b60405180910390f35b6101486004803603810190610143919061161d565b61042c565b6040516101559190611bda565b60405180910390f35b61016661044a565b6040516101739190611d97565b60405180910390f35b610196600480360381019061019191906115ce565b610454565b6040516101a39190611bda565b60405180910390f35b6101b46104e2565b6040516101c19190611db2565b60405180910390f35b6101e460048036038101906101df919061161d565b6104eb565b6040516101f19190611bda565b60405180910390f35b610202610597565b60405161020f9190611d97565b60405180910390f35b610232600480360381019061022d9190611569565b6105a1565b60405161023f9190611d97565b60405180910390f35b6102506105e9565b005b61025a610726565b6040516102679190611bbf565b60405180910390f35b610278610750565b6040516102859190611bf5565b60405180910390f35b6102a860048036038101906102a3919061161d565b6107e2565b6040516102b59190611bda565b60405180910390f35b6102d860048036038101906102d3919061161d565b6108d6565b6040516102e59190611bda565b60405180910390f35b61030860048036038101906103039190611659565b6108f4565b6040516103159190611bda565b60405180910390f35b61033860048036038101906103339190611592565b6109cb565b6040516103459190611d97565b60405180910390f35b6103686004803603810190610363919061161d565b610a52565b6040516103759190611bda565b60405180910390f35b61039860048036038101906103939190611569565b610b6c565b005b6060600380546103a990611f86565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611f86565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000610440610439610d18565b8484610d20565b6001905092915050565b6000600254905090565b6000610461848484610eeb565b60006104748561046f610d18565b6109cb565b9050828110156104b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b090611cd7565b60405180910390fd5b6104d6856104c5610d18565b85846104d19190611eca565b610d20565b60019150509392505050565b60006012905090565b600061058d6104f8610d18565b848460016000610506610d18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105889190611de9565b610d20565b6001905092915050565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f1610d18565b73ffffffffffffffffffffffffffffffffffffffff1661060f610726565b73ffffffffffffffffffffffffffffffffffffffff1614610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c90611cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461075f90611f86565b80601f016020809104026020016040519081016040528092919081815260200182805461078b90611f86565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b600080600160006107f1610d18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590611d77565b60405180910390fd5b6108cb6108b9610d18565b8585846108c69190611eca565b610d20565b600191505092915050565b60006108ea6108e3610d18565b8484610eeb565b6001905092915050565b60006108fe610d18565b73ffffffffffffffffffffffffffffffffffffffff1661091c610726565b73ffffffffffffffffffffffffffffffffffffffff1614610972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096990611cf7565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008261099c61044a565b6109a69190611eca565b10156109b157600080fd5b6109c26109bc610726565b83611030565b60019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610a5c610d18565b73ffffffffffffffffffffffffffffffffffffffff16610a7a610726565b73ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790611cf7565b60405180910390fd5b6000610adb846105a1565b1415610b50578260066000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000828254610b489190611de9565b925050819055505b610b62610b5b610726565b8484611204565b6001905092915050565b610b74610d18565b73ffffffffffffffffffffffffffffffffffffffff16610b92610726565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90611c57565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611d57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790611c77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ede9190611d97565b60405180910390a3505050565b600060c882610efa9190611e3f565b90506000610f07846105a1565b1415610f7c578260066000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000828254610f749190611de9565b925050819055505b610f9a84610f88610726565b600284610f959190611e70565b611204565b7f000000000000000000000000000000000000000000000000000000000000000081610fc461044a565b610fce9190611eca565b10610ff257610fe4610fde610726565b82611030565b610fed81611483565b611008565b6110076002826110029190611e70565b611483565b5b61102a848460028461101a9190611e70565b856110259190611eca565b611204565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611d17565b60405180910390fd5b6110ac8260008361153a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990611c37565b60405180910390fd5b818161113e9190611eca565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111929190611eca565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f79190611d97565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90611d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90611c17565b60405180910390fd5b6112ef83838361153a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90611c97565b60405180910390fd5b81816113819190611eca565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114119190611de9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114759190611d97565b60405180910390a350505050565b600080600060075414156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390611cb7565b60405180910390fd5b600754436114da9190611fb8565b91506006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061151d826105a1565b146115355761153461152d610726565b8285611204565b5b505050565b505050565b60008135905061154e81612087565b92915050565b6000813590506115638161209e565b92915050565b60006020828403121561157b57600080fd5b60006115898482850161153f565b91505092915050565b600080604083850312156115a557600080fd5b60006115b38582860161153f565b92505060206115c48582860161153f565b9150509250929050565b6000806000606084860312156115e357600080fd5b60006115f18682870161153f565b93505060206116028682870161153f565b925050604061161386828701611554565b9150509250925092565b6000806040838503121561163057600080fd5b600061163e8582860161153f565b925050602061164f85828601611554565b9150509250929050565b60006020828403121561166b57600080fd5b600061167984828501611554565b91505092915050565b61168b81611efe565b82525050565b61169a81611f10565b82525050565b60006116ab82611dcd565b6116b58185611dd8565b93506116c5818560208601611f53565b6116ce81612076565b840191505092915050565b60006116e6602383611dd8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061174c602283611dd8565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117b2602683611dd8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611818602283611dd8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061187e602683611dd8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118e4604983611dd8565b91507f4163636f756e74732043616e6e6f74204265205a65726f202841646d696e206960008301527f73203129202d2d20436f6e7472616374204e6f7420496e697469616c697a656460208301527f2050726f7065726c7900000000000000000000000000000000000000000000006040830152606082019050919050565b6000611970602883611dd8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119d6602083611dd8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a16602183611dd8565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a7c602583611dd8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ae2602483611dd8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b48602583611dd8565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611baa81611f3c565b82525050565b611bb981611f46565b82525050565b6000602082019050611bd46000830184611682565b92915050565b6000602082019050611bef6000830184611691565b92915050565b60006020820190508181036000830152611c0f81846116a0565b905092915050565b60006020820190508181036000830152611c30816116d9565b9050919050565b60006020820190508181036000830152611c508161173f565b9050919050565b60006020820190508181036000830152611c70816117a5565b9050919050565b60006020820190508181036000830152611c908161180b565b9050919050565b60006020820190508181036000830152611cb081611871565b9050919050565b60006020820190508181036000830152611cd0816118d7565b9050919050565b60006020820190508181036000830152611cf081611963565b9050919050565b60006020820190508181036000830152611d10816119c9565b9050919050565b60006020820190508181036000830152611d3081611a09565b9050919050565b60006020820190508181036000830152611d5081611a6f565b9050919050565b60006020820190508181036000830152611d7081611ad5565b9050919050565b60006020820190508181036000830152611d9081611b3b565b9050919050565b6000602082019050611dac6000830184611ba1565b92915050565b6000602082019050611dc76000830184611bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611df482611f3c565b9150611dff83611f3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e3457611e33611fe9565b5b828201905092915050565b6000611e4a82611f3c565b9150611e5583611f3c565b925082611e6557611e64612018565b5b828204905092915050565b6000611e7b82611f3c565b9150611e8683611f3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ebf57611ebe611fe9565b5b828202905092915050565b6000611ed582611f3c565b9150611ee083611f3c565b925082821015611ef357611ef2611fe9565b5b828203905092915050565b6000611f0982611f1c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f71578082015181840152602081019050611f56565b83811115611f80576000848401525b50505050565b60006002820490506001821680611f9e57607f821691505b60208210811415611fb257611fb1612047565b5b50919050565b6000611fc382611f3c565b9150611fce83611f3c565b925082611fde57611fdd612018565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61209081611efe565b811461209b57600080fd5b50565b6120a781611f3c565b81146120b257600080fd5b5056fea26469706673582212206f993848cbed5cf8a7d58c92465daef97b22e4884291e244159f843f40ac7b7c64736f6c63430008000033000000000000000000000000000000000000000000000000000000746a5288000000000000000000000000000000000000000000000000000000000ba43b7400
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102be578063badb97ff146102ee578063dd62ed3e1461031e578063f17e48ec1461034e578063f2fde38b1461037e5761010b565b8063715018a6146102485780638da5cb5b1461025257806395d89b4114610270578063a457c2d71461028e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca578063511efb41146101fa57806370a08231146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861039a565b6040516101259190611bf5565b60405180910390f35b6101486004803603810190610143919061161d565b61042c565b6040516101559190611bda565b60405180910390f35b61016661044a565b6040516101739190611d97565b60405180910390f35b610196600480360381019061019191906115ce565b610454565b6040516101a39190611bda565b60405180910390f35b6101b46104e2565b6040516101c19190611db2565b60405180910390f35b6101e460048036038101906101df919061161d565b6104eb565b6040516101f19190611bda565b60405180910390f35b610202610597565b60405161020f9190611d97565b60405180910390f35b610232600480360381019061022d9190611569565b6105a1565b60405161023f9190611d97565b60405180910390f35b6102506105e9565b005b61025a610726565b6040516102679190611bbf565b60405180910390f35b610278610750565b6040516102859190611bf5565b60405180910390f35b6102a860048036038101906102a3919061161d565b6107e2565b6040516102b59190611bda565b60405180910390f35b6102d860048036038101906102d3919061161d565b6108d6565b6040516102e59190611bda565b60405180910390f35b61030860048036038101906103039190611659565b6108f4565b6040516103159190611bda565b60405180910390f35b61033860048036038101906103339190611592565b6109cb565b6040516103459190611d97565b60405180910390f35b6103686004803603810190610363919061161d565b610a52565b6040516103759190611bda565b60405180910390f35b61039860048036038101906103939190611569565b610b6c565b005b6060600380546103a990611f86565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611f86565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000610440610439610d18565b8484610d20565b6001905092915050565b6000600254905090565b6000610461848484610eeb565b60006104748561046f610d18565b6109cb565b9050828110156104b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b090611cd7565b60405180910390fd5b6104d6856104c5610d18565b85846104d19190611eca565b610d20565b60019150509392505050565b60006012905090565b600061058d6104f8610d18565b848460016000610506610d18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105889190611de9565b610d20565b6001905092915050565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f1610d18565b73ffffffffffffffffffffffffffffffffffffffff1661060f610726565b73ffffffffffffffffffffffffffffffffffffffff1614610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c90611cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461075f90611f86565b80601f016020809104026020016040519081016040528092919081815260200182805461078b90611f86565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b600080600160006107f1610d18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590611d77565b60405180910390fd5b6108cb6108b9610d18565b8585846108c69190611eca565b610d20565b600191505092915050565b60006108ea6108e3610d18565b8484610eeb565b6001905092915050565b60006108fe610d18565b73ffffffffffffffffffffffffffffffffffffffff1661091c610726565b73ffffffffffffffffffffffffffffffffffffffff1614610972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096990611cf7565b60405180910390fd5b7f0000000000000000000000000000000000000000a18f07d736b90be5500000008261099c61044a565b6109a69190611eca565b10156109b157600080fd5b6109c26109bc610726565b83611030565b60019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610a5c610d18565b73ffffffffffffffffffffffffffffffffffffffff16610a7a610726565b73ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790611cf7565b60405180910390fd5b6000610adb846105a1565b1415610b50578260066000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000828254610b489190611de9565b925050819055505b610b62610b5b610726565b8484611204565b6001905092915050565b610b74610d18565b73ffffffffffffffffffffffffffffffffffffffff16610b92610726565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90611c57565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611d57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790611c77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ede9190611d97565b60405180910390a3505050565b600060c882610efa9190611e3f565b90506000610f07846105a1565b1415610f7c578260066000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000828254610f749190611de9565b925050819055505b610f9a84610f88610726565b600284610f959190611e70565b611204565b7f0000000000000000000000000000000000000000a18f07d736b90be55000000081610fc461044a565b610fce9190611eca565b10610ff257610fe4610fde610726565b82611030565b610fed81611483565b611008565b6110076002826110029190611e70565b611483565b5b61102a848460028461101a9190611e70565b856110259190611eca565b611204565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611d17565b60405180910390fd5b6110ac8260008361153a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990611c37565b60405180910390fd5b818161113e9190611eca565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111929190611eca565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f79190611d97565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90611d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90611c17565b60405180910390fd5b6112ef83838361153a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90611c97565b60405180910390fd5b81816113819190611eca565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114119190611de9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114759190611d97565b60405180910390a350505050565b600080600060075414156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390611cb7565b60405180910390fd5b600754436114da9190611fb8565b91506006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061151d826105a1565b146115355761153461152d610726565b8285611204565b5b505050565b505050565b60008135905061154e81612087565b92915050565b6000813590506115638161209e565b92915050565b60006020828403121561157b57600080fd5b60006115898482850161153f565b91505092915050565b600080604083850312156115a557600080fd5b60006115b38582860161153f565b92505060206115c48582860161153f565b9150509250929050565b6000806000606084860312156115e357600080fd5b60006115f18682870161153f565b93505060206116028682870161153f565b925050604061161386828701611554565b9150509250925092565b6000806040838503121561163057600080fd5b600061163e8582860161153f565b925050602061164f85828601611554565b9150509250929050565b60006020828403121561166b57600080fd5b600061167984828501611554565b91505092915050565b61168b81611efe565b82525050565b61169a81611f10565b82525050565b60006116ab82611dcd565b6116b58185611dd8565b93506116c5818560208601611f53565b6116ce81612076565b840191505092915050565b60006116e6602383611dd8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061174c602283611dd8565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117b2602683611dd8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611818602283611dd8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061187e602683611dd8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118e4604983611dd8565b91507f4163636f756e74732043616e6e6f74204265205a65726f202841646d696e206960008301527f73203129202d2d20436f6e7472616374204e6f7420496e697469616c697a656460208301527f2050726f7065726c7900000000000000000000000000000000000000000000006040830152606082019050919050565b6000611970602883611dd8565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119d6602083611dd8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a16602183611dd8565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a7c602583611dd8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ae2602483611dd8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b48602583611dd8565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611baa81611f3c565b82525050565b611bb981611f46565b82525050565b6000602082019050611bd46000830184611682565b92915050565b6000602082019050611bef6000830184611691565b92915050565b60006020820190508181036000830152611c0f81846116a0565b905092915050565b60006020820190508181036000830152611c30816116d9565b9050919050565b60006020820190508181036000830152611c508161173f565b9050919050565b60006020820190508181036000830152611c70816117a5565b9050919050565b60006020820190508181036000830152611c908161180b565b9050919050565b60006020820190508181036000830152611cb081611871565b9050919050565b60006020820190508181036000830152611cd0816118d7565b9050919050565b60006020820190508181036000830152611cf081611963565b9050919050565b60006020820190508181036000830152611d10816119c9565b9050919050565b60006020820190508181036000830152611d3081611a09565b9050919050565b60006020820190508181036000830152611d5081611a6f565b9050919050565b60006020820190508181036000830152611d7081611ad5565b9050919050565b60006020820190508181036000830152611d9081611b3b565b9050919050565b6000602082019050611dac6000830184611ba1565b92915050565b6000602082019050611dc76000830184611bb0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611df482611f3c565b9150611dff83611f3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e3457611e33611fe9565b5b828201905092915050565b6000611e4a82611f3c565b9150611e5583611f3c565b925082611e6557611e64612018565b5b828204905092915050565b6000611e7b82611f3c565b9150611e8683611f3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ebf57611ebe611fe9565b5b828202905092915050565b6000611ed582611f3c565b9150611ee083611f3c565b925082821015611ef357611ef2611fe9565b5b828203905092915050565b6000611f0982611f1c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f71578082015181840152602081019050611f56565b83811115611f80576000848401525b50505050565b60006002820490506001821680611f9e57607f821691505b60208210811415611fb257611fb1612047565b5b50919050565b6000611fc382611f3c565b9150611fce83611f3c565b925082611fde57611fdd612018565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61209081611efe565b811461209b57600080fd5b50565b6120a781611f3c565b81146120b257600080fd5b5056fea26469706673582212206f993848cbed5cf8a7d58c92465daef97b22e4884291e244159f843f40ac7b7c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000746a5288000000000000000000000000000000000000000000000000000000000ba43b7400
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 500000000000
Arg [1] : _finalSupply (uint256): 50000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000746a528800
Arg [1] : 0000000000000000000000000000000000000000000000000000000ba43b7400
Deployed Bytecode Sourcemap
17840:4212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6183:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8350:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7303:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18923:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7145:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9832:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21945:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7474:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16615:148;;;:::i;:::-;;15964:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6402:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10550:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18603:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21012:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8052:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20481:357;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16918:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6183:100;6237:13;6270:5;6263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6183:100;:::o;8350:169::-;8433:4;8450:39;8459:12;:10;:12::i;:::-;8473:7;8482:6;8450:8;:39::i;:::-;8507:4;8500:11;;8350:169;;;;:::o;7303:108::-;7364:7;7391:12;;7384:19;;7303:108;:::o;18923:427::-;19029:4;19052:38;19064:6;19072:9;19083:6;19052:11;:38::i;:::-;19103:24;19130:30;19140:6;19147:12;:10;:12::i;:::-;19130:9;:30::i;:::-;19103:57;;19199:6;19179:16;:26;;19171:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19261:57;19270:6;19278:12;:10;:12::i;:::-;19311:6;19292:16;:25;;;;:::i;:::-;19261:8;:57::i;:::-;19338:4;19331:11;;;18923:427;;;;;:::o;7145:93::-;7203:5;7228:2;7221:9;;7145:93;:::o;9832:215::-;9920:4;9937:80;9946:12;:10;:12::i;:::-;9960:7;10006:10;9969:11;:25;9981:12;:10;:12::i;:::-;9969:25;;;;;;;;;;;;;;;:34;9995:7;9969:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9937:8;:80::i;:::-;10035:4;10028:11;;9832:215;;;;:::o;21945:102::-;21999:7;22023:16;;22016:23;;21945:102;:::o;7474:127::-;7548:7;7575:9;:18;7585:7;7575:18;;;;;;;;;;;;;;;;7568:25;;7474:127;;;:::o;16615:148::-;16195:12;:10;:12::i;:::-;16184:23;;:7;:5;:7::i;:::-;:23;;;16176:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16722:1:::1;16685:40;;16706:6;;;;;;;;;;;16685:40;;;;;;;;;;;;16753:1;16736:6;;:19;;;;;;;;;;;;;;;;;;16615:148::o:0;15964:87::-;16010:7;16037:6;;;;;;;;;;;16030:13;;15964:87;:::o;6402:104::-;6458:13;6491:7;6484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6402:104;:::o;10550:377::-;10643:4;10660:24;10687:11;:25;10699:12;:10;:12::i;:::-;10687:25;;;;;;;;;;;;;;;:34;10713:7;10687:34;;;;;;;;;;;;;;;;10660:61;;10760:15;10740:16;:35;;10732:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10828:67;10837:12;:10;:12::i;:::-;10851:7;10879:15;10860:16;:34;;;;:::i;:::-;10828:8;:67::i;:::-;10915:4;10908:11;;;10550:377;;;;:::o;18603:176::-;18689:4;18703:44;18715:12;:10;:12::i;:::-;18729:9;18740:6;18703:11;:44::i;:::-;18767:4;18760:11;;18603:176;;;;:::o;21012:280::-;21082:4;16195:12;:10;:12::i;:::-;16184:23;;:7;:5;:7::i;:::-;:23;;;16176:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21207:11:::1;21195:7;21179:13;:11;:13::i;:::-;:23;;;;:::i;:::-;21178:40;;21169:50;;;::::0;::::1;;21235:23;21241:7;:5;:7::i;:::-;21250;21235:5;:23::i;:::-;21274:4;21267:11;;21012:280:::0;;;:::o;8052:151::-;8141:7;8168:11;:18;8180:5;8168:18;;;;;;;;;;;;;;;:27;8187:7;8168:27;;;;;;;;;;;;;;;;8161:34;;8052:151;;;;:::o;20481:357::-;20574:4;16195:12;:10;:12::i;:::-;16184:23;;:7;:5;:7::i;:::-;:23;;;16176:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20667:1:::1;20643:20;20653:9;20643;:20::i;:::-;:25;20640:121;;;20711:9;20679:11;:29;20691:16;;20679:29;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;20749:1;20729:16;;:21;;;;;;;:::i;:::-;;;;;;;;20640:121;20770:37;20780:7;:5;:7::i;:::-;20789:9;20800:6;20770:9;:37::i;:::-;20824:4;20817:11;;20481:357:::0;;;;:::o;16918:244::-;16195:12;:10;:12::i;:::-;16184:23;;:7;:5;:7::i;:::-;:23;;;16176:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17027:1:::1;17007:22;;:8;:22;;;;16999:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17117:8;17088:38;;17109:6;;;;;;;;;;;17088:38;;;;;;;;;;;;17146:8;17137:6;;:17;;;;;;;;;;;;;;;;;;16918:244:::0;:::o;3863:98::-;3916:7;3943:10;3936:17;;3863:98;:::o;13906:346::-;14025:1;14008:19;;:5;:19;;;;14000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14106:1;14087:21;;:7;:21;;;;14079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14190:6;14160:11;:18;14172:5;14160:18;;;;;;;;;;;;;;;:27;14179:7;14160:27;;;;;;;;;;;;;;;:36;;;;14228:7;14212:32;;14221:5;14212:32;;;14237:6;14212:32;;;;;;:::i;:::-;;;;;;;;13906:346;;;:::o;19414:970::-;19545:19;19597:3;19588:6;:12;;;;:::i;:::-;19574:26;;19638:1;19614:20;19624:9;19614;:20::i;:::-;:25;19611:121;;;19682:9;19650:11;:29;19662:16;;19650:29;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;19720:1;19700:16;;:21;;;;;;;:::i;:::-;;;;;;;;19611:121;19801:43;19811:6;19819:7;:5;:7::i;:::-;19842:1;19828:11;:15;;;;:::i;:::-;19801:9;:43::i;:::-;19891:11;19875;19859:13;:11;:13::i;:::-;:27;;;;:::i;:::-;19858:44;19854:411;;20004:27;20010:7;:5;:7::i;:::-;20019:11;20004:5;:27::i;:::-;20089:24;20101:11;20089;:24::i;:::-;19854:411;;;20229:28;20255:1;20241:11;:15;;;;:::i;:::-;20229:11;:28::i;:::-;19854:411;20318:56;20328:6;20336:9;20371:1;20357:11;:15;;;;:::i;:::-;20348:6;:24;;;;:::i;:::-;20318:9;:56::i;:::-;19414:970;;;;:::o;12974:494::-;13077:1;13058:21;;:7;:21;;;;13050:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13130:49;13151:7;13168:1;13172:6;13130:20;:49::i;:::-;13192:22;13217:9;:18;13227:7;13217:18;;;;;;;;;;;;;;;;13192:43;;13272:6;13254:14;:24;;13246:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13366:6;13349:14;:23;;;;:::i;:::-;13328:9;:18;13338:7;13328:18;;;;;;;;;;;;;;;:44;;;;13399:6;13383:12;;:22;;;;;;;:::i;:::-;;;;;;;;13449:1;13423:37;;13432:7;13423:37;;;13453:6;13423:37;;;;;;:::i;:::-;;;;;;;;12974:494;;;:::o;11417:604::-;11541:1;11523:20;;:6;:20;;;;11515:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11625:1;11604:23;;:9;:23;;;;11596:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11680:47;11701:6;11709:9;11720:6;11680:20;:47::i;:::-;11740:21;11764:9;:17;11774:6;11764:17;;;;;;;;;;;;;;;;11740:41;;11817:6;11800:13;:23;;11792:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11913:6;11897:13;:22;;;;:::i;:::-;11877:9;:17;11887:6;11877:17;;;;;;;;;;;;;;;:42;;;;11954:6;11930:9;:20;11940:9;11930:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11995:9;11978:35;;11987:6;11978:35;;;12006:6;11978:35;;;;;;:::i;:::-;;;;;;;;11417:604;;;;:::o;21430:445::-;21500:15;21523:22;21584:1;21564:16;;:21;;21556:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;21698:16;;21683:12;:31;;;;:::i;:::-;21673:41;;21740:11;:20;21752:7;21740:20;;;;;;;;;;;;;;;;;;;;;21723:37;;21803:1;21774:25;21784:14;21774:9;:25::i;:::-;:30;21770:97;;21815:43;21825:7;:5;:7::i;:::-;21834:14;21850:7;21815:9;:43::i;:::-;21770:97;21430:445;;;:::o;14855:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:439::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:34;5016:2;5011:3;5007:12;5000:56;5087:11;5082:2;5077:3;5073:12;5066:33;5125:2;5120:3;5116:12;5109:19;;4841:293;;;:::o;5140:372::-;;5303:67;5367:2;5362:3;5303:67;:::i;:::-;5296:74;;5400:34;5396:1;5391:3;5387:11;5380:55;5466:10;5461:2;5456:3;5452:12;5445:32;5503:2;5498:3;5494:12;5487:19;;5286:226;;;:::o;5518:330::-;;5681:67;5745:2;5740:3;5681:67;:::i;:::-;5674:74;;5778:34;5774:1;5769:3;5765:11;5758:55;5839:2;5834:3;5830:12;5823:19;;5664:184;;;:::o;5854:365::-;;6017:67;6081:2;6076:3;6017:67;:::i;:::-;6010:74;;6114:34;6110:1;6105:3;6101:11;6094:55;6180:3;6175:2;6170:3;6166:12;6159:25;6210:2;6205:3;6201:12;6194:19;;6000:219;;;:::o;6225:369::-;;6388:67;6452:2;6447:3;6388:67;:::i;:::-;6381:74;;6485:34;6481:1;6476:3;6472:11;6465:55;6551:7;6546:2;6541:3;6537:12;6530:29;6585:2;6580:3;6576:12;6569:19;;6371:223;;;:::o;6600:368::-;;6763:67;6827:2;6822:3;6763:67;:::i;:::-;6756:74;;6860:34;6856:1;6851:3;6847:11;6840:55;6926:6;6921:2;6916:3;6912:12;6905:28;6959:2;6954:3;6950:12;6943:19;;6746:222;;;:::o;6974:369::-;;7137:67;7201:2;7196:3;7137:67;:::i;:::-;7130:74;;7234:34;7230:1;7225:3;7221:11;7214:55;7300:7;7295:2;7290:3;7286:12;7279:29;7334:2;7329:3;7325:12;7318:19;;7120:223;;;:::o;7349:118::-;7436:24;7454:5;7436:24;:::i;:::-;7431:3;7424:37;7414:53;;:::o;7473:112::-;7556:22;7572:5;7556:22;:::i;:::-;7551:3;7544:35;7534:51;;:::o;7591:222::-;;7722:2;7711:9;7707:18;7699:26;;7735:71;7803:1;7792:9;7788:17;7779:6;7735:71;:::i;:::-;7689:124;;;;:::o;7819:210::-;;7944:2;7933:9;7929:18;7921:26;;7957:65;8019:1;8008:9;8004:17;7995:6;7957:65;:::i;:::-;7911:118;;;;:::o;8035:313::-;;8186:2;8175:9;8171:18;8163:26;;8235:9;8229:4;8225:20;8221:1;8210:9;8206:17;8199:47;8263:78;8336:4;8327:6;8263:78;:::i;:::-;8255:86;;8153:195;;;;:::o;8354:419::-;;8558:2;8547:9;8543:18;8535:26;;8607:9;8601:4;8597:20;8593:1;8582:9;8578:17;8571:47;8635:131;8761:4;8635:131;:::i;:::-;8627:139;;8525:248;;;:::o;8779:419::-;;8983:2;8972:9;8968:18;8960:26;;9032:9;9026:4;9022:20;9018:1;9007:9;9003:17;8996:47;9060:131;9186:4;9060:131;:::i;:::-;9052:139;;8950:248;;;:::o;9204:419::-;;9408:2;9397:9;9393:18;9385:26;;9457:9;9451:4;9447:20;9443:1;9432:9;9428:17;9421:47;9485:131;9611:4;9485:131;:::i;:::-;9477:139;;9375:248;;;:::o;9629:419::-;;9833:2;9822:9;9818:18;9810:26;;9882:9;9876:4;9872:20;9868:1;9857:9;9853:17;9846:47;9910:131;10036:4;9910:131;:::i;:::-;9902:139;;9800:248;;;:::o;10054:419::-;;10258:2;10247:9;10243:18;10235:26;;10307:9;10301:4;10297:20;10293:1;10282:9;10278:17;10271:47;10335:131;10461:4;10335:131;:::i;:::-;10327:139;;10225:248;;;:::o;10479:419::-;;10683:2;10672:9;10668:18;10660:26;;10732:9;10726:4;10722:20;10718:1;10707:9;10703:17;10696:47;10760:131;10886:4;10760:131;:::i;:::-;10752:139;;10650:248;;;:::o;10904:419::-;;11108:2;11097:9;11093:18;11085:26;;11157:9;11151:4;11147:20;11143:1;11132:9;11128:17;11121:47;11185:131;11311:4;11185:131;:::i;:::-;11177:139;;11075:248;;;:::o;11329:419::-;;11533:2;11522:9;11518:18;11510:26;;11582:9;11576:4;11572:20;11568:1;11557:9;11553:17;11546:47;11610:131;11736:4;11610:131;:::i;:::-;11602:139;;11500:248;;;:::o;11754:419::-;;11958:2;11947:9;11943:18;11935:26;;12007:9;12001:4;11997:20;11993:1;11982:9;11978:17;11971:47;12035:131;12161:4;12035:131;:::i;:::-;12027:139;;11925:248;;;:::o;12179:419::-;;12383:2;12372:9;12368:18;12360:26;;12432:9;12426:4;12422:20;12418:1;12407:9;12403:17;12396:47;12460:131;12586:4;12460:131;:::i;:::-;12452:139;;12350:248;;;:::o;12604:419::-;;12808:2;12797:9;12793:18;12785:26;;12857:9;12851:4;12847:20;12843:1;12832:9;12828:17;12821:47;12885:131;13011:4;12885:131;:::i;:::-;12877:139;;12775:248;;;:::o;13029:419::-;;13233:2;13222:9;13218:18;13210:26;;13282:9;13276:4;13272:20;13268:1;13257:9;13253:17;13246:47;13310:131;13436:4;13310:131;:::i;:::-;13302:139;;13200:248;;;:::o;13454:222::-;;13585:2;13574:9;13570:18;13562:26;;13598:71;13666:1;13655:9;13651:17;13642:6;13598:71;:::i;:::-;13552:124;;;;:::o;13682:214::-;;13809:2;13798:9;13794:18;13786:26;;13822:67;13886:1;13875:9;13871:17;13862:6;13822:67;:::i;:::-;13776:120;;;;:::o;13902:99::-;;13988:5;13982:12;13972:22;;13961:40;;;:::o;14007:169::-;;14125:6;14120:3;14113:19;14165:4;14160:3;14156:14;14141:29;;14103:73;;;;:::o;14182:305::-;;14241:20;14259:1;14241:20;:::i;:::-;14236:25;;14275:20;14293:1;14275:20;:::i;:::-;14270:25;;14429:1;14361:66;14357:74;14354:1;14351:81;14348:2;;;14435:18;;:::i;:::-;14348:2;14479:1;14476;14472:9;14465:16;;14226:261;;;;:::o;14493:185::-;;14550:20;14568:1;14550:20;:::i;:::-;14545:25;;14584:20;14602:1;14584:20;:::i;:::-;14579:25;;14623:1;14613:2;;14628:18;;:::i;:::-;14613:2;14670:1;14667;14663:9;14658:14;;14535:143;;;;:::o;14684:348::-;;14747:20;14765:1;14747:20;:::i;:::-;14742:25;;14781:20;14799:1;14781:20;:::i;:::-;14776:25;;14969:1;14901:66;14897:74;14894:1;14891:81;14886:1;14879:9;14872:17;14868:105;14865:2;;;14976:18;;:::i;:::-;14865:2;15024:1;15021;15017:9;15006:20;;14732:300;;;;:::o;15038:191::-;;15098:20;15116:1;15098:20;:::i;:::-;15093:25;;15132:20;15150:1;15132:20;:::i;:::-;15127:25;;15171:1;15168;15165:8;15162:2;;;15176:18;;:::i;:::-;15162:2;15221:1;15218;15214:9;15206:17;;15083:146;;;;:::o;15235:96::-;;15301:24;15319:5;15301:24;:::i;:::-;15290:35;;15280:51;;;:::o;15337:90::-;;15414:5;15407:13;15400:21;15389:32;;15379:48;;;:::o;15433:126::-;;15510:42;15503:5;15499:54;15488:65;;15478:81;;;:::o;15565:77::-;;15631:5;15620:16;;15610:32;;;:::o;15648:86::-;;15723:4;15716:5;15712:16;15701:27;;15691:43;;;:::o;15740:307::-;15808:1;15818:113;15832:6;15829:1;15826:13;15818:113;;;15917:1;15912:3;15908:11;15902:18;15898:1;15893:3;15889:11;15882:39;15854:2;15851:1;15847:10;15842:15;;15818:113;;;15949:6;15946:1;15943:13;15940:2;;;16029:1;16020:6;16015:3;16011:16;16004:27;15940:2;15789:258;;;;:::o;16053:320::-;;16134:1;16128:4;16124:12;16114:22;;16181:1;16175:4;16171:12;16202:18;16192:2;;16258:4;16250:6;16246:17;16236:27;;16192:2;16320;16312:6;16309:14;16289:18;16286:38;16283:2;;;16339:18;;:::i;:::-;16283:2;16104:269;;;;:::o;16379:176::-;;16428:20;16446:1;16428:20;:::i;:::-;16423:25;;16462:20;16480:1;16462:20;:::i;:::-;16457:25;;16501:1;16491:2;;16506:18;;:::i;:::-;16491:2;16547:1;16544;16540:9;16535:14;;16413:142;;;;:::o;16561:180::-;16609:77;16606:1;16599:88;16706:4;16703:1;16696:15;16730:4;16727:1;16720:15;16747:180;16795:77;16792:1;16785:88;16892:4;16889:1;16882:15;16916:4;16913:1;16906:15;16933:180;16981:77;16978:1;16971:88;17078:4;17075:1;17068:15;17102:4;17099:1;17092:15;17119:102;;17211:2;17207:7;17202:2;17195:5;17191:14;17187:28;17177:38;;17167:54;;;:::o;17227:122::-;17300:24;17318:5;17300:24;:::i;:::-;17293:5;17290:35;17280:2;;17339:1;17336;17329:12;17280:2;17270:79;:::o;17355:122::-;17428:24;17446:5;17428:24;:::i;:::-;17421:5;17418:35;17408:2;;17467:1;17464;17457:12;17408:2;17398:79;:::o
Swarm Source
ipfs://6f993848cbed5cf8a7d58c92465daef97b22e4884291e244159f843f40ac7b7c
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.