XRC-20
Gaming
Overview
Max Total Supply
99,999,972 GAMA
Holders
100,579
Total Transfers
-
Market
Price
$0.9117 @ 13.561488 XDC (+12.20%)
Onchain Market Cap
$91,172,347.43
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GamaCoin
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at xdcscan.com on 2024-10-22 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @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 a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of 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 * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @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. */ 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 `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; /** * @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: * * ```solidity * 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}: * * ```solidity * 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. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ 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 returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @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 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 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 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 `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } } // File: contracts/gama.sol pragma solidity ^0.8.0; contract GamaCoin is ERC20Burnable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant GAME_CONTRACT_ROLE = keccak256("GAME_CONTRACT_ROLE"); constructor() ERC20("Gama Coin", "GAMA") { _mint(msg.sender, 100000000 * (10 ** uint256(decimals()))); // 100 million tokens with decimals _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); _grantRole(BURNER_ROLE, msg.sender); _grantRole(GAME_CONTRACT_ROLE, msg.sender); // Grant GAME_CONTRACT_ROLE to the deployer initially } // Grant the MINTER_ROLE to an address function grantMinterRole(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { grantRole(MINTER_ROLE, account); } // Revoke the MINTER_ROLE from an address function revokeMinterRole(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { revokeRole(MINTER_ROLE, account); } // Grant the BURNER_ROLE to an address function grantBurnerRole(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { grantRole(BURNER_ROLE, account); } // Revoke the BURNER_ROLE from an address function revokeBurnerRole(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { revokeRole(BURNER_ROLE, account); } // Grant the GAME_CONTRACT_ROLE to an address function grantGameContractRole(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { grantRole(GAME_CONTRACT_ROLE, account); } // Revoke the GAME_CONTRACT_ROLE from an address function revokeGameContractRole(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { revokeRole(GAME_CONTRACT_ROLE, account); } // Mint new tokens to an address function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) { _mint(to, amount); } // Burn tokens from an address function burn(address from, uint256 amount) public onlyRole(BURNER_ROLE) { _burn(from, amount); } // Mint and transfer tokens to a player function mintAndTransfer(address to, uint256 amount) public onlyRole(GAME_CONTRACT_ROLE) { _mint(to, amount); emit Transfer(address(0), to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"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":"GAME_CONTRACT_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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantBurnerRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantGameContractRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantMinterRole","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAndTransfer","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":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeBurnerRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeGameContractRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeMinterRole","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b506040518060400160405280600981526020017f47616d6120436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f47414d410000000000000000000000000000000000000000000000000000000081525081600390816200008e91906200081b565b508060049081620000a091906200081b565b505050620000e633620000b86200019a60201b60201c565b60ff16600a620000c9919062000a7c565b6305f5e100620000da919062000acc565b620001a260201b60201c565b620000fa5f801b336200022c60201b60201c565b506200012d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200022c60201b60201c565b50620001607f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336200022c60201b60201c565b50620001937f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb1336200022c60201b60201c565b5062000c15565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000215575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200020c919062000b59565b60405180910390fd5b620002285f83836200032860201b60201c565b5050565b5f6200023f83836200054c60201b60201c565b6200031e57600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620002ba620005b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001905062000322565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200037c578060025f8282546200036f919062000b74565b925050819055506200044d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000408578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003ff9392919062000bbf565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000496578060025f8282540392505081905550620004e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200053f919062000bfa565b60405180910390a3505050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200063357607f821691505b602082108103620006495762000648620005ee565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000670565b620006b9868362000670565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000703620006fd620006f784620006d1565b620006da565b620006d1565b9050919050565b5f819050919050565b6200071e83620006e3565b620007366200072d826200070a565b8484546200067c565b825550505050565b5f90565b6200074c6200073e565b6200075981848462000713565b505050565b5b818110156200078057620007745f8262000742565b6001810190506200075f565b5050565b601f821115620007cf5762000799816200064f565b620007a48462000661565b81016020851015620007b4578190505b620007cc620007c38562000661565b8301826200075e565b50505b505050565b5f82821c905092915050565b5f620007f15f1984600802620007d4565b1980831691505092915050565b5f6200080b8383620007e0565b9150826002028217905092915050565b6200082682620005b7565b67ffffffffffffffff811115620008425762000841620005c1565b5b6200084e82546200061b565b6200085b82828562000784565b5f60209050601f83116001811462000891575f84156200087c578287015190505b620008888582620007fe565b865550620008f7565b601f198416620008a1866200064f565b5f5b82811015620008ca57848901518255600182019150602085019450602081019050620008a3565b86831015620008ea5784890151620008e6601f891682620007e0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200098957808604811115620009615762000960620008ff565b5b6001851615620009715780820291505b808102905062000981856200092c565b945062000941565b94509492505050565b5f82620009a3576001905062000a75565b81620009b2575f905062000a75565b8160018114620009cb5760028114620009d65762000a0c565b600191505062000a75565b60ff841115620009eb57620009ea620008ff565b5b8360020a91508482111562000a055762000a04620008ff565b5b5062000a75565b5060208310610133831016604e8410600b841016171562000a465782820a90508381111562000a405762000a3f620008ff565b5b62000a75565b62000a55848484600162000938565b9250905081840481111562000a6f5762000a6e620008ff565b5b81810290505b9392505050565b5f62000a8882620006d1565b915062000a9583620006d1565b925062000ac47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000992565b905092915050565b5f62000ad882620006d1565b915062000ae583620006d1565b925082820262000af581620006d1565b9150828204841483151762000b0f5762000b0e620008ff565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000b418262000b16565b9050919050565b62000b538162000b35565b82525050565b5f60208201905062000b6e5f83018462000b48565b92915050565b5f62000b8082620006d1565b915062000b8d83620006d1565b925082820190508082111562000ba85762000ba7620008ff565b5b92915050565b62000bb981620006d1565b82525050565b5f60608201905062000bd45f83018662000b48565b62000be3602083018562000bae565b62000bf2604083018462000bae565b949350505050565b5f60208201905062000c0f5f83018462000bae565b92915050565b611bd38062000c235f395ff3fe608060405234801561000f575f80fd5b50600436106101d8575f3560e01c80634fcdaba811610102578063a217fddf116100a0578063d53913931161006f578063d53913931461054e578063d547741f1461056c578063d98d23b114610588578063dd62ed3e146105a4576101d8565b8063a217fddf146104c6578063a9059cbb146104e4578063b5e352da14610514578063c3052ffc14610532576101d8565b806379cc6790116100dc57806379cc67901461044057806391d148541461045c57806395d89b411461048c5780639dc29fac146104aa576101d8565b80634fcdaba8146103d857806369e2f0fb146103f457806370a0823114610410576101d8565b8063248a9ca31161017a57806336568abe1161014957806336568abe146103685780633dd1eb611461038457806340c10f19146103a057806342966c68146103bc576101d8565b8063248a9ca3146102e0578063282c51f3146103105780632f2ff15d1461032e578063313ce5671461034a576101d8565b8063086c0922116101b6578063086c092214610246578063095ea7b31461026257806318160ddd1461029257806323b872dd146102b0576101d8565b806301ffc9a7146101dc57806306fdde031461020c578063080571eb1461022a575b5f80fd5b6101f660048036038101906101f19190611685565b6105d4565b60405161020391906116ca565b60405180910390f35b61021461064d565b604051610221919061176d565b60405180910390f35b610244600480360381019061023f919061181a565b6106dd565b005b610260600480360381019061025b9190611858565b61077b565b005b61027c6004803603810190610277919061181a565b6107b5565b60405161028991906116ca565b60405180910390f35b61029a6107d7565b6040516102a79190611892565b60405180910390f35b6102ca60048036038101906102c591906118ab565b6107e0565b6040516102d791906116ca565b60405180910390f35b6102fa60048036038101906102f5919061192e565b61080e565b6040516103079190611968565b60405180910390f35b61031861082b565b6040516103259190611968565b60405180910390f35b61034860048036038101906103439190611981565b61084f565b005b610352610871565b60405161035f91906119da565b60405180910390f35b610382600480360381019061037d9190611981565b610879565b005b61039e60048036038101906103999190611858565b6108f4565b005b6103ba60048036038101906103b5919061181a565b61092e565b005b6103d660048036038101906103d191906119f3565b610967565b005b6103f260048036038101906103ed9190611858565b61097b565b005b61040e60048036038101906104099190611858565b6109b5565b005b61042a60048036038101906104259190611858565b6109ef565b6040516104379190611892565b60405180910390f35b61045a6004803603810190610455919061181a565b610a34565b005b61047660048036038101906104719190611981565b610a54565b60405161048391906116ca565b60405180910390f35b610494610ab8565b6040516104a1919061176d565b60405180910390f35b6104c460048036038101906104bf919061181a565b610b48565b005b6104ce610b81565b6040516104db9190611968565b60405180910390f35b6104fe60048036038101906104f9919061181a565b610b87565b60405161050b91906116ca565b60405180910390f35b61051c610ba9565b6040516105299190611968565b60405180910390f35b61054c60048036038101906105479190611858565b610bcd565b005b610556610c07565b6040516105639190611968565b60405180910390f35b61058660048036038101906105819190611981565b610c2b565b005b6105a2600480360381019061059d9190611858565b610c4d565b005b6105be60048036038101906105b99190611a1e565b610c87565b6040516105cb9190611892565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610646575061064582610d09565b5b9050919050565b60606003805461065c90611a89565b80601f016020809104026020016040519081016040528092919081815260200182805461068890611a89565b80156106d35780601f106106aa576101008083540402835291602001916106d3565b820191905f5260205f20905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b7f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb161070781610d72565b6107118383610d86565b8273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161076e9190611892565b60405180910390a3505050565b5f801b61078781610d72565b6107b17f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb183610c2b565b5050565b5f806107bf610e05565b90506107cc818585610e0c565b600191505092915050565b5f600254905090565b5f806107ea610e05565b90506107f7858285610e1e565b610802858585610eb0565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6108588261080e565b61086181610d72565b61086b8383610fa0565b50505050565b5f6012905090565b610881610e05565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e5576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ef828261108a565b505050565b5f801b61090081610d72565b61092a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68361084f565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661095881610d72565b6109628383610d86565b505050565b610978610972610e05565b82611174565b50565b5f801b61098781610d72565b6109b17f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb18361084f565b5050565b5f801b6109c181610d72565b6109eb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683610c2b565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a4682610a40610e05565b83610e1e565b610a508282611174565b5050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060048054610ac790611a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610af390611a89565b8015610b3e5780601f10610b1557610100808354040283529160200191610b3e565b820191905f5260205f20905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610b7281610d72565b610b7c8383611174565b505050565b5f801b81565b5f80610b91610e05565b9050610b9e818585610eb0565b600191505092915050565b7f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb181565b5f801b610bd981610d72565b610c037f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84883610c2b565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610c348261080e565b610c3d81610d72565b610c47838361108a565b50505050565b5f801b610c5981610d72565b610c837f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8488361084f565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d8381610d7e610e05565b6111f3565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ded9190611ac8565b60405180910390fd5b610e015f8383611244565b5050565b5f33905090565b610e19838383600161145d565b505050565b5f610e298484610c87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eaa5781811015610e9b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e9293929190611ae1565b60405180910390fd5b610ea984848484035f61145d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f20575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f179190611ac8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f90575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f879190611ac8565b60405180910390fd5b610f9b838383611244565b505050565b5f610fab8383610a54565b61108057600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061101d610e05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611084565b5f90505b92915050565b5f6110958383610a54565b1561116a575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611107610e05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a46001905061116e565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111db9190611ac8565b60405180910390fd5b6111ef825f83611244565b5050565b6111fd8282610a54565b6112405780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611237929190611b16565b60405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611294578060025f8282546112889190611b6a565b92505081905550611362565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561131d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161131493929190611ae1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a9578060025f82825403925050819055506113f3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114509190611892565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cd575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114c49190611ac8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115349190611ac8565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611626578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161161d9190611892565b60405180910390a35b50505050565b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61166481611630565b811461166e575f80fd5b50565b5f8135905061167f8161165b565b92915050565b5f6020828403121561169a5761169961162c565b5b5f6116a784828501611671565b91505092915050565b5f8115159050919050565b6116c4816116b0565b82525050565b5f6020820190506116dd5f8301846116bb565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561171a5780820151818401526020810190506116ff565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61173f826116e3565b61174981856116ed565b93506117598185602086016116fd565b61176281611725565b840191505092915050565b5f6020820190508181035f8301526117858184611735565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117b68261178d565b9050919050565b6117c6816117ac565b81146117d0575f80fd5b50565b5f813590506117e1816117bd565b92915050565b5f819050919050565b6117f9816117e7565b8114611803575f80fd5b50565b5f81359050611814816117f0565b92915050565b5f80604083850312156118305761182f61162c565b5b5f61183d858286016117d3565b925050602061184e85828601611806565b9150509250929050565b5f6020828403121561186d5761186c61162c565b5b5f61187a848285016117d3565b91505092915050565b61188c816117e7565b82525050565b5f6020820190506118a55f830184611883565b92915050565b5f805f606084860312156118c2576118c161162c565b5b5f6118cf868287016117d3565b93505060206118e0868287016117d3565b92505060406118f186828701611806565b9150509250925092565b5f819050919050565b61190d816118fb565b8114611917575f80fd5b50565b5f8135905061192881611904565b92915050565b5f602082840312156119435761194261162c565b5b5f6119508482850161191a565b91505092915050565b611962816118fb565b82525050565b5f60208201905061197b5f830184611959565b92915050565b5f80604083850312156119975761199661162c565b5b5f6119a48582860161191a565b92505060206119b5858286016117d3565b9150509250929050565b5f60ff82169050919050565b6119d4816119bf565b82525050565b5f6020820190506119ed5f8301846119cb565b92915050565b5f60208284031215611a0857611a0761162c565b5b5f611a1584828501611806565b91505092915050565b5f8060408385031215611a3457611a3361162c565b5b5f611a41858286016117d3565b9250506020611a52858286016117d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611aa057607f821691505b602082108103611ab357611ab2611a5c565b5b50919050565b611ac2816117ac565b82525050565b5f602082019050611adb5f830184611ab9565b92915050565b5f606082019050611af45f830186611ab9565b611b016020830185611883565b611b0e6040830184611883565b949350505050565b5f604082019050611b295f830185611ab9565b611b366020830184611959565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b74826117e7565b9150611b7f836117e7565b9250828201905080821115611b9757611b96611b3d565b5b9291505056fea2646970667358221220f8d18e3569f0a0eb6a4273dd1796d55fb5634a9d119b83f8395aafe3c16571d364736f6c63430008170033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d8575f3560e01c80634fcdaba811610102578063a217fddf116100a0578063d53913931161006f578063d53913931461054e578063d547741f1461056c578063d98d23b114610588578063dd62ed3e146105a4576101d8565b8063a217fddf146104c6578063a9059cbb146104e4578063b5e352da14610514578063c3052ffc14610532576101d8565b806379cc6790116100dc57806379cc67901461044057806391d148541461045c57806395d89b411461048c5780639dc29fac146104aa576101d8565b80634fcdaba8146103d857806369e2f0fb146103f457806370a0823114610410576101d8565b8063248a9ca31161017a57806336568abe1161014957806336568abe146103685780633dd1eb611461038457806340c10f19146103a057806342966c68146103bc576101d8565b8063248a9ca3146102e0578063282c51f3146103105780632f2ff15d1461032e578063313ce5671461034a576101d8565b8063086c0922116101b6578063086c092214610246578063095ea7b31461026257806318160ddd1461029257806323b872dd146102b0576101d8565b806301ffc9a7146101dc57806306fdde031461020c578063080571eb1461022a575b5f80fd5b6101f660048036038101906101f19190611685565b6105d4565b60405161020391906116ca565b60405180910390f35b61021461064d565b604051610221919061176d565b60405180910390f35b610244600480360381019061023f919061181a565b6106dd565b005b610260600480360381019061025b9190611858565b61077b565b005b61027c6004803603810190610277919061181a565b6107b5565b60405161028991906116ca565b60405180910390f35b61029a6107d7565b6040516102a79190611892565b60405180910390f35b6102ca60048036038101906102c591906118ab565b6107e0565b6040516102d791906116ca565b60405180910390f35b6102fa60048036038101906102f5919061192e565b61080e565b6040516103079190611968565b60405180910390f35b61031861082b565b6040516103259190611968565b60405180910390f35b61034860048036038101906103439190611981565b61084f565b005b610352610871565b60405161035f91906119da565b60405180910390f35b610382600480360381019061037d9190611981565b610879565b005b61039e60048036038101906103999190611858565b6108f4565b005b6103ba60048036038101906103b5919061181a565b61092e565b005b6103d660048036038101906103d191906119f3565b610967565b005b6103f260048036038101906103ed9190611858565b61097b565b005b61040e60048036038101906104099190611858565b6109b5565b005b61042a60048036038101906104259190611858565b6109ef565b6040516104379190611892565b60405180910390f35b61045a6004803603810190610455919061181a565b610a34565b005b61047660048036038101906104719190611981565b610a54565b60405161048391906116ca565b60405180910390f35b610494610ab8565b6040516104a1919061176d565b60405180910390f35b6104c460048036038101906104bf919061181a565b610b48565b005b6104ce610b81565b6040516104db9190611968565b60405180910390f35b6104fe60048036038101906104f9919061181a565b610b87565b60405161050b91906116ca565b60405180910390f35b61051c610ba9565b6040516105299190611968565b60405180910390f35b61054c60048036038101906105479190611858565b610bcd565b005b610556610c07565b6040516105639190611968565b60405180910390f35b61058660048036038101906105819190611981565b610c2b565b005b6105a2600480360381019061059d9190611858565b610c4d565b005b6105be60048036038101906105b99190611a1e565b610c87565b6040516105cb9190611892565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610646575061064582610d09565b5b9050919050565b60606003805461065c90611a89565b80601f016020809104026020016040519081016040528092919081815260200182805461068890611a89565b80156106d35780601f106106aa576101008083540402835291602001916106d3565b820191905f5260205f20905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b7f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb161070781610d72565b6107118383610d86565b8273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161076e9190611892565b60405180910390a3505050565b5f801b61078781610d72565b6107b17f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb183610c2b565b5050565b5f806107bf610e05565b90506107cc818585610e0c565b600191505092915050565b5f600254905090565b5f806107ea610e05565b90506107f7858285610e1e565b610802858585610eb0565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6108588261080e565b61086181610d72565b61086b8383610fa0565b50505050565b5f6012905090565b610881610e05565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e5576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ef828261108a565b505050565b5f801b61090081610d72565b61092a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a68361084f565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661095881610d72565b6109628383610d86565b505050565b610978610972610e05565b82611174565b50565b5f801b61098781610d72565b6109b17f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb18361084f565b5050565b5f801b6109c181610d72565b6109eb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683610c2b565b5050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a4682610a40610e05565b83610e1e565b610a508282611174565b5050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060048054610ac790611a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610af390611a89565b8015610b3e5780601f10610b1557610100808354040283529160200191610b3e565b820191905f5260205f20905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610b7281610d72565b610b7c8383611174565b505050565b5f801b81565b5f80610b91610e05565b9050610b9e818585610eb0565b600191505092915050565b7f44718e3514ccd463314f14773a916bc580c9220f29745390a228f1242d73feb181565b5f801b610bd981610d72565b610c037f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84883610c2b565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610c348261080e565b610c3d81610d72565b610c47838361108a565b50505050565b5f801b610c5981610d72565b610c837f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8488361084f565b5050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d8381610d7e610e05565b6111f3565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ded9190611ac8565b60405180910390fd5b610e015f8383611244565b5050565b5f33905090565b610e19838383600161145d565b505050565b5f610e298484610c87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eaa5781811015610e9b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e9293929190611ae1565b60405180910390fd5b610ea984848484035f61145d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f20575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f179190611ac8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f90575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f879190611ac8565b60405180910390fd5b610f9b838383611244565b505050565b5f610fab8383610a54565b61108057600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061101d610e05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611084565b5f90505b92915050565b5f6110958383610a54565b1561116a575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611107610e05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a46001905061116e565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111db9190611ac8565b60405180910390fd5b6111ef825f83611244565b5050565b6111fd8282610a54565b6112405780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401611237929190611b16565b60405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611294578060025f8282546112889190611b6a565b92505081905550611362565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561131d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161131493929190611ae1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a9578060025f82825403925050819055506113f3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114509190611892565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cd575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114c49190611ac8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115349190611ac8565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611626578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161161d9190611892565b60405180910390a35b50505050565b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61166481611630565b811461166e575f80fd5b50565b5f8135905061167f8161165b565b92915050565b5f6020828403121561169a5761169961162c565b5b5f6116a784828501611671565b91505092915050565b5f8115159050919050565b6116c4816116b0565b82525050565b5f6020820190506116dd5f8301846116bb565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561171a5780820151818401526020810190506116ff565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61173f826116e3565b61174981856116ed565b93506117598185602086016116fd565b61176281611725565b840191505092915050565b5f6020820190508181035f8301526117858184611735565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117b68261178d565b9050919050565b6117c6816117ac565b81146117d0575f80fd5b50565b5f813590506117e1816117bd565b92915050565b5f819050919050565b6117f9816117e7565b8114611803575f80fd5b50565b5f81359050611814816117f0565b92915050565b5f80604083850312156118305761182f61162c565b5b5f61183d858286016117d3565b925050602061184e85828601611806565b9150509250929050565b5f6020828403121561186d5761186c61162c565b5b5f61187a848285016117d3565b91505092915050565b61188c816117e7565b82525050565b5f6020820190506118a55f830184611883565b92915050565b5f805f606084860312156118c2576118c161162c565b5b5f6118cf868287016117d3565b93505060206118e0868287016117d3565b92505060406118f186828701611806565b9150509250925092565b5f819050919050565b61190d816118fb565b8114611917575f80fd5b50565b5f8135905061192881611904565b92915050565b5f602082840312156119435761194261162c565b5b5f6119508482850161191a565b91505092915050565b611962816118fb565b82525050565b5f60208201905061197b5f830184611959565b92915050565b5f80604083850312156119975761199661162c565b5b5f6119a48582860161191a565b92505060206119b5858286016117d3565b9150509250929050565b5f60ff82169050919050565b6119d4816119bf565b82525050565b5f6020820190506119ed5f8301846119cb565b92915050565b5f60208284031215611a0857611a0761162c565b5b5f611a1584828501611806565b91505092915050565b5f8060408385031215611a3457611a3361162c565b5b5f611a41858286016117d3565b9250506020611a52858286016117d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611aa057607f821691505b602082108103611ab357611ab2611a5c565b5b50919050565b611ac2816117ac565b82525050565b5f602082019050611adb5f830184611ab9565b92915050565b5f606082019050611af45f830186611ab9565b611b016020830185611883565b611b0e6040830184611883565b949350505050565b5f604082019050611b295f830185611ab9565b611b366020830184611959565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b74826117e7565b9150611b7f836117e7565b9250828201905080821115611b9757611b96611b3d565b5b9291505056fea2646970667358221220f8d18e3569f0a0eb6a4273dd1796d55fb5634a9d119b83f8395aafe3c16571d364736f6c63430008170033
Deployed Bytecode Sourcemap
36268:2358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31576:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13297:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38450:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37946:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15590:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14399:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16358:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32856:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36394:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33288:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14250:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34425:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37006:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38135:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23222:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37743:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37189:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14561:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23640:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31872:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13507:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38286:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31184:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14884:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36463:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37554:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36325:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33719:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37371:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15129:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31576:204;31661:4;31700:32;31685:47;;;:11;:47;;;;:87;;;;31736:36;31760:11;31736:23;:36::i;:::-;31685:87;31678:94;;31576:204;;;:::o;13297:91::-;13342:13;13375:5;13368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13297:91;:::o;38450:173::-;36508:31;31468:16;31479:4;31468:10;:16::i;:::-;38550:17:::1;38556:2;38560:6;38550:5;:17::i;:::-;38604:2;38583:32;;38600:1;38583:32;;;38608:6;38583:32;;;;;;:::i;:::-;;;;;;;;38450:173:::0;;;:::o;37946:143::-;31229:4;38011:18;;31468:16;31479:4;31468:10;:16::i;:::-;38042:39:::1;36508:31;38073:7;38042:10;:39::i;:::-;37946:143:::0;;:::o;15590:190::-;15663:4;15680:13;15696:12;:10;:12::i;:::-;15680:28;;15719:31;15728:5;15735:7;15744:5;15719:8;:31::i;:::-;15768:4;15761:11;;;15590:190;;;;:::o;14399:99::-;14451:7;14478:12;;14471:19;;14399:99;:::o;16358:249::-;16445:4;16462:15;16480:12;:10;:12::i;:::-;16462:30;;16503:37;16519:4;16525:7;16534:5;16503:15;:37::i;:::-;16551:26;16561:4;16567:2;16571:5;16551:9;:26::i;:::-;16595:4;16588:11;;;16358:249;;;;;:::o;32856:122::-;32921:7;32948:6;:12;32955:4;32948:12;;;;;;;;;;;:22;;;32941:29;;32856:122;;;:::o;36394:62::-;36432:24;36394:62;:::o;33288:138::-;33362:18;33375:4;33362:12;:18::i;:::-;31468:16;31479:4;31468:10;:16::i;:::-;33393:25:::1;33404:4;33410:7;33393:10;:25::i;:::-;;33288:138:::0;;;:::o;14250:84::-;14299:5;14324:2;14317:9;;14250:84;:::o;34425:251::-;34541:12;:10;:12::i;:::-;34519:34;;:18;:34;;;34515:104;;34577:30;;;;;;;;;;;;;;34515:104;34631:37;34643:4;34649:18;34631:11;:37::i;:::-;;34425:251;;:::o;37006:128::-;31229:4;37064:18;;31468:16;31479:4;31468:10;:16::i;:::-;37095:31:::1;36363:24;37118:7;37095:9;:31::i;:::-;37006:128:::0;;:::o;38135:107::-;36363:24;31468:16;31479:4;31468:10;:16::i;:::-;38217:17:::1;38223:2;38227:6;38217:5;:17::i;:::-;38135:107:::0;;;:::o;23222:89::-;23277:26;23283:12;:10;:12::i;:::-;23297:5;23277;:26::i;:::-;23222:89;:::o;37743:141::-;31229:4;37807:18;;31468:16;31479:4;31468:10;:16::i;:::-;37838:38:::1;36508:31;37868:7;37838:9;:38::i;:::-;37743:141:::0;;:::o;37189:130::-;31229:4;37248:18;;31468:16;31479:4;31468:10;:16::i;:::-;37279:32:::1;36363:24;37303:7;37279:10;:32::i;:::-;37189:130:::0;;:::o;14561:118::-;14626:7;14653:9;:18;14663:7;14653:18;;;;;;;;;;;;;;;;14646:25;;14561:118;;;:::o;23640:161::-;23716:45;23732:7;23741:12;:10;:12::i;:::-;23755:5;23716:15;:45::i;:::-;23772:21;23778:7;23787:5;23772;:21::i;:::-;23640:161;;:::o;31872:138::-;31949:4;31973:6;:12;31980:4;31973:12;;;;;;;;;;;:20;;:29;31994:7;31973:29;;;;;;;;;;;;;;;;;;;;;;;;;31966:36;;31872:138;;;;:::o;13507:95::-;13554:13;13587:7;13580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13507:95;:::o;38286:111::-;36432:24;31468:16;31479:4;31468:10;:16::i;:::-;38370:19:::1;38376:4;38382:6;38370:5;:19::i;:::-;38286:111:::0;;;:::o;31184:49::-;31229:4;31184:49;;;:::o;14884:182::-;14953:4;14970:13;14986:12;:10;:12::i;:::-;14970:28;;15009:27;15019:5;15026:2;15030:5;15009:9;:27::i;:::-;15054:4;15047:11;;;14884:182;;;;:::o;36463:76::-;36508:31;36463:76;:::o;37554:130::-;31229:4;37613:18;;31468:16;31479:4;31468:10;:16::i;:::-;37644:32:::1;36432:24;37668:7;37644:10;:32::i;:::-;37554:130:::0;;:::o;36325:62::-;36363:24;36325:62;:::o;33719:140::-;33794:18;33807:4;33794:12;:18::i;:::-;31468:16;31479:4;31468:10;:16::i;:::-;33825:26:::1;33837:4;33843:7;33825:11;:26::i;:::-;;33719:140:::0;;;:::o;37371:128::-;31229:4;37429:18;;31468:16;31479:4;31468:10;:16::i;:::-;37460:31:::1;36432:24;37483:7;37460:9;:31::i;:::-;37371:128:::0;;:::o;15129:142::-;15209:7;15236:11;:18;15248:5;15236:18;;;;;;;;;;;;;;;:27;15255:7;15236:27;;;;;;;;;;;;;;;;15229:34;;15129:142;;;;:::o;28912:148::-;28988:4;29027:25;29012:40;;;:11;:40;;;;29005:47;;28912:148;;;:::o;32225:105::-;32292:30;32303:4;32309:12;:10;:12::i;:::-;32292:10;:30::i;:::-;32225:105;:::o;19112:213::-;19202:1;19183:21;;:7;:21;;;19179:93;;19257:1;19228:32;;;;;;;;;;;:::i;:::-;;;;;;;;19179:93;19282:35;19298:1;19302:7;19311:5;19282:7;:35::i;:::-;19112:213;;:::o;4302:98::-;4355:7;4382:10;4375:17;;4302:98;:::o;20417:130::-;20502:37;20511:5;20518:7;20527:5;20534:4;20502:8;:37::i;:::-;20417:130;;;:::o;22133:487::-;22233:24;22260:25;22270:5;22277:7;22260:9;:25::i;:::-;22233:52;;22320:17;22300:16;:37;22296:317;;22377:5;22358:16;:24;22354:132;;;22437:7;22446:16;22464:5;22410:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22354:132;22529:57;22538:5;22545:7;22573:5;22554:16;:24;22580:5;22529:8;:57::i;:::-;22296:317;22222:398;22133:487;;;:::o;16992:308::-;17092:1;17076:18;;:4;:18;;;17072:88;;17145:1;17118:30;;;;;;;;;;;:::i;:::-;;;;;;;;17072:88;17188:1;17174:16;;:2;:16;;;17170:88;;17243:1;17214:32;;;;;;;;;;;:::i;:::-;;;;;;;;17170:88;17268:24;17276:4;17282:2;17286:5;17268:7;:24::i;:::-;16992:308;;;:::o;35302:324::-;35379:4;35401:22;35409:4;35415:7;35401;:22::i;:::-;35396:223;;35472:4;35440:6;:12;35447:4;35440:12;;;;;;;;;;;:20;;:29;35461:7;35440:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;35523:12;:10;:12::i;:::-;35496:40;;35514:7;35496:40;;35508:4;35496:40;;;;;;;;;;35558:4;35551:11;;;;35396:223;35602:5;35595:12;;35302:324;;;;;:::o;35870:325::-;35948:4;35969:22;35977:4;35983:7;35969;:22::i;:::-;35965:223;;;36040:5;36008:6;:12;36015:4;36008:12;;;;;;;;;;;:20;;:29;36029:7;36008:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;36092:12;:10;:12::i;:::-;36065:40;;36083:7;36065:40;;36077:4;36065:40;;;;;;;;;;36127:4;36120:11;;;;35965:223;36171:5;36164:12;;35870:325;;;;;:::o;19653:211::-;19743:1;19724:21;;:7;:21;;;19720:91;;19796:1;19769:30;;;;;;;;;;;:::i;:::-;;;;;;;;19720:91;19821:35;19829:7;19846:1;19850:5;19821:7;:35::i;:::-;19653:211;;:::o;32466:201::-;32555:22;32563:4;32569:7;32555;:22::i;:::-;32550:110;;32634:7;32643:4;32601:47;;;;;;;;;;;;:::i;:::-;;;;;;;;32550:110;32466:201;;:::o;17624:1135::-;17730:1;17714:18;;:4;:18;;;17710:552;;17868:5;17852:12;;:21;;;;;;;:::i;:::-;;;;;;;;17710:552;;;17906:19;17928:9;:15;17938:4;17928:15;;;;;;;;;;;;;;;;17906:37;;17976:5;17962:11;:19;17958:117;;;18034:4;18040:11;18053:5;18009:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17958:117;18230:5;18216:11;:19;18198:9;:15;18208:4;18198:15;;;;;;;;;;;;;;;:37;;;;17891:371;17710:552;18292:1;18278:16;;:2;:16;;;18274:435;;18460:5;18444:12;;:21;;;;;;;;;;;18274:435;;;18677:5;18660:9;:13;18670:2;18660:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18274:435;18741:2;18726:25;;18735:4;18726:25;;;18745:5;18726:25;;;;;;:::i;:::-;;;;;;;;17624:1135;;;:::o;21398:443::-;21528:1;21511:19;;:5;:19;;;21507:91;;21583:1;21554:32;;;;;;;;;;;:::i;:::-;;;;;;;;21507:91;21631:1;21612:21;;:7;:21;;;21608:92;;21685:1;21657:31;;;;;;;;;;;:::i;:::-;;;;;;;;21608:92;21740:5;21710:11;:18;21722:5;21710:18;;;;;;;;;;;;;;;:27;21729:7;21710:27;;;;;;;;;;;;;;;:35;;;;21760:9;21756:78;;;21807:7;21791:31;;21800:5;21791:31;;;21816:5;21791:31;;;;;;:::i;:::-;;;;;;;;21756:78;21398:443;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:329::-;4262:6;4311:2;4299:9;4290:7;4286:23;4282:32;4279:119;;;4317:79;;:::i;:::-;4279:119;4437:1;4462:53;4507:7;4498:6;4487:9;4483:22;4462:53;:::i;:::-;4452:63;;4408:117;4203:329;;;;:::o;4538:118::-;4625:24;4643:5;4625:24;:::i;:::-;4620:3;4613:37;4538:118;;:::o;4662:222::-;4755:4;4793:2;4782:9;4778:18;4770:26;;4806:71;4874:1;4863:9;4859:17;4850:6;4806:71;:::i;:::-;4662:222;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:86::-;7073:7;7113:4;7106:5;7102:16;7091:27;;7038:86;;;:::o;7130:112::-;7213:22;7229:5;7213:22;:::i;:::-;7208:3;7201:35;7130:112;;:::o;7248:214::-;7337:4;7375:2;7364:9;7360:18;7352:26;;7388:67;7452:1;7441:9;7437:17;7428:6;7388:67;:::i;:::-;7248:214;;;;:::o;7468:329::-;7527:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:119;;;7582:79;;:::i;:::-;7544:119;7702:1;7727:53;7772:7;7763:6;7752:9;7748:22;7727:53;:::i;:::-;7717:63;;7673:117;7468:329;;;;:::o;7803:474::-;7871:6;7879;7928:2;7916:9;7907:7;7903:23;7899:32;7896:119;;;7934:79;;:::i;:::-;7896:119;8054:1;8079:53;8124:7;8115:6;8104:9;8100:22;8079:53;:::i;:::-;8069:63;;8025:117;8181:2;8207:53;8252:7;8243:6;8232:9;8228:22;8207:53;:::i;:::-;8197:63;;8152:118;7803:474;;;;;:::o;8283:180::-;8331:77;8328:1;8321:88;8428:4;8425:1;8418:15;8452:4;8449:1;8442:15;8469:320;8513:6;8550:1;8544:4;8540:12;8530:22;;8597:1;8591:4;8587:12;8618:18;8608:81;;8674:4;8666:6;8662:17;8652:27;;8608:81;8736:2;8728:6;8725:14;8705:18;8702:38;8699:84;;8755:18;;:::i;:::-;8699:84;8520:269;8469:320;;;:::o;8795:118::-;8882:24;8900:5;8882:24;:::i;:::-;8877:3;8870:37;8795:118;;:::o;8919:222::-;9012:4;9050:2;9039:9;9035:18;9027:26;;9063:71;9131:1;9120:9;9116:17;9107:6;9063:71;:::i;:::-;8919:222;;;;:::o;9147:442::-;9296:4;9334:2;9323:9;9319:18;9311:26;;9347:71;9415:1;9404:9;9400:17;9391:6;9347:71;:::i;:::-;9428:72;9496:2;9485:9;9481:18;9472:6;9428:72;:::i;:::-;9510;9578:2;9567:9;9563:18;9554:6;9510:72;:::i;:::-;9147:442;;;;;;:::o;9595:332::-;9716:4;9754:2;9743:9;9739:18;9731:26;;9767:71;9835:1;9824:9;9820:17;9811:6;9767:71;:::i;:::-;9848:72;9916:2;9905:9;9901:18;9892:6;9848:72;:::i;:::-;9595:332;;;;;:::o;9933:180::-;9981:77;9978:1;9971:88;10078:4;10075:1;10068:15;10102:4;10099:1;10092:15;10119:191;10159:3;10178:20;10196:1;10178:20;:::i;:::-;10173:25;;10212:20;10230:1;10212:20;:::i;:::-;10207:25;;10255:1;10252;10248:9;10241:16;;10276:3;10273:1;10270:10;10267:36;;;10283:18;;:::i;:::-;10267:36;10119:191;;;;:::o
Swarm Source
ipfs://f8d18e3569f0a0eb6a4273dd1796d55fb5634a9d119b83f8395aafe3c16571d3
[ 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.