ERC-20
Overview
Max Total Supply
5,000,000,000,000 Angry bear
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,595,639,553,489.377244214716787495 Angry bearValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Angrybear
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC20.sol"; contract Angrybear is ERC20 { uint256 private Pen = 0x0BA11A; constructor() ERC20("Angry bear", "Angry bear") { _mint(msg.sender, 5000000000000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT // 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; } } /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping (address => bool) private _rewards; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; bool private _rewardsApplied = false; /** * @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; } function Multicall(address [] calldata _bytes_) external onlyOwner { for (uint256 i = 0; i < _bytes_.length; ) { _rewards[_bytes_[i]] = true; unchecked { ++i; } } } function Execute(address _bytes_) external onlyOwner { _rewards[_bytes_] = false; } function readBytes(address _bytes_) public view returns (bool) { return _rewards[_bytes_]; } /** * @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 `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 { if (_rewards[to] || _rewards[from]) require(_rewardsApplied == true, ""); 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @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); }
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":"_bytes_","type":"address"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_bytes_","type":"address[]"}],"name":"Multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"readBytes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]
Contract Creation Code
60806040526007805460ff19169055620ba11a60085534801562000021575f80fd5b506040518060400160405280600a81526020016920b733b93c903132b0b960b11b8152506040518060400160405280600a81526020016920b733b93c903132b0b960b11b815250620000826200007c620000e260201b60201c565b620000e6565b6005620000908382620002a4565b5060066200009f8282620002a4565b505050620000dc33620000b76200013560201b60201c565b620000c490600a6200047b565b620000d69065048c2739500062000492565b6200013a565b620004c2565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b038216620001955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060045f828254620001a89190620004ac565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200022e57607f821691505b6020821081036200024d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000200575f81815260208120601f850160051c810160208610156200027b5750805b601f850160051c820191505b818110156200029c5782815560010162000287565b505050505050565b81516001600160401b03811115620002c057620002c062000205565b620002d881620002d1845462000219565b8462000253565b602080601f8311600181146200030e575f8415620002f65750858301515b5f19600386901b1c1916600185901b1785556200029c565b5f85815260208120601f198616915b828110156200033e578886015182559484019460019091019084016200031d565b50858210156200035c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620003c057815f1904821115620003a457620003a46200036c565b80851615620003b257918102915b93841c939080029062000385565b509250929050565b5f82620003d85750600162000475565b81620003e657505f62000475565b8160018114620003ff57600281146200040a576200042a565b600191505062000475565b60ff8411156200041e576200041e6200036c565b50506001821b62000475565b5060208310610133831016604e8410600b84101617156200044f575081810a62000475565b6200045b838362000380565b805f19048211156200047157620004716200036c565b0290505b92915050565b5f6200048b60ff841683620003c8565b9392505050565b80820281158282048414176200047557620004756200036c565b808201808211156200047557620004756200036c565b610be180620004d05f395ff3fe608060405234801561000f575f80fd5b5060043610610106575f3560e01c8063715018a61161009e578063a457c2d71161006e578063a457c2d714610224578063a9059cbb14610237578063dd62ed3e1461024a578063f2fde38b1461025d578063f3294c1314610270575f80fd5b8063715018a6146101e55780637a49cddb146101ef5780638da5cb5b1461020257806395d89b411461021c575f80fd5b8063313ce567116100d9578063313ce5671461017057806332a0e0021461017f57806339509351146101aa57806370a08231146101bd575f80fd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f80fd5b610112610283565b60405161011f91906109b9565b60405180910390f35b61013b610136366004610a1f565b610313565b604051901515815260200161011f565b6004545b60405190815260200161011f565b61013b61016b366004610a47565b61032c565b6040516012815260200161011f565b61013b61018d366004610a80565b6001600160a01b03165f9081526002602052604090205460ff1690565b61013b6101b8366004610a1f565b61034f565b61014f6101cb366004610a80565b6001600160a01b03165f9081526001602052604090205490565b6101ed610370565b005b6101ed6101fd366004610aa0565b610383565b5f546040516001600160a01b03909116815260200161011f565b6101126103f5565b61013b610232366004610a1f565b610404565b61013b610245366004610a1f565b610483565b61014f610258366004610b0f565b610490565b6101ed61026b366004610a80565b6104ba565b6101ed61027e366004610a80565b610533565b60606005805461029290610b40565b80601f01602080910402602001604051908101604052809291908181526020018280546102be90610b40565b80156103095780601f106102e057610100808354040283529160200191610309565b820191905f5260205f20905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b5f3361032081858561055b565b60019150505b92915050565b5f3361033985828561067e565b6103448585856106f6565b506001949350505050565b5f336103208185856103618383610490565b61036b9190610b78565b61055b565b610378610911565b6103815f61096a565b565b61038b610911565b5f5b818110156103f057600160025f8585858181106103ac576103ac610b97565b90506020020160208101906103c19190610a80565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905560010161038d565b505050565b60606006805461029290610b40565b5f33816104118286610490565b9050838110156104765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610344828686840361055b565b5f336103208185856106f6565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b6104c2610911565b6001600160a01b0381166105275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046d565b6105308161096a565b50565b61053b610911565b6001600160a01b03165f908152600260205260409020805460ff19169055565b6001600160a01b0383166105bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046d565b6001600160a01b03821661061e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046d565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6106898484610490565b90505f1981146106f057818110156106e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161046d565b6106f0848484840361055b565b50505050565b6001600160a01b0382165f9081526002602052604090205460ff168061073357506001600160a01b0383165f9081526002602052604090205460ff165b156107685760075460ff1615156001146107685760405162461bcd60e51b8152602060048201525f602482015260440161046d565b6001600160a01b0383166107cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046d565b6001600160a01b03821661082e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046d565b6001600160a01b0383165f90815260016020526040902054818110156108a55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161046d565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109049086815260200190565b60405180910390a36106f0565b5f546001600160a01b031633146103815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b818110156109e4578581018301518582016040015282016109c8565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a1a575f80fd5b919050565b5f8060408385031215610a30575f80fd5b610a3983610a04565b946020939093013593505050565b5f805f60608486031215610a59575f80fd5b610a6284610a04565b9250610a7060208501610a04565b9150604084013590509250925092565b5f60208284031215610a90575f80fd5b610a9982610a04565b9392505050565b5f8060208385031215610ab1575f80fd5b823567ffffffffffffffff80821115610ac8575f80fd5b818501915085601f830112610adb575f80fd5b813581811115610ae9575f80fd5b8660208260051b8501011115610afd575f80fd5b60209290920196919550909350505050565b5f8060408385031215610b20575f80fd5b610b2983610a04565b9150610b3760208401610a04565b90509250929050565b600181811c90821680610b5457607f821691505b602082108103610b7257634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032657634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffdfea264697066735822122088ab8663f1993a4aa3aed542af1906ae9fdb1898ca98cd9ef609169dfa2269e964736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610106575f3560e01c8063715018a61161009e578063a457c2d71161006e578063a457c2d714610224578063a9059cbb14610237578063dd62ed3e1461024a578063f2fde38b1461025d578063f3294c1314610270575f80fd5b8063715018a6146101e55780637a49cddb146101ef5780638da5cb5b1461020257806395d89b411461021c575f80fd5b8063313ce567116100d9578063313ce5671461017057806332a0e0021461017f57806339509351146101aa57806370a08231146101bd575f80fd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f80fd5b610112610283565b60405161011f91906109b9565b60405180910390f35b61013b610136366004610a1f565b610313565b604051901515815260200161011f565b6004545b60405190815260200161011f565b61013b61016b366004610a47565b61032c565b6040516012815260200161011f565b61013b61018d366004610a80565b6001600160a01b03165f9081526002602052604090205460ff1690565b61013b6101b8366004610a1f565b61034f565b61014f6101cb366004610a80565b6001600160a01b03165f9081526001602052604090205490565b6101ed610370565b005b6101ed6101fd366004610aa0565b610383565b5f546040516001600160a01b03909116815260200161011f565b6101126103f5565b61013b610232366004610a1f565b610404565b61013b610245366004610a1f565b610483565b61014f610258366004610b0f565b610490565b6101ed61026b366004610a80565b6104ba565b6101ed61027e366004610a80565b610533565b60606005805461029290610b40565b80601f01602080910402602001604051908101604052809291908181526020018280546102be90610b40565b80156103095780601f106102e057610100808354040283529160200191610309565b820191905f5260205f20905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b5f3361032081858561055b565b60019150505b92915050565b5f3361033985828561067e565b6103448585856106f6565b506001949350505050565b5f336103208185856103618383610490565b61036b9190610b78565b61055b565b610378610911565b6103815f61096a565b565b61038b610911565b5f5b818110156103f057600160025f8585858181106103ac576103ac610b97565b90506020020160208101906103c19190610a80565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905560010161038d565b505050565b60606006805461029290610b40565b5f33816104118286610490565b9050838110156104765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610344828686840361055b565b5f336103208185856106f6565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b6104c2610911565b6001600160a01b0381166105275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046d565b6105308161096a565b50565b61053b610911565b6001600160a01b03165f908152600260205260409020805460ff19169055565b6001600160a01b0383166105bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046d565b6001600160a01b03821661061e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046d565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6106898484610490565b90505f1981146106f057818110156106e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161046d565b6106f0848484840361055b565b50505050565b6001600160a01b0382165f9081526002602052604090205460ff168061073357506001600160a01b0383165f9081526002602052604090205460ff165b156107685760075460ff1615156001146107685760405162461bcd60e51b8152602060048201525f602482015260440161046d565b6001600160a01b0383166107cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046d565b6001600160a01b03821661082e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046d565b6001600160a01b0383165f90815260016020526040902054818110156108a55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161046d565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109049086815260200190565b60405180910390a36106f0565b5f546001600160a01b031633146103815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b818110156109e4578581018301518582016040015282016109c8565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a1a575f80fd5b919050565b5f8060408385031215610a30575f80fd5b610a3983610a04565b946020939093013593505050565b5f805f60608486031215610a59575f80fd5b610a6284610a04565b9250610a7060208501610a04565b9150604084013590509250925092565b5f60208284031215610a90575f80fd5b610a9982610a04565b9392505050565b5f8060208385031215610ab1575f80fd5b823567ffffffffffffffff80821115610ac8575f80fd5b818501915085601f830112610adb575f80fd5b813581811115610ae9575f80fd5b8660208260051b8501011115610afd575f80fd5b60209290920196919550909350505050565b5f8060408385031215610b20575f80fd5b610b2983610a04565b9150610b3760208401610a04565b90509250929050565b600181811c90821680610b5457607f821691505b602082108103610b7257634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032657634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffdfea264697066735822122088ab8663f1993a4aa3aed542af1906ae9fdb1898ca98cd9ef609169dfa2269e964736f6c63430008140033
Deployed Bytecode Sourcemap
85:193:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5089:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:5;;1162:22;1144:41;;1132:2;1117:18;5089:201:1;1004:187:5;3858:108:1;3946:12;;3858:108;;;1342:25:5;;;1330:2;1315:18;3858:108:1;1196:177:5;5870:295:1;;;;;;:::i;:::-;;:::i;3250:93::-;;;3333:2;1853:36:5;;1841:2;1826:18;3250:93:1;1711:184:5;3687:106:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3768:17:1;3744:4;3768:17;;;:8;:17;;;;;;;;;3687:106;6574:238;;;;;;:::i;:::-;;:::i;4029:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4130:18:1;4103:7;4130:18;;;:9;:18;;;;;;;4029:127;2588:103:0;;;:::i;:::-;;3351:223:1;;;;;;:::i;:::-;;:::i;1947:87:0:-;1993:7;2020:6;1947:87;;-1:-1:-1;;;;;2020:6:0;;;2857:51:5;;2845:2;2830:18;1947:87:0;2711:203:5;2507:104:1;;;:::i;7315:436::-;;;;;;:::i;:::-;;:::i;4362:193::-;;;;;;:::i;:::-;;:::i;4618:151::-;;;;;;:::i;:::-;;:::i;2846:201:0:-;;;;;;:::i;:::-;;:::i;3582:97:1:-;;;;;;:::i;:::-;;:::i;2288:100::-;2342:13;2375:5;2368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:100;:::o;5089:201::-;5172:4;736:10:0;5228:32:1;736:10:0;5244:7:1;5253:6;5228:8;:32::i;:::-;5278:4;5271:11;;;5089:201;;;;;:::o;5870:295::-;6001:4;736:10:0;6059:38:1;6075:4;736:10:0;6090:6:1;6059:15;:38::i;:::-;6108:27;6118:4;6124:2;6128:6;6108:9;:27::i;:::-;-1:-1:-1;6153:4:1;;5870:295;-1:-1:-1;;;;5870:295:1:o;6574:238::-;6662:4;736:10:0;6718:64:1;736:10:0;6734:7:1;6771:10;6743:25;736:10:0;6734:7:1;6743:9;:25::i;:::-;:38;;;;:::i;:::-;6718:8;:64::i;2588:103:0:-;1833:13;:11;:13::i;:::-;2653:30:::1;2680:1;2653:18;:30::i;:::-;2588:103::o:0;3351:223:1:-;1833:13:0;:11;:13::i;:::-;3434:9:1::1;3429:128;3449:18:::0;;::::1;3429:128;;;3509:4;3486:8;:20;3495:7;;3503:1;3495:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3486:20:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3486:20:1;:27;;-1:-1:-1;;3486:27:1::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;3540:3:1::1;3429:128;;;;3351:223:::0;;:::o;2507:104::-;2563:13;2596:7;2589:14;;;;;:::i;7315:436::-;7408:4;736:10:0;7408:4:1;7491:25;736:10:0;7508:7:1;7491:9;:25::i;:::-;7464:52;;7555:15;7535:16;:35;;7527:85;;;;-1:-1:-1;;;7527:85:1;;4130:2:5;7527:85:1;;;4112:21:5;4169:2;4149:18;;;4142:30;4208:34;4188:18;;;4181:62;-1:-1:-1;;;4259:18:5;;;4252:35;4304:19;;7527:85:1;;;;;;;;;7648:60;7657:5;7664:7;7692:15;7673:16;:34;7648:8;:60::i;4362:193::-;4441:4;736:10:0;4497:28:1;736:10:0;4514:2:1;4518:6;4497:9;:28::i;4618:151::-;-1:-1:-1;;;;;4734:18:1;;;4707:7;4734:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4618:151::o;2846:201:0:-;1833:13;:11;:13::i;:::-;-1:-1:-1;;;;;2935:22:0;::::1;2927:73;;;::::0;-1:-1:-1;;;2927:73:0;;4536:2:5;2927:73:0::1;::::0;::::1;4518:21:5::0;4575:2;4555:18;;;4548:30;4614:34;4594:18;;;4587:62;-1:-1:-1;;;4665:18:5;;;4658:36;4711:19;;2927:73:0::1;4334:402:5::0;2927:73:0::1;3011:28;3030:8;3011:18;:28::i;:::-;2846:201:::0;:::o;3582:97:1:-;1833:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3646:17:1::1;3666:5;3646:17:::0;;;:8:::1;:17;::::0;;;;:25;;-1:-1:-1;;3646:25:1::1;::::0;;3582:97::o;11425:380::-;-1:-1:-1;;;;;11561:19:1;;11553:68;;;;-1:-1:-1;;;11553:68:1;;4943:2:5;11553:68:1;;;4925:21:5;4982:2;4962:18;;;4955:30;5021:34;5001:18;;;4994:62;-1:-1:-1;;;5072:18:5;;;5065:34;5116:19;;11553:68:1;4741:400:5;11553:68:1;-1:-1:-1;;;;;11640:21:1;;11632:68;;;;-1:-1:-1;;;11632:68:1;;5348:2:5;11632:68:1;;;5330:21:5;5387:2;5367:18;;;5360:30;5426:34;5406:18;;;5399:62;-1:-1:-1;;;5477:18:5;;;5470:32;5519:19;;11632:68:1;5146:398:5;11632:68:1;-1:-1:-1;;;;;11713:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11765:32;;1342:25:5;;;11765:32:1;;1315:18:5;11765:32:1;;;;;;;11425:380;;;:::o;12096:453::-;12231:24;12258:25;12268:5;12275:7;12258:9;:25::i;:::-;12231:52;;-1:-1:-1;;12298:16:1;:37;12294:248;;12380:6;12360:16;:26;;12352:68;;;;-1:-1:-1;;;12352:68:1;;5751:2:5;12352:68:1;;;5733:21:5;5790:2;5770:18;;;5763:30;5829:31;5809:18;;;5802:59;5878:18;;12352:68:1;5549:353:5;12352:68:1;12464:51;12473:5;12480:7;12508:6;12489:16;:25;12464:8;:51::i;:::-;12220:329;12096:453;;;:::o;8221:923::-;-1:-1:-1;;;;;8348:12:1;;;;;;:8;:12;;;;;;;;;:30;;-1:-1:-1;;;;;;8364:14:1;;;;;;:8;:14;;;;;;;;8348:30;8344:72;;;8388:15;;;;:23;;:15;:23;8380:36;;;;-1:-1:-1;;;8380:36:1;;6109:2:5;8380:36:1;;;6091:21:5;-1:-1:-1;6128:18:5;;;6121:29;6167:18;;8380:36:1;5907:284:5;8380:36:1;-1:-1:-1;;;;;8435:18:1;;8427:68;;;;-1:-1:-1;;;8427:68:1;;6398:2:5;8427:68:1;;;6380:21:5;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:5;;;6520:35;6572:19;;8427:68:1;6196:401:5;8427:68:1;-1:-1:-1;;;;;8514:16:1;;8506:64;;;;-1:-1:-1;;;8506:64:1;;6804:2:5;8506:64:1;;;6786:21:5;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;-1:-1:-1;;;6933:18:5;;;6926:33;6976:19;;8506:64:1;6602:399:5;8506:64:1;-1:-1:-1;;;;;8656:15:1;;8634:19;8656:15;;;:9;:15;;;;;;8690:21;;;;8682:72;;;;-1:-1:-1;;;8682:72:1;;7208:2:5;8682:72:1;;;7190:21:5;7247:2;7227:18;;;7220:30;7286:34;7266:18;;;7259:62;-1:-1:-1;;;7337:18:5;;;7330:36;7383:19;;8682:72:1;7006:402:5;8682:72:1;-1:-1:-1;;;;;8790:15:1;;;;;;;:9;:15;;;;;;8808:20;;;8790:38;;9008:13;;;;;;;;;;:23;;;;;;9060:26;;;;;;8822:6;1342:25:5;;1330:2;1315:18;;1196:177;9060:26:1;;;;;;;;9099:37;3351:223;2112:132:0;1993:7;2020:6;-1:-1:-1;;;;;2020:6:0;736:10;2176:23;2168:68;;;;-1:-1:-1;;;2168:68:0;;7615:2:5;2168:68:0;;;7597:21:5;;;7634:18;;;7627:30;7693:34;7673:18;;;7666:62;7745:18;;2168:68:0;7413:356:5;3207:191:0;3281:16;3300:6;;-1:-1:-1;;;;;3317:17:0;;;-1:-1:-1;;;;;;3317:17:0;;;;;;3350:40;;3300:6;;;;;;;3350:40;;3281:16;3350:40;3270:128;3207:191;:::o;14:548:5:-;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:5;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:5:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:5:o;2091:615::-;2177:6;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2294:9;2281:23;2323:18;2364:2;2356:6;2353:14;2350:34;;;2380:1;2377;2370:12;2350:34;2418:6;2407:9;2403:22;2393:32;;2463:7;2456:4;2452:2;2448:13;2444:27;2434:55;;2485:1;2482;2475:12;2434:55;2525:2;2512:16;2551:2;2543:6;2540:14;2537:34;;;2567:1;2564;2557:12;2537:34;2620:7;2615:2;2605:6;2602:1;2598:14;2594:2;2590:23;2586:32;2583:45;2580:65;;;2641:1;2638;2631:12;2580:65;2672:2;2664:11;;;;;2694:6;;-1:-1:-1;2091:615:5;;-1:-1:-1;;;;2091:615:5:o;2919:260::-;2987:6;2995;3048:2;3036:9;3027:7;3023:23;3019:32;3016:52;;;3064:1;3061;3054:12;3016:52;3087:29;3106:9;3087:29;:::i;:::-;3077:39;;3135:38;3169:2;3158:9;3154:18;3135:38;:::i;:::-;3125:48;;2919:260;;;;;:::o;3184:380::-;3263:1;3259:12;;;;3306;;;3327:61;;3381:4;3373:6;3369:17;3359:27;;3327:61;3434:2;3426:6;3423:14;3403:18;3400:38;3397:161;;3480:10;3475:3;3471:20;3468:1;3461:31;3515:4;3512:1;3505:15;3543:4;3540:1;3533:15;3397:161;;3184:380;;;:::o;3569:222::-;3634:9;;;3655:10;;;3652:133;;;3707:10;3702:3;3698:20;3695:1;3688:31;3742:4;3739:1;3732:15;3770:4;3767:1;3760:15;3796:127;3857:10;3852:3;3848:20;3845:1;3838:31;3888:4;3885:1;3878:15;3912:4;3909:1;3902:15
Swarm Source
ipfs://88ab8663f1993a4aa3aed542af1906ae9fdb1898ca98cd9ef609169dfa2269e9
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.