Token WATT
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
3,507,791.062152 WATT
Holders:
252 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Mining.game is a Free 2 play, Play 2 Earn and Learn 2 Earn crypto mining simulator game centered around the history of cryptocurrencies, replacing power-hungry mining hardware with NFTs.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WATT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-01 */ // SPDX-License-Identifier: MIT /** ██╗ ██╗ █████╗ ████████╗████████╗ ██║ ██║██╔══██╗╚══██╔══╝╚══██╔══╝ ██║ █╗ ██║███████║ ██║ ██║ ██║███╗██║██╔══██║ ██║ ██║ ╚███╔███╔╝██║ ██║ ██║ ██║ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ https://Mining.game is a Free to play, Play to Earn NFT based mining simulator game. This is the WATT electricity token contract. @custom:security-contact [email protected] */ // 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/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/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.5.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, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view 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. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * 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. */ 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. */ 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/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/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.5.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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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); } } // File: WATT.sol pragma solidity ^0.8.7; contract WATT is ERC20, Ownable, ERC20Burnable, AccessControl { mapping (address => bool) private staking; mapping (address => bool) private gaming; modifier onlyStaking { require(staking[msg.sender]== true, "Only Staking contract can call this function"); _; } modifier onlyGaming { require(gaming[msg.sender]== true, "Only Gaming contract can call this function"); _; } constructor() ERC20("WATT", "WATT") { staking[msg.sender] = true; gaming[msg.sender] = true; } // owner mint function function mint(address to, uint256 amount) external onlyOwner { _mint(to, amount); } // update stake contracts function updateStaking (address newAddress, bool value) external onlyOwner { staking[newAddress] = value; } // update game contracts function updateGaming (address newAddress, bool value) external onlyOwner { gaming[newAddress] = value; } // rewards mint function function rewardsMint(address to, uint256 _amount) public onlyStaking { _mint(to, _amount); } // rewards burn function function rewardsBurn(address from, uint256 _amount) public onlyGaming { _burn(from, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"address","name":"from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rewardsBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rewardsMint","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"updateGaming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"updateStaking","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260048082526315d0551560e21b602080840182815285518087019096529285528401528151919291620000519160039162000112565b5080516200006790600490602084019062000112565b505050620000846200007e620000bc60201b60201c565b620000c0565b3360009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055620001f5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b61166380620002056000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a217fddf11610097578063c3a4211411610071578063c3a42114146103b2578063d547741f146103c5578063dd62ed3e146103d8578063f2fde38b1461041157600080fd5b8063a217fddf14610384578063a457c2d71461038c578063a9059cbb1461039f57600080fd5b80638da5cb5b116100d35780638da5cb5b1461033b57806391d148541461035657806395d89b41146103695780639e3131c41461037157600080fd5b8063715018a61461030d57806379cc679014610315578063830d06241461032857600080fd5b80632f2ff15d11610166578063395093511161014057806339509351146102ab57806340c10f19146102be57806342966c68146102d157806370a08231146102e457600080fd5b80632f2ff15d14610276578063313ce5671461028957806336568abe1461029857600080fd5b806318160ddd116101a257806318160ddd146102195780631fcdc8b81461022b57806323b872dd14610240578063248a9ca31461025357600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611418565b610424565b60405190151581526020015b60405180910390f35b6101f961045b565b6040516101e891906114b7565b6101dc6102143660046113b2565b6104ed565b6002545b6040519081526020016101e8565b61023e610239366004611376565b610505565b005b6101dc61024e36600461133a565b610563565b61021d6102613660046113dc565b60009081526006602052604090206001015490565b61023e6102843660046113f5565b610587565b604051601281526020016101e8565b61023e6102a63660046113f5565b6105b2565b6101dc6102b93660046113b2565b610630565b61023e6102cc3660046113b2565b61066f565b61023e6102df3660046113dc565b6106a3565b61021d6102f23660046112ec565b6001600160a01b031660009081526020819052604090205490565b61023e6106b0565b61023e6103233660046113b2565b6106e6565b61023e610336366004611376565b6106fb565b6005546040516001600160a01b0390911681526020016101e8565b6101dc6103643660046113f5565b610750565b6101f961077b565b61023e61037f3660046113b2565b61078a565b61021d600081565b6101dc61039a3660046113b2565b610802565b6101dc6103ad3660046113b2565b610894565b61023e6103c03660046113b2565b6108a2565b61023e6103d33660046113f5565b61091b565b61021d6103e6366004611307565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61023e61041f3660046112ec565b610941565b60006001600160e01b03198216637965db0b60e01b148061045557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461046a906115b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610496906115b0565b80156104e35780601f106104b8576101008083540402835291602001916104e3565b820191906000526020600020905b8154815290600101906020018083116104c657829003601f168201915b5050505050905090565b6000336104fb8185856109d9565b5060019392505050565b6005546001600160a01b031633146105385760405162461bcd60e51b815260040161052f906114ea565b60405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600033610571858285610afd565b61057c858585610b8f565b506001949350505050565b6000828152600660205260409020600101546105a38133610d5d565b6105ad8383610dc1565b505050565b6001600160a01b03811633146106225760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161052f565b61062c8282610e47565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104fb908290869061066a90879061151f565b6109d9565b6005546001600160a01b031633146106995760405162461bcd60e51b815260040161052f906114ea565b61062c8282610eae565b6106ad3382610f8d565b50565b6005546001600160a01b031633146106da5760405162461bcd60e51b815260040161052f906114ea565b6106e460006110db565b565b6106f1823383610afd565b61062c8282610f8d565b6005546001600160a01b031633146107255760405162461bcd60e51b815260040161052f906114ea565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461046a906115b0565b3360009081526008602052604090205460ff1615156001146106f15760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c792047616d696e6720636f6e74726163742063616e2063616c6c20746860448201526a34b990333ab731ba34b7b760a91b606482015260840161052f565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108875760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161052f565b61057c82868684036109d9565b6000336104fb818585610b8f565b3360009081526007602052604090205460ff1615156001146106995760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79205374616b696e6720636f6e74726163742063616e2063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161052f565b6000828152600660205260409020600101546109378133610d5d565b6105ad8383610e47565b6005546001600160a01b0316331461096b5760405162461bcd60e51b815260040161052f906114ea565b6001600160a01b0381166109d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b6106ad816110db565b6001600160a01b038316610a3b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052f565b6001600160a01b038216610a9c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b895781811015610b7c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052f565b610b8984848484036109d9565b50505050565b6001600160a01b038316610bf35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052f565b6001600160a01b038216610c555760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052f565b6001600160a01b03831660009081526020819052604090205481811015610ccd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d0490849061151f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5091815260200190565b60405180910390a3610b89565b610d678282610750565b61062c57610d7f816001600160a01b0316601461112d565b610d8a83602061112d565b604051602001610d9b929190611442565b60408051601f198184030181529082905262461bcd60e51b825261052f916004016114b7565b610dcb8282610750565b61062c5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610e033390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610e518282610750565b1561062c5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610f045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161052f565b8060026000828254610f16919061151f565b90915550506001600160a01b03821660009081526020819052604081208054839290610f4390849061151f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610fed5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161052f565b6001600160a01b038216600090815260208190526040902054818110156110615760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161052f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611090908490611556565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600061113c836002611537565b61114790600261151f565b67ffffffffffffffff81111561115f5761115f611617565b6040519080825280601f01601f191660200182016040528015611189576020820181803683370190505b509050600360fc1b816000815181106111a4576111a4611601565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106111d3576111d3611601565b60200101906001600160f81b031916908160001a90535060006111f7846002611537565b61120290600161151f565b90505b600181111561127a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061123657611236611601565b1a60f81b82828151811061124c5761124c611601565b60200101906001600160f81b031916908160001a90535060049490941c9361127381611599565b9050611205565b5083156112c95760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161052f565b9392505050565b80356001600160a01b03811681146112e757600080fd5b919050565b6000602082840312156112fe57600080fd5b6112c9826112d0565b6000806040838503121561131a57600080fd5b611323836112d0565b9150611331602084016112d0565b90509250929050565b60008060006060848603121561134f57600080fd5b611358846112d0565b9250611366602085016112d0565b9150604084013590509250925092565b6000806040838503121561138957600080fd5b611392836112d0565b9150602083013580151581146113a757600080fd5b809150509250929050565b600080604083850312156113c557600080fd5b6113ce836112d0565b946020939093013593505050565b6000602082840312156113ee57600080fd5b5035919050565b6000806040838503121561140857600080fd5b82359150611331602084016112d0565b60006020828403121561142a57600080fd5b81356001600160e01b0319811681146112c957600080fd5b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161147a81601785016020880161156d565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516114ab81602884016020880161156d565b01602801949350505050565b60208152600082518060208401526114d681604085016020870161156d565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611532576115326115eb565b500190565b6000816000190483118215151615611551576115516115eb565b500290565b600082821015611568576115686115eb565b500390565b60005b83811015611588578181015183820152602001611570565b83811115610b895750506000910152565b6000816115a8576115a86115eb565b506000190190565b600181811c908216806115c457607f821691505b602082108114156115e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200c847c7e6ea160f6164814eb789c33029b1078111d271e5aeefc12d5ee90e56a64736f6c63430008070033
Deployed ByteCode Sourcemap
36728:1314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13966:204;;;;;;:::i;:::-;;:::i;:::-;;;3676:14:1;;3669:22;3651:41;;3639:2;3624:18;13966:204:0;;;;;;;;24711:100;;;:::i;:::-;;;;;;;:::i;27062:201::-;;;;;;:::i;:::-;;:::i;25831:108::-;25919:12;;25831:108;;;3849:25:1;;;3837:2;3822:18;25831:108:0;3703:177:1;37470:121:0;;;;;;:::i;:::-;;:::i;:::-;;27843:295;;;;;;:::i;:::-;;:::i;15393:131::-;;;;;;:::i;:::-;15467:7;15494:12;;;:6;:12;;;;;:22;;;;15393:131;15786:147;;;;;;:::i;:::-;;:::i;25673:93::-;;;25756:2;10921:36:1;;10909:2;10894:18;25673:93:0;10779:184:1;16834:218:0;;;;;;:::i;:::-;;:::i;28547:240::-;;;;;;:::i;:::-;;:::i;37334:97::-;;;;;;:::i;:::-;;:::i;36089:91::-;;;;;;:::i;:::-;;:::i;26002:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26103:18:0;26076:7;26103:18;;;;;;;;;;;;26002:127;10558:103;;;:::i;36499:164::-;;;;;;:::i;:::-;;:::i;37629:119::-;;;;;;:::i;:::-;;:::i;9907:87::-;9980:6;;9907:87;;-1:-1:-1;;;;;9980:6:0;;;3449:51:1;;3437:2;3422:18;9907:87:0;3303:203:1;14262:147:0;;;;;;:::i;:::-;;:::i;24930:104::-;;;:::i;37930:109::-;;;;;;:::i;:::-;;:::i;13353:49::-;;13398:4;13353:49;;29290:438;;;;;;:::i;:::-;;:::i;26335:193::-;;;;;;:::i;:::-;;:::i;37786:106::-;;;;;;:::i;:::-;;:::i;16178:149::-;;;;;;:::i;:::-;;:::i;26591:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26707:18:0;;;26680:7;26707:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26591:151;10816:201;;;;;;:::i;:::-;;:::i;13966:204::-;14051:4;-1:-1:-1;;;;;;14075:47:0;;-1:-1:-1;;;14075:47:0;;:87;;-1:-1:-1;;;;;;;;;;2732:40:0;;;14126:36;14068:94;13966:204;-1:-1:-1;;13966:204:0:o;24711:100::-;24765:13;24798:5;24791:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24711:100;:::o;27062:201::-;27145:4;8711:10;27201:32;8711:10;27217:7;27226:6;27201:8;:32::i;:::-;-1:-1:-1;27251:4:0;;27062:201;-1:-1:-1;;;27062:201:0:o;37470:121::-;9980:6;;-1:-1:-1;;;;;9980:6:0;8711:10;10127:23;10119:68;;;;-1:-1:-1;;;10119:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;37556:19:0;;;::::1;;::::0;;;:7:::1;:19;::::0;;;;:27;;-1:-1:-1;;37556:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37470:121::o;27843:295::-;27974:4;8711:10;28032:38;28048:4;8711:10;28063:6;28032:15;:38::i;:::-;28081:27;28091:4;28097:2;28101:6;28081:9;:27::i;:::-;-1:-1:-1;28126:4:0;;27843:295;-1:-1:-1;;;;27843:295:0:o;15786:147::-;15467:7;15494:12;;;:6;:12;;;;;:22;;;13844:30;13855:4;8711:10;13844;:30::i;:::-;15900:25:::1;15911:4;15917:7;15900:10;:25::i;:::-;15786:147:::0;;;:::o;16834:218::-;-1:-1:-1;;;;;16930:23:0;;8711:10;16930:23;16922:83;;;;-1:-1:-1;;;16922:83:0;;10023:2:1;16922:83:0;;;10005:21:1;10062:2;10042:18;;;10035:30;10101:34;10081:18;;;10074:62;-1:-1:-1;;;10152:18:1;;;10145:45;10207:19;;16922:83:0;9821:411:1;16922:83:0;17018:26;17030:4;17036:7;17018:11;:26::i;:::-;16834:218;;:::o;28547:240::-;8711:10;28635:4;28716:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;28716:27:0;;;;;;;;;;28635:4;;8711:10;28691:66;;8711:10;;28716:27;;:40;;28746:10;;28716:40;:::i;:::-;28691:8;:66::i;37334:97::-;9980:6;;-1:-1:-1;;;;;9980:6:0;8711:10;10127:23;10119:68;;;;-1:-1:-1;;;10119:68:0;;;;;;;:::i;:::-;37406:17:::1;37412:2;37416:6;37406:5;:17::i;36089:91::-:0;36145:27;8711:10;36165:6;36145:5;:27::i;:::-;36089:91;:::o;10558:103::-;9980:6;;-1:-1:-1;;;;;9980:6:0;8711:10;10127:23;10119:68;;;;-1:-1:-1;;;10119:68:0;;;;;;;:::i;:::-;10623:30:::1;10650:1;10623:18;:30::i;:::-;10558:103::o:0;36499:164::-;36576:46;36592:7;8711:10;36615:6;36576:15;:46::i;:::-;36633:22;36639:7;36648:6;36633:5;:22::i;37629:119::-;9980:6;;-1:-1:-1;;;;;9980:6:0;8711:10;10127:23;10119:68;;;;-1:-1:-1;;;10119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37714:18:0;;;::::1;;::::0;;;:6:::1;:18;::::0;;;;:26;;-1:-1:-1;;37714:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37629:119::o;14262:147::-;14348:4;14372:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14372:29:0;;;;;;;;;;;;;;;14262:147::o;24930:104::-;24986:13;25019:7;25012:14;;;;;:::i;37930:109::-;37082:10;37075:18;;;;:6;:18;;;;;;;;:25;;:18;:25;37067:81;;;;-1:-1:-1;;;37067:81:0;;6056:2:1;37067:81:0;;;6038:21:1;6095:2;6075:18;;;6068:30;6134:34;6114:18;;;6107:62;-1:-1:-1;;;6185:18:1;;;6178:41;6236:19;;37067:81:0;5854:407:1;29290:438:0;8711:10;29383:4;29466:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;29466:27:0;;;;;;;;;;29383:4;;8711:10;29512:35;;;;29504:85;;;;-1:-1:-1;;;29504:85:0;;9617:2:1;29504:85:0;;;9599:21:1;9656:2;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;-1:-1:-1;;;9746:18:1;;;9739:35;9791:19;;29504:85:0;9415:401:1;29504:85:0;29625:60;29634:5;29641:7;29669:15;29650:16;:34;29625:8;:60::i;26335:193::-;26414:4;8711:10;26470:28;8711:10;26487:2;26491:6;26470:9;:28::i;37786:106::-;36943:10;36935:19;;;;:7;:19;;;;;;;;:26;;:19;:26;36927:83;;;;-1:-1:-1;;;36927:83:0;;5240:2:1;36927:83:0;;;5222:21:1;5279:2;5259:18;;;5252:30;5318:34;5298:18;;;5291:62;-1:-1:-1;;;5369:18:1;;;5362:42;5421:19;;36927:83:0;5038:408:1;16178:149:0;15467:7;15494:12;;;:6;:12;;;;;:22;;;13844:30;13855:4;8711:10;13844;:30::i;:::-;16293:26:::1;16305:4;16311:7;16293:11;:26::i;10816:201::-:0;9980:6;;-1:-1:-1;;;;;9980:6:0;8711:10;10127:23;10119:68;;;;-1:-1:-1;;;10119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10905:22:0;::::1;10897:73;;;::::0;-1:-1:-1;;;10897:73:0;;6468:2:1;10897:73:0::1;::::0;::::1;6450:21:1::0;6507:2;6487:18;;;6480:30;6546:34;6526:18;;;6519:62;-1:-1:-1;;;6597:18:1;;;6590:36;6643:19;;10897:73:0::1;6266:402:1::0;10897:73:0::1;10981:28;11000:8;10981:18;:28::i;32926:380::-:0;-1:-1:-1;;;;;33062:19:0;;33054:68;;;;-1:-1:-1;;;33054:68:0;;9212:2:1;33054:68:0;;;9194:21:1;9251:2;9231:18;;;9224:30;9290:34;9270:18;;;9263:62;-1:-1:-1;;;9341:18:1;;;9334:34;9385:19;;33054:68:0;9010:400:1;33054:68:0;-1:-1:-1;;;;;33141:21:0;;33133:68;;;;-1:-1:-1;;;33133:68:0;;6875:2:1;33133:68:0;;;6857:21:1;6914:2;6894:18;;;6887:30;6953:34;6933:18;;;6926:62;-1:-1:-1;;;7004:18:1;;;6997:32;7046:19;;33133:68:0;6673:398:1;33133:68:0;-1:-1:-1;;;;;33214:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33266:32;;3849:25:1;;;33266:32:0;;3822:18:1;33266:32:0;;;;;;;32926:380;;;:::o;33593:453::-;-1:-1:-1;;;;;26707:18:0;;;33728:24;26707:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;33795:37:0;;33791:248;;33877:6;33857:16;:26;;33849:68;;;;-1:-1:-1;;;33849:68:0;;7278:2:1;33849:68:0;;;7260:21:1;7317:2;7297:18;;;7290:30;7356:31;7336:18;;;7329:59;7405:18;;33849:68:0;7076:353:1;33849:68:0;33961:51;33970:5;33977:7;34005:6;33986:16;:25;33961:8;:51::i;:::-;33717:329;33593:453;;;:::o;30207:671::-;-1:-1:-1;;;;;30338:18:0;;30330:68;;;;-1:-1:-1;;;30330:68:0;;8806:2:1;30330:68:0;;;8788:21:1;8845:2;8825:18;;;8818:30;8884:34;8864:18;;;8857:62;-1:-1:-1;;;8935:18:1;;;8928:35;8980:19;;30330:68:0;8604:401:1;30330:68:0;-1:-1:-1;;;;;30417:16:0;;30409:64;;;;-1:-1:-1;;;30409:64:0;;4836:2:1;30409:64:0;;;4818:21:1;4875:2;4855:18;;;4848:30;4914:34;4894:18;;;4887:62;-1:-1:-1;;;4965:18:1;;;4958:33;5008:19;;30409:64:0;4634:399:1;30409:64:0;-1:-1:-1;;;;;30559:15:0;;30537:19;30559:15;;;;;;;;;;;30593:21;;;;30585:72;;;;-1:-1:-1;;;30585:72:0;;7636:2:1;30585:72:0;;;7618:21:1;7675:2;7655:18;;;7648:30;7714:34;7694:18;;;7687:62;-1:-1:-1;;;7765:18:1;;;7758:36;7811:19;;30585:72:0;7434:402:1;30585:72:0;-1:-1:-1;;;;;30693:15:0;;;:9;:15;;;;;;;;;;;30711:20;;;30693:38;;30753:13;;;;;;;;:23;;30725:6;;30693:9;30753:23;;30725:6;;30753:23;:::i;:::-;;;;;;;;30809:2;-1:-1:-1;;;;;30794:26:0;30803:4;-1:-1:-1;;;;;30794:26:0;;30813:6;30794:26;;;;3849:25:1;;3837:2;3822:18;;3703:177;30794:26:0;;;;;;;;30833:37;15786:147;14699:505;14788:22;14796:4;14802:7;14788;:22::i;:::-;14783:414;;14976:41;15004:7;-1:-1:-1;;;;;14976:41:0;15014:2;14976:19;:41::i;:::-;15090:38;15118:4;15125:2;15090:19;:38::i;:::-;14881:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;14881:270:0;;;;;;;;;;-1:-1:-1;;;14827:358:0;;;;;;;:::i;18335:238::-;18419:22;18427:4;18433:7;18419;:22::i;:::-;18414:152;;18458:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;18458:29:0;;;;;;;;;:36;;-1:-1:-1;;18458:36:0;18490:4;18458:36;;;18541:12;8711:10;;8631:98;18541:12;-1:-1:-1;;;;;18514:40:0;18532:7;-1:-1:-1;;;;;18514:40:0;18526:4;18514:40;;;;;;;;;;18335:238;;:::o;18705:239::-;18789:22;18797:4;18803:7;18789;:22::i;:::-;18785:152;;;18860:5;18828:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;18828:29:0;;;;;;;;;;:37;;-1:-1:-1;;18828:37:0;;;18885:40;8711:10;;18828:12;;18885:40;;18860:5;18885:40;18705:239;;:::o;31165:399::-;-1:-1:-1;;;;;31249:21:0;;31241:65;;;;-1:-1:-1;;;31241:65:0;;10439:2:1;31241:65:0;;;10421:21:1;10478:2;10458:18;;;10451:30;10517:33;10497:18;;;10490:61;10568:18;;31241:65:0;10237:355:1;31241:65:0;31397:6;31381:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;31414:18:0;;:9;:18;;;;;;;;;;:28;;31436:6;;31414:9;:28;;31436:6;;31414:28;:::i;:::-;;;;-1:-1:-1;;31458:37:0;;3849:25:1;;;-1:-1:-1;;;;;31458:37:0;;;31475:1;;31458:37;;3837:2:1;3822:18;31458:37:0;;;;;;;16834:218;;:::o;31897:591::-;-1:-1:-1;;;;;31981:21:0;;31973:67;;;;-1:-1:-1;;;31973:67:0;;8404:2:1;31973:67:0;;;8386:21:1;8443:2;8423:18;;;8416:30;8482:34;8462:18;;;8455:62;-1:-1:-1;;;8533:18:1;;;8526:31;8574:19;;31973:67:0;8202:397:1;31973:67:0;-1:-1:-1;;;;;32140:18:0;;32115:22;32140:18;;;;;;;;;;;32177:24;;;;32169:71;;;;-1:-1:-1;;;32169:71:0;;5653:2:1;32169:71:0;;;5635:21:1;5692:2;5672:18;;;5665:30;5731:34;5711:18;;;5704:62;-1:-1:-1;;;5782:18:1;;;5775:32;5824:19;;32169:71:0;5451:398:1;32169:71:0;-1:-1:-1;;;;;32276:18:0;;:9;:18;;;;;;;;;;32297:23;;;32276:44;;32342:12;:22;;32314:6;;32276:9;32342:22;;32314:6;;32342:22;:::i;:::-;;;;-1:-1:-1;;32382:37:0;;3849:25:1;;;32408:1:0;;-1:-1:-1;;;;;32382:37:0;;;;;3837:2:1;3822:18;32382:37:0;;;;;;;15786:147;;;:::o;11177:191::-;11270:6;;;-1:-1:-1;;;;;11287:17:0;;;-1:-1:-1;;;;;;11287:17:0;;;;;;;11320:40;;11270:6;;;11287:17;11270:6;;11320:40;;11251:16;;11320:40;11240:128;11177:191;:::o;4453:451::-;4528:13;4554:19;4586:10;4590:6;4586:1;:10;:::i;:::-;:14;;4599:1;4586:14;:::i;:::-;4576:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4576:25:0;;4554:47;;-1:-1:-1;;;4612:6:0;4619:1;4612:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4612:15:0;;;;;;;;;-1:-1:-1;;;4638:6:0;4645:1;4638:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4638:15:0;;;;;;;;-1:-1:-1;4669:9:0;4681:10;4685:6;4681:1;:10;:::i;:::-;:14;;4694:1;4681:14;:::i;:::-;4669:26;;4664:135;4701:1;4697;:5;4664:135;;;-1:-1:-1;;;4749:5:0;4757:3;4749:11;4736:25;;;;;;;:::i;:::-;;;;4724:6;4731:1;4724:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;4724:37:0;;;;;;;;-1:-1:-1;4786:1:0;4776:11;;;;;4704:3;;;:::i;:::-;;;4664:135;;;-1:-1:-1;4817:10:0;;4809:55;;;;-1:-1:-1;;;4809:55:0;;4475:2:1;4809:55:0;;;4457:21:1;;;4494:18;;;4487:30;4553:34;4533:18;;;4526:62;4605:18;;4809:55:0;4273:356:1;4809:55:0;4889:6;4453:451;-1:-1:-1;;;4453:451:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:347::-;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1146:29;1165:9;1146:29;:::i;:::-;1136:39;;1225:2;1214:9;1210:18;1197:32;1272:5;1265:13;1258:21;1251:5;1248:32;1238:60;;1294:1;1291;1284:12;1238:60;1317:5;1307:15;;;981:347;;;;;:::o;1333:254::-;1401:6;1409;1462:2;1450:9;1441:7;1437:23;1433:32;1430:52;;;1478:1;1475;1468:12;1430:52;1501:29;1520:9;1501:29;:::i;:::-;1491:39;1577:2;1562:18;;;;1549:32;;-1:-1:-1;;;1333:254:1:o;1592:180::-;1651:6;1704:2;1692:9;1683:7;1679:23;1675:32;1672:52;;;1720:1;1717;1710:12;1672:52;-1:-1:-1;1743:23:1;;1592:180;-1:-1:-1;1592:180:1:o;1777:254::-;1845:6;1853;1906:2;1894:9;1885:7;1881:23;1877:32;1874:52;;;1922:1;1919;1912:12;1874:52;1958:9;1945:23;1935:33;;1987:38;2021:2;2010:9;2006:18;1987:38;:::i;2036:286::-;2094:6;2147:2;2135:9;2126:7;2122:23;2118:32;2115:52;;;2163:1;2160;2153:12;2115:52;2189:23;;-1:-1:-1;;;;;;2241:32:1;;2231:43;;2221:71;;2288:1;2285;2278:12;2512:786;2923:25;2918:3;2911:38;2893:3;2978:6;2972:13;2994:62;3049:6;3044:2;3039:3;3035:12;3028:4;3020:6;3016:17;2994:62;:::i;:::-;-1:-1:-1;;;3115:2:1;3075:16;;;3107:11;;;3100:40;3165:13;;3187:63;3165:13;3236:2;3228:11;;3221:4;3209:17;;3187:63;:::i;:::-;3270:17;3289:2;3266:26;;2512:786;-1:-1:-1;;;;2512:786:1:o;3885:383::-;4034:2;4023:9;4016:21;3997:4;4066:6;4060:13;4109:6;4104:2;4093:9;4089:18;4082:34;4125:66;4184:6;4179:2;4168:9;4164:18;4159:2;4151:6;4147:15;4125:66;:::i;:::-;4252:2;4231:15;-1:-1:-1;;4227:29:1;4212:45;;;;4259:2;4208:54;;3885:383;-1:-1:-1;;3885:383:1:o;7841:356::-;8043:2;8025:21;;;8062:18;;;8055:30;8121:34;8116:2;8101:18;;8094:62;8188:2;8173:18;;7841:356::o;10968:128::-;11008:3;11039:1;11035:6;11032:1;11029:13;11026:39;;;11045:18;;:::i;:::-;-1:-1:-1;11081:9:1;;10968:128::o;11101:168::-;11141:7;11207:1;11203;11199:6;11195:14;11192:1;11189:21;11184:1;11177:9;11170:17;11166:45;11163:71;;;11214:18;;:::i;:::-;-1:-1:-1;11254:9:1;;11101:168::o;11274:125::-;11314:4;11342:1;11339;11336:8;11333:34;;;11347:18;;:::i;:::-;-1:-1:-1;11384:9:1;;11274:125::o;11404:258::-;11476:1;11486:113;11500:6;11497:1;11494:13;11486:113;;;11576:11;;;11570:18;11557:11;;;11550:39;11522:2;11515:10;11486:113;;;11617:6;11614:1;11611:13;11608:48;;;-1:-1:-1;;11652:1:1;11634:16;;11627:27;11404:258::o;11667:136::-;11706:3;11734:5;11724:39;;11743:18;;:::i;:::-;-1:-1:-1;;;11779:18:1;;11667:136::o;11808:380::-;11887:1;11883:12;;;;11930;;;11951:61;;12005:4;11997:6;11993:17;11983:27;;11951:61;12058:2;12050:6;12047:14;12027:18;12024:38;12021:161;;;12104:10;12099:3;12095:20;12092:1;12085:31;12139:4;12136:1;12129:15;12167:4;12164:1;12157:15;12021:161;;11808:380;;;:::o;12193:127::-;12254:10;12249:3;12245:20;12242:1;12235:31;12285:4;12282:1;12275:15;12309:4;12306:1;12299:15;12325:127;12386:10;12381:3;12377:20;12374:1;12367:31;12417:4;12414:1;12407:15;12441:4;12438:1;12431:15;12457:127;12518:10;12513:3;12509:20;12506:1;12499:31;12549:4;12546:1;12539:15;12573:4;12570:1;12563:15
Swarm Source
ipfs://0c847c7e6ea160f6164814eb789c33029b1078111d271e5aeefc12d5ee90e56a