ERC-20
Overview
Max Total Supply
5,262.18187788325761566 ERC20 ***
Holders
29
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ReceiptToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-14 */ pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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 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; } } /** * @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 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 { } } // This contract is used for printing receipt tokens // Whenever someone joins a pool, a receipt token will be printed for that person contract ReceiptToken is ERC20, Ownable { ERC20 public underlyingToken; address public underlyingStrategy; constructor(address underlyingAddress, address strategy) ERC20( string(abi.encodePacked("pAT-", ERC20(underlyingAddress).name())), string(abi.encodePacked("pAT-", ERC20(underlyingAddress).symbol())) ) { underlyingToken = ERC20(underlyingAddress); underlyingStrategy = strategy; } /** * @notice Mint new receipt tokens to some user * @param to Address of the user that gets the receipt tokens * @param amount Amount of receipt tokens that will get minted */ function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } /** * @notice Burn receipt tokens from some user * @param from Address of the user that gets the receipt tokens burne * @param amount Amount of receipt tokens that will get burned */ function burn(address from, uint256 amount) public onlyOwner { _burn(from, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"underlyingAddress","type":"address"},{"internalType":"address","name":"strategy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"underlyingStrategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"underlyingToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620012b7380380620012b78339810160408190526200003491620002f0565b816001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b1580156200006e57600080fd5b505afa15801562000083573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620000ad919081019062000327565b604051602001620000bf9190620003db565b604051602081830303815290604052826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156200010857600080fd5b505afa1580156200011d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000147919081019062000327565b604051602001620001599190620003db565b60408051601f1981840301815291905281516200017e9060039060208501906200022d565b508051620001949060049060208401906200022d565b5050506000620001a96200022960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b039384166001600160a01b031991821617909155600780549290931691161790556200048f565b3390565b8280546200023b906200043c565b90600052602060002090601f0160209004810192826200025f5760008555620002aa565b82601f106200027a57805160ff1916838001178555620002aa565b82800160010185558215620002aa579182015b82811115620002aa5782518255916020019190600101906200028d565b50620002b8929150620002bc565b5090565b5b80821115620002b85760008155600101620002bd565b80516001600160a01b0381168114620002eb57600080fd5b919050565b6000806040838503121562000303578182fd5b6200030e83620002d3565b91506200031e60208401620002d3565b90509250929050565b60006020828403121562000339578081fd5b81516001600160401b038082111562000350578283fd5b818401915084601f83011262000364578283fd5b81518181111562000379576200037962000479565b604051601f8201601f19908116603f01168101908382118183101715620003a457620003a462000479565b81604052828152876020848701011115620003bd578586fd5b620003d083602083016020880162000409565b979650505050505050565b637041542d60e01b815260008251620003fc81600485016020870162000409565b9190910160040192915050565b60005b83811015620004265781810151838201526020016200040c565b8381111562000436576000848401525b50505050565b600181811c908216806200045157607f821691505b602082108114156200047357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610e18806200049f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610240578063a9059cbb14610253578063d6324e6014610266578063dd62ed3e14610279578063f2fde38b146102b257600080fd5b8063715018a61461020c5780638da5cb5b1461021457806395d89b41146102255780639dc29fac1461022d57600080fd5b80632495a599116100e95780632495a59914610181578063313ce567146101ac57806339509351146101bb57806340c10f19146101ce57806370a08231146101e357600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c5565b6040516101309190610cda565b60405180910390f35b61014c610147366004610cb1565b610357565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c76565b61036d565b600654610194906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b60405160128152602001610130565b61014c6101c9366004610cb1565b610423565b6101e16101dc366004610cb1565b61045a565b005b6101606101f1366004610c23565b6001600160a01b031660009081526020819052604090205490565b6101e1610492565b6005546001600160a01b0316610194565b610123610506565b6101e161023b366004610cb1565b610515565b61014c61024e366004610cb1565b610549565b61014c610261366004610cb1565b6105e4565b600754610194906001600160a01b031681565b610160610287366004610c44565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e16102c0366004610c23565b6105f1565b6060600380546102d490610d91565b80601f016020809104026020016040519081016040528092919081815260200182805461030090610d91565b801561034d5780601f106103225761010080835404028352916020019161034d565b820191906000526020600020905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b60006103643384846106dc565b50600192915050565b600061037a848484610801565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041885336104138685610d7a565b6106dc565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610364918590610413908690610d62565b6005546001600160a01b031633146104845760405162461bcd60e51b81526004016103fb90610d2d565b61048e82826109d9565b5050565b6005546001600160a01b031633146104bc5760405162461bcd60e51b81526004016103fb90610d2d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546102d490610d91565b6005546001600160a01b0316331461053f5760405162461bcd60e51b81526004016103fb90610d2d565b61048e8282610ab8565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b6105da33856104138685610d7a565b5060019392505050565b6000610364338484610801565b6005546001600160a01b0316331461061b5760405162461bcd60e51b81526004016103fb90610d2d565b6001600160a01b0381166106805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661073e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b03821661079f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b0382166108c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6001600160a01b0383166000908152602081905260409020548181101561093f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6109498282610d7a565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061097f908490610d62565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109cb91815260200190565b60405180910390a350505050565b6001600160a01b038216610a2f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fb565b8060026000828254610a419190610d62565b90915550506001600160a01b03821660009081526020819052604081208054839290610a6e908490610d62565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610b185760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fb565b6001600160a01b03821660009081526020819052604090205481811015610b8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fb565b610b968282610d7a565b6001600160a01b03841660009081526020819052604081209190915560028054849290610bc4908490610d7a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107f4565b80356001600160a01b0381168114610c1e57600080fd5b919050565b600060208284031215610c34578081fd5b610c3d82610c07565b9392505050565b60008060408385031215610c56578081fd5b610c5f83610c07565b9150610c6d60208401610c07565b90509250929050565b600080600060608486031215610c8a578081fd5b610c9384610c07565b9250610ca160208501610c07565b9150604084013590509250925092565b60008060408385031215610cc3578182fd5b610ccc83610c07565b946020939093013593505050565b6000602080835283518082850152825b81811015610d0657858101830151858201604001528201610cea565b81811115610d175783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610d7557610d75610dcc565b500190565b600082821015610d8c57610d8c610dcc565b500390565b600181811c90821680610da557607f821691505b60208210811415610dc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e7bce58c17d82033b91c9beead16fea2e580d0b81b1e552c443fc360924f174f64736f6c634300080400330000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000004a03ea61e543ec7141a3f90128b0c0c9514f8737
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610240578063a9059cbb14610253578063d6324e6014610266578063dd62ed3e14610279578063f2fde38b146102b257600080fd5b8063715018a61461020c5780638da5cb5b1461021457806395d89b41146102255780639dc29fac1461022d57600080fd5b80632495a599116100e95780632495a59914610181578063313ce567146101ac57806339509351146101bb57806340c10f19146101ce57806370a08231146101e357600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c5565b6040516101309190610cda565b60405180910390f35b61014c610147366004610cb1565b610357565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c76565b61036d565b600654610194906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b60405160128152602001610130565b61014c6101c9366004610cb1565b610423565b6101e16101dc366004610cb1565b61045a565b005b6101606101f1366004610c23565b6001600160a01b031660009081526020819052604090205490565b6101e1610492565b6005546001600160a01b0316610194565b610123610506565b6101e161023b366004610cb1565b610515565b61014c61024e366004610cb1565b610549565b61014c610261366004610cb1565b6105e4565b600754610194906001600160a01b031681565b610160610287366004610c44565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e16102c0366004610c23565b6105f1565b6060600380546102d490610d91565b80601f016020809104026020016040519081016040528092919081815260200182805461030090610d91565b801561034d5780601f106103225761010080835404028352916020019161034d565b820191906000526020600020905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b60006103643384846106dc565b50600192915050565b600061037a848484610801565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041885336104138685610d7a565b6106dc565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610364918590610413908690610d62565b6005546001600160a01b031633146104845760405162461bcd60e51b81526004016103fb90610d2d565b61048e82826109d9565b5050565b6005546001600160a01b031633146104bc5760405162461bcd60e51b81526004016103fb90610d2d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546102d490610d91565b6005546001600160a01b0316331461053f5760405162461bcd60e51b81526004016103fb90610d2d565b61048e8282610ab8565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b6105da33856104138685610d7a565b5060019392505050565b6000610364338484610801565b6005546001600160a01b0316331461061b5760405162461bcd60e51b81526004016103fb90610d2d565b6001600160a01b0381166106805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661073e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b03821661079f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b0382166108c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6001600160a01b0383166000908152602081905260409020548181101561093f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6109498282610d7a565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061097f908490610d62565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109cb91815260200190565b60405180910390a350505050565b6001600160a01b038216610a2f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fb565b8060026000828254610a419190610d62565b90915550506001600160a01b03821660009081526020819052604081208054839290610a6e908490610d62565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610b185760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fb565b6001600160a01b03821660009081526020819052604090205481811015610b8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fb565b610b968282610d7a565b6001600160a01b03841660009081526020819052604081209190915560028054849290610bc4908490610d7a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107f4565b80356001600160a01b0381168114610c1e57600080fd5b919050565b600060208284031215610c34578081fd5b610c3d82610c07565b9392505050565b60008060408385031215610c56578081fd5b610c5f83610c07565b9150610c6d60208401610c07565b90509250929050565b600080600060608486031215610c8a578081fd5b610c9384610c07565b9250610ca160208501610c07565b9150604084013590509250925092565b60008060408385031215610cc3578182fd5b610ccc83610c07565b946020939093013593505050565b6000602080835283518082850152825b81811015610d0657858101830151858201604001528201610cea565b81811115610d175783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610d7557610d75610dcc565b500190565b600082821015610d8c57610d8c610dcc565b500390565b600181811c90821680610da557607f821691505b60208210811415610dc657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e7bce58c17d82033b91c9beead16fea2e580d0b81b1e552c443fc360924f174f64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000004a03ea61e543ec7141a3f90128b0c0c9514f8737
-----Decoded View---------------
Arg [0] : underlyingAddress (address): 0x6B175474E89094C44Da98b954EedeAC495271d0F
Arg [1] : strategy (address): 0x4A03ea61E543eC7141a3f90128B0c0c9514F8737
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [1] : 0000000000000000000000004a03ea61e543ec7141a3f90128b0c0c9514f8737
Deployed Bytecode Sourcemap
17305:1106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8395:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10562:169;;;;;;:::i;:::-;;:::i;:::-;;;1653:14:1;;1646:22;1628:41;;1616:2;1601:18;10562:169:0;1583:92:1;9515:108:0;9603:12;;9515:108;;;7428:25:1;;;7416:2;7401:18;9515:108:0;7383:76:1;11213:422:0;;;;;;:::i;:::-;;:::i;17352:28::-;;;;;-1:-1:-1;;;;;17352:28:0;;;;;;-1:-1:-1;;;;;1444:32:1;;;1426:51;;1414:2;1399:18;17352:28:0;1381:102:1;9357:93:0;;;9440:2;7606:36:1;;7594:2;7579:18;9357:93:0;7561:87:1;12044:215:0;;;;;;:::i;:::-;;:::i;17994:95::-;;;;;;:::i;:::-;;:::i;:::-;;9686:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9787:18:0;9760:7;9787:18;;;;;;;;;;;;9686:127;2610:148;;;:::i;1959:87::-;2032:6;;-1:-1:-1;;;;;2032:6:0;1959:87;;8614:104;;;:::i;18309:99::-;;;;;;:::i;:::-;;:::i;12762:377::-;;;;;;:::i;:::-;;:::i;10026:175::-;;;;;;:::i;:::-;;:::i;17387:33::-;;;;;-1:-1:-1;;;;;17387:33:0;;;10264:151;;;;;;:::i;:::-;-1:-1:-1;;;;;10380:18:0;;;10353:7;10380:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10264:151;2913:244;;;;;;:::i;:::-;;:::i;8395:100::-;8449:13;8482:5;8475:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8395:100;:::o;10562:169::-;10645:4;10662:39;681:10;10685:7;10694:6;10662:8;:39::i;:::-;-1:-1:-1;10719:4:0;10562:169;;;;:::o;11213:422::-;11319:4;11336:36;11346:6;11354:9;11365:6;11336:9;:36::i;:::-;-1:-1:-1;;;;;11412:19:0;;11385:24;11412:19;;;:11;:19;;;;;;;;681:10;11412:33;;;;;;;;11464:26;;;;11456:79;;;;-1:-1:-1;;;11456:79:0;;4735:2:1;11456:79:0;;;4717:21:1;4774:2;4754:18;;;4747:30;4813:34;4793:18;;;4786:62;-1:-1:-1;;;4864:18:1;;;4857:38;4912:19;;11456:79:0;;;;;;;;;11546:57;11555:6;681:10;11577:25;11596:6;11577:16;:25;:::i;:::-;11546:8;:57::i;:::-;-1:-1:-1;11623:4:0;;11213:422;-1:-1:-1;;;;11213:422:0:o;12044:215::-;681:10;12132:4;12181:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12181:34:0;;;;;;;;;;12132:4;;12149:80;;12172:7;;12181:47;;12218:10;;12181:47;:::i;17994:95::-;2032:6;;-1:-1:-1;;;;;2032:6:0;681:10;2179:23;2171:68;;;;-1:-1:-1;;;2171:68:0;;;;;;;:::i;:::-;18064:17:::1;18070:2;18074:6;18064:5;:17::i;:::-;17994:95:::0;;:::o;2610:148::-;2032:6;;-1:-1:-1;;;;;2032:6:0;681:10;2179:23;2171:68;;;;-1:-1:-1;;;2171:68:0;;;;;;;:::i;:::-;2701:6:::1;::::0;2680:40:::1;::::0;2717:1:::1;::::0;-1:-1:-1;;;;;2701:6:0::1;::::0;2680:40:::1;::::0;2717:1;;2680:40:::1;2731:6;:19:::0;;-1:-1:-1;;;;;;2731:19:0::1;::::0;;2610:148::o;8614:104::-;8670:13;8703:7;8696:14;;;;;:::i;18309:99::-;2032:6;;-1:-1:-1;;;;;2032:6:0;681:10;2179:23;2171:68;;;;-1:-1:-1;;;2171:68:0;;;;;;;:::i;:::-;18381:19:::1;18387:4;18393:6;18381:5;:19::i;12762:377::-:0;681:10;12855:4;12899:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12899:34:0;;;;;;;;;;12952:35;;;;12944:85;;;;-1:-1:-1;;;12944:85:0;;6718:2:1;12944:85:0;;;6700:21:1;6757:2;6737:18;;;6730:30;6796:34;6776:18;;;6769:62;-1:-1:-1;;;6847:18:1;;;6840:35;6892:19;;12944:85:0;6690:227:1;12944:85:0;13040:67;681:10;13063:7;13072:34;13091:15;13072:16;:34;:::i;13040:67::-;-1:-1:-1;13127:4:0;;12762:377;-1:-1:-1;;;12762:377:0:o;10026:175::-;10112:4;10129:42;681:10;10153:9;10164:6;10129:9;:42::i;2913:244::-;2032:6;;-1:-1:-1;;;;;2032:6:0;681:10;2179:23;2171:68;;;;-1:-1:-1;;;2171:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3002:22:0;::::1;2994:73;;;::::0;-1:-1:-1;;;2994:73:0;;3518:2:1;2994:73:0::1;::::0;::::1;3500:21:1::0;3557:2;3537:18;;;3530:30;3596:34;3576:18;;;3569:62;-1:-1:-1;;;3647:18:1;;;3640:36;3693:19;;2994:73:0::1;3490:228:1::0;2994:73:0::1;3104:6;::::0;3083:38:::1;::::0;-1:-1:-1;;;;;3083:38:0;;::::1;::::0;3104:6:::1;::::0;3083:38:::1;::::0;3104:6:::1;::::0;3083:38:::1;3132:6;:17:::0;;-1:-1:-1;;;;;;3132:17:0::1;-1:-1:-1::0;;;;;3132:17:0;;;::::1;::::0;;;::::1;::::0;;2913:244::o;16118:346::-;-1:-1:-1;;;;;16220:19:0;;16212:68;;;;-1:-1:-1;;;16212:68:0;;6313:2:1;16212:68:0;;;6295:21:1;6352:2;6332:18;;;6325:30;6391:34;6371:18;;;6364:62;-1:-1:-1;;;6442:18:1;;;6435:34;6486:19;;16212:68:0;6285:226:1;16212:68:0;-1:-1:-1;;;;;16299:21:0;;16291:68;;;;-1:-1:-1;;;16291:68:0;;3925:2:1;16291:68:0;;;3907:21:1;3964:2;3944:18;;;3937:30;4003:34;3983:18;;;3976:62;-1:-1:-1;;;4054:18:1;;;4047:32;4096:19;;16291:68:0;3897:224:1;16291:68:0;-1:-1:-1;;;;;16372:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16424:32;;7428:25:1;;;16424:32:0;;7401:18:1;16424:32:0;;;;;;;;16118:346;;;:::o;13629:604::-;-1:-1:-1;;;;;13735:20:0;;13727:70;;;;-1:-1:-1;;;13727:70:0;;5907:2:1;13727:70:0;;;5889:21:1;5946:2;5926:18;;;5919:30;5985:34;5965:18;;;5958:62;-1:-1:-1;;;6036:18:1;;;6029:35;6081:19;;13727:70:0;5879:227:1;13727:70:0;-1:-1:-1;;;;;13816:23:0;;13808:71;;;;-1:-1:-1;;;13808:71:0;;2711:2:1;13808:71:0;;;2693:21:1;2750:2;2730:18;;;2723:30;2789:34;2769:18;;;2762:62;-1:-1:-1;;;2840:18:1;;;2833:33;2883:19;;13808:71:0;2683:225:1;13808:71:0;-1:-1:-1;;;;;13976:17:0;;13952:21;13976:17;;;;;;;;;;;14012:23;;;;14004:74;;;;-1:-1:-1;;;14004:74:0;;4328:2:1;14004:74:0;;;4310:21:1;4367:2;4347:18;;;4340:30;4406:34;4386:18;;;4379:62;-1:-1:-1;;;4457:18:1;;;4450:36;4503:19;;14004:74:0;4300:228:1;14004:74:0;14109:22;14125:6;14109:13;:22;:::i;:::-;-1:-1:-1;;;;;14089:17:0;;;:9;:17;;;;;;;;;;;:42;;;;14142:20;;;;;;;;:30;;14166:6;;14089:9;14142:30;;14166:6;;14142:30;:::i;:::-;;;;;;;;14207:9;-1:-1:-1;;;;;14190:35:0;14199:6;-1:-1:-1;;;;;14190:35:0;;14218:6;14190:35;;;;7428:25:1;;7416:2;7401:18;;7383:76;14190:35:0;;;;;;;;13629:604;;;;:::o;14515:338::-;-1:-1:-1;;;;;14599:21:0;;14591:65;;;;-1:-1:-1;;;14591:65:0;;7124:2:1;14591:65:0;;;7106:21:1;7163:2;7143:18;;;7136:30;7202:33;7182:18;;;7175:61;7253:18;;14591:65:0;7096:181:1;14591:65:0;14747:6;14731:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;14764:18:0;;:9;:18;;;;;;;;;;:28;;14786:6;;14764:9;:28;;14786:6;;14764:28;:::i;:::-;;;;-1:-1:-1;;14808:37:0;;7428:25:1;;;-1:-1:-1;;;;;14808:37:0;;;14825:1;;14808:37;;7416:2:1;7401:18;14808:37:0;;;;;;;14515:338;;:::o;15186:494::-;-1:-1:-1;;;;;15270:21:0;;15262:67;;;;-1:-1:-1;;;15262:67:0;;5505:2:1;15262:67:0;;;5487:21:1;5544:2;5524:18;;;5517:30;5583:34;5563:18;;;5556:62;-1:-1:-1;;;5634:18:1;;;5627:31;5675:19;;15262:67:0;5477:223:1;15262:67:0;-1:-1:-1;;;;;15429:18:0;;15404:22;15429:18;;;;;;;;;;;15466:24;;;;15458:71;;;;-1:-1:-1;;;15458:71:0;;3115:2:1;15458:71:0;;;3097:21:1;3154:2;3134:18;;;3127:30;3193:34;3173:18;;;3166:62;-1:-1:-1;;;3244:18:1;;;3237:32;3286:19;;15458:71:0;3087:224:1;15458:71:0;15561:23;15578:6;15561:14;:23;:::i;:::-;-1:-1:-1;;;;;15540:18:0;;:9;:18;;;;;;;;;;:44;;;;15595:12;:22;;15611:6;;15540:9;15595:22;;15611:6;;15595:22;:::i;:::-;;;;-1:-1:-1;;15635:37:0;;7428:25:1;;;15661:1:0;;-1:-1:-1;;;;;15635:37:0;;;;;7416:2:1;7401:18;15635:37:0;7383:76:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1901:603::-;2013:4;2042:2;2071;2060:9;2053:21;2103:6;2097:13;2146:6;2141:2;2130:9;2126:18;2119:34;2171:4;2184:140;2198:6;2195:1;2192:13;2184:140;;;2293:14;;;2289:23;;2283:30;2259:17;;;2278:2;2255:26;2248:66;2213:10;;2184:140;;;2342:6;2339:1;2336:13;2333:2;;;2412:4;2407:2;2398:6;2387:9;2383:22;2379:31;2372:45;2333:2;-1:-1:-1;2488:2:1;2467:15;-1:-1:-1;;2463:29:1;2448:45;;;;2495:2;2444:54;;2022:482;-1:-1:-1;;;2022:482:1:o;4942:356::-;5144:2;5126:21;;;5163:18;;;5156:30;5222:34;5217:2;5202:18;;5195:62;5289:2;5274:18;;5116:182::o;7653:128::-;7693:3;7724:1;7720:6;7717:1;7714:13;7711:2;;;7730:18;;:::i;:::-;-1:-1:-1;7766:9:1;;7701:80::o;7786:125::-;7826:4;7854:1;7851;7848:8;7845:2;;;7859:18;;:::i;:::-;-1:-1:-1;7896:9:1;;7835:76::o;7916:380::-;7995:1;7991:12;;;;8038;;;8059:2;;8113:4;8105:6;8101:17;8091:27;;8059:2;8166;8158:6;8155:14;8135:18;8132:38;8129:2;;;8212:10;8207:3;8203:20;8200:1;8193:31;8247:4;8244:1;8237:15;8275:4;8272:1;8265:15;8129:2;;7971:325;;;:::o;8301:127::-;8362:10;8357:3;8353:20;8350:1;8343:31;8393:4;8390:1;8383:15;8417:4;8414:1;8407:15
Swarm Source
ipfs://e7bce58c17d82033b91c9beead16fea2e580d0b81b1e552c443fc360924f174f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.