More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,213 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 59150235 | 61 days ago | IN | 0 POL | 0.00150657 | ||||
Approve | 53939398 | 196 days ago | IN | 0 POL | 0.0012154 | ||||
Approve | 51464100 | 259 days ago | IN | 0 POL | 0.00228598 | ||||
Approve | 51464097 | 259 days ago | IN | 0 POL | 0.0023086 | ||||
Approve | 50919493 | 274 days ago | IN | 0 POL | 0.00254055 | ||||
Approve | 50686842 | 280 days ago | IN | 0 POL | 0.00075227 | ||||
Approve | 50686832 | 280 days ago | IN | 0 POL | 0.00075628 | ||||
Approve | 50477787 | 285 days ago | IN | 0 POL | 0.00102576 | ||||
Approve | 50477785 | 285 days ago | IN | 0 POL | 0.00102624 | ||||
Approve | 50477783 | 285 days ago | IN | 0 POL | 0.0010382 | ||||
Approve | 49336376 | 313 days ago | IN | 0 POL | 0.00173962 | ||||
Approve | 49053581 | 321 days ago | IN | 0 POL | 0.00204879 | ||||
Approve | 48863741 | 326 days ago | IN | 0 POL | 0.00179957 | ||||
Approve | 48863723 | 326 days ago | IN | 0 POL | 0.00189199 | ||||
Approve | 48064018 | 346 days ago | IN | 0 POL | 0.00108064 | ||||
Transfer | 45019169 | 423 days ago | IN | 0 POL | 0.00576205 | ||||
Approve | 42703305 | 482 days ago | IN | 0 POL | 0.00382368 | ||||
Transfer | 42175865 | 496 days ago | IN | 0 POL | 0.01129078 | ||||
Approve | 41944952 | 501 days ago | IN | 0 POL | 0.02100982 | ||||
Approve | 41932741 | 502 days ago | IN | 0 POL | 0.01634088 | ||||
Approve | 41640608 | 509 days ago | IN | 0 POL | 0.01088345 | ||||
Approve | 41371289 | 516 days ago | IN | 0 POL | 0.00700231 | ||||
Approve | 40833316 | 530 days ago | IN | 0 POL | 0.0036251 | ||||
Approve | 40717737 | 533 days ago | IN | 0 POL | 0.01105902 | ||||
Approve | 40701807 | 534 days ago | IN | 0 POL | 0.00134377 |
Loading...
Loading
Contract Name:
Go2EToken
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-10-19 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 default 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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); _afterTokenTransfer(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"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 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 Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/Go2EToken.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Go2EToken is ERC20, Ownable { constructor() ERC20("Go2E Token", "GTE") { _mint(msg.sender, 1e9 ether); } function burn(uint amount) external { _burn(msg.sender, amount); } function decimals() public pure override returns (uint8) { return 18; } /** * @dev withdrawERC20Tokens withdraw token back to owner * @param _token address of token to withdraw * @param _recipient address of recipient * @param _amount amount of token to withdraw */ function withdrawERC20Tokens( address _token, address _recipient, uint _amount ) external onlyOwner { IERC20(_token).transfer(_recipient, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawERC20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a81526020016923b79922902a37b5b2b760b11b8152506040518060400160405280600381526020016247544560e81b815250816003908162000062919062000293565b50600462000071828262000293565b5050506200008e62000088620000ac60201b60201c565b620000b0565b620000a6336b033b2e3c9fd0803ce800000062000102565b62000386565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200015d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017191906200035f565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a09084906200035f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021a57607f821691505b6020821081036200023b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ea57600081815260208120601f850160051c810160208610156200026a5750805b601f850160051c820191505b818110156200028b5782815560010162000276565b505050505050565b81516001600160401b03811115620002af57620002af620001ef565b620002c781620002c0845462000205565b8462000241565b602080601f831160018114620002ff5760008415620002e65750858301515b600019600386901b1c1916600185901b1785556200028b565b600085815260208120601f198616915b8281101562000330578886015182559484019460019091019084016200030f565b50858210156200034f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200038157634e487b7160e01b600052601160045260246000fd5b500190565b610cdf80620003966000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063bcdd1e131461021c578063dd62ed3e1461022f578063f2fde38b1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610255565b60405161011a9190610a8e565b60405180910390f35b610136610131366004610aff565b6102e7565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610b29565b6102ff565b6040516012815260200161011a565b610136610188366004610aff565b610323565b6101a061019b366004610b65565b610345565b005b61014a6101b0366004610b7e565b6001600160a01b031660009081526020819052604090205490565b6101a0610352565b6005546040516001600160a01b03909116815260200161011a565b61010d610391565b610136610204366004610aff565b6103a0565b610136610217366004610aff565b61041b565b6101a061022a366004610b29565b610429565b61014a61023d366004610ba0565b6104cc565b6101a0610250366004610b7e565b6104f7565b60606003805461026490610bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610bd3565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b6000336102f581858561058f565b5060019392505050565b60003361030d8582856106b4565b610318858585610728565b506001949350505050565b6000336102f581858561033683836104cc565b6103409190610c23565b61058f565b61034f33826108f6565b50565b6005546001600160a01b031633146103855760405162461bcd60e51b815260040161037c90610c3b565b60405180910390fd5b61038f6000610a3c565b565b60606004805461026490610bd3565b600033816103ae82866104cc565b90508381101561040e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037c565b610318828686840361058f565b6000336102f5818585610728565b6005546001600160a01b031633146104535760405162461bcd60e51b815260040161037c90610c3b565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af11580156104a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c69190610c70565b50505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105215760405162461bcd60e51b815260040161037c90610c3b565b6001600160a01b0381166105865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161037c565b61034f81610a3c565b6001600160a01b0383166105f15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037c565b6001600160a01b0382166106525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106c084846104cc565b905060001981146104c6578181101561071b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037c565b6104c6848484840361058f565b6001600160a01b03831661078c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037c565b6001600160a01b0382166107ee5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037c565b6001600160a01b038316600090815260208190526040902054818110156108665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037c565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061089d908490610c23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108e991815260200190565b60405180910390a36104c6565b6001600160a01b0382166109565760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161037c565b6001600160a01b038216600090815260208190526040902054818110156109ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161037c565b6001600160a01b03831660009081526020819052604081208383039055600280548492906109f9908490610c92565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106a7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610abb57858101830151858201604001528201610a9f565b81811115610acd576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610afa57600080fd5b919050565b60008060408385031215610b1257600080fd5b610b1b83610ae3565b946020939093013593505050565b600080600060608486031215610b3e57600080fd5b610b4784610ae3565b9250610b5560208501610ae3565b9150604084013590509250925092565b600060208284031215610b7757600080fd5b5035919050565b600060208284031215610b9057600080fd5b610b9982610ae3565b9392505050565b60008060408385031215610bb357600080fd5b610bbc83610ae3565b9150610bca60208401610ae3565b90509250929050565b600181811c90821680610be757607f821691505b602082108103610c0757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c3657610c36610c0d565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610c8257600080fd5b81518015158114610b9957600080fd5b600082821015610ca457610ca4610c0d565b50039056fea26469706673582212206d14e07633674ae38944495945ba56f1cfcbcacb50370a442afab5d71427b4fb64736f6c634300080f0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063bcdd1e131461021c578063dd62ed3e1461022f578063f2fde38b1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610255565b60405161011a9190610a8e565b60405180910390f35b610136610131366004610aff565b6102e7565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610b29565b6102ff565b6040516012815260200161011a565b610136610188366004610aff565b610323565b6101a061019b366004610b65565b610345565b005b61014a6101b0366004610b7e565b6001600160a01b031660009081526020819052604090205490565b6101a0610352565b6005546040516001600160a01b03909116815260200161011a565b61010d610391565b610136610204366004610aff565b6103a0565b610136610217366004610aff565b61041b565b6101a061022a366004610b29565b610429565b61014a61023d366004610ba0565b6104cc565b6101a0610250366004610b7e565b6104f7565b60606003805461026490610bd3565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610bd3565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b6000336102f581858561058f565b5060019392505050565b60003361030d8582856106b4565b610318858585610728565b506001949350505050565b6000336102f581858561033683836104cc565b6103409190610c23565b61058f565b61034f33826108f6565b50565b6005546001600160a01b031633146103855760405162461bcd60e51b815260040161037c90610c3b565b60405180910390fd5b61038f6000610a3c565b565b60606004805461026490610bd3565b600033816103ae82866104cc565b90508381101561040e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037c565b610318828686840361058f565b6000336102f5818585610728565b6005546001600160a01b031633146104535760405162461bcd60e51b815260040161037c90610c3b565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af11580156104a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c69190610c70565b50505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105215760405162461bcd60e51b815260040161037c90610c3b565b6001600160a01b0381166105865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161037c565b61034f81610a3c565b6001600160a01b0383166105f15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037c565b6001600160a01b0382166106525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106c084846104cc565b905060001981146104c6578181101561071b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037c565b6104c6848484840361058f565b6001600160a01b03831661078c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037c565b6001600160a01b0382166107ee5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037c565b6001600160a01b038316600090815260208190526040902054818110156108665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037c565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061089d908490610c23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108e991815260200190565b60405180910390a36104c6565b6001600160a01b0382166109565760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161037c565b6001600160a01b038216600090815260208190526040902054818110156109ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161037c565b6001600160a01b03831660009081526020819052604081208383039055600280548492906109f9908490610c92565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106a7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610abb57858101830151858201604001528201610a9f565b81811115610acd576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610afa57600080fd5b919050565b60008060408385031215610b1257600080fd5b610b1b83610ae3565b946020939093013593505050565b600080600060608486031215610b3e57600080fd5b610b4784610ae3565b9250610b5560208501610ae3565b9150604084013590509250925092565b600060208284031215610b7757600080fd5b5035919050565b600060208284031215610b9057600080fd5b610b9982610ae3565b9392505050565b60008060408385031215610bb357600080fd5b610bbc83610ae3565b9150610bca60208401610ae3565b90509250929050565b600181811c90821680610be757607f821691505b602082108103610c0757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c3657610c36610c0d565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610c8257600080fd5b81518015158114610b9957600080fd5b600082821015610ca457610ca4610c0d565b50039056fea26469706673582212206d14e07633674ae38944495945ba56f1cfcbcacb50370a442afab5d71427b4fb64736f6c634300080f0033
Deployed Bytecode Sourcemap
20079:750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11534:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11534:201:0;1053:187:1;10303:108:0;10391:12;;10303:108;;;1391:25:1;;;1379:2;1364:18;10303:108:0;1245:177:1;12315:295:0;;;;;;:::i;:::-;;:::i;20309:85::-;;;20384:2;1902:36:1;;1890:2;1875:18;20309:85:0;1760:184:1;13019:238:0;;;;;;:::i;:::-;;:::i;20221:80::-;;;;;;:::i;:::-;;:::i;:::-;;10474:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10575:18:0;10548:7;10575:18;;;;;;;;;;;;10474:127;2606:103;;;:::i;1955:87::-;2028:6;;1955:87;;-1:-1:-1;;;;;2028:6:0;;;2471:51:1;;2459:2;2444:18;1955:87:0;2325:203:1;9402:104:0;;;:::i;13760:436::-;;;;;;:::i;:::-;;:::i;10807:193::-;;;;;;:::i;:::-;;:::i;20631:195::-;;;;;;:::i;:::-;;:::i;11063:151::-;;;;;;:::i;:::-;;:::i;2864:201::-;;;;;;:::i;:::-;;:::i;9183:100::-;9237:13;9270:5;9263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;:::o;11534:201::-;11617:4;759:10;11673:32;759:10;11689:7;11698:6;11673:8;:32::i;:::-;-1:-1:-1;11723:4:0;;11534:201;-1:-1:-1;;;11534:201:0:o;12315:295::-;12446:4;759:10;12504:38;12520:4;759:10;12535:6;12504:15;:38::i;:::-;12553:27;12563:4;12569:2;12573:6;12553:9;:27::i;:::-;-1:-1:-1;12598:4:0;;12315:295;-1:-1:-1;;;;12315:295:0:o;13019:238::-;13107:4;759:10;13163:64;759:10;13179:7;13216:10;13188:25;759:10;13179:7;13188:9;:25::i;:::-;:38;;;;:::i;:::-;13163:8;:64::i;20221:80::-;20268:25;20274:10;20286:6;20268:5;:25::i;:::-;20221:80;:::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;9402:104::-;9458:13;9491:7;9484:14;;;;;:::i;13760:436::-;13853:4;759:10;13853:4;13936:25;759:10;13953:7;13936:9;:25::i;:::-;13909:52;;14000:15;13980:16;:35;;13972:85;;;;-1:-1:-1;;;13972:85:0;;4011:2:1;13972:85:0;;;3993:21:1;4050:2;4030:18;;;4023:30;4089:34;4069:18;;;4062:62;-1:-1:-1;;;4140:18:1;;;4133:35;4185:19;;13972:85:0;3809:401:1;13972:85:0;14093:60;14102:5;14109:7;14137:15;14118:16;:34;14093:8;:60::i;10807:193::-;10886:4;759:10;10942:28;759:10;10959:2;10963:6;10942:9;:28::i;20631:195::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;20774:44:::1;::::0;-1:-1:-1;;;20774:44:0;;-1:-1:-1;;;;;4407:32:1;;;20774:44:0::1;::::0;::::1;4389:51:1::0;4456:18;;;4449:34;;;20774:23:0;::::1;::::0;::::1;::::0;4362:18:1;;20774:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20631:195:::0;;;:::o;11063:151::-;-1:-1:-1;;;;;11179:18:0;;;11152:7;11179:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11063:151::o;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;4978:2:1;2945:73:0::1;::::0;::::1;4960:21:1::0;5017:2;4997:18;;;4990:30;5056:34;5036:18;;;5029:62;-1:-1:-1;;;5107:18:1;;;5100:36;5153:19;;2945:73:0::1;4776:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;17394:380::-:0;-1:-1:-1;;;;;17530:19:0;;17522:68;;;;-1:-1:-1;;;17522:68:0;;5385:2:1;17522:68:0;;;5367:21:1;5424:2;5404:18;;;5397:30;5463:34;5443:18;;;5436:62;-1:-1:-1;;;5514:18:1;;;5507:34;5558:19;;17522:68:0;5183:400:1;17522:68:0;-1:-1:-1;;;;;17609:21:0;;17601:68;;;;-1:-1:-1;;;17601:68:0;;5790:2:1;17601:68:0;;;5772:21:1;5829:2;5809:18;;;5802:30;5868:34;5848:18;;;5841:62;-1:-1:-1;;;5919:18:1;;;5912:32;5961:19;;17601:68:0;5588:398:1;17601:68:0;-1:-1:-1;;;;;17682:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17734:32;;1391:25:1;;;17734:32:0;;1364:18:1;17734:32:0;;;;;;;;17394:380;;;:::o;18065:453::-;18200:24;18227:25;18237:5;18244:7;18227:9;:25::i;:::-;18200:52;;-1:-1:-1;;18267:16:0;:37;18263:248;;18349:6;18329:16;:26;;18321:68;;;;-1:-1:-1;;;18321:68:0;;6193:2:1;18321:68:0;;;6175:21:1;6232:2;6212:18;;;6205:30;6271:31;6251:18;;;6244:59;6320:18;;18321:68:0;5991:353:1;18321:68:0;18433:51;18442:5;18449:7;18477:6;18458:16;:25;18433:8;:51::i;14675:671::-;-1:-1:-1;;;;;14806:18:0;;14798:68;;;;-1:-1:-1;;;14798:68:0;;6551:2:1;14798:68:0;;;6533:21:1;6590:2;6570:18;;;6563:30;6629:34;6609:18;;;6602:62;-1:-1:-1;;;6680:18:1;;;6673:35;6725:19;;14798:68:0;6349:401:1;14798:68:0;-1:-1:-1;;;;;14885:16:0;;14877:64;;;;-1:-1:-1;;;14877:64:0;;6957:2:1;14877:64:0;;;6939:21:1;6996:2;6976:18;;;6969:30;7035:34;7015:18;;;7008:62;-1:-1:-1;;;7086:18:1;;;7079:33;7129:19;;14877:64:0;6755:399:1;14877:64:0;-1:-1:-1;;;;;15027:15:0;;15005:19;15027:15;;;;;;;;;;;15061:21;;;;15053:72;;;;-1:-1:-1;;;15053:72:0;;7361:2:1;15053:72:0;;;7343:21:1;7400:2;7380:18;;;7373:30;7439:34;7419:18;;;7412:62;-1:-1:-1;;;7490:18:1;;;7483:36;7536:19;;15053:72:0;7159:402:1;15053:72:0;-1:-1:-1;;;;;15161:15:0;;;:9;:15;;;;;;;;;;;15179:20;;;15161:38;;15221:13;;;;;;;;:23;;15193:6;;15161:9;15221:23;;15193:6;;15221:23;:::i;:::-;;;;;;;;15277:2;-1:-1:-1;;;;;15262:26:0;15271:4;-1:-1:-1;;;;;15262:26:0;;15281:6;15262:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;15262:26:0;;;;;;;;15301:37;16365:591;;-1:-1:-1;;;;;16449:21:0;;16441:67;;;;-1:-1:-1;;;16441:67:0;;7768:2:1;16441:67:0;;;7750:21:1;7807:2;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;-1:-1:-1;;;7897:18:1;;;7890:31;7938:19;;16441:67:0;7566:397:1;16441:67:0;-1:-1:-1;;;;;16608:18:0;;16583:22;16608:18;;;;;;;;;;;16645:24;;;;16637:71;;;;-1:-1:-1;;;16637:71:0;;8170:2:1;16637:71:0;;;8152:21:1;8209:2;8189:18;;;8182:30;8248:34;8228:18;;;8221:62;-1:-1:-1;;;8299:18:1;;;8292:32;8341:19;;16637:71:0;7968:398:1;16637:71:0;-1:-1:-1;;;;;16744:18:0;;:9;:18;;;;;;;;;;16765:23;;;16744:44;;16810:12;:22;;16782:6;;16744:9;16810:22;;16782:6;;16810:22;:::i;:::-;;;;-1:-1:-1;;16850:37:0;;1391:25:1;;;16876:1:0;;-1:-1:-1;;;;;16850:37:0;;;;;1379:2:1;1364:18;16850:37:0;1245:177:1;3225:191:0;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:128;3355:3;3386:1;3382:6;3379:1;3376:13;3373:39;;;3392:18;;:::i;:::-;-1:-1:-1;3428:9:1;;3315:128::o;3448:356::-;3650:2;3632:21;;;3669:18;;;3662:30;3728:34;3723:2;3708:18;;3701:62;3795:2;3780:18;;3448:356::o;4494:277::-;4561:6;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4662:9;4656:16;4715:5;4708:13;4701:21;4694:5;4691:32;4681:60;;4737:1;4734;4727:12;8371:125;8411:4;8439:1;8436;8433:8;8430:34;;;8444:18;;:::i;:::-;-1:-1:-1;8481:9:1;;8371:125::o
Swarm Source
ipfs://6d14e07633674ae38944495945ba56f1cfcbcacb50370a442afab5d71427b4fb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $1 | 29.67 | $29.67 |
[ 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.