Polygon Sponsored slots available. Book your slot here!
Overview
Max Total Supply
59,948.886314307335108139 END
Holders
898 (0.00%)
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ENDBLOCK
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-08-16 */ // SPDX-License-Identifier: Unlicensed // owned by Endblock // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) 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/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) 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); _; } /** * @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 virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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 virtual { 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 virtual 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. * * May emit a {RoleGranted} event. */ 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. * * May emit a {RoleRevoked} event. */ 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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ 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. * * May emit a {RoleGranted} event. * * [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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } pragma solidity ^0.8.4; contract ENDBLOCK is ERC20, ERC20Burnable, Pausable, AccessControl { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); constructor() ERC20("Endblock", "END") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); _grantRole(BURNER_ROLE, msg.sender); } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } function burnFrom(address account, uint256 amount) public virtual override onlyRole(BURNER_ROLE) { _burn(account, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806008815260200167456e64626c6f636b60c01b8152506040518060400160405280600381526020016211539160ea1b81525081600390816200006091906200025d565b5060046200006f82826200025d565b50506005805460ff19169055506200008960003362000113565b620000b57f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3362000113565b620000e17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000113565b6200010d7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483362000113565b62000329565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001b45760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001733390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001e357607f821691505b6020821081036200020457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025857600081815260208120601f850160051c81016020861015620002335750805b601f850160051c820191505b8181101562000254578281556001016200023f565b5050505b505050565b81516001600160401b03811115620002795762000279620001b8565b62000291816200028a8454620001ce565b846200020a565b602080601f831160018114620002c95760008415620002b05750858301515b600019600386901b1c1916600185901b17855562000254565b600085815260208120601f198616915b82811015620002fa57888601518255948401946001909101908401620002d9565b5085821015620003195787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61149b80620003396000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806342966c68116100f9578063a217fddf11610097578063d539139311610071578063d53913931461037d578063d547741f146103a4578063dd62ed3e146103b7578063e63ab1e9146103ca57600080fd5b8063a217fddf1461034f578063a457c2d714610357578063a9059cbb1461036a57600080fd5b806379cc6790116100d357806379cc6790146103195780638456cb591461032c57806391d148541461033457806395d89b411461034757600080fd5b806342966c68146102d25780635c975abb146102e557806370a08231146102f057600080fd5b8063282c51f31161016657806336568abe1161014057806336568abe1461029157806339509351146102a45780633f4ba83a146102b757806340c10f19146102bf57600080fd5b8063282c51f3146102465780632f2ff15d1461026d578063313ce5671461028257600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063095ea7b3146101eb57806318160ddd146101fe57806323b872dd14610210578063248a9ca314610223575b600080fd5b6101c16101bc366004611193565b6103f1565b60405190151581526020015b60405180910390f35b6101de610428565b6040516101cd91906111e1565b6101c16101f9366004611230565b6104ba565b6002545b6040519081526020016101cd565b6101c161021e36600461125a565b6104d2565b610202610231366004611296565b60009081526006602052604090206001015490565b6102027f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61028061027b3660046112af565b6104f6565b005b604051601281526020016101cd565b61028061029f3660046112af565b610520565b6101c16102b2366004611230565b6105a3565b6102806105c5565b6102806102cd366004611230565b6105fa565b6102806102e0366004611296565b61062e565b60055460ff166101c1565b6102026102fe3660046112db565b6001600160a01b031660009081526020819052604090205490565b610280610327366004611230565b610638565b61028061066c565b6101c16103423660046112af565b61069e565b6101de6106c9565b610202600081565b6101c1610365366004611230565b6106d8565b6101c1610378366004611230565b610753565b6102027f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102806103b23660046112af565b610761565b6102026103c53660046112f6565b610786565b6102027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216637965db0b60e01b148061042257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461043790611320565b80601f016020809104026020016040519081016040528092919081815260200182805461046390611320565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000336104c88185856107b1565b5060019392505050565b6000336104e08582856108d5565b6104eb85858561094f565b506001949350505050565b60008281526006602052604090206001015461051181610b28565b61051b8383610b32565b505050565b6001600160a01b03811633146105955760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61059f8282610bb8565b5050565b6000336104c88185856105b68383610786565b6105c09190611370565b6107b1565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6105ef81610b28565b6105f7610c1f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661062481610b28565b61051b8383610c71565b6105f73382610d5c565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861066281610b28565b61051b8383610d5c565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61069681610b28565b6105f7610eb6565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461043790611320565b600033816106e68286610786565b9050838110156107465760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161058c565b6104eb82868684036107b1565b6000336104c881858561094f565b60008281526006602052604090206001015461077c81610b28565b61051b8383610bb8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166108135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058c565b6001600160a01b0382166108745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108e18484610786565b90506000198114610949578181101561093c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058c565b61094984848484036107b1565b50505050565b6001600160a01b0383166109b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058c565b6001600160a01b038216610a155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058c565b610a20838383610ef3565b6001600160a01b03831660009081526020819052604090205481811015610a985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610acf908490611370565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b1b91815260200190565b60405180910390a3610949565b6105f78133610efb565b610b3c828261069e565b61059f5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b743390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610bc2828261069e565b1561059f5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610c27610f5f565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610cc75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161058c565b610cd360008383610ef3565b8060026000828254610ce59190611370565b90915550506001600160a01b03821660009081526020819052604081208054839290610d12908490611370565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610dbc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161058c565b610dc882600083610ef3565b6001600160a01b03821660009081526020819052604090205481811015610e3c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161058c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610e6b908490611383565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b610ebe610faa565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c543390565b61051b610faa565b610f05828261069e565b61059f57610f1d816001600160a01b03166014610ff0565b610f28836020610ff0565b604051602001610f39929190611396565b60408051601f198184030181529082905262461bcd60e51b825261058c916004016111e1565b60055460ff16610fa85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161058c565b565b60055460ff1615610fa85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161058c565b60606000610fff83600261140b565b61100a906002611370565b67ffffffffffffffff81111561102257611022611422565b6040519080825280601f01601f19166020018201604052801561104c576020820181803683370190505b509050600360fc1b8160008151811061106757611067611438565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061109657611096611438565b60200101906001600160f81b031916908160001a90535060006110ba84600261140b565b6110c5906001611370565b90505b600181111561113d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106110f9576110f9611438565b1a60f81b82828151811061110f5761110f611438565b60200101906001600160f81b031916908160001a90535060049490941c936111368161144e565b90506110c8565b50831561118c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161058c565b9392505050565b6000602082840312156111a557600080fd5b81356001600160e01b03198116811461118c57600080fd5b60005b838110156111d85781810151838201526020016111c0565b50506000910152565b60208152600082518060208401526112008160408501602087016111bd565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461122b57600080fd5b919050565b6000806040838503121561124357600080fd5b61124c83611214565b946020939093013593505050565b60008060006060848603121561126f57600080fd5b61127884611214565b925061128660208501611214565b9150604084013590509250925092565b6000602082840312156112a857600080fd5b5035919050565b600080604083850312156112c257600080fd5b823591506112d260208401611214565b90509250929050565b6000602082840312156112ed57600080fd5b61118c82611214565b6000806040838503121561130957600080fd5b61131283611214565b91506112d260208401611214565b600181811c9082168061133457607f821691505b60208210810361135457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104225761042261135a565b818103818111156104225761042261135a565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516113ce8160178501602088016111bd565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516113ff8160288401602088016111bd565b01602801949350505050565b80820281158282048414176104225761042261135a565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161145d5761145d61135a565b50600019019056fea2646970667358221220d1afadc7333e49039ae32148d74b5eac23d1c29617ba98b467e7856a4ce1d86164736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806342966c68116100f9578063a217fddf11610097578063d539139311610071578063d53913931461037d578063d547741f146103a4578063dd62ed3e146103b7578063e63ab1e9146103ca57600080fd5b8063a217fddf1461034f578063a457c2d714610357578063a9059cbb1461036a57600080fd5b806379cc6790116100d357806379cc6790146103195780638456cb591461032c57806391d148541461033457806395d89b411461034757600080fd5b806342966c68146102d25780635c975abb146102e557806370a08231146102f057600080fd5b8063282c51f31161016657806336568abe1161014057806336568abe1461029157806339509351146102a45780633f4ba83a146102b757806340c10f19146102bf57600080fd5b8063282c51f3146102465780632f2ff15d1461026d578063313ce5671461028257600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063095ea7b3146101eb57806318160ddd146101fe57806323b872dd14610210578063248a9ca314610223575b600080fd5b6101c16101bc366004611193565b6103f1565b60405190151581526020015b60405180910390f35b6101de610428565b6040516101cd91906111e1565b6101c16101f9366004611230565b6104ba565b6002545b6040519081526020016101cd565b6101c161021e36600461125a565b6104d2565b610202610231366004611296565b60009081526006602052604090206001015490565b6102027f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61028061027b3660046112af565b6104f6565b005b604051601281526020016101cd565b61028061029f3660046112af565b610520565b6101c16102b2366004611230565b6105a3565b6102806105c5565b6102806102cd366004611230565b6105fa565b6102806102e0366004611296565b61062e565b60055460ff166101c1565b6102026102fe3660046112db565b6001600160a01b031660009081526020819052604090205490565b610280610327366004611230565b610638565b61028061066c565b6101c16103423660046112af565b61069e565b6101de6106c9565b610202600081565b6101c1610365366004611230565b6106d8565b6101c1610378366004611230565b610753565b6102027f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102806103b23660046112af565b610761565b6102026103c53660046112f6565b610786565b6102027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216637965db0b60e01b148061042257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461043790611320565b80601f016020809104026020016040519081016040528092919081815260200182805461046390611320565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b6000336104c88185856107b1565b5060019392505050565b6000336104e08582856108d5565b6104eb85858561094f565b506001949350505050565b60008281526006602052604090206001015461051181610b28565b61051b8383610b32565b505050565b6001600160a01b03811633146105955760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61059f8282610bb8565b5050565b6000336104c88185856105b68383610786565b6105c09190611370565b6107b1565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6105ef81610b28565b6105f7610c1f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661062481610b28565b61051b8383610c71565b6105f73382610d5c565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861066281610b28565b61051b8383610d5c565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61069681610b28565b6105f7610eb6565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461043790611320565b600033816106e68286610786565b9050838110156107465760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161058c565b6104eb82868684036107b1565b6000336104c881858561094f565b60008281526006602052604090206001015461077c81610b28565b61051b8383610bb8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166108135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058c565b6001600160a01b0382166108745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108e18484610786565b90506000198114610949578181101561093c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058c565b61094984848484036107b1565b50505050565b6001600160a01b0383166109b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058c565b6001600160a01b038216610a155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058c565b610a20838383610ef3565b6001600160a01b03831660009081526020819052604090205481811015610a985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610acf908490611370565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b1b91815260200190565b60405180910390a3610949565b6105f78133610efb565b610b3c828261069e565b61059f5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b743390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610bc2828261069e565b1561059f5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610c27610f5f565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610cc75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161058c565b610cd360008383610ef3565b8060026000828254610ce59190611370565b90915550506001600160a01b03821660009081526020819052604081208054839290610d12908490611370565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610dbc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161058c565b610dc882600083610ef3565b6001600160a01b03821660009081526020819052604090205481811015610e3c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161058c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610e6b908490611383565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b610ebe610faa565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c543390565b61051b610faa565b610f05828261069e565b61059f57610f1d816001600160a01b03166014610ff0565b610f28836020610ff0565b604051602001610f39929190611396565b60408051601f198184030181529082905262461bcd60e51b825261058c916004016111e1565b60055460ff16610fa85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161058c565b565b60055460ff1615610fa85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161058c565b60606000610fff83600261140b565b61100a906002611370565b67ffffffffffffffff81111561102257611022611422565b6040519080825280601f01601f19166020018201604052801561104c576020820181803683370190505b509050600360fc1b8160008151811061106757611067611438565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061109657611096611438565b60200101906001600160f81b031916908160001a90535060006110ba84600261140b565b6110c5906001611370565b90505b600181111561113d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106110f9576110f9611438565b1a60f81b82828151811061110f5761110f611438565b60200101906001600160f81b031916908160001a90535060049490941c936111368161144e565b90506110c8565b50831561118c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161058c565b9392505050565b6000602082840312156111a557600080fd5b81356001600160e01b03198116811461118c57600080fd5b60005b838110156111d85781810151838201526020016111c0565b50506000910152565b60208152600082518060208401526112008160408501602087016111bd565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461122b57600080fd5b919050565b6000806040838503121561124357600080fd5b61124c83611214565b946020939093013593505050565b60008060006060848603121561126f57600080fd5b61127884611214565b925061128660208501611214565b9150604084013590509250925092565b6000602082840312156112a857600080fd5b5035919050565b600080604083850312156112c257600080fd5b823591506112d260208401611214565b90509250929050565b6000602082840312156112ed57600080fd5b61118c82611214565b6000806040838503121561130957600080fd5b61131283611214565b91506112d260208401611214565b600181811c9082168061133457607f821691505b60208210810361135457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104225761042261135a565b818103818111156104225761042261135a565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516113ce8160178501602088016111bd565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516113ff8160288401602088016111bd565b01602801949350505050565b80820281158282048414176104225761042261135a565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008161145d5761145d61135a565b50600019019056fea2646970667358221220d1afadc7333e49039ae32148d74b5eac23d1c29617ba98b467e7856a4ce1d86164736f6c63430008130033
Deployed Bytecode Sourcemap
37116:1163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11024:204;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;11024:204:0;;;;;;;;25121:100;;;:::i;:::-;;;;;;;:::i;27472:201::-;;;;;;:::i;:::-;;:::i;26241:108::-;26329:12;;26241:108;;;1736:25:1;;;1724:2;1709:18;26241:108:0;1590:177:1;28253:295:0;;;;;;:::i;:::-;;:::i;12860:131::-;;;;;;:::i;:::-;12934:7;12961:12;;;:6;:12;;;;;:22;;;;12860:131;37328:62;;37366:24;37328:62;;13301:147;;;;;;:::i;:::-;;:::i;:::-;;26083:93;;;26166:2;2873:36:1;;2861:2;2846:18;26083:93:0;2731:184:1;14445:218:0;;;;;;:::i;:::-;;:::i;28957:238::-;;;;;;:::i;:::-;;:::i;37726:77::-;;;:::i;37811:107::-;;;;;;:::i;:::-;;:::i;36490:91::-;;;;;;:::i;:::-;;:::i;18379:86::-;18450:7;;;;18379:86;;26412:127;;;;;;:::i;:::-;-1:-1:-1;;;;;26513:18:0;26486:7;26513:18;;;;;;;;;;;;26412:127;37926:141;;;;;;:::i;:::-;;:::i;37645:73::-;;;:::i;11320:147::-;;;;;;:::i;:::-;;:::i;25340:104::-;;;:::i;10425:49::-;;10470:4;10425:49;;29698:436;;;;;;:::i;:::-;;:::i;26745:193::-;;;;;;:::i;:::-;;:::i;37259:62::-;;37297:24;37259:62;;13741:149;;;;;;:::i;:::-;;:::i;27001:151::-;;;;;;:::i;:::-;;:::i;37190:62::-;;37228:24;37190:62;;11024:204;11109:4;-1:-1:-1;;;;;;11133:47:0;;-1:-1:-1;;;11133:47:0;;:87;;-1:-1:-1;;;;;;;;;;1961:40:0;;;11184:36;11126:94;11024:204;-1:-1:-1;;11024:204:0:o;25121:100::-;25175:13;25208:5;25201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25121:100;:::o;27472:201::-;27555:4;8313:10;27611:32;8313:10;27627:7;27636:6;27611:8;:32::i;:::-;-1:-1:-1;27661:4:0;;27472:201;-1:-1:-1;;;27472:201:0:o;28253:295::-;28384:4;8313:10;28442:38;28458:4;8313:10;28473:6;28442:15;:38::i;:::-;28491:27;28501:4;28507:2;28511:6;28491:9;:27::i;:::-;-1:-1:-1;28536:4:0;;28253:295;-1:-1:-1;;;;28253:295:0:o;13301:147::-;12934:7;12961:12;;;:6;:12;;;;;:22;;;10916:16;10927:4;10916:10;:16::i;:::-;13415:25:::1;13426:4;13432:7;13415:10;:25::i;:::-;13301:147:::0;;;:::o;14445:218::-;-1:-1:-1;;;;;14541:23:0;;8313:10;14541:23;14533:83;;;;-1:-1:-1;;;14533:83:0;;4148:2:1;14533:83:0;;;4130:21:1;4187:2;4167:18;;;4160:30;4226:34;4206:18;;;4199:62;-1:-1:-1;;;4277:18:1;;;4270:45;4332:19;;14533:83:0;;;;;;;;;14629:26;14641:4;14647:7;14629:11;:26::i;:::-;14445:218;;:::o;28957:238::-;29045:4;8313:10;29101:64;8313:10;29117:7;29154:10;29126:25;8313:10;29117:7;29126:9;:25::i;:::-;:38;;;;:::i;:::-;29101:8;:64::i;37726:77::-;37228:24;10916:16;10927:4;10916:10;:16::i;:::-;37785:10:::1;:8;:10::i;:::-;37726:77:::0;:::o;37811:107::-;37297:24;10916:16;10927:4;10916:10;:16::i;:::-;37893:17:::1;37899:2;37903:6;37893:5;:17::i;36490:91::-:0;36546:27;8313:10;36566:6;36546:5;:27::i;37926:141::-;37366:24;10916:16;10927:4;10916:10;:16::i;:::-;38037:22:::1;38043:7;38052:6;38037:5;:22::i;37645:73::-:0;37228:24;10916:16;10927:4;10916:10;:16::i;:::-;37702:8:::1;:6;:8::i;11320:147::-:0;11406:4;11430:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11430:29:0;;;;;;;;;;;;;;;11320:147::o;25340:104::-;25396:13;25429:7;25422:14;;;;;:::i;29698:436::-;29791:4;8313:10;29791:4;29874:25;8313:10;29891:7;29874:9;:25::i;:::-;29847:52;;29938:15;29918:16;:35;;29910:85;;;;-1:-1:-1;;;29910:85:0;;4826:2:1;29910:85:0;;;4808:21:1;4865:2;4845:18;;;4838:30;4904:34;4884:18;;;4877:62;-1:-1:-1;;;4955:18:1;;;4948:35;5000:19;;29910:85:0;4624:401:1;29910:85:0;30031:60;30040:5;30047:7;30075:15;30056:16;:34;30031:8;:60::i;26745:193::-;26824:4;8313:10;26880:28;8313:10;26897:2;26901:6;26880:9;:28::i;13741:149::-;12934:7;12961:12;;;:6;:12;;;;;:22;;;10916:16;10927:4;10916:10;:16::i;:::-;13856:26:::1;13868:4;13874:7;13856:11;:26::i;27001:151::-:0;-1:-1:-1;;;;;27117:18:0;;;27090:7;27117:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27001:151::o;33323:380::-;-1:-1:-1;;;;;33459:19:0;;33451:68;;;;-1:-1:-1;;;33451:68:0;;5232:2:1;33451:68:0;;;5214:21:1;5271:2;5251:18;;;5244:30;5310:34;5290:18;;;5283:62;-1:-1:-1;;;5361:18:1;;;5354:34;5405:19;;33451:68:0;5030:400:1;33451:68:0;-1:-1:-1;;;;;33538:21:0;;33530:68;;;;-1:-1:-1;;;33530:68:0;;5637:2:1;33530:68:0;;;5619:21:1;5676:2;5656:18;;;5649:30;5715:34;5695:18;;;5688:62;-1:-1:-1;;;5766:18:1;;;5759:32;5808:19;;33530:68:0;5435:398:1;33530:68:0;-1:-1:-1;;;;;33611:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33663:32;;1736:25:1;;;33663:32:0;;1709:18:1;33663:32:0;;;;;;;33323:380;;;:::o;33994:453::-;34129:24;34156:25;34166:5;34173:7;34156:9;:25::i;:::-;34129:52;;-1:-1:-1;;34196:16:0;:37;34192:248;;34278:6;34258:16;:26;;34250:68;;;;-1:-1:-1;;;34250:68:0;;6040:2:1;34250:68:0;;;6022:21:1;6079:2;6059:18;;;6052:30;6118:31;6098:18;;;6091:59;6167:18;;34250:68:0;5838:353:1;34250:68:0;34362:51;34371:5;34378:7;34406:6;34387:16;:25;34362:8;:51::i;:::-;34118:329;33994:453;;;:::o;30604:671::-;-1:-1:-1;;;;;30735:18:0;;30727:68;;;;-1:-1:-1;;;30727:68:0;;6398:2:1;30727:68:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:35;6572:19;;30727:68:0;6196:401:1;30727:68:0;-1:-1:-1;;;;;30814:16:0;;30806:64;;;;-1:-1:-1;;;30806:64:0;;6804:2:1;30806:64:0;;;6786:21:1;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;-1:-1:-1;;;6933:18:1;;;6926:33;6976:19;;30806:64:0;6602:399:1;30806:64:0;30883:38;30904:4;30910:2;30914:6;30883:20;:38::i;:::-;-1:-1:-1;;;;;30956:15:0;;30934:19;30956:15;;;;;;;;;;;30990:21;;;;30982:72;;;;-1:-1:-1;;;30982:72:0;;7208:2:1;30982:72:0;;;7190:21:1;7247:2;7227:18;;;7220:30;7286:34;7266:18;;;7259:62;-1:-1:-1;;;7337:18:1;;;7330:36;7383:19;;30982:72:0;7006:402:1;30982:72:0;-1:-1:-1;;;;;31090:15:0;;;:9;:15;;;;;;;;;;;31108:20;;;31090:38;;31150:13;;;;;;;;:23;;31122:6;;31090:9;31150:23;;31122:6;;31150:23;:::i;:::-;;;;;;;;31206:2;-1:-1:-1;;;;;31191:26:0;31200:4;-1:-1:-1;;;;;31191:26:0;;31210:6;31191:26;;;;1736:25:1;;1724:2;1709:18;;1590:177;31191:26:0;;;;;;;;31230:37;13301:147;11771:105;11838:30;11849:4;8313:10;11838;:30::i;16042:238::-;16126:22;16134:4;16140:7;16126;:22::i;:::-;16121:152;;16165:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;16165:29:0;;;;;;;;;:36;;-1:-1:-1;;16165:36:0;16197:4;16165:36;;;16248:12;8313:10;;8233:98;16248:12;-1:-1:-1;;;;;16221:40:0;16239:7;-1:-1:-1;;;;;16221:40:0;16233:4;16221:40;;;;;;;;;;16042:238;;:::o;16460:239::-;16544:22;16552:4;16558:7;16544;:22::i;:::-;16540:152;;;16615:5;16583:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;16583:29:0;;;;;;;;;;:37;;-1:-1:-1;;16583:37:0;;;16640:40;8313:10;;16583:12;;16640:40;;16615:5;16640:40;16460:239;;:::o;19234:120::-;18243:16;:14;:16::i;:::-;19293:7:::1;:15:::0;;-1:-1:-1;;19293:15:0::1;::::0;;19324:22:::1;8313:10:::0;19333:12:::1;19324:22;::::0;-1:-1:-1;;;;;7577:32:1;;;7559:51;;7547:2;7532:18;19324:22:0::1;;;;;;;19234:120::o:0;31562:399::-;-1:-1:-1;;;;;31646:21:0;;31638:65;;;;-1:-1:-1;;;31638:65:0;;7823:2:1;31638:65:0;;;7805:21:1;7862:2;7842:18;;;7835:30;7901:33;7881:18;;;7874:61;7952:18;;31638:65:0;7621:355:1;31638:65:0;31716:49;31745:1;31749:7;31758:6;31716:20;:49::i;:::-;31794:6;31778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;31811:18:0;;:9;:18;;;;;;;;;;:28;;31833:6;;31811:9;:28;;31833:6;;31811:28;:::i;:::-;;;;-1:-1:-1;;31855:37:0;;1736:25:1;;;-1:-1:-1;;;;;31855:37:0;;;31872:1;;31855:37;;1724:2:1;1709:18;31855:37:0;;;;;;;14445:218;;:::o;32294:591::-;-1:-1:-1;;;;;32378:21:0;;32370:67;;;;-1:-1:-1;;;32370:67:0;;8183:2:1;32370:67:0;;;8165:21:1;8222:2;8202:18;;;8195:30;8261:34;8241:18;;;8234:62;-1:-1:-1;;;8312:18:1;;;8305:31;8353:19;;32370:67:0;7981:397:1;32370:67:0;32450:49;32471:7;32488:1;32492:6;32450:20;:49::i;:::-;-1:-1:-1;;;;;32537:18:0;;32512:22;32537:18;;;;;;;;;;;32574:24;;;;32566:71;;;;-1:-1:-1;;;32566:71:0;;8585:2:1;32566:71:0;;;8567:21:1;8624:2;8604:18;;;8597:30;8663:34;8643:18;;;8636:62;-1:-1:-1;;;8714:18:1;;;8707:32;8756:19;;32566:71:0;8383:398:1;32566:71:0;-1:-1:-1;;;;;32673:18:0;;:9;:18;;;;;;;;;;32694:23;;;32673:44;;32739:12;:22;;32711:6;;32673:9;32739:22;;32711:6;;32739:22;:::i;:::-;;;;-1:-1:-1;;32779:37:0;;1736:25:1;;;32805:1:0;;-1:-1:-1;;;;;32779:37:0;;;;;1724:2:1;1709:18;32779:37:0;;;;;;;13301:147;;;:::o;18975:118::-;17984:19;:17;:19::i;:::-;19035:7:::1;:14:::0;;-1:-1:-1;;19035:14:0::1;19045:4;19035:14;::::0;;19065:20:::1;19072:12;8313:10:::0;;8233:98;38077:199;17984:19;:17;:19::i;12166:505::-;12255:22;12263:4;12269:7;12255;:22::i;:::-;12250:414;;12443:41;12471:7;-1:-1:-1;;;;;12443:41:0;12481:2;12443:19;:41::i;:::-;12557:38;12585:4;12592:2;12557:19;:38::i;:::-;12348:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12348:270:0;;;;;;;;;;-1:-1:-1;;;12294:358:0;;;;;;;:::i;18723:108::-;18450:7;;;;18782:41;;;;-1:-1:-1;;;18782:41:0;;9938:2:1;18782:41:0;;;9920:21:1;9977:2;9957:18;;;9950:30;-1:-1:-1;;;9996:18:1;;;9989:50;10056:18;;18782:41:0;9736:344:1;18782:41:0;18723:108::o;18538:::-;18450:7;;;;18608:9;18600:38;;;;-1:-1:-1;;;18600:38:0;;10287:2:1;18600:38:0;;;10269:21:1;10326:2;10306:18;;;10299:30;-1:-1:-1;;;10345:18:1;;;10338:46;10401:18;;18600:38:0;10085:340:1;3747:451:0;3822:13;3848:19;3880:10;3884:6;3880:1;:10;:::i;:::-;:14;;3893:1;3880:14;:::i;:::-;3870:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3870:25:0;;3848:47;;-1:-1:-1;;;3906:6:0;3913:1;3906:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3906:15:0;;;;;;;;;-1:-1:-1;;;3932:6:0;3939:1;3932:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3932:15:0;;;;;;;;-1:-1:-1;3963:9:0;3975:10;3979:6;3975:1;:10;:::i;:::-;:14;;3988:1;3975:14;:::i;:::-;3963:26;;3958:135;3995:1;3991;:5;3958:135;;;-1:-1:-1;;;4043:5:0;4051:3;4043:11;4030:25;;;;;;;:::i;:::-;;;;4018:6;4025:1;4018:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;4018:37:0;;;;;;;;-1:-1:-1;4080:1:0;4070:11;;;;;3998:3;;;:::i;:::-;;;3958:135;;;-1:-1:-1;4111:10:0;;4103:55;;;;-1:-1:-1;;;4103:55:0;;11210:2:1;4103:55:0;;;11192:21:1;;;11229:18;;;11222:30;11288:34;11268:18;;;11261:62;11340:18;;4103:55:0;11008:356:1;4103:55:0;4183:6;3747:451;-1:-1:-1;;;3747:451:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:173::-;1221:20;;-1:-1:-1;;;;;1270:31:1;;1260:42;;1250:70;;1316:1;1313;1306:12;1250:70;1153:173;;;:::o;1331:254::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1499:29;1518:9;1499:29;:::i;:::-;1489:39;1575:2;1560:18;;;;1547:32;;-1:-1:-1;;;1331:254:1:o;1772:328::-;1849:6;1857;1865;1918:2;1906:9;1897:7;1893:23;1889:32;1886:52;;;1934:1;1931;1924:12;1886:52;1957:29;1976:9;1957:29;:::i;:::-;1947:39;;2005:38;2039:2;2028:9;2024:18;2005:38;:::i;:::-;1995:48;;2090:2;2079:9;2075:18;2062:32;2052:42;;1772:328;;;;;:::o;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2472:254::-;2540:6;2548;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2653:9;2640:23;2630:33;;2682:38;2716:2;2705:9;2701:18;2682:38;:::i;:::-;2672:48;;2472:254;;;;;:::o;3105:186::-;3164:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3256:29;3275:9;3256:29;:::i;3296:260::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3464:29;3483:9;3464:29;:::i;:::-;3454:39;;3512:38;3546:2;3535:9;3531:18;3512:38;:::i;3561:380::-;3640:1;3636:12;;;;3683;;;3704:61;;3758:4;3750:6;3746:17;3736:27;;3704:61;3811:2;3803:6;3800:14;3780:18;3777:38;3774:161;;3857:10;3852:3;3848:20;3845:1;3838:31;3892:4;3889:1;3882:15;3920:4;3917:1;3910:15;3774:161;;3561:380;;;:::o;4362:127::-;4423:10;4418:3;4414:20;4411:1;4404:31;4454:4;4451:1;4444:15;4478:4;4475:1;4468:15;4494:125;4559:9;;;4580:10;;;4577:36;;;4593:18;;:::i;8786:128::-;8853:9;;;8874:11;;;8871:37;;;8888:18;;:::i;8919:812::-;9330:25;9325:3;9318:38;9300:3;9385:6;9379:13;9401:75;9469:6;9464:2;9459:3;9455:12;9448:4;9440:6;9436:17;9401:75;:::i;:::-;-1:-1:-1;;;9535:2:1;9495:16;;;9527:11;;;9520:40;9585:13;;9607:76;9585:13;9669:2;9661:11;;9654:4;9642:17;;9607:76;:::i;:::-;9703:17;9722:2;9699:26;;8919:812;-1:-1:-1;;;;8919:812:1:o;10430:168::-;10503:9;;;10534;;10551:15;;;10545:22;;10531:37;10521:71;;10572:18;;:::i;10603:127::-;10664:10;10659:3;10655:20;10652:1;10645:31;10695:4;10692:1;10685:15;10719:4;10716:1;10709:15;10735:127;10796:10;10791:3;10787:20;10784:1;10777:31;10827:4;10824:1;10817:15;10851:4;10848:1;10841:15;10867:136;10906:3;10934:5;10924:39;;10943:18;;:::i;:::-;-1:-1:-1;;;10979:18:1;;10867:136::o
Swarm Source
ipfs://d1afadc7333e49039ae32148d74b5eac23d1c29617ba98b467e7856a4ce1d861
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.