Token
KYVE Testnet (KYVE)
ERC-20
Overview
Max Total Supply
18,288,000 KYVE
Holders
11,422
Market
Price
$0.00 @ 0.000000 DEV
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,113.533936484285714285 KYVELoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
KYVE
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at moonbase.moonscan.io on 2021-10-26 */ // Sources flattened with hardhat v2.6.4 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `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 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-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 {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}. * * 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, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File contracts/Token.sol pragma solidity ^0.8.0; contract KYVE is ERC20, AccessControl { // The faucet has minting rights. bytes32 public constant FAUCET_ROLE = keccak256("FAUCET"); // Future tokens have burning rights. bytes32 public constant TOKEN_ROLE = keccak256("TOKEN"); // Latest trusted registry contract. address public _registry; constructor() ERC20("KYVE Testnet", "KYVE") { // Mint initial 1,000,000 $KYVE to sender. _mint(msg.sender, 1000000 * 10 ** 18); // Setup all roles. _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(FAUCET_ROLE, msg.sender); _setupRole(TOKEN_ROLE, msg.sender); } function mint(address to) public onlyRole(FAUCET_ROLE) { // Mint 1,000 $KYVE to the specified address. _mint(to, 1000 * 10 ** 18); } function burn(address from) public onlyRole(TOKEN_ROLE) returns(uint256) { // Burn all tokens from the specified address. uint256 amount = balanceOf(from); _burn(from, amount); return amount; } function updateRegistry(address registry) public onlyRole(DEFAULT_ADMIN_ROLE) { // Set the new registry address. _registry = registry; } }
[{"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FAUCET_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_registry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"registry","type":"address"}],"name":"updateRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600c81526b12d655914815195cdd1b995d60a21b6020808301918252835180850190945260048452634b59564560e01b908401528151919291620000629160039162000295565b5080516200007890600490602084019062000295565b505050620000973369d3c21bcecceda10000006200010260201b60201c565b620000a4600033620001eb565b620000d07fd961517a8818824e4312f4b33611b60b83db2e49e5edff9beac9a09f62b9864d33620001eb565b620000fc7f96706879d29c248edfb2a2563a8a9d571c49634c0f82013e6f5a7cde739d35d433620001eb565b6200039f565b6001600160a01b0382166200015d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017191906200033b565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a09084906200033b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b620001e7828260008281526005602090815260408083206001600160a01b038516845290915290205460ff16620001e75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002513390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620002a39062000362565b90600052602060002090601f016020900481019282620002c7576000855562000312565b82601f10620002e257805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000312578251825591602001919060010190620002f5565b506200032092915062000324565b5090565b5b8082111562000320576000815560010162000325565b600082198211156200035d57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200037757607f821691505b602082108114156200039957634e487b7160e01b600052602260045260246000fd5b50919050565b61158080620003af6000396000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c80636a627842116100e357806395d89b411161008c578063a9059cbb11610066578063a9059cbb146103b6578063d547741f146103c9578063dd62ed3e146103dc57600080fd5b806395d89b4114610393578063a217fddf1461039b578063a457c2d7146103a357600080fd5b80638301057b116100bd5780638301057b1461032057806389afcb441461034757806391d148541461035a57600080fd5b80636a627842146102b957806370a08231146102cc57806379cbc5fa146102f557600080fd5b8063248a9ca31161014557806336568abe1161011f57806336568abe1461026c578063395093511461027f57806345c7c7931461029257600080fd5b8063248a9ca3146102275780632f2ff15d1461024a578063313ce5671461025d57600080fd5b806318160ddd1161017657806318160ddd146101ed5780631a5da6c8146101ff57806323b872dd1461021457600080fd5b806301ffc9a71461019d57806306fdde03146101c5578063095ea7b3146101da575b600080fd5b6101b06101ab366004611240565b610415565b60405190151581526020015b60405180910390f35b6101cd6104ae565b6040516101bc91906112ae565b6101b06101e83660046112fd565b610540565b6002545b6040519081526020016101bc565b61021261020d366004611327565b610556565b005b6101b0610222366004611342565b61059d565b6101f161023536600461137e565b60009081526005602052604090206001015490565b610212610258366004611397565b610661565b604051601281526020016101bc565b61021261027a366004611397565b61068c565b6101b061028d3660046112fd565b610718565b6101f17fd961517a8818824e4312f4b33611b60b83db2e49e5edff9beac9a09f62b9864d81565b6102126102c7366004611327565b610754565b6101f16102da366004611327565b6001600160a01b031660009081526020819052604090205490565b600654610308906001600160a01b031681565b6040516001600160a01b0390911681526020016101bc565b6101f17f96706879d29c248edfb2a2563a8a9d571c49634c0f82013e6f5a7cde739d35d481565b6101f1610355366004611327565b610792565b6101b0610368366004611397565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6101cd6107eb565b6101f1600081565b6101b06103b13660046112fd565b6107fa565b6101b06103c43660046112fd565b6108ab565b6102126103d7366004611397565b6108b8565b6101f16103ea3660046113c3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806104a857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546104bd906113ed565b80601f01602080910402602001604051908101604052809291908181526020018280546104e9906113ed565b80156105365780601f1061050b57610100808354040283529160200191610536565b820191906000526020600020905b81548152906001019060200180831161051957829003601f168201915b5050505050905090565b600061054d3384846108de565b50600192915050565b60006105628133610a36565b50600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60006105aa848484610ab6565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61065685338584036108de565b506001949350505050565b60008281526005602052604090206001015461067d8133610a36565b6106878383610ccf565b505050565b6001600160a01b038116331461070a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610640565b6107148282610d71565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054d91859061074f908690611438565b6108de565b7fd961517a8818824e4312f4b33611b60b83db2e49e5edff9beac9a09f62b9864d61077f8133610a36565b61071482683635c9adc5dea00000610df4565b60007f96706879d29c248edfb2a2563a8a9d571c49634c0f82013e6f5a7cde739d35d46107bf8133610a36565b6001600160a01b0383166000908152602081905260409020546107e28482610ed3565b91505b50919050565b6060600480546104bd906113ed565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610640565b6108a133858584036108de565b5060019392505050565b600061054d338484610ab6565b6000828152600560205260409020600101546108d48133610a36565b6106878383610d71565b6001600160a01b0383166109595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff1661071457610a74816001600160a01b03166014611058565b610a7f836020611058565b604051602001610a90929190611450565b60408051601f198184030181529082905262461bcd60e51b8252610640916004016112ae565b6001600160a01b038316610b325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b038216610bae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b03831660009081526020819052604090205481811015610c3d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c74908490611438565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc091815260200190565b60405180910390a35b50505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff166107145760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610d2d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16156107145760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610e4a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610640565b8060026000828254610e5c9190611438565b90915550506001600160a01b03821660009081526020819052604081208054839290610e89908490611438565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610f4f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b03821660009081526020819052604090205481811015610fde5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b038316600090815260208190526040812083830390556002805484929061100d9084906114d1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606060006110678360026114e8565b611072906002611438565b67ffffffffffffffff81111561108a5761108a611507565b6040519080825280601f01601f1916602001820160405280156110b4576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106110eb576110eb61151d565b60200101906001600160f81b031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106111365761113661151d565b60200101906001600160f81b031916908160001a905350600061115a8460026114e8565b611165906001611438565b90505b60018111156111ea577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106111a6576111a661151d565b1a60f81b8282815181106111bc576111bc61151d565b60200101906001600160f81b031916908160001a90535060049490941c936111e381611533565b9050611168565b5083156112395760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610640565b9392505050565b60006020828403121561125257600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461123957600080fd5b60005b8381101561129d578181015183820152602001611285565b83811115610cc95750506000910152565b60208152600082518060208401526112cd816040850160208701611282565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146112f857600080fd5b919050565b6000806040838503121561131057600080fd5b611319836112e1565b946020939093013593505050565b60006020828403121561133957600080fd5b611239826112e1565b60008060006060848603121561135757600080fd5b611360846112e1565b925061136e602085016112e1565b9150604084013590509250925092565b60006020828403121561139057600080fd5b5035919050565b600080604083850312156113aa57600080fd5b823591506113ba602084016112e1565b90509250929050565b600080604083850312156113d657600080fd5b6113df836112e1565b91506113ba602084016112e1565b600181811c9082168061140157607f821691505b602082108114156107e557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561144b5761144b611422565b500190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611488816017850160208801611282565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516114c5816028840160208801611282565b01602801949350505050565b6000828210156114e3576114e3611422565b500390565b600081600019048311821515161561150257611502611422565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161154257611542611422565b50600019019056fea26469706673582212205e01917255770f24db90f53c3f3b5be80d32dc765a7987c6c3747c0045f0ba6164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101985760003560e01c80636a627842116100e357806395d89b411161008c578063a9059cbb11610066578063a9059cbb146103b6578063d547741f146103c9578063dd62ed3e146103dc57600080fd5b806395d89b4114610393578063a217fddf1461039b578063a457c2d7146103a357600080fd5b80638301057b116100bd5780638301057b1461032057806389afcb441461034757806391d148541461035a57600080fd5b80636a627842146102b957806370a08231146102cc57806379cbc5fa146102f557600080fd5b8063248a9ca31161014557806336568abe1161011f57806336568abe1461026c578063395093511461027f57806345c7c7931461029257600080fd5b8063248a9ca3146102275780632f2ff15d1461024a578063313ce5671461025d57600080fd5b806318160ddd1161017657806318160ddd146101ed5780631a5da6c8146101ff57806323b872dd1461021457600080fd5b806301ffc9a71461019d57806306fdde03146101c5578063095ea7b3146101da575b600080fd5b6101b06101ab366004611240565b610415565b60405190151581526020015b60405180910390f35b6101cd6104ae565b6040516101bc91906112ae565b6101b06101e83660046112fd565b610540565b6002545b6040519081526020016101bc565b61021261020d366004611327565b610556565b005b6101b0610222366004611342565b61059d565b6101f161023536600461137e565b60009081526005602052604090206001015490565b610212610258366004611397565b610661565b604051601281526020016101bc565b61021261027a366004611397565b61068c565b6101b061028d3660046112fd565b610718565b6101f17fd961517a8818824e4312f4b33611b60b83db2e49e5edff9beac9a09f62b9864d81565b6102126102c7366004611327565b610754565b6101f16102da366004611327565b6001600160a01b031660009081526020819052604090205490565b600654610308906001600160a01b031681565b6040516001600160a01b0390911681526020016101bc565b6101f17f96706879d29c248edfb2a2563a8a9d571c49634c0f82013e6f5a7cde739d35d481565b6101f1610355366004611327565b610792565b6101b0610368366004611397565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6101cd6107eb565b6101f1600081565b6101b06103b13660046112fd565b6107fa565b6101b06103c43660046112fd565b6108ab565b6102126103d7366004611397565b6108b8565b6101f16103ea3660046113c3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806104a857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546104bd906113ed565b80601f01602080910402602001604051908101604052809291908181526020018280546104e9906113ed565b80156105365780601f1061050b57610100808354040283529160200191610536565b820191906000526020600020905b81548152906001019060200180831161051957829003601f168201915b5050505050905090565b600061054d3384846108de565b50600192915050565b60006105628133610a36565b50600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60006105aa848484610ab6565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61065685338584036108de565b506001949350505050565b60008281526005602052604090206001015461067d8133610a36565b6106878383610ccf565b505050565b6001600160a01b038116331461070a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610640565b6107148282610d71565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054d91859061074f908690611438565b6108de565b7fd961517a8818824e4312f4b33611b60b83db2e49e5edff9beac9a09f62b9864d61077f8133610a36565b61071482683635c9adc5dea00000610df4565b60007f96706879d29c248edfb2a2563a8a9d571c49634c0f82013e6f5a7cde739d35d46107bf8133610a36565b6001600160a01b0383166000908152602081905260409020546107e28482610ed3565b91505b50919050565b6060600480546104bd906113ed565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108945760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610640565b6108a133858584036108de565b5060019392505050565b600061054d338484610ab6565b6000828152600560205260409020600101546108d48133610a36565b6106878383610d71565b6001600160a01b0383166109595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b0382166109d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff1661071457610a74816001600160a01b03166014611058565b610a7f836020611058565b604051602001610a90929190611450565b60408051601f198184030181529082905262461bcd60e51b8252610640916004016112ae565b6001600160a01b038316610b325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b038216610bae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b03831660009081526020819052604090205481811015610c3d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c74908490611438565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc091815260200190565b60405180910390a35b50505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff166107145760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610d2d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16156107145760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610e4a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610640565b8060026000828254610e5c9190611438565b90915550506001600160a01b03821660009081526020819052604081208054839290610e89908490611438565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610f4f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b03821660009081526020819052604090205481811015610fde5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610640565b6001600160a01b038316600090815260208190526040812083830390556002805484929061100d9084906114d1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606060006110678360026114e8565b611072906002611438565b67ffffffffffffffff81111561108a5761108a611507565b6040519080825280601f01601f1916602001820160405280156110b4576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106110eb576110eb61151d565b60200101906001600160f81b031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106111365761113661151d565b60200101906001600160f81b031916908160001a905350600061115a8460026114e8565b611165906001611438565b90505b60018111156111ea577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106111a6576111a661151d565b1a60f81b8282815181106111bc576111bc61151d565b60200101906001600160f81b031916908160001a90535060049490941c936111e381611533565b9050611168565b5083156112395760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610640565b9392505050565b60006020828403121561125257600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461123957600080fd5b60005b8381101561129d578181015183820152602001611285565b83811115610cc95750506000910152565b60208152600082518060208401526112cd816040850160208701611282565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146112f857600080fd5b919050565b6000806040838503121561131057600080fd5b611319836112e1565b946020939093013593505050565b60006020828403121561133957600080fd5b611239826112e1565b60008060006060848603121561135757600080fd5b611360846112e1565b925061136e602085016112e1565b9150604084013590509250925092565b60006020828403121561139057600080fd5b5035919050565b600080604083850312156113aa57600080fd5b823591506113ba602084016112e1565b90509250929050565b600080604083850312156113d657600080fd5b6113df836112e1565b91506113ba602084016112e1565b600181811c9082168061140157607f821691505b602082108114156107e557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561144b5761144b611422565b500190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611488816017850160208801611282565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516114c5816028840160208801611282565b01602801949350505050565b6000828210156114e3576114e3611422565b500390565b600081600019048311821515161561150257611502611422565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161154257611542611422565b50600019019056fea26469706673582212205e01917255770f24db90f53c3f3b5be80d32dc765a7987c6c3747c0045f0ba6164736f6c63430008090033
Deployed Bytecode Sourcemap
30551:1252:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:204;;;;;;:::i;:::-;;:::i;:::-;;;516:14:1;;509:22;491:41;;479:2;464:18;25867:204:0;;;;;;;;6515:100;;;:::i;:::-;;;;;;;:::i;8682:169::-;;;;;;:::i;:::-;;:::i;7635:108::-;7723:12;;7635:108;;;1800:25:1;;;1788:2;1773:18;7635:108:0;1654:177:1;31635:163:0;;;;;;:::i;:::-;;:::i;:::-;;9333:492;;;;;;:::i;:::-;;:::i;27278:123::-;;;;;;:::i;:::-;27344:7;27371:12;;;:6;:12;;;;;:22;;;;27278:123;27663:147;;;;;;:::i;:::-;;:::i;7477:93::-;;;7560:2;3128:36:1;;3116:2;3101:18;7477:93:0;2986:184:1;28711:218:0;;;;;;:::i;:::-;;:::i;10234:215::-;;;;;;:::i;:::-;;:::i;30637:57::-;;30675:19;30637:57;;31220:159;;;;;;:::i;:::-;;:::i;7806:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7907:18:0;7880:7;7907:18;;;;;;;;;;;;7806:127;30848:24;;;;;-1:-1:-1;;;;;30848:24:0;;;;;;-1:-1:-1;;;;;3339:55:1;;;3321:74;;3309:2;3294:18;30848:24:0;3175:226:1;30744:55:0;;30781:18;30744:55;;31387:240;;;;;;:::i;:::-;;:::i;26163:139::-;;;;;;:::i;:::-;26241:4;26265:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;26265:29:0;;;;;;;;;;;;;;;26163:139;6734:104;;;:::i;25254:49::-;;25299:4;25254:49;;10952:413;;;;;;:::i;:::-;;:::i;8146:175::-;;;;;;:::i;:::-;;:::i;28055:149::-;;;;;;:::i;:::-;;:::i;8384:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8500:18:0;;;8473:7;8500:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8384:151;25867:204;25952:4;25976:47;;;25991:32;25976:47;;:87;;-1:-1:-1;23310:25:0;23295:40;;;;26027:36;25969:94;25867:204;-1:-1:-1;;25867:204:0:o;6515:100::-;6569:13;6602:5;6595:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6515:100;:::o;8682:169::-;8765:4;8782:39;4306:10;8805:7;8814:6;8782:8;:39::i;:::-;-1:-1:-1;8839:4:0;8682:169;;;;:::o;31635:163::-;25299:4;25745:30;25299:4;4306:10;25745;:30::i;:::-;-1:-1:-1;31768:9:0::1;:20:::0;;;::::1;-1:-1:-1::0;;;;;31768:20:0;;;::::1;::::0;;;::::1;::::0;;31635:163::o;9333:492::-;9473:4;9490:36;9500:6;9508:9;9519:6;9490:9;:36::i;:::-;-1:-1:-1;;;;;9566:19:0;;9539:24;9566:19;;;:11;:19;;;;;;;;4306:10;9566:33;;;;;;;;9618:26;;;;9610:79;;;;-1:-1:-1;;;9610:79:0;;4315:2:1;9610:79:0;;;4297:21:1;4354:2;4334:18;;;4327:30;4393:34;4373:18;;;4366:62;4464:10;4444:18;;;4437:38;4492:19;;9610:79:0;;;;;;;;;9725:57;9734:6;4306:10;9775:6;9756:16;:25;9725:8;:57::i;:::-;-1:-1:-1;9813:4:0;;9333:492;-1:-1:-1;;;;9333:492:0:o;27663:147::-;27344:7;27371:12;;;:6;:12;;;;;:22;;;25745:30;25756:4;4306:10;25745;:30::i;:::-;27777:25:::1;27788:4;27794:7;27777:10;:25::i;:::-;27663:147:::0;;;:::o;28711:218::-;-1:-1:-1;;;;;28807:23:0;;4306:10;28807:23;28799:83;;;;-1:-1:-1;;;28799:83:0;;4724:2:1;28799:83:0;;;4706:21:1;4763:2;4743:18;;;4736:30;4802:34;4782:18;;;4775:62;4873:17;4853:18;;;4846:45;4908:19;;28799:83:0;4522:411:1;28799:83:0;28895:26;28907:4;28913:7;28895:11;:26::i;:::-;28711:218;;:::o;10234:215::-;4306:10;10322:4;10371:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10371:34:0;;;;;;;;;;10322:4;;10339:80;;10362:7;;10371:47;;10408:10;;10371:47;:::i;:::-;10339:8;:80::i;31220:159::-;30675:19;25745:30;30675:19;4306:10;25745;:30::i;:::-;31343:26:::1;31349:2;31353:15;31343:5;:26::i;31387:240::-:0;31451:7;30781:18;25745:30;30781:18;4306:10;25745;:30::i;:::-;-1:-1:-1;;;;;7907:18:0;;31529:14:::1;7907:18:::0;;;;;;;;;;;31572:19:::1;7907:18:::0;;31572:5:::1;:19::i;:::-;31611:6:::0;-1:-1:-1;25786:1:0::1;31387:240:::0;;;;:::o;6734:104::-;6790:13;6823:7;6816:14;;;;;:::i;10952:413::-;4306:10;11045:4;11089:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11089:34:0;;;;;;;;;;11142:35;;;;11134:85;;;;-1:-1:-1;;;11134:85:0;;5462:2:1;11134:85:0;;;5444:21:1;5501:2;5481:18;;;5474:30;5540:34;5520:18;;;5513:62;5611:7;5591:18;;;5584:35;5636:19;;11134:85:0;5260:401:1;11134:85:0;11255:67;4306:10;11278:7;11306:15;11287:16;:34;11255:8;:67::i;:::-;-1:-1:-1;11353:4:0;;10952:413;-1:-1:-1;;;10952:413:0:o;8146:175::-;8232:4;8249:42;4306:10;8273:9;8284:6;8249:9;:42::i;28055:149::-;27344:7;27371:12;;;:6;:12;;;;;:22;;;25745:30;25756:4;4306:10;25745;:30::i;:::-;28170:26:::1;28182:4;28188:7;28170:11;:26::i;14636:380::-:0;-1:-1:-1;;;;;14772:19:0;;14764:68;;;;-1:-1:-1;;;14764:68:0;;5868:2:1;14764:68:0;;;5850:21:1;5907:2;5887:18;;;5880:30;5946:34;5926:18;;;5919:62;6017:6;5997:18;;;5990:34;6041:19;;14764:68:0;5666:400:1;14764:68:0;-1:-1:-1;;;;;14851:21:0;;14843:68;;;;-1:-1:-1;;;14843:68:0;;6273:2:1;14843:68:0;;;6255:21:1;6312:2;6292:18;;;6285:30;6351:34;6331:18;;;6324:62;6422:4;6402:18;;;6395:32;6444:19;;14843:68:0;6071:398:1;14843:68:0;-1:-1:-1;;;;;14924:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14976:32;;1800:25:1;;;14976:32:0;;1773:18:1;14976:32:0;;;;;;;14636:380;;;:::o;26592:497::-;26241:4;26265:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;26265:29:0;;;;;;;;;;;;26668:414;;26861:41;26889:7;-1:-1:-1;;;;;26861:41:0;26899:2;26861:19;:41::i;:::-;26975:38;27003:4;27010:2;26975:19;:38::i;:::-;26766:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;26766:270:0;;;;;;;;;;-1:-1:-1;;;26712:358:0;;;;;;;:::i;11855:733::-;-1:-1:-1;;;;;11995:20:0;;11987:70;;;;-1:-1:-1;;;11987:70:0;;7467:2:1;11987:70:0;;;7449:21:1;7506:2;7486:18;;;7479:30;7545:34;7525:18;;;7518:62;7616:7;7596:18;;;7589:35;7641:19;;11987:70:0;7265:401:1;11987:70:0;-1:-1:-1;;;;;12076:23:0;;12068:71;;;;-1:-1:-1;;;12068:71:0;;7873:2:1;12068:71:0;;;7855:21:1;7912:2;7892:18;;;7885:30;7951:34;7931:18;;;7924:62;8022:5;8002:18;;;7995:33;8045:19;;12068:71:0;7671:399:1;12068:71:0;-1:-1:-1;;;;;12236:17:0;;12212:21;12236:17;;;;;;;;;;;12272:23;;;;12264:74;;;;-1:-1:-1;;;12264:74:0;;8277:2:1;12264:74:0;;;8259:21:1;8316:2;8296:18;;;8289:30;8355:34;8335:18;;;8328:62;8426:8;8406:18;;;8399:36;8452:19;;12264:74:0;8075:402:1;12264:74:0;-1:-1:-1;;;;;12374:17:0;;;:9;:17;;;;;;;;;;;12394:22;;;12374:42;;12438:20;;;;;;;;:30;;12410:6;;12374:9;12438:30;;12410:6;;12438:30;:::i;:::-;;;;;;;;12503:9;-1:-1:-1;;;;;12486:35:0;12495:6;-1:-1:-1;;;;;12486:35:0;;12514:6;12486:35;;;;1800:25:1;;1788:2;1773:18;;1654:177;12486:35:0;;;;;;;;12534:46;11976:612;11855:733;;;:::o;30015:229::-;26241:4;26265:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;26265:29:0;;;;;;;;;;;;30085:152;;30129:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;30129:29:0;;;;;;;;;:36;;-1:-1:-1;;30129:36:0;30161:4;30129:36;;;30212:12;4306:10;;4226:98;30212:12;-1:-1:-1;;;;;30185:40:0;30203:7;-1:-1:-1;;;;;30185:40:0;30197:4;30185:40;;;;;;;;;;30015:229;;:::o;30252:230::-;26241:4;26265:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;26265:29:0;;;;;;;;;;;;30323:152;;;30398:5;30366:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;30366:29:0;;;;;;;;;;:37;;-1:-1:-1;;30366:37:0;;;30423:40;4306:10;;30366:12;;30423:40;;30398:5;30423:40;30252:230;;:::o;12875:399::-;-1:-1:-1;;;;;12959:21:0;;12951:65;;;;-1:-1:-1;;;12951:65:0;;8684:2:1;12951:65:0;;;8666:21:1;8723:2;8703:18;;;8696:30;8762:33;8742:18;;;8735:61;8813:18;;12951:65:0;8482:355:1;12951:65:0;13107:6;13091:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13124:18:0;;:9;:18;;;;;;;;;;:28;;13146:6;;13124:9;:28;;13146:6;;13124:28;:::i;:::-;;;;-1:-1:-1;;13168:37:0;;1800:25:1;;;-1:-1:-1;;;;;13168:37:0;;;13185:1;;13168:37;;1788:2:1;1773:18;13168:37:0;;;;;;;28711:218;;:::o;13607:591::-;-1:-1:-1;;;;;13691:21:0;;13683:67;;;;-1:-1:-1;;;13683:67:0;;9044:2:1;13683:67:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;9193:3;9173:18;;;9166:31;9214:19;;13683:67:0;8842:397:1;13683:67:0;-1:-1:-1;;;;;13850:18:0;;13825:22;13850:18;;;;;;;;;;;13887:24;;;;13879:71;;;;-1:-1:-1;;;13879:71:0;;9446:2:1;13879:71:0;;;9428:21:1;9485:2;9465:18;;;9458:30;9524:34;9504:18;;;9497:62;9595:4;9575:18;;;9568:32;9617:19;;13879:71:0;9244:398:1;13879:71:0;-1:-1:-1;;;;;13986:18:0;;:9;:18;;;;;;;;;;14007:23;;;13986:44;;14052:12;:22;;14024:6;;13986:9;14052:22;;14024:6;;14052:22;:::i;:::-;;;;-1:-1:-1;;14092:37:0;;1800:25:1;;;14118:1:0;;-1:-1:-1;;;;;14092:37:0;;;;;1788:2:1;1773:18;14092:37:0;;;;;;;27663:147;;;:::o;21075:451::-;21150:13;21176:19;21208:10;21212:6;21208:1;:10;:::i;:::-;:14;;21221:1;21208:14;:::i;:::-;21198:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21198:25:0;;21176:47;;21234:15;:6;21241:1;21234:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21234:15:0;;;;;;;;;21260;:6;21267:1;21260:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21260:15:0;;;;;;;;-1:-1:-1;21291:9:0;21303:10;21307:6;21303:1;:10;:::i;:::-;:14;;21316:1;21303:14;:::i;:::-;21291:26;;21286:135;21323:1;21319;:5;21286:135;;;21358:12;21371:5;21379:3;21371:11;21358:25;;;;;;;:::i;:::-;;;;21346:6;21353:1;21346:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;21346:37:0;;;;;;;;-1:-1:-1;21408:1:0;21398:11;;;;;21326:3;;;:::i;:::-;;;21286:135;;;-1:-1:-1;21439:10:0;;21431:55;;;;-1:-1:-1;;;21431:55:0;;10671:2:1;21431:55:0;;;10653:21:1;;;10690:18;;;10683:30;10749:34;10729:18;;;10722:62;10801:18;;21431:55:0;10469:356:1;21431:55:0;21511:6;21075:451;-1:-1:-1;;;21075:451:0:o;14:332:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;230:66;223:5;219:78;212:5;209:89;199:117;;312:1;309;302:12;543:258;615:1;625:113;639:6;636:1;633:13;625:113;;;715:11;;;709:18;696:11;;;689:39;661:2;654:10;625:113;;;756:6;753:1;750:13;747:48;;;-1:-1:-1;;791:1:1;773:16;;766:27;543:258::o;806:383::-;955:2;944:9;937:21;918:4;987:6;981:13;1030:6;1025:2;1014:9;1010:18;1003:34;1046:66;1105:6;1100:2;1089:9;1085:18;1080:2;1072:6;1068:15;1046:66;:::i;:::-;1173:2;1152:15;-1:-1:-1;;1148:29:1;1133:45;;;;1180:2;1129:54;;806:383;-1:-1:-1;;806:383:1:o;1194:196::-;1262:20;;-1:-1:-1;;;;;1311:54:1;;1301:65;;1291:93;;1380:1;1377;1370:12;1291:93;1194:196;;;:::o;1395:254::-;1463:6;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;1639:2;1624:18;;;;1611:32;;-1:-1:-1;;;1395:254:1:o;1836:186::-;1895:6;1948:2;1936:9;1927:7;1923:23;1919:32;1916:52;;;1964:1;1961;1954:12;1916:52;1987:29;2006:9;1987:29;:::i;2027:328::-;2104:6;2112;2120;2173:2;2161:9;2152:7;2148:23;2144:32;2141:52;;;2189:1;2186;2179:12;2141:52;2212:29;2231:9;2212:29;:::i;:::-;2202:39;;2260:38;2294:2;2283:9;2279:18;2260:38;:::i;:::-;2250:48;;2345:2;2334:9;2330:18;2317:32;2307:42;;2027:328;;;;;:::o;2360:180::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;-1:-1:-1;2511:23:1;;2360:180;-1:-1:-1;2360:180:1:o;2727:254::-;2795:6;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2908:9;2895:23;2885:33;;2937:38;2971:2;2960:9;2956:18;2937:38;:::i;:::-;2927:48;;2727:254;;;;;:::o;3406:260::-;3474:6;3482;3535:2;3523:9;3514:7;3510:23;3506:32;3503:52;;;3551:1;3548;3541:12;3503:52;3574:29;3593:9;3574:29;:::i;:::-;3564:39;;3622:38;3656:2;3645:9;3641:18;3622:38;:::i;3671:437::-;3750:1;3746:12;;;;3793;;;3814:61;;3868:4;3860:6;3856:17;3846:27;;3814:61;3921:2;3913:6;3910:14;3890:18;3887:38;3884:218;;;-1:-1:-1;;;3955:1:1;3948:88;4059:4;4056:1;4049:15;4087:4;4084:1;4077:15;4938:184;-1:-1:-1;;;4987:1:1;4980:88;5087:4;5084:1;5077:15;5111:4;5108:1;5101:15;5127:128;5167:3;5198:1;5194:6;5191:1;5188:13;5185:39;;;5204:18;;:::i;:::-;-1:-1:-1;5240:9:1;;5127:128::o;6474:786::-;6885:25;6880:3;6873:38;6855:3;6940:6;6934:13;6956:62;7011:6;7006:2;7001:3;6997:12;6990:4;6982:6;6978:17;6956:62;:::i;:::-;7082:19;7077:2;7037:16;;;7069:11;;;7062:40;7127:13;;7149:63;7127:13;7198:2;7190:11;;7183:4;7171:17;;7149:63;:::i;:::-;7232:17;7251:2;7228:26;;6474:786;-1:-1:-1;;;;6474:786:1:o;9647:125::-;9687:4;9715:1;9712;9709:8;9706:34;;;9720:18;;:::i;:::-;-1:-1:-1;9757:9:1;;9647:125::o;9777:168::-;9817:7;9883:1;9879;9875:6;9871:14;9868:1;9865:21;9860:1;9853:9;9846:17;9842:45;9839:71;;;9890:18;;:::i;:::-;-1:-1:-1;9930:9:1;;9777:168::o;9950:184::-;-1:-1:-1;;;9999:1:1;9992:88;10099:4;10096:1;10089:15;10123:4;10120:1;10113:15;10139:184;-1:-1:-1;;;10188:1:1;10181:88;10288:4;10285:1;10278:15;10312:4;10309:1;10302:15;10328:136;10367:3;10395:5;10385:39;;10404:18;;:::i;:::-;-1:-1:-1;;;10440:18:1;;10328:136::o
Swarm Source
ipfs://5e01917255770f24db90f53c3f3b5be80d32dc765a7987c6c3747c0045f0ba61
[ 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.