Overview
Max Total Supply
436,343,134 MNI
Holders
2,269 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MapNode
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-03-16 */ // 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/token/BEP20/lib/IBEP20.sol pragma solidity ^0.8.0; /** * @dev Interface of the BEP standard. */ interface IBEP20 { /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @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 Returns the token owner. */ function getOwner() external view returns (address); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev 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 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 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); } // File: contracts/token/BEP20/lib/BEP20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IBEP20} 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}. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of BEP20 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 {IBEP20-approve}. */ contract BEP20 is Ownable, IBEP20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {BEP20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IBEP20-balanceOf} and {IBEP20-transfer}. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev See {IBEP20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IBEP20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IBEP20-getOwner}. */ function getOwner() public view override returns (address) { return owner(); } /** * @dev See {IBEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IBEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "BEP20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev See {IBEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IBEP20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 {IBEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IBEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "BEP20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "BEP20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "BEP20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "BEP20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "BEP20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/token/BEP20/lib/BEP20Burnable.sol pragma solidity ^0.8.0; /** * @dev Extension of {BEP20} 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 BEP20Burnable is BEP20 { /** * @dev Destroys `amount` tokens from the caller. * * See {BEP20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } } pragma solidity ^0.8.0; contract MapNode is BEP20Burnable { constructor () BEP20("Map Node", "MNI") { uint8 decimals = 18; uint256 initialBalance = 455000000 * 10 ** decimals; _setupDecimals(decimals); _mint(_msgSender(), initialBalance); } bool public onlyOwnerCanBurn = true; event SetOnlyOwnerCanBurn(bool onlyOwnerCanBurn); function setOnlyOwnerCanBurn(bool _onlyOwnerCanBurn) public onlyOwner { onlyOwnerCanBurn = _onlyOwnerCanBurn; emit SetOnlyOwnerCanBurn(_onlyOwnerCanBurn); } function _burn(address account, uint256 amount) internal override { if (onlyOwnerCanBurn) require(_msgSender() == getOwner(), "BEP20: only owner can burn"); return super._burn(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"onlyOwnerCanBurn","type":"bool"}],"name":"SetOnlyOwnerCanBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"onlyOwnerCanBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_onlyOwnerCanBurn","type":"bool"}],"name":"setOnlyOwnerCanBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526006805461ff0019166101001790553480156200002057600080fd5b50604051806040016040528060088152602001674d6170204e6f646560c01b815250604051806040016040528060038152602001624d4e4960e81b8152506000620000706200013d60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000cf90600490602085019062000229565b508051620000e590600590602084019062000229565b50506006805460ff19166012908117909155905060006200010882600a62000333565b6200011890631b1ebfc062000401565b6006805460ff191660ff8516179055905062000135338262000141565b505062000476565b3390565b6001600160a01b0382166200019c5760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001b09190620002cf565b90915550506001600160a01b03821660009081526001602052604081208054839290620001df908490620002cf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002379062000423565b90600052602060002090601f0160209004810192826200025b5760008555620002a6565b82601f106200027657805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a657825182559160200191906001019062000289565b50620002b4929150620002b8565b5090565b5b80821115620002b45760008155600101620002b9565b60008219821115620002e557620002e562000460565b500190565b600181815b808511156200032b5781600019048211156200030f576200030f62000460565b808516156200031d57918102915b93841c9390800290620002ef565b509250929050565b60006200034460ff8416836200034b565b9392505050565b6000826200035c57506001620003fb565b816200036b57506000620003fb565b81600181146200038457600281146200038f57620003af565b6001915050620003fb565b60ff841115620003a357620003a362000460565b50506001821b620003fb565b5060208310610133831016604e8410600b8410161715620003d4575081810a620003fb565b620003e08383620002ea565b8060001904821115620003f757620003f762000460565b0290505b92915050565b60008160001904831182151516156200041e576200041e62000460565b500290565b600181811c908216806200043857607f821691505b602082108114156200045a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e0f80620004866000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80637a8aca09116100a2578063a457c2d711610071578063a457c2d714610240578063a9059cbb14610253578063d257750d14610266578063dd62ed3e14610278578063f2fde38b146102b157600080fd5b80637a8aca09146101ef578063893d20e8146102025780638da5cb5b1461022757806395d89b411461023857600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019657806342966c68146101a957806370a08231146101be578063715018a6146101e757600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c4565b6040516101309190610ccf565b60405180910390f35b61014c610147366004610c6a565b610356565b6040519015158152602001610130565b6003545b604051908152602001610130565b61014c61017c366004610c2e565b61036c565b60065460405160ff9091168152602001610130565b61014c6101a4366004610c6a565b610422565b6101bc6101b7366004610cb6565b610459565b005b6101606101cc366004610bd9565b6001600160a01b031660009081526001602052604090205490565b6101bc610466565b6101bc6101fd366004610c94565b6104da565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610130565b6000546001600160a01b031661020f565b610123610558565b61014c61024e366004610c6a565b610567565b61014c610261366004610c6a565b610602565b60065461014c90610100900460ff1681565b610160610286366004610bfb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101bc6102bf366004610bd9565b61060f565b6060600480546102d390610d88565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90610d88565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b60006103633384846106f9565b50600192915050565b600061037984848461081e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104035760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041785336104128685610d71565b6106f9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610363918590610412908690610d59565b61046333826109f6565b50565b6000546001600160a01b031633146104905760405162461bcd60e51b81526004016103fa90610d24565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105045760405162461bcd60e51b81526004016103fa90610d24565b600680548215156101000261ff00199091161790556040517f2f4792f54cc9fcb24d3781bbc58401a0bd6b570593abd3f7f9120a59eb2982f89061054d90831515815260200190565b60405180910390a150565b6060600580546102d390610d88565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105e95760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fa565b6105f833856104128685610d71565b5060019392505050565b600061036333848461081e565b6000546001600160a01b031633146106395760405162461bcd60e51b81526004016103fa90610d24565b6001600160a01b03811661069e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661075b5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fa565b6001600160a01b0382166107bc5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fa565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108825760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fa565b6001600160a01b0382166108e45760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fa565b6001600160a01b0383166000908152600160205260409020548181101561095c5760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fa565b6109668282610d71565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061099c908490610d59565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e891815260200190565b60405180910390a350505050565b600654610100900460ff1615610a60576000546001600160a01b03163314610a605760405162461bcd60e51b815260206004820152601a60248201527f42455032303a206f6e6c79206f776e65722063616e206275726e00000000000060448201526064016103fa565b610a6a8282610a6e565b5050565b6001600160a01b038216610ace5760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fa565b6001600160a01b03821660009081526001602052604090205481811015610b425760405162461bcd60e51b815260206004820152602260248201527f42455032303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fa565b610b4c8282610d71565b6001600160a01b03841660009081526001602052604081209190915560038054849290610b7a908490610d71565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610811565b80356001600160a01b0381168114610bd457600080fd5b919050565b600060208284031215610beb57600080fd5b610bf482610bbd565b9392505050565b60008060408385031215610c0e57600080fd5b610c1783610bbd565b9150610c2560208401610bbd565b90509250929050565b600080600060608486031215610c4357600080fd5b610c4c84610bbd565b9250610c5a60208501610bbd565b9150604084013590509250925092565b60008060408385031215610c7d57600080fd5b610c8683610bbd565b946020939093013593505050565b600060208284031215610ca657600080fd5b81358015158114610bf457600080fd5b600060208284031215610cc857600080fd5b5035919050565b600060208083528351808285015260005b81811015610cfc57858101830151858201604001528201610ce0565b81811115610d0e576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610d6c57610d6c610dc3565b500190565b600082821015610d8357610d83610dc3565b500390565b600181811c90821680610d9c57607f821691505b60208210811415610dbd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d5382bbd6d58ae46ffc30a044aadcf1d468c0cb51b6806618552244157f5e08764736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80637a8aca09116100a2578063a457c2d711610071578063a457c2d714610240578063a9059cbb14610253578063d257750d14610266578063dd62ed3e14610278578063f2fde38b146102b157600080fd5b80637a8aca09146101ef578063893d20e8146102025780638da5cb5b1461022757806395d89b411461023857600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019657806342966c68146101a957806370a08231146101be578063715018a6146101e757600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c4565b6040516101309190610ccf565b60405180910390f35b61014c610147366004610c6a565b610356565b6040519015158152602001610130565b6003545b604051908152602001610130565b61014c61017c366004610c2e565b61036c565b60065460405160ff9091168152602001610130565b61014c6101a4366004610c6a565b610422565b6101bc6101b7366004610cb6565b610459565b005b6101606101cc366004610bd9565b6001600160a01b031660009081526001602052604090205490565b6101bc610466565b6101bc6101fd366004610c94565b6104da565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610130565b6000546001600160a01b031661020f565b610123610558565b61014c61024e366004610c6a565b610567565b61014c610261366004610c6a565b610602565b60065461014c90610100900460ff1681565b610160610286366004610bfb565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101bc6102bf366004610bd9565b61060f565b6060600480546102d390610d88565b80601f01602080910402602001604051908101604052809291908181526020018280546102ff90610d88565b801561034c5780601f106103215761010080835404028352916020019161034c565b820191906000526020600020905b81548152906001019060200180831161032f57829003601f168201915b5050505050905090565b60006103633384846106f9565b50600192915050565b600061037984848461081e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104035760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041785336104128685610d71565b6106f9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610363918590610412908690610d59565b61046333826109f6565b50565b6000546001600160a01b031633146104905760405162461bcd60e51b81526004016103fa90610d24565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105045760405162461bcd60e51b81526004016103fa90610d24565b600680548215156101000261ff00199091161790556040517f2f4792f54cc9fcb24d3781bbc58401a0bd6b570593abd3f7f9120a59eb2982f89061054d90831515815260200190565b60405180910390a150565b6060600580546102d390610d88565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105e95760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fa565b6105f833856104128685610d71565b5060019392505050565b600061036333848461081e565b6000546001600160a01b031633146106395760405162461bcd60e51b81526004016103fa90610d24565b6001600160a01b03811661069e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661075b5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fa565b6001600160a01b0382166107bc5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fa565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108825760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fa565b6001600160a01b0382166108e45760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fa565b6001600160a01b0383166000908152600160205260409020548181101561095c5760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fa565b6109668282610d71565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061099c908490610d59565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109e891815260200190565b60405180910390a350505050565b600654610100900460ff1615610a60576000546001600160a01b03163314610a605760405162461bcd60e51b815260206004820152601a60248201527f42455032303a206f6e6c79206f776e65722063616e206275726e00000000000060448201526064016103fa565b610a6a8282610a6e565b5050565b6001600160a01b038216610ace5760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fa565b6001600160a01b03821660009081526001602052604090205481811015610b425760405162461bcd60e51b815260206004820152602260248201527f42455032303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fa565b610b4c8282610d71565b6001600160a01b03841660009081526001602052604081209190915560038054849290610b7a908490610d71565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610811565b80356001600160a01b0381168114610bd457600080fd5b919050565b600060208284031215610beb57600080fd5b610bf482610bbd565b9392505050565b60008060408385031215610c0e57600080fd5b610c1783610bbd565b9150610c2560208401610bbd565b90509250929050565b600080600060608486031215610c4357600080fd5b610c4c84610bbd565b9250610c5a60208501610bbd565b9150604084013590509250925092565b60008060408385031215610c7d57600080fd5b610c8683610bbd565b946020939093013593505050565b600060208284031215610ca657600080fd5b81358015158114610bf457600080fd5b600060208284031215610cc857600080fd5b5035919050565b600060208083528351808285015260005b81811015610cfc57858101830151858201604001528201610ce0565b81811115610d0e576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610d6c57610d6c610dc3565b500190565b600082821015610d8357610d83610dc3565b500390565b600181811c90821680610d9c57607f821691505b60208210811415610dbd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d5382bbd6d58ae46ffc30a044aadcf1d468c0cb51b6806618552244157f5e08764736f6c63430008070033
Deployed Bytecode Sourcemap
18266:787:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8363:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11340:169;;;;;;:::i;:::-;;:::i;:::-;;;2076:14:1;;2069:22;2051:41;;2039:2;2024:18;11340:169:0;1911:187:1;9465:100:0;9545:12;;9465:100;;;7619:25:1;;;7607:2;7592:18;9465:100:0;7473:177:1;10771:422:0;;;;;;:::i;:::-;;:::i;9308:92::-;9383:9;;9308:92;;9383:9;;;;7797:36:1;;7785:2;7770:18;9308:92:0;7655:184:1;12132:215:0;;;;;;:::i;:::-;;:::i;18135:91::-;;;;;;:::i;:::-;;:::i;:::-;;9628:119;;;;;;:::i;:::-;-1:-1:-1;;;;;9721:18:0;9694:7;9721:18;;;:9;:18;;;;;;;9628:119;2694:148;;;:::i;18653:175::-;;;;;;:::i;:::-;;:::i;9809:92::-;9859:7;2116:6;-1:-1:-1;;;;;2116:6:0;9809:92;;;-1:-1:-1;;;;;1867:32:1;;;1849:51;;1837:2;1822:18;9809:92:0;1703:203:1;2043:87:0;2089:7;2116:6;-1:-1:-1;;;;;2116:6:0;2043:87;;8574:96;;;:::i;12850:377::-;;;;;;:::i;:::-;;:::i;10114:175::-;;;;;;:::i;:::-;;:::i;18552:35::-;;;;;;;;;;;;11572:151;;;;;;:::i;:::-;-1:-1:-1;;;;;11688:18:0;;;11661:7;11688:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11572:151;2997:244;;;;;;:::i;:::-;;:::i;8363:92::-;8409:13;8442:5;8435:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8363:92;:::o;11340:169::-;11423:4;11440:39;681:10;11463:7;11472:6;11440:8;:39::i;:::-;-1:-1:-1;11497:4:0;11340:169;;;;:::o;10771:422::-;10877:4;10894:36;10904:6;10912:9;10923:6;10894:9;:36::i;:::-;-1:-1:-1;;;;;10970:19:0;;10943:24;10970:19;;;:11;:19;;;;;;;;681:10;10970:33;;;;;;;;11022:26;;;;11014:79;;;;-1:-1:-1;;;11014:79:0;;4125:2:1;11014:79:0;;;4107:21:1;4164:2;4144:18;;;4137:30;4203:34;4183:18;;;4176:62;-1:-1:-1;;;4254:18:1;;;4247:38;4302:19;;11014:79:0;;;;;;;;;11104:57;11113:6;681:10;11135:25;11154:6;11135:16;:25;:::i;:::-;11104:8;:57::i;:::-;-1:-1:-1;11181:4:0;;10771:422;-1:-1:-1;;;;10771:422:0:o;12132:215::-;681:10;12220:4;12269:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12269:34:0;;;;;;;;;;12220:4;;12237:80;;12260:7;;12269:47;;12306:10;;12269:47;:::i;18135:91::-;18191:27;681:10;18211:6;18191:5;:27::i;:::-;18135:91;:::o;2694:148::-;2089:7;2116:6;-1:-1:-1;;;;;2116:6:0;681:10;2263:23;2255:68;;;;-1:-1:-1;;;2255:68:0;;;;;;;:::i;:::-;2801:1:::1;2785:6:::0;;2764:40:::1;::::0;-1:-1:-1;;;;;2785:6:0;;::::1;::::0;2764:40:::1;::::0;2801:1;;2764:40:::1;2832:1;2815:19:::0;;-1:-1:-1;;;;;;2815:19:0::1;::::0;;2694:148::o;18653:175::-;2089:7;2116:6;-1:-1:-1;;;;;2116:6:0;681:10;2263:23;2255:68;;;;-1:-1:-1;;;2255:68:0;;;;;;;:::i;:::-;18732:16:::1;:36:::0;;;::::1;;;;-1:-1:-1::0;;18732:36:0;;::::1;;::::0;;18782:38:::1;::::0;::::1;::::0;::::1;::::0;18751:17;2076:14:1;2069:22;2051:41;;2039:2;2024:18;;1911:187;18782:38:0::1;;;;;;;;18653:175:::0;:::o;8574:96::-;8622:13;8655:7;8648:14;;;;;:::i;12850:377::-;681:10;12943:4;12987:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12987:34:0;;;;;;;;;;13040:35;;;;13032:85;;;;-1:-1:-1;;;13032:85:0;;5706:2:1;13032:85:0;;;5688:21:1;5745:2;5725:18;;;5718:30;5784:34;5764:18;;;5757:62;-1:-1:-1;;;5835:18:1;;;5828:35;5880:19;;13032:85:0;5504:401:1;13032:85:0;13128:67;681:10;13151:7;13160:34;13179:15;13160:16;:34;:::i;13128:67::-;-1:-1:-1;13215:4:0;;12850:377;-1:-1:-1;;;12850:377:0:o;10114:175::-;10200:4;10217:42;681:10;10241:9;10252:6;10217:9;:42::i;2997:244::-;2089:7;2116:6;-1:-1:-1;;;;;2116:6:0;681:10;2263:23;2255:68;;;;-1:-1:-1;;;2255:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3086:22:0;::::1;3078:73;;;::::0;-1:-1:-1;;;3078:73:0;;3718:2:1;3078:73:0::1;::::0;::::1;3700:21:1::0;3757:2;3737:18;;;3730:30;3796:34;3776:18;;;3769:62;-1:-1:-1;;;3847:18:1;;;3840:36;3893:19;;3078:73:0::1;3516:402:1::0;3078:73:0::1;3188:6;::::0;;3167:38:::1;::::0;-1:-1:-1;;;;;3167:38:0;;::::1;::::0;3188:6;::::1;::::0;3167:38:::1;::::0;::::1;3216:6;:17:::0;;-1:-1:-1;;;;;;3216:17:0::1;-1:-1:-1::0;;;;;3216:17:0;;;::::1;::::0;;;::::1;::::0;;2997:244::o;16206:346::-;-1:-1:-1;;;;;16308:19:0;;16300:68;;;;-1:-1:-1;;;16300:68:0;;3313:2:1;16300:68:0;;;3295:21:1;3352:2;3332:18;;;3325:30;3391:34;3371:18;;;3364:62;-1:-1:-1;;;3442:18:1;;;3435:34;3486:19;;16300:68:0;3111:400:1;16300:68:0;-1:-1:-1;;;;;16387:21:0;;16379:68;;;;-1:-1:-1;;;16379:68:0;;7272:2:1;16379:68:0;;;7254:21:1;7311:2;7291:18;;;7284:30;7350:34;7330:18;;;7323:62;-1:-1:-1;;;7401:18:1;;;7394:32;7443:19;;16379:68:0;7070:398:1;16379:68:0;-1:-1:-1;;;;;16460:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16512:32;;7619:25:1;;;16512:32:0;;7592:18:1;16512:32:0;;;;;;;;16206:346;;;:::o;13717:604::-;-1:-1:-1;;;;;13823:20:0;;13815:70;;;;-1:-1:-1;;;13815:70:0;;2907:2:1;13815:70:0;;;2889:21:1;2946:2;2926:18;;;2919:30;2985:34;2965:18;;;2958:62;-1:-1:-1;;;3036:18:1;;;3029:35;3081:19;;13815:70:0;2705:401:1;13815:70:0;-1:-1:-1;;;;;13904:23:0;;13896:71;;;;-1:-1:-1;;;13896:71:0;;5302:2:1;13896:71:0;;;5284:21:1;5341:2;5321:18;;;5314:30;5380:34;5360:18;;;5353:62;-1:-1:-1;;;5431:18:1;;;5424:33;5474:19;;13896:71:0;5100:399:1;13896:71:0;-1:-1:-1;;;;;14064:17:0;;14040:21;14064:17;;;:9;:17;;;;;;14100:23;;;;14092:74;;;;-1:-1:-1;;;14092:74:0;;4895:2:1;14092:74:0;;;4877:21:1;4934:2;4914:18;;;4907:30;4973:34;4953:18;;;4946:62;-1:-1:-1;;;5024:18:1;;;5017:36;5070:19;;14092:74:0;4693:402:1;14092:74:0;14197:22;14213:6;14197:13;:22;:::i;:::-;-1:-1:-1;;;;;14177:17:0;;;;;;;:9;:17;;;;;;:42;;;;14230:20;;;;;;;;:30;;14254:6;;14177:17;14230:30;;14254:6;;14230:30;:::i;:::-;;;;;;;;14295:9;-1:-1:-1;;;;;14278:35:0;14287:6;-1:-1:-1;;;;;14278:35:0;;14306:6;14278:35;;;;7619:25:1;;7607:2;7592:18;;7473:177;14278:35:0;;;;;;;;13804:517;13717:604;;;:::o;18836:214::-;18915:16;;;;;;;18911:87;;;9859:7;2116:6;-1:-1:-1;;;;;2116:6:0;681:10;18941:26;18933:65;;;;-1:-1:-1;;;18933:65:0;;6917:2:1;18933:65:0;;;6899:21:1;6956:2;6936:18;;;6929:30;6995:28;6975:18;;;6968:56;7041:18;;18933:65:0;6715:350:1;18933:65:0;19014:28;19026:7;19035:6;19014:11;:28::i;:::-;18836:214;;:::o;15274:494::-;-1:-1:-1;;;;;15358:21:0;;15350:67;;;;-1:-1:-1;;;15350:67:0;;6112:2:1;15350:67:0;;;6094:21:1;6151:2;6131:18;;;6124:30;6190:34;6170:18;;;6163:62;-1:-1:-1;;;6241:18:1;;;6234:31;6282:19;;15350:67:0;5910:397:1;15350:67:0;-1:-1:-1;;;;;15517:18:0;;15492:22;15517:18;;;:9;:18;;;;;;15554:24;;;;15546:71;;;;-1:-1:-1;;;15546:71:0;;6514:2:1;15546:71:0;;;6496:21:1;6553:2;6533:18;;;6526:30;6592:34;6572:18;;;6565:62;-1:-1:-1;;;6643:18:1;;;6636:32;6685:19;;15546:71:0;6312:398:1;15546:71:0;15649:23;15666:6;15649:14;:23;:::i;:::-;-1:-1:-1;;;;;15628:18:0;;;;;;:9;:18;;;;;:44;;;;15683:12;:22;;15699:6;;15628:18;15683:22;;15699:6;;15683:22;:::i;:::-;;;;-1:-1:-1;;15723:37:0;;7619:25:1;;;15749:1:0;;-1:-1:-1;;;;;15723:37:0;;;;;7607:2:1;7592:18;15723:37:0;7473:177:1;14:173;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:273::-;1296:6;1349:2;1337:9;1328:7;1324:23;1320:32;1317:52;;;1365:1;1362;1355:12;1317:52;1404:9;1391:23;1457:5;1450:13;1443:21;1436:5;1433:32;1423:60;;1479:1;1476;1469:12;1518:180;1577:6;1630:2;1618:9;1609:7;1605:23;1601:32;1598:52;;;1646:1;1643;1636:12;1598:52;-1:-1:-1;1669:23:1;;1518:180;-1:-1:-1;1518:180:1:o;2103:597::-;2215:4;2244:2;2273;2262:9;2255:21;2305:6;2299:13;2348:6;2343:2;2332:9;2328:18;2321:34;2373:1;2383:140;2397:6;2394:1;2391:13;2383:140;;;2492:14;;;2488:23;;2482:30;2458:17;;;2477:2;2454:26;2447:66;2412:10;;2383:140;;;2541:6;2538:1;2535:13;2532:91;;;2611:1;2606:2;2597:6;2586:9;2582:22;2578:31;2571:42;2532:91;-1:-1:-1;2684:2:1;2663:15;-1:-1:-1;;2659:29:1;2644:45;;;;2691:2;2640:54;;2103:597;-1:-1:-1;;;2103:597:1:o;4332:356::-;4534:2;4516:21;;;4553:18;;;4546:30;4612:34;4607:2;4592:18;;4585:62;4679:2;4664:18;;4332:356::o;7844:128::-;7884:3;7915:1;7911:6;7908:1;7905:13;7902:39;;;7921:18;;:::i;:::-;-1:-1:-1;7957:9:1;;7844:128::o;7977:125::-;8017:4;8045:1;8042;8039:8;8036:34;;;8050:18;;:::i;:::-;-1:-1:-1;8087:9:1;;7977:125::o;8107:380::-;8186:1;8182:12;;;;8229;;;8250:61;;8304:4;8296:6;8292:17;8282:27;;8250:61;8357:2;8349:6;8346:14;8326:18;8323:38;8320:161;;;8403:10;8398:3;8394:20;8391:1;8384:31;8438:4;8435:1;8428:15;8466:4;8463:1;8456:15;8320:161;;8107:380;;;:::o;8492:127::-;8553:10;8548:3;8544:20;8541:1;8534:31;8584:4;8581:1;8574:15;8608:4;8605:1;8598:15
Swarm Source
ipfs://d5382bbd6d58ae46ffc30a044aadcf1d468c0cb51b6806618552244157f5e087
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.