Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
20,000,000 AGC
Holders
8
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Agrocoin
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-19 */ // SPDX-License-Identifier: MIT 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; } } /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } /** * @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); } /** * @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 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; uint256 private _maxSupply = 50000000 * 10**decimals(); 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 2; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-maxSupply}. */ function maxSupply() public view virtual returns (uint256) { return _maxSupply; } /** * @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 `from` to `to`. * * 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"); require(_totalSupply + amount <= _maxSupply); _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 {} } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } contract Agrocoin is ERC20, ERC20Burnable, Ownable { address private initialOwner = 0x0e3d9b756f9698e02bE9fBcB5183E703b92C7f0c; constructor() ERC20("Agrocoin", "AGC") { _mint(initialOwner, 20000000 * 10**decimals()); _transferOwnership(initialOwner); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } /** * @notice Withdraws stuck BNB from the contract */ function withdrawBNB(uint256 amount) public onlyOwner { if (amount == 0) payable(owner()).transfer(address(this).balance); else payable(owner()).transfer(amount); } /** * @notice Withdraws tokens that are stuck in the contract */ function withdrawToken(address token) public onlyOwner { IERC20(address(token)).transfer( msg.sender, IERC20(token).balanceOf(address(this)) ); } }
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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"uint256","name":"amount","type":"uint256"}],"name":"withdrawBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620000126002600a62000390565b62000022906302faf0806200045e565b600355600780546001600160a01b031916730e3d9b756f9698e02be9fbcb5183e703b92c7f0c1790553480156200005857600080fd5b50604080518082018252600881526720b3b937b1b7b4b760c11b60208083019182528351808501909452600384526241474360e81b908401528151919291620000a49160049162000286565b508051620000ba90600590602084019062000286565b505050620000d7620000d16200012960201b60201c565b6200012d565b6007546200010c906001600160a01b0316620000f66002600a62000390565b62000106906301312d006200045e565b6200017f565b60075462000123906001600160a01b03166200012d565b620004d3565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001da5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b60035481600254620001ed91906200032c565b1115620001f957600080fd5b80600260008282546200020d91906200032c565b90915550506001600160a01b038216600090815260208190526040812080548392906200023c9084906200032c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002949062000480565b90600052602060002090601f016020900481019282620002b8576000855562000303565b82601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b5b8082111562000311576000815560010162000316565b60008219821115620003425762000342620004bd565b500190565b600181815b80851115620003885781600019048211156200036c576200036c620004bd565b808516156200037a57918102915b93841c93908002906200034c565b509250929050565b6000620003a160ff841683620003a8565b9392505050565b600082620003b95750600162000458565b81620003c85750600062000458565b8160018114620003e15760028114620003ec576200040c565b600191505062000458565b60ff841115620004005762000400620004bd565b50506001821b62000458565b5060208310610133831016604e8410600b841016171562000431575081810a62000458565b6200043d838362000347565b8060001904821115620004545762000454620004bd565b0290505b92915050565b60008160001904831182151516156200047b576200047b620004bd565b500290565b600181811c908216806200049557607f821691505b60208210811415620004b757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610f5380620004e36000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d71461026e578063a9059cbb14610281578063d5abeb0114610294578063dd62ed3e1461029c578063f2fde38b146102af57600080fd5b8063715018a61461021d57806379cc67901461022557806389476069146102385780638da5cb5b1461024b57806395d89b411461026657600080fd5b8063313ce567116100f4578063313ce567146101ac57806339509351146101bb57806340c10f19146101ce57806342966c68146101e157806370a08231146101f457600080fd5b806306fdde0314610131578063095ea7b31461014f578063127f4b2e1461017257806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102c2565b6040516101469190610e48565b60405180910390f35b61016261015d366004610dca565b610354565b6040519015158152602001610146565b610185610180366004610e16565b61036c565b005b6002545b604051908152602001610146565b6101626101a7366004610d8e565b6103f3565b60405160028152602001610146565b6101626101c9366004610dca565b610417565b6101856101dc366004610dca565b610439565b6101856101ef366004610e16565b61044b565b61018b610202366004610d39565b6001600160a01b031660009081526020819052604090205490565b610185610455565b610185610233366004610dca565b610469565b610185610246366004610d39565b61047e565b6006546040516001600160a01b039091168152602001610146565b610139610585565b61016261027c366004610dca565b610594565b61016261028f366004610dca565b610614565b60035461018b565b61018b6102aa366004610d5b565b610622565b6101856102bd366004610d39565b61064d565b6060600480546102d190610ecc565b80601f01602080910402602001604051908101604052809291908181526020018280546102fd90610ecc565b801561034a5780601f1061031f5761010080835404028352916020019161034a565b820191906000526020600020905b81548152906001019060200180831161032d57829003601f168201915b5050505050905090565b6000336103628185856106c3565b5060019392505050565b6103746107e8565b806103b6576006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156103b2573d6000803e3d6000fd5b5050565b6006546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156103b2573d6000803e3d6000fd5b50565b600033610401858285610842565b61040c8585856108bc565b506001949350505050565b60003361036281858561042a8383610622565b6104349190610e9d565b6106c3565b6104416107e8565b6103b28282610a8a565b6103f03382610b85565b61045d6107e8565b6104676000610ccb565b565b610474823383610842565b6103b28282610b85565b6104866107e8565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b1580156104cf57600080fd5b505afa1580156104e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105079190610e2f565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561054d57600080fd5b505af1158015610561573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b29190610df4565b6060600580546102d190610ecc565b600033816105a28286610622565b9050838110156106075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61040c82868684036106c3565b6000336103628185856108bc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106556107e8565b6001600160a01b0381166106ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b6103f081610ccb565b6001600160a01b0383166107255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b6001600160a01b0382166107865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105fe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6006546001600160a01b031633146104675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fe565b600061084e8484610622565b905060001981146108b657818110156108a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105fe565b6108b684848484036106c3565b50505050565b6001600160a01b0383166109205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105fe565b6001600160a01b0382166109825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105fe565b6001600160a01b038316600090815260208190526040902054818110156109fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105fe565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a31908490610e9d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7d91815260200190565b60405180910390a36108b6565b6001600160a01b038216610ae05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105fe565b60035481600254610af19190610e9d565b1115610afc57600080fd5b8060026000828254610b0e9190610e9d565b90915550506001600160a01b03821660009081526020819052604081208054839290610b3b908490610e9d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610be55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105fe565b6001600160a01b03821660009081526020819052604090205481811015610c595760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105fe565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c88908490610eb5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107db565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610d3457600080fd5b919050565b600060208284031215610d4b57600080fd5b610d5482610d1d565b9392505050565b60008060408385031215610d6e57600080fd5b610d7783610d1d565b9150610d8560208401610d1d565b90509250929050565b600080600060608486031215610da357600080fd5b610dac84610d1d565b9250610dba60208501610d1d565b9150604084013590509250925092565b60008060408385031215610ddd57600080fd5b610de683610d1d565b946020939093013593505050565b600060208284031215610e0657600080fd5b81518015158114610d5457600080fd5b600060208284031215610e2857600080fd5b5035919050565b600060208284031215610e4157600080fd5b5051919050565b600060208083528351808285015260005b81811015610e7557858101830151858201604001528201610e59565b81811115610e87576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610eb057610eb0610f07565b500190565b600082821015610ec757610ec7610f07565b500390565b600181811c90821680610ee057607f821691505b60208210811415610f0157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e0cfac0bf0874d8e7ec9d7e574132f8dadff5d33cccd96058a5cc19c56eacc8664736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d71461026e578063a9059cbb14610281578063d5abeb0114610294578063dd62ed3e1461029c578063f2fde38b146102af57600080fd5b8063715018a61461021d57806379cc67901461022557806389476069146102385780638da5cb5b1461024b57806395d89b411461026657600080fd5b8063313ce567116100f4578063313ce567146101ac57806339509351146101bb57806340c10f19146101ce57806342966c68146101e157806370a08231146101f457600080fd5b806306fdde0314610131578063095ea7b31461014f578063127f4b2e1461017257806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102c2565b6040516101469190610e48565b60405180910390f35b61016261015d366004610dca565b610354565b6040519015158152602001610146565b610185610180366004610e16565b61036c565b005b6002545b604051908152602001610146565b6101626101a7366004610d8e565b6103f3565b60405160028152602001610146565b6101626101c9366004610dca565b610417565b6101856101dc366004610dca565b610439565b6101856101ef366004610e16565b61044b565b61018b610202366004610d39565b6001600160a01b031660009081526020819052604090205490565b610185610455565b610185610233366004610dca565b610469565b610185610246366004610d39565b61047e565b6006546040516001600160a01b039091168152602001610146565b610139610585565b61016261027c366004610dca565b610594565b61016261028f366004610dca565b610614565b60035461018b565b61018b6102aa366004610d5b565b610622565b6101856102bd366004610d39565b61064d565b6060600480546102d190610ecc565b80601f01602080910402602001604051908101604052809291908181526020018280546102fd90610ecc565b801561034a5780601f1061031f5761010080835404028352916020019161034a565b820191906000526020600020905b81548152906001019060200180831161032d57829003601f168201915b5050505050905090565b6000336103628185856106c3565b5060019392505050565b6103746107e8565b806103b6576006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156103b2573d6000803e3d6000fd5b5050565b6006546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156103b2573d6000803e3d6000fd5b50565b600033610401858285610842565b61040c8585856108bc565b506001949350505050565b60003361036281858561042a8383610622565b6104349190610e9d565b6106c3565b6104416107e8565b6103b28282610a8a565b6103f03382610b85565b61045d6107e8565b6104676000610ccb565b565b610474823383610842565b6103b28282610b85565b6104866107e8565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b1580156104cf57600080fd5b505afa1580156104e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105079190610e2f565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561054d57600080fd5b505af1158015610561573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b29190610df4565b6060600580546102d190610ecc565b600033816105a28286610622565b9050838110156106075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61040c82868684036106c3565b6000336103628185856108bc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106556107e8565b6001600160a01b0381166106ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b6103f081610ccb565b6001600160a01b0383166107255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b6001600160a01b0382166107865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105fe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6006546001600160a01b031633146104675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fe565b600061084e8484610622565b905060001981146108b657818110156108a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105fe565b6108b684848484036106c3565b50505050565b6001600160a01b0383166109205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105fe565b6001600160a01b0382166109825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105fe565b6001600160a01b038316600090815260208190526040902054818110156109fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105fe565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a31908490610e9d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7d91815260200190565b60405180910390a36108b6565b6001600160a01b038216610ae05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105fe565b60035481600254610af19190610e9d565b1115610afc57600080fd5b8060026000828254610b0e9190610e9d565b90915550506001600160a01b03821660009081526020819052604081208054839290610b3b908490610e9d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610be55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105fe565b6001600160a01b03821660009081526020819052604090205481811015610c595760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105fe565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c88908490610eb5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107db565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610d3457600080fd5b919050565b600060208284031215610d4b57600080fd5b610d5482610d1d565b9392505050565b60008060408385031215610d6e57600080fd5b610d7783610d1d565b9150610d8560208401610d1d565b90509250929050565b600080600060608486031215610da357600080fd5b610dac84610d1d565b9250610dba60208501610d1d565b9150604084013590509250925092565b60008060408385031215610ddd57600080fd5b610de683610d1d565b946020939093013593505050565b600060208284031215610e0657600080fd5b81518015158114610d5457600080fd5b600060208284031215610e2857600080fd5b5035919050565b600060208284031215610e4157600080fd5b5051919050565b600060208083528351808285015260005b81811015610e7557858101830151858201604001528201610e59565b81811115610e87576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610eb057610eb0610f07565b500190565b600082821015610ec757610ec7610f07565b500390565b600181811c90821680610ee057607f821691505b60208210811415610f0157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e0cfac0bf0874d8e7ec9d7e574132f8dadff5d33cccd96058a5cc19c56eacc8664736f6c63430008070033
Deployed Bytecode Sourcemap
20617:946:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8659:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11167:201;;;;;;:::i;:::-;;:::i;:::-;;;2548:14:1;;2541:22;2523:41;;2511:2;2496:18;11167:201:0;2383:187:1;21089::0;;;;;;:::i;:::-;;:::i;:::-;;9778:108;9866:12;;9778:108;;;8045:25:1;;;8033:2;8018:18;9778:108:0;7899:177:1;11948:295:0;;;;;;:::i;:::-;;:::i;9621:92::-;;;9704:1;8223:36:1;;8211:2;8196:18;9621:92:0;8081:184:1;12652:238:0;;;;;;:::i;:::-;;:::i;20914:95::-;;;;;;:::i;:::-;;:::i;20036:91::-;;;;;;:::i;:::-;;:::i;10107:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10208:18:0;10181:7;10208:18;;;;;;;;;;;;10107:127;2542:103;;;:::i;20446:164::-;;;;;;:::i;:::-;;:::i;21366:194::-;;;;;;:::i;:::-;;:::i;1894:87::-;1967:6;;1894:87;;-1:-1:-1;;;;;1967:6:0;;;2042:51:1;;2030:2;2015:18;1894:87:0;1896:203:1;8878:104:0;;;:::i;13393:436::-;;;;;;:::i;:::-;;:::i;10440:193::-;;;;;;:::i;:::-;;:::i;9949:95::-;10026:10;;9949:95;;10696:151;;;;;;:::i;:::-;;:::i;2800:201::-;;;;;;:::i;:::-;;:::i;8659:100::-;8713:13;8746:5;8739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8659:100;:::o;11167:201::-;11250:4;683:10;11306:32;683:10;11322:7;11331:6;11306:8;:32::i;:::-;-1:-1:-1;11356:4:0;;11167:201;-1:-1:-1;;;11167:201:0:o;21089:187::-;1780:13;:11;:13::i;:::-;21158:11;21154:114:::1;;1967:6:::0;;21171:48:::1;::::0;-1:-1:-1;;;;;1967:6:0;;;;21197:21:::1;21171:48:::0;::::1;;;::::0;::::1;::::0;;;21197:21;1967:6;21171:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;21089:187:::0;:::o;21154:114::-:1;1967:6:::0;;21235:33:::1;::::0;-1:-1:-1;;;;;1967:6:0;;;;21235:33;::::1;;;::::0;21261:6;;21235:33:::1;::::0;;;21261:6;1967;21235:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;21154:114;21089:187:::0;:::o;11948:295::-;12079:4;683:10;12137:38;12153:4;683:10;12168:6;12137:15;:38::i;:::-;12186:27;12196:4;12202:2;12206:6;12186:9;:27::i;:::-;-1:-1:-1;12231:4:0;;11948:295;-1:-1:-1;;;;11948:295:0:o;12652:238::-;12740:4;683:10;12796:64;683:10;12812:7;12849:10;12821:25;683:10;12812:7;12821:9;:25::i;:::-;:38;;;;:::i;:::-;12796:8;:64::i;20914:95::-;1780:13;:11;:13::i;:::-;20984:17:::1;20990:2;20994:6;20984:5;:17::i;20036:91::-:0;20092:27;683:10;20112:6;20092:5;:27::i;2542:103::-;1780:13;:11;:13::i;:::-;2607:30:::1;2634:1;2607:18;:30::i;:::-;2542:103::o:0;20446:164::-;20523:46;20539:7;683:10;20562:6;20523:15;:46::i;:::-;20580:22;20586:7;20595:6;20580:5;:22::i;21366:194::-;1780:13;:11;:13::i;:::-;21503:38:::1;::::0;-1:-1:-1;;;21503:38:0;;21535:4:::1;21503:38;::::0;::::1;2042:51:1::0;-1:-1:-1;;;;;21432:31:0;::::1;::::0;::::1;::::0;21478:10:::1;::::0;21432:31;;21503:23:::1;::::0;2015:18:1;;21503:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21432:120;::::0;-1:-1:-1;;;;;;21432:120:0::1;::::0;;;;;;-1:-1:-1;;;;;2296:32:1;;;21432:120:0::1;::::0;::::1;2278:51:1::0;2345:18;;;2338:34;2251:18;;21432:120:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;8878:104::-:0;8934:13;8967:7;8960:14;;;;;:::i;13393:436::-;13486:4;683:10;13486:4;13569:25;683:10;13586:7;13569:9;:25::i;:::-;13542:52;;13633:15;13613:16;:35;;13605:85;;;;-1:-1:-1;;;13605:85:0;;7335:2:1;13605:85:0;;;7317:21:1;7374:2;7354:18;;;7347:30;7413:34;7393:18;;;7386:62;-1:-1:-1;;;7464:18:1;;;7457:35;7509:19;;13605:85:0;;;;;;;;;13726:60;13735:5;13742:7;13770:15;13751:16;:34;13726:8;:60::i;10440:193::-;10519:4;683:10;10575:28;683:10;10592:2;10596:6;10575:9;:28::i;10696:151::-;-1:-1:-1;;;;;10812:18:0;;;10785:7;10812:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10696:151::o;2800:201::-;1780:13;:11;:13::i;:::-;-1:-1:-1;;;;;2889:22:0;::::1;2881:73;;;::::0;-1:-1:-1;;;2881:73:0;;4186:2:1;2881:73:0::1;::::0;::::1;4168:21:1::0;4225:2;4205:18;;;4198:30;4264:34;4244:18;;;4237:62;-1:-1:-1;;;4315:18:1;;;4308:36;4361:19;;2881:73:0::1;3984:402:1::0;2881:73:0::1;2965:28;2984:8;2965:18;:28::i;17073:380::-:0;-1:-1:-1;;;;;17209:19:0;;17201:68;;;;-1:-1:-1;;;17201:68:0;;6930:2:1;17201:68:0;;;6912:21:1;6969:2;6949:18;;;6942:30;7008:34;6988:18;;;6981:62;-1:-1:-1;;;7059:18:1;;;7052:34;7103:19;;17201:68:0;6728:400:1;17201:68:0;-1:-1:-1;;;;;17288:21:0;;17280:68;;;;-1:-1:-1;;;17280:68:0;;4593:2:1;17280:68:0;;;4575:21:1;4632:2;4612:18;;;4605:30;4671:34;4651:18;;;4644:62;-1:-1:-1;;;4722:18:1;;;4715:32;4764:19;;17280:68:0;4391:398:1;17280:68:0;-1:-1:-1;;;;;17361:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17413:32;;8045:25:1;;;17413:32:0;;8018:18:1;17413:32:0;;;;;;;;17073:380;;;:::o;2059:132::-;1967:6;;-1:-1:-1;;;;;1967:6:0;683:10;2123:23;2115:68;;;;-1:-1:-1;;;2115:68:0;;5761:2:1;2115:68:0;;;5743:21:1;;;5780:18;;;5773:30;5839:34;5819:18;;;5812:62;5891:18;;2115:68:0;5559:356:1;17744:453:0;17879:24;17906:25;17916:5;17923:7;17906:9;:25::i;:::-;17879:52;;-1:-1:-1;;17946:16:0;:37;17942:248;;18028:6;18008:16;:26;;18000:68;;;;-1:-1:-1;;;18000:68:0;;4996:2:1;18000:68:0;;;4978:21:1;5035:2;5015:18;;;5008:30;5074:31;5054:18;;;5047:59;5123:18;;18000:68:0;4794:353:1;18000:68:0;18112:51;18121:5;18128:7;18156:6;18137:16;:25;18112:8;:51::i;:::-;17868:329;17744:453;;;:::o;14299:671::-;-1:-1:-1;;;;;14430:18:0;;14422:68;;;;-1:-1:-1;;;14422:68:0;;6524:2:1;14422:68:0;;;6506:21:1;6563:2;6543:18;;;6536:30;6602:34;6582:18;;;6575:62;-1:-1:-1;;;6653:18:1;;;6646:35;6698:19;;14422:68:0;6322:401:1;14422:68:0;-1:-1:-1;;;;;14509:16:0;;14501:64;;;;-1:-1:-1;;;14501:64:0;;3379:2:1;14501:64:0;;;3361:21:1;3418:2;3398:18;;;3391:30;3457:34;3437:18;;;3430:62;-1:-1:-1;;;3508:18:1;;;3501:33;3551:19;;14501:64:0;3177:399:1;14501:64:0;-1:-1:-1;;;;;14651:15:0;;14629:19;14651:15;;;;;;;;;;;14685:21;;;;14677:72;;;;-1:-1:-1;;;14677:72:0;;5354:2:1;14677:72:0;;;5336:21:1;5393:2;5373:18;;;5366:30;5432:34;5412:18;;;5405:62;-1:-1:-1;;;5483:18:1;;;5476:36;5529:19;;14677:72:0;5152:402:1;14677:72:0;-1:-1:-1;;;;;14785:15:0;;;:9;:15;;;;;;;;;;;14803:20;;;14785:38;;14845:13;;;;;;;;:23;;14817:6;;14785:9;14845:23;;14817:6;;14845:23;:::i;:::-;;;;;;;;14901:2;-1:-1:-1;;;;;14886:26:0;14895:4;-1:-1:-1;;;;;14886:26:0;;14905:6;14886:26;;;;8045:25:1;;8033:2;8018:18;;7899:177;14886:26:0;;;;;;;;14925:37;16044:591;15257:454;-1:-1:-1;;;;;15341:21:0;;15333:65;;;;-1:-1:-1;;;15333:65:0;;7741:2:1;15333:65:0;;;7723:21:1;7780:2;7760:18;;;7753:30;7819:33;7799:18;;;7792:61;7870:18;;15333:65:0;7539:355:1;15333:65:0;15442:10;;15432:6;15417:12;;:21;;;;:::i;:::-;:35;;15409:44;;;;;;15544:6;15528:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15561:18:0;;:9;:18;;;;;;;;;;:28;;15583:6;;15561:9;:28;;15583:6;;15561:28;:::i;:::-;;;;-1:-1:-1;;15605:37:0;;8045:25:1;;;-1:-1:-1;;;;;15605:37:0;;;15622:1;;15605:37;;8033:2:1;8018:18;15605:37:0;;;;;;;21171:48:::1;21089:187:::0;:::o;16044:591::-;-1:-1:-1;;;;;16128:21:0;;16120:67;;;;-1:-1:-1;;;16120:67:0;;6122:2:1;16120:67:0;;;6104:21:1;6161:2;6141:18;;;6134:30;6200:34;6180:18;;;6173:62;-1:-1:-1;;;6251:18:1;;;6244:31;6292:19;;16120:67:0;5920:397:1;16120:67:0;-1:-1:-1;;;;;16287:18:0;;16262:22;16287:18;;;;;;;;;;;16324:24;;;;16316:71;;;;-1:-1:-1;;;16316:71:0;;3783:2:1;16316:71:0;;;3765:21:1;3822:2;3802:18;;;3795:30;3861:34;3841:18;;;3834:62;-1:-1:-1;;;3912:18:1;;;3905:32;3954:19;;16316:71:0;3581:398:1;16316:71:0;-1:-1:-1;;;;;16423:18:0;;:9;:18;;;;;;;;;;16444:23;;;16423:44;;16489:12;:22;;16461:6;;16423:9;16489:22;;16461:6;;16489:22;:::i;:::-;;;;-1:-1:-1;;16529:37:0;;8045:25:1;;;16555:1:0;;-1:-1:-1;;;;;16529:37:0;;;;;8033:2:1;8018:18;16529:37:0;7899:177:1;3161:191:0;3254:6;;;-1:-1:-1;;;;;3271:17:0;;;-1:-1:-1;;;;;;3271:17:0;;;;;;;3304:40;;3254:6;;;3271:17;3254:6;;3304:40;;3235:16;;3304:40;3224:128;3161:191;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:277::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:52;;;1376:1;1373;1366:12;1328:52;1408:9;1402:16;1461:5;1454:13;1447:21;1440:5;1437:32;1427:60;;1483:1;1480;1473:12;1522:180;1581:6;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;-1:-1:-1;1673:23:1;;1522:180;-1:-1:-1;1522:180:1:o;1707:184::-;1777:6;1830:2;1818:9;1809:7;1805:23;1801:32;1798:52;;;1846:1;1843;1836:12;1798:52;-1:-1:-1;1869:16:1;;1707:184;-1:-1:-1;1707:184:1:o;2575:597::-;2687:4;2716:2;2745;2734:9;2727:21;2777:6;2771:13;2820:6;2815:2;2804:9;2800:18;2793:34;2845:1;2855:140;2869:6;2866:1;2863:13;2855:140;;;2964:14;;;2960:23;;2954:30;2930:17;;;2949:2;2926:26;2919:66;2884:10;;2855:140;;;3013:6;3010:1;3007:13;3004:91;;;3083:1;3078:2;3069:6;3058:9;3054:22;3050:31;3043:42;3004:91;-1:-1:-1;3156:2:1;3135:15;-1:-1:-1;;3131:29:1;3116:45;;;;3163:2;3112:54;;2575:597;-1:-1:-1;;;2575:597:1:o;8270:128::-;8310:3;8341:1;8337:6;8334:1;8331:13;8328:39;;;8347:18;;:::i;:::-;-1:-1:-1;8383:9:1;;8270:128::o;8403:125::-;8443:4;8471:1;8468;8465:8;8462:34;;;8476:18;;:::i;:::-;-1:-1:-1;8513:9:1;;8403:125::o;8533:380::-;8612:1;8608:12;;;;8655;;;8676:61;;8730:4;8722:6;8718:17;8708:27;;8676:61;8783:2;8775:6;8772:14;8752:18;8749:38;8746:161;;;8829:10;8824:3;8820:20;8817:1;8810:31;8864:4;8861:1;8854:15;8892:4;8889:1;8882:15;8746:161;;8533:380;;;:::o;8918:127::-;8979:10;8974:3;8970:20;8967:1;8960:31;9010:4;9007:1;9000:15;9034:4;9031:1;9024:15
Swarm Source
ipfs://e0cfac0bf0874d8e7ec9d7e574132f8dadff5d33cccd96058a5cc19c56eacc86
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.