Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,000,000,000 MNY
Holders
1,636
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
29,709,005.627039800124338164 MNYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MoonieToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-31 */ // Sources flattened with hardhat v2.4.3 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File contracts/common/AccessControlMixin.sol pragma solidity 0.8.4; contract AccessControlMixin is AccessControl { string private _revertMsg; function _setupContractId(string memory contractId) internal { _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS")); } modifier only(bytes32 role) { require( hasRole(role, _msgSender()), _revertMsg ); _; } } // File contracts/common/IChildToken.sol pragma solidity 0.8.4; interface IChildToken { function deposit(address user, bytes calldata depositData) external; } // File @openzeppelin/contracts/utils/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File contracts/common/EIP712Base.sol pragma solidity 0.8.4; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contractsa that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } } // File contracts/common/NativeMetaTransaction.sol pragma solidity 0.8.4; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, msg.sender, functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } } // File contracts/common/ContextMixin.sol pragma solidity 0.8.4; abstract contract ContextMixin { function msgSender() internal view returns (address sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = msg.sender; } return sender; } } // File contracts/common/IERC20Mintable.sol pragma solidity 0.8.4; interface IERC20Mintable is IERC20 { /** * @notice called by predicate contract to mint tokens while withdrawing * @dev Should be callable only by MintableERC20Predicate * Make sure minting is done only by this function * @param user user address for whom token is being minted * @param amount amount of token being minted */ function mint(address user, uint256 amount) external; } // File contracts/ethereum/MoonieToken.sol pragma solidity 0.8.4; contract MoonieToken is ERC20, AccessControlMixin, NativeMetaTransaction, ContextMixin, IERC20Mintable { bytes32 public constant PREDICATE_ROLE = keccak256("PREDICATE_ROLE"); constructor(string memory name_, string memory symbol_, address rootPredicateProxy) ERC20(name_, symbol_) { _setupContractId("MoonieToken"); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PREDICATE_ROLE, rootPredicateProxy); _initializeEIP712(name_); } /** * @dev See {IERC20Mintable-mint}. */ function mint(address user, uint256 amount) external override only(PREDICATE_ROLE) { _mint(user, amount); } function _msgSender() internal override view returns (address) { return ContextMixin.msgSender(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"rootPredicateProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREDICATE_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":[],"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":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":"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":"user","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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620028db380380620028db8339810160408190526200003491620004f0565b8251839083906200004d906003906020850190620003bb565b50805162000063906004906020840190620003bb565b505060408051808201909152600b81526a26b7b7b734b2aa37b5b2b760a91b6020820152620000939150620000e9565b620000a96000620000a362000126565b62000142565b620000d57f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f28262000142565b620000e0836200014e565b50505062000642565b80604051602001620000fc919062000579565b6040516020818303038152906040526006908051906020019062000122929190620003bb565b5050565b60006200013d6200021460201b62000da31760201c565b905090565b62000122828262000273565b600754610100900460ff168062000168575060075460ff16155b620001d05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600754610100900460ff16158015620001f3576007805461ffff19166101011790555b620001fe8262000319565b801562000122576007805461ff00191690555050565b6000333014156200026d57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002709050565b50335b90565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620001225760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002d562000126565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040518060800160405280604f81526020016200288c604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600855565b828054620003c990620005ef565b90600052602060002090601f016020900481019282620003ed576000855562000438565b82601f106200040857805160ff191683800117855562000438565b8280016001018555821562000438579182015b82811115620004385782518255916020019190600101906200041b565b50620004469291506200044a565b5090565b5b808211156200044657600081556001016200044b565b600082601f83011262000472578081fd5b81516001600160401b03808211156200048f576200048f6200062c565b604051601f8301601f19908116603f01168101908282118183101715620004ba57620004ba6200062c565b81604052838152866020858801011115620004d3578485fd5b620004e6846020830160208901620005bc565b9695505050505050565b60008060006060848603121562000505578283fd5b83516001600160401b03808211156200051c578485fd5b6200052a8783880162000461565b9450602086015191508082111562000540578384fd5b506200054f8682870162000461565b604086015190935090506001600160a01b03811681146200056e578182fd5b809150509250925092565b600082516200058d818460208701620005bc565b7f3a20494e53554646494349454e545f5045524d495353494f4e53000000000000920191825250601a01919050565b60005b83811015620005d9578181015183820152602001620005bf565b83811115620005e9576000848401525b50505050565b600181811c908216806200060457607f821691505b602082108114156200062657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61223a80620006526000396000f3fe6080604052600436106101965760003560e01c80633408e470116100e157806395d89b411161008a578063a9059cbb11610064578063a9059cbb146104c6578063d547741f146104e6578063dd62ed3e14610506578063e72db5fd1461055957600080fd5b806395d89b411461047c578063a217fddf14610491578063a457c2d7146104a657600080fd5b806340c10f19116100bb57806340c10f19146103c657806370a08231146103e657806391d148541461042957600080fd5b80633408e4701461037357806336568abe1461038657806339509351146103a657600080fd5b806320379ee5116101435780632d0335ab1161011d5780632d0335ab146102f25780632f2ff15d14610335578063313ce5671461035757600080fd5b806320379ee51461028d57806323b872dd146102a2578063248a9ca3146102c257600080fd5b80630c53c51c116101745780630c53c51c146102125780630f7e59701461022557806318160ddd1461026e57600080fd5b806301ffc9a71461019b57806306fdde03146101d0578063095ea7b3146101f2575b600080fd5b3480156101a757600080fd5b506101bb6101b6366004611db6565b61058d565b60405190151581526020015b60405180910390f35b3480156101dc57600080fd5b506101e5610626565b6040516101c79190611f69565b3480156101fe57600080fd5b506101bb61020d366004611d53565b6106b8565b6101e5610220366004611c56565b6106d5565b34801561023157600080fd5b506101e56040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561027a57600080fd5b506002545b6040519081526020016101c7565b34801561029957600080fd5b5060085461027f565b3480156102ae57600080fd5b506101bb6102bd366004611c1b565b610966565b3480156102ce57600080fd5b5061027f6102dd366004611d7c565b60009081526005602052604090206001015490565b3480156102fe57600080fd5b5061027f61030d366004611bcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561034157600080fd5b50610355610350366004611d94565b610a8d565b005b34801561036357600080fd5b50604051601281526020016101c7565b34801561037f57600080fd5b504661027f565b34801561039257600080fd5b506103556103a1366004611d94565b610abf565b3480156103b257600080fd5b506101bb6103c1366004611d53565b610b8f565b3480156103d257600080fd5b506103556103e1366004611d53565b610bf0565b3480156103f257600080fd5b5061027f610401366004611bcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561043557600080fd5b506101bb610444366004611d94565b600091825260056020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b34801561048857600080fd5b506101e5610c62565b34801561049d57600080fd5b5061027f600081565b3480156104b257600080fd5b506101bb6104c1366004611d53565b610c71565b3480156104d257600080fd5b506101bb6104e1366004611d53565b610d67565b3480156104f257600080fd5b50610355610501366004611d94565b610d7b565b34801561051257600080fd5b5061027f610521366004611be9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561056557600080fd5b5061027f7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f281565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061062057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546106359061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546106619061210f565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b60006106cc6106c5610e0d565b8484610e1c565b50600192915050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff8816600081815260096020908152908590205484528301529181018690526107208782878787610fcf565b6107b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff87166000908152600960205260409020546107e2906001611118565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600960205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061083f90899033908a90611f27565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610874929190611e5c565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290526108ac91611e40565b6000604051808303816000865af19150503d80600081146108e9576040519150601f19603f3d011682016040523d82523d6000602084013e6108ee565b606091505b50915091508161095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016107a8565b98975050505050505050565b600061097384848461112b565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816109a1610e0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016107a8565b610a8285610a7a610e0d565b858403610e1c565b506001949350505050565b600082815260056020526040902060010154610ab081610aab610e0d565b6113e0565b610aba83836114b2565b505050565b610ac7610e0d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016107a8565b610b8b82826115a7565b5050565b60006106cc610b9c610e0d565b848460016000610baa610e0d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b1681529252902054610beb9190612059565b610e1c565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f2610c1d81610444610e0d565b600690610c57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a89190611f7c565b50610aba838361169a565b6060600480546106359061210f565b60008060016000610c80610e0d565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107a8565b610d5d610d54610e0d565b85858403610e1c565b5060019392505050565b60006106cc610d74610e0d565b848461112b565b600082815260056020526040902060010154610d9981610aab610e0d565b610aba83836115a7565b600033301415610e0757600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff169150610e0a9050565b50335b90565b6000610e17610da3565b905090565b73ffffffffffffffffffffffffffffffffffffffff8316610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff8216610f61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff8616611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016107a8565b6001611087611082876117ba565b611844565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156110d5573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60006111248284612059565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff83166111ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff8216611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061136b908490612059565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113d191815260200190565b60405180910390a35b50505050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610b8b576114388173ffffffffffffffffffffffffffffffffffffffff16601461188f565b61144383602061188f565b604051602001611454929190611ea6565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107a891600401611f69565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610b8b57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611549610e0d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610b8b57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905561163c610e0d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff8216611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107a8565b80600260008282546117299190612059565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611763908490612059565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006040518060800160405280604381526020016121c260439139805160209182012083518483015160408087015180519086012090516118279501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061184f60085490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201611827565b6060600061189e836002612071565b6118a9906002612059565b67ffffffffffffffff8111156118e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611912576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611970577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611a36846002612071565b611a41906001612059565b90505b6001811115611b2c577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611aa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611ae6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611b25816120da565b9050611a44565b508315611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107a8565b803573ffffffffffffffffffffffffffffffffffffffff81168114611bb957600080fd5b919050565b803560ff81168114611bb957600080fd5b600060208284031215611be0578081fd5b61112482611b95565b60008060408385031215611bfb578081fd5b611c0483611b95565b9150611c1260208401611b95565b90509250929050565b600080600060608486031215611c2f578081fd5b611c3884611b95565b9250611c4660208501611b95565b9150604084013590509250925092565b600080600080600060a08688031215611c6d578081fd5b611c7686611b95565b9450602086013567ffffffffffffffff80821115611c92578283fd5b818801915088601f830112611ca5578283fd5b813581811115611cb757611cb7612192565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715611cfd57611cfd612192565b816040528281528b6020848701011115611d15578586fd5b8260208601602083013791820160200185905250955050506040860135925060608601359150611d4760808701611bbe565b90509295509295909350565b60008060408385031215611d65578182fd5b611d6e83611b95565b946020939093013593505050565b600060208284031215611d8d578081fd5b5035919050565b60008060408385031215611da6578182fd5b82359150611c1260208401611b95565b600060208284031215611dc7578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611124578182fd5b60008151808452611e0e8160208601602086016120ae565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008251611e528184602087016120ae565b9190910192915050565b60008351611e6e8184602088016120ae565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611ede8160178501602088016120ae565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611f1b8160288401602088016120ae565b01602801949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808616835280851660208401525060606040830152611f606060830184611df6565b95945050505050565b6020815260006111246020830184611df6565b6000602080835281845483600182811c915080831680611f9d57607f831692505b858310811415611fd4577f4e487b710000000000000000000000000000000000000000000000000000000087526022600452602487fd5b878601838152602001818015611ff157600181146120205761204a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168252878201965061204a565b60008b815260209020895b868110156120445781548482015290850190890161202b565b83019750505b50949998505050505050505050565b6000821982111561206c5761206c612163565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120a9576120a9612163565b500290565b60005b838110156120c95781810151838201526020016120b1565b838111156113da5750506000910152565b6000816120e9576120e9612163565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061212357607f821691505b6020821081141561215d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220473c8ee8df211ba66aae767a1a7877833737d66937d2d9245513202e96597dad64736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009923263fa127b3d1484cfd649df8f1831c2a74e4000000000000000000000000000000000000000000000000000000000000000f4d6f6f6e69654e465420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4e590000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101965760003560e01c80633408e470116100e157806395d89b411161008a578063a9059cbb11610064578063a9059cbb146104c6578063d547741f146104e6578063dd62ed3e14610506578063e72db5fd1461055957600080fd5b806395d89b411461047c578063a217fddf14610491578063a457c2d7146104a657600080fd5b806340c10f19116100bb57806340c10f19146103c657806370a08231146103e657806391d148541461042957600080fd5b80633408e4701461037357806336568abe1461038657806339509351146103a657600080fd5b806320379ee5116101435780632d0335ab1161011d5780632d0335ab146102f25780632f2ff15d14610335578063313ce5671461035757600080fd5b806320379ee51461028d57806323b872dd146102a2578063248a9ca3146102c257600080fd5b80630c53c51c116101745780630c53c51c146102125780630f7e59701461022557806318160ddd1461026e57600080fd5b806301ffc9a71461019b57806306fdde03146101d0578063095ea7b3146101f2575b600080fd5b3480156101a757600080fd5b506101bb6101b6366004611db6565b61058d565b60405190151581526020015b60405180910390f35b3480156101dc57600080fd5b506101e5610626565b6040516101c79190611f69565b3480156101fe57600080fd5b506101bb61020d366004611d53565b6106b8565b6101e5610220366004611c56565b6106d5565b34801561023157600080fd5b506101e56040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561027a57600080fd5b506002545b6040519081526020016101c7565b34801561029957600080fd5b5060085461027f565b3480156102ae57600080fd5b506101bb6102bd366004611c1b565b610966565b3480156102ce57600080fd5b5061027f6102dd366004611d7c565b60009081526005602052604090206001015490565b3480156102fe57600080fd5b5061027f61030d366004611bcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561034157600080fd5b50610355610350366004611d94565b610a8d565b005b34801561036357600080fd5b50604051601281526020016101c7565b34801561037f57600080fd5b504661027f565b34801561039257600080fd5b506103556103a1366004611d94565b610abf565b3480156103b257600080fd5b506101bb6103c1366004611d53565b610b8f565b3480156103d257600080fd5b506103556103e1366004611d53565b610bf0565b3480156103f257600080fd5b5061027f610401366004611bcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561043557600080fd5b506101bb610444366004611d94565b600091825260056020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b34801561048857600080fd5b506101e5610c62565b34801561049d57600080fd5b5061027f600081565b3480156104b257600080fd5b506101bb6104c1366004611d53565b610c71565b3480156104d257600080fd5b506101bb6104e1366004611d53565b610d67565b3480156104f257600080fd5b50610355610501366004611d94565b610d7b565b34801561051257600080fd5b5061027f610521366004611be9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561056557600080fd5b5061027f7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f281565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061062057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546106359061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546106619061210f565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b60006106cc6106c5610e0d565b8484610e1c565b50600192915050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff8816600081815260096020908152908590205484528301529181018690526107208782878787610fcf565b6107b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff87166000908152600960205260409020546107e2906001611118565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600960205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061083f90899033908a90611f27565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610874929190611e5c565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290526108ac91611e40565b6000604051808303816000865af19150503d80600081146108e9576040519150601f19603f3d011682016040523d82523d6000602084013e6108ee565b606091505b50915091508161095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016107a8565b98975050505050505050565b600061097384848461112b565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816109a1610e0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016107a8565b610a8285610a7a610e0d565b858403610e1c565b506001949350505050565b600082815260056020526040902060010154610ab081610aab610e0d565b6113e0565b610aba83836114b2565b505050565b610ac7610e0d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016107a8565b610b8b82826115a7565b5050565b60006106cc610b9c610e0d565b848460016000610baa610e0d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b1681529252902054610beb9190612059565b610e1c565b7f12ff340d0cd9c652c747ca35727e68c547d0f0bfa7758d2e77f75acef481b4f2610c1d81610444610e0d565b600690610c57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a89190611f7c565b50610aba838361169a565b6060600480546106359061210f565b60008060016000610c80610e0d565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107a8565b610d5d610d54610e0d565b85858403610e1c565b5060019392505050565b60006106cc610d74610e0d565b848461112b565b600082815260056020526040902060010154610d9981610aab610e0d565b610aba83836115a7565b600033301415610e0757600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff169150610e0a9050565b50335b90565b6000610e17610da3565b905090565b73ffffffffffffffffffffffffffffffffffffffff8316610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff8216610f61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff8616611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016107a8565b6001611087611082876117ba565b611844565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156110d5573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60006111248284612059565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff83166111ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff8216611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107a8565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061136b908490612059565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113d191815260200190565b60405180910390a35b50505050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610b8b576114388173ffffffffffffffffffffffffffffffffffffffff16601461188f565b61144383602061188f565b604051602001611454929190611ea6565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526107a891600401611f69565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610b8b57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611549610e0d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1615610b8b57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905561163c610e0d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b73ffffffffffffffffffffffffffffffffffffffff8216611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016107a8565b80600260008282546117299190612059565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611763908490612059565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006040518060800160405280604381526020016121c260439139805160209182012083518483015160408087015180519086012090516118279501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061184f60085490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201611827565b6060600061189e836002612071565b6118a9906002612059565b67ffffffffffffffff8111156118e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611912576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611970577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611a36846002612071565b611a41906001612059565b90505b6001811115611b2c577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611aa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611ae6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611b25816120da565b9050611a44565b508315611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107a8565b803573ffffffffffffffffffffffffffffffffffffffff81168114611bb957600080fd5b919050565b803560ff81168114611bb957600080fd5b600060208284031215611be0578081fd5b61112482611b95565b60008060408385031215611bfb578081fd5b611c0483611b95565b9150611c1260208401611b95565b90509250929050565b600080600060608486031215611c2f578081fd5b611c3884611b95565b9250611c4660208501611b95565b9150604084013590509250925092565b600080600080600060a08688031215611c6d578081fd5b611c7686611b95565b9450602086013567ffffffffffffffff80821115611c92578283fd5b818801915088601f830112611ca5578283fd5b813581811115611cb757611cb7612192565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715611cfd57611cfd612192565b816040528281528b6020848701011115611d15578586fd5b8260208601602083013791820160200185905250955050506040860135925060608601359150611d4760808701611bbe565b90509295509295909350565b60008060408385031215611d65578182fd5b611d6e83611b95565b946020939093013593505050565b600060208284031215611d8d578081fd5b5035919050565b60008060408385031215611da6578182fd5b82359150611c1260208401611b95565b600060208284031215611dc7578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611124578182fd5b60008151808452611e0e8160208601602086016120ae565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008251611e528184602087016120ae565b9190910192915050565b60008351611e6e8184602088016120ae565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611ede8160178501602088016120ae565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611f1b8160288401602088016120ae565b01602801949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808616835280851660208401525060606040830152611f606060830184611df6565b95945050505050565b6020815260006111246020830184611df6565b6000602080835281845483600182811c915080831680611f9d57607f831692505b858310811415611fd4577f4e487b710000000000000000000000000000000000000000000000000000000087526022600452602487fd5b878601838152602001818015611ff157600181146120205761204a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168252878201965061204a565b60008b815260209020895b868110156120445781548482015290850190890161202b565b83019750505b50949998505050505050505050565b6000821982111561206c5761206c612163565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120a9576120a9612163565b500290565b60005b838110156120c95781810151838201526020016120b1565b838111156113da5750506000910152565b6000816120e9576120e9612163565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061212357607f821691505b6020821081141561215d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220473c8ee8df211ba66aae767a1a7877833737d66937d2d9245513202e96597dad64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009923263fa127b3d1484cfd649df8f1831c2a74e4000000000000000000000000000000000000000000000000000000000000000f4d6f6f6e69654e465420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4e590000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): MoonieNFT Token
Arg [1] : symbol_ (string): MNY
Arg [2] : rootPredicateProxy (address): 0x9923263fA127b3d1484cFD649df8f1831c2A74e4
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000009923263fa127b3d1484cfd649df8f1831c2a74e4
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4d6f6f6e69654e465420546f6b656e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d4e590000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45151:882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24508:204;;;;;;;;;;-1:-1:-1;24508:204:0;;;;;:::i;:::-;;:::i;:::-;;;6500:14:1;;6493:22;6475:41;;6463:2;6448:18;24508:204:0;;;;;;;;6518:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8685:169::-;;;;;;;;;;-1:-1:-1;8685:169:0;;;;;:::i;:::-;;:::i;41624:1142::-;;;;;;:::i;:::-;;:::i;38809:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7638:108;;;;;;;;;;-1:-1:-1;7726:12:0;;7638:108;;;6673:25:1;;;6661:2;6646:18;7638:108:0;6628:76:1;39819:101:0;;;;;;;;;;-1:-1:-1;39897:15:0;;39819:101;;9336:492;;;;;;;;;;-1:-1:-1;9336:492:0;;;;;:::i;:::-;;:::i;25919:123::-;;;;;;;;;;-1:-1:-1;25919:123:0;;;;;:::i;:::-;25985:7;26012:12;;;:6;:12;;;;;:22;;;;25919:123;43192:107;;;;;;;;;;-1:-1:-1;43192:107:0;;;;;:::i;:::-;43279:12;;43245:13;43279:12;;;:6;:12;;;;;;;43192:107;26304:147;;;;;;;;;;-1:-1:-1;26304:147:0;;;;;:::i;:::-;;:::i;:::-;;7480:93;;;;;;;;;;-1:-1:-1;7480:93:0;;7563:2;14783:36:1;;14771:2;14756:18;7480:93:0;14738:87:1;39928:161:0;;;;;;;;;;-1:-1:-1;40042:9:0;39928:161;;27352:218;;;;;;;;;;-1:-1:-1;27352:218:0;;;;;:::i;:::-;;:::i;10237:215::-;;;;;;;;;;-1:-1:-1;10237:215:0;;;;;:::i;:::-;;:::i;45747:121::-;;;;;;;;;;-1:-1:-1;45747:121:0;;;;;:::i;:::-;;:::i;7809:127::-;;;;;;;;;;-1:-1:-1;7809:127:0;;;;;:::i;:::-;7910:18;;7883:7;7910:18;;;;;;;;;;;;7809:127;24804:139;;;;;;;;;;-1:-1:-1;24804:139:0;;;;;:::i;:::-;24882:4;24906:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;;;;24804:139;6737:104;;;;;;;;;;;;;:::i;22782:49::-;;;;;;;;;;-1:-1:-1;22782:49:0;22827:4;22782:49;;10955:413;;;;;;;;;;-1:-1:-1;10955:413:0;;;;;:::i;:::-;;:::i;8149:175::-;;;;;;;;;;-1:-1:-1;8149:175:0;;;;;:::i;:::-;;:::i;26696:149::-;;;;;;;;;;-1:-1:-1;26696:149:0;;;;;:::i;:::-;;:::i;8387:151::-;;;;;;;;;;-1:-1:-1;8387:151:0;;;;;:::i;:::-;8503:18;;;;8476:7;8503:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8387:151;45287:68;;;;;;;;;;;;45328:27;45287:68;;24508:204;24593:4;24617:47;;;24632:32;24617:47;;:87;;-1:-1:-1;20345:25:0;20330:40;;;;24668:36;24610:94;24508:204;-1:-1:-1;;24508:204:0:o;6518:100::-;6572:13;6605:5;6598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:100;:::o;8685:169::-;8768:4;8785:39;8794:12;:10;:12::i;:::-;8808:7;8817:6;8785:8;:39::i;:::-;-1:-1:-1;8842:4:0;8685:169;;;;:::o;41624:1142::-;41882:152;;;41825:12;41882:152;;;;;41920:19;;;41850:29;41920:19;;;:6;:19;;;;;;;;;41882:152;;;;;;;;;;;42069:45;41927:11;41882:152;42097:4;42103;42109;42069:6;:45::i;:::-;42047:128;;;;;;;12266:2:1;42047:128:0;;;12248:21:1;12305:2;12285:18;;;12278:30;12344:34;12324:18;;;12317:62;12415:3;12395:18;;;12388:31;12436:19;;42047:128:0;;;;;;;;;42264:19;;;;;;;:6;:19;;;;;;:26;;42288:1;42264:23;:26::i;:::-;42242:19;;;;;;;:6;:19;;;;;;;:48;;;;42308:117;;;;;42249:11;;42372:10;;42397:17;;42308:117;:::i;:::-;;;;;;;;42536:12;42550:23;42585:4;42577:18;;42627:17;42646:11;42610:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;42577:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42535:134;;;;42688:7;42680:48;;;;;;;10687:2:1;42680:48:0;;;10669:21:1;10726:2;10706:18;;;10699:30;10765;10745:18;;;10738:58;10813:18;;42680:48:0;10659:178:1;42680:48:0;42748:10;41624:1142;-1:-1:-1;;;;;;;;41624:1142:0:o;9336:492::-;9476:4;9493:36;9503:6;9511:9;9522:6;9493:9;:36::i;:::-;9569:19;;;9542:24;9569:19;;;:11;:19;;;;;9542:24;9589:12;:10;:12::i;:::-;9569:33;;;;;;;;;;;;;;;;9542:60;;9641:6;9621:16;:26;;9613:79;;;;;;;11857:2:1;9613:79:0;;;11839:21:1;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;12006:10;11986:18;;;11979:38;12034:19;;9613:79:0;11829:230:1;9613:79:0;9728:57;9737:6;9745:12;:10;:12::i;:::-;9778:6;9759:16;:25;9728:8;:57::i;:::-;-1:-1:-1;9816:4:0;;9336:492;-1:-1:-1;;;;9336:492:0:o;26304:147::-;25985:7;26012:12;;;:6;:12;;;;;:22;;;24386:30;24397:4;24403:12;:10;:12::i;:::-;24386:10;:30::i;:::-;26418:25:::1;26429:4;26435:7;26418:10;:25::i;:::-;26304:147:::0;;;:::o;27352:218::-;27459:12;:10;:12::i;:::-;27448:23;;:7;:23;;;27440:83;;;;;;;13885:2:1;27440:83:0;;;13867:21:1;13924:2;13904:18;;;13897:30;13963:34;13943:18;;;13936:62;14034:17;14014:18;;;14007:45;14069:19;;27440:83:0;13857:237:1;27440:83:0;27536:26;27548:4;27554:7;27536:11;:26::i;:::-;27352:218;;:::o;10237:215::-;10325:4;10342:80;10351:12;:10;:12::i;:::-;10365:7;10411:10;10374:11;:25;10386:12;:10;:12::i;:::-;10374:25;;;;;;;;;;;;;;;;;;-1:-1:-1;10374:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10342:8;:80::i;45747:121::-;45328:27;29468;29476:4;29482:12;:10;:12::i;29468:27::-;29510:10;29446:85;;;;;;;;;;;;;;:::i;:::-;;45841:19:::1;45847:4;45853:6;45841:5;:19::i;6737:104::-:0;6793:13;6826:7;6819:14;;;;;:::i;10955:413::-;11048:4;11065:24;11092:11;:25;11104:12;:10;:12::i;:::-;11092:25;;;;;;;;;;;;;;;;;;-1:-1:-1;11092:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11145:35:0;;;;11137:85;;;;;;;13479:2:1;11137:85:0;;;13461:21:1;13518:2;13498:18;;;13491:30;13557:34;13537:18;;;13530:62;13628:7;13608:18;;;13601:35;13653:19;;11137:85:0;13451:227:1;11137:85:0;11258:67;11267:12;:10;:12::i;:::-;11281:7;11309:15;11290:16;:34;11258:8;:67::i;:::-;-1:-1:-1;11356:4:0;;10955:413;-1:-1:-1;;;10955:413:0:o;8149:175::-;8235:4;8252:42;8262:12;:10;:12::i;:::-;8276:9;8287:6;8252:9;:42::i;26696:149::-;25985:7;26012:12;;;:6;:12;;;;;:22;;;24386:30;24397:4;24403:12;:10;:12::i;24386:30::-;26811:26:::1;26823:4;26829:7;26811:11;:26::i;43914:633::-:0;43985:14;44021:10;44043:4;44021:27;44017:499;;;44065:18;44086:8;;44065:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;44125:8:0;44336:17;44330:24;44377:42;44304:134;;-1:-1:-1;44164:289:0;;-1:-1:-1;44164:289:0;;-1:-1:-1;44494:10:0;44017:499;43914:633;:::o;45876:154::-;45966:7;45998:24;:22;:24::i;:::-;45991:31;;45876:154;:::o;14639:380::-;14775:19;;;14767:68;;;;;;;13074:2:1;14767:68:0;;;13056:21:1;13113:2;13093:18;;;13086:30;13152:34;13132:18;;;13125:62;13223:6;13203:18;;;13196:34;13247:19;;14767:68:0;13046:226:1;14767:68:0;14854:21;;;14846:68;;;;;;;10284:2:1;14846:68:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:34;10342:18;;;10335:62;10433:4;10413:18;;;10406:32;10455:19;;14846:68:0;10256:224:1;14846:68:0;14927:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14979:32;;6673:25:1;;;14979:32:0;;6646:18:1;14979:32:0;;;;;;;14639:380;;;:::o;43307:486::-;43485:4;43510:20;;;43502:70;;;;;;;11451:2:1;43502:70:0;;;11433:21:1;11490:2;11470:18;;;11463:30;11529:34;11509:18;;;11502:62;11600:7;11580:18;;;11573:35;11625:19;;43502:70:0;11423:227:1;43502:70:0;43626:159;43654:47;43673:27;43693:6;43673:19;:27::i;:::-;43654:18;:47::i;:::-;43626:159;;;;;;;;;;;;7381:25:1;;;;7454:4;7442:17;;7422:18;;;7415:45;7476:18;;;7469:34;;;7519:18;;;7512:34;;;7353:19;;43626:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43603:182;;:6;:182;;;43583:202;;43307:486;;;;;;;:::o;32538:98::-;32596:7;32623:5;32627:1;32623;:5;:::i;:::-;32616:12;32538:98;-1:-1:-1;;;32538:98:0:o;11858:733::-;11998:20;;;11990:70;;;;;;;12668:2:1;11990:70:0;;;12650:21:1;12707:2;12687:18;;;12680:30;12746:34;12726:18;;;12719:62;12817:7;12797:18;;;12790:35;12842:19;;11990:70:0;12640:227:1;11990:70:0;12079:23;;;12071:71;;;;;;;9880:2:1;12071:71:0;;;9862:21:1;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;10029:5;10009:18;;;10002:33;10052:19;;12071:71:0;9852:225:1;12071:71:0;12239:17;;;12215:21;12239:17;;;;;;;;;;;12275:23;;;;12267:74;;;;;;;11044:2:1;12267:74:0;;;11026:21:1;11083:2;11063:18;;;11056:30;11122:34;11102:18;;;11095:62;11193:8;11173:18;;;11166:36;11219:19;;12267:74:0;11016:228:1;12267:74:0;12377:17;;;;:9;:17;;;;;;;;;;;12397:22;;;12377:42;;12441:20;;;;;;;;:30;;12413:6;;12377:9;12441:30;;12413:6;;12441:30;:::i;:::-;;;;;;;;12506:9;12489:35;;12498:6;12489:35;;;12517:6;12489:35;;;;6673:25:1;;6661:2;6646:18;;6628:76;12489:35:0;;;;;;;;12537:46;11858:733;;;;:::o;25233:497::-;24882:4;24906:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;25309:414;;25502:41;25530:7;25502:41;;25540:2;25502:19;:41::i;:::-;25616:38;25644:4;25651:2;25616:19;:38::i;:::-;25407:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;25353:358;;;;;;;;:::i;28600:229::-;24882:4;24906:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;28670:152;;28714:12;;;;:6;:12;;;;;;;;:29;;;;;;;;;;:36;;;;28746:4;28714:36;;;28797:12;:10;:12::i;:::-;28770:40;;28788:7;28770:40;;28782:4;28770:40;;;;;;;;;;28600:229;;:::o;28837:230::-;24882:4;24906:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;28908:152;;;28983:5;28951:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;:37;;;;;;29035:12;:10;:12::i;:::-;29008:40;;29026:7;29008:40;;29020:4;29008:40;;;;;;;;;;28837:230;;:::o;12878:399::-;12962:21;;;12954:65;;;;;;;14301:2:1;12954:65:0;;;14283:21:1;14340:2;14320:18;;;14313:30;14379:33;14359:18;;;14352:61;14430:18;;12954:65:0;14273:181:1;12954:65:0;13110:6;13094:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13127:18:0;;;:9;:18;;;;;;;;;;:28;;13149:6;;13127:9;:28;;13149:6;;13127:28;:::i;:::-;;;;-1:-1:-1;;13171:37:0;;6673:25:1;;;13171:37:0;;;;13188:1;;13171:37;;6661:2:1;6646:18;13171:37:0;;;;;;;27352:218;;:::o;42774:410::-;42884:7;40968:100;;;;;;;;;;;;;;;;;40948:127;;;;;;;43038:12;;43073:11;;;;43117:24;;;;;43107:35;;;;;;42957:204;;;;;6940:25:1;;;6996:2;6981:18;;6974:34;;;;7056:42;7044:55;7039:2;7024:18;;7017:83;7131:2;7116:18;;7109:34;6927:3;6912:19;;6894:255;42957:204:0;;;;;;;;;;;;;42929:247;;;;;;42909:267;;42774:410;;;:::o;40458:258::-;40557:7;40659:20;39897:15;;;39819:101;40659:20;40630:63;;4922:66:1;40630:63:0;;;4910:79:1;5005:11;;;4998:27;;;;5041:12;;;5034:28;;;5078:12;;40630:63:0;4900:196:1;18100:451:0;18175:13;18201:19;18233:10;18237:6;18233:1;:10;:::i;:::-;:14;;18246:1;18233:14;:::i;:::-;18223:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18223:25:0;;18201:47;;18259:15;:6;18266:1;18259:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;18285;:6;18292:1;18285:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;-1:-1:-1;18316:9:0;18328:10;18332:6;18328:1;:10;:::i;:::-;:14;;18341:1;18328:14;:::i;:::-;18316:26;;18311:135;18348:1;18344;:5;18311:135;;;18383:12;18396:5;18404:3;18396:11;18383:25;;;;;;;;;;;;;;;;;;18371:6;18378:1;18371:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;-1:-1:-1;18433:1:0;18423:11;;;;;18351:3;;;:::i;:::-;;;18311:135;;;-1:-1:-1;18464:10:0;;18456:55;;;;;;;9519:2:1;18456:55:0;;;9501:21:1;;;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;9649:18;;18456:55:0;9491:182:1;14:196;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:156::-;281:20;;341:4;330:16;;320:27;;310:2;;361:1;358;351:12;376:196;435:6;488:2;476:9;467:7;463:23;459:32;456:2;;;509:6;501;494:22;456:2;537:29;556:9;537:29;:::i;577:270::-;645:6;653;706:2;694:9;685:7;681:23;677:32;674:2;;;727:6;719;712:22;674:2;755:29;774:9;755:29;:::i;:::-;745:39;;803:38;837:2;826:9;822:18;803:38;:::i;:::-;793:48;;664:183;;;;;:::o;852:338::-;929:6;937;945;998:2;986:9;977:7;973:23;969:32;966:2;;;1019:6;1011;1004:22;966:2;1047:29;1066:9;1047:29;:::i;:::-;1037:39;;1095:38;1129:2;1118:9;1114:18;1095:38;:::i;:::-;1085:48;;1180:2;1169:9;1165:18;1152:32;1142:42;;956:234;;;;;:::o;1195:1307::-;1297:6;1305;1313;1321;1329;1382:3;1370:9;1361:7;1357:23;1353:33;1350:2;;;1404:6;1396;1389:22;1350:2;1432:29;1451:9;1432:29;:::i;:::-;1422:39;;1512:2;1501:9;1497:18;1484:32;1535:18;1576:2;1568:6;1565:14;1562:2;;;1597:6;1589;1582:22;1562:2;1640:6;1629:9;1625:22;1615:32;;1685:7;1678:4;1674:2;1670:13;1666:27;1656:2;;1712:6;1704;1697:22;1656:2;1753;1740:16;1775:2;1771;1768:10;1765:2;;;1781:18;;:::i;:::-;1915:2;1909:9;1977:4;1969:13;;1820:66;1965:22;;;1989:2;1961:31;1957:40;1945:53;;;2013:18;;;2033:22;;;2010:46;2007:2;;;2059:18;;:::i;:::-;2099:10;2095:2;2088:22;2134:2;2126:6;2119:18;2174:7;2169:2;2164;2160;2156:11;2152:20;2149:33;2146:2;;;2200:6;2192;2185:22;2146:2;2261;2256;2252;2248:11;2243:2;2235:6;2231:15;2218:46;2284:15;;;2301:2;2280:24;2273:40;;;-1:-1:-1;2288:6:1;-1:-1:-1;;;2385:2:1;2370:18;;2357:32;;-1:-1:-1;2436:2:1;2421:18;;2408:32;;-1:-1:-1;2459:37:1;2491:3;2476:19;;2459:37;:::i;:::-;2449:47;;1340:1162;;;;;;;;:::o;2507:264::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:2;;;2657:6;2649;2642:22;2604:2;2685:29;2704:9;2685:29;:::i;:::-;2675:39;2761:2;2746:18;;;;2733:32;;-1:-1:-1;;;2594:177:1:o;2776:190::-;2835:6;2888:2;2876:9;2867:7;2863:23;2859:32;2856:2;;;2909:6;2901;2894:22;2856:2;-1:-1:-1;2937:23:1;;2846:120;-1:-1:-1;2846:120:1:o;2971:264::-;3039:6;3047;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3162:9;3149:23;3139:33;;3191:38;3225:2;3214:9;3210:18;3191:38;:::i;3240:352::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:2;;;3372:6;3364;3357:22;3319:2;3416:9;3403:23;3466:66;3459:5;3455:78;3448:5;3445:89;3435:2;;3553:6;3545;3538:22;3597:316;3638:3;3676:5;3670:12;3703:6;3698:3;3691:19;3719:63;3775:6;3768:4;3763:3;3759:14;3752:4;3745:5;3741:16;3719:63;:::i;:::-;3827:2;3815:15;3832:66;3811:88;3802:98;;;;3902:4;3798:109;;3646:267;-1:-1:-1;;3646:267:1:o;3918:274::-;4047:3;4085:6;4079:13;4101:53;4147:6;4142:3;4135:4;4127:6;4123:17;4101:53;:::i;:::-;4170:16;;;;;4055:137;-1:-1:-1;;4055:137:1:o;4197:450::-;4354:3;4392:6;4386:13;4408:53;4454:6;4449:3;4442:4;4434:6;4430:17;4408:53;:::i;:::-;4530:2;4526:15;;;;4543:66;4522:88;4483:16;;;;4508:103;;;4638:2;4627:14;;4362:285;-1:-1:-1;;4362:285:1:o;5101:786::-;5512:25;5507:3;5500:38;5482:3;5567:6;5561:13;5583:62;5638:6;5633:2;5628:3;5624:12;5617:4;5609:6;5605:17;5583:62;:::i;:::-;5709:19;5704:2;5664:16;;;5696:11;;;5689:40;5754:13;;5776:63;5754:13;5825:2;5817:11;;5810:4;5798:17;;5776:63;:::i;:::-;5859:17;5878:2;5855:26;;5490:397;-1:-1:-1;;;;5490:397:1:o;5892:438::-;6058:4;6087:42;6168:2;6160:6;6156:15;6145:9;6138:34;6220:2;6212:6;6208:15;6203:2;6192:9;6188:18;6181:43;;6260:2;6255;6244:9;6240:18;6233:30;6280:44;6320:2;6309:9;6305:18;6297:6;6280:44;:::i;:::-;6272:52;6067:263;-1:-1:-1;;;;;6067:263:1:o;7557:217::-;7704:2;7693:9;7686:21;7667:4;7724:44;7764:2;7753:9;7749:18;7741:6;7724:44;:::i;8003:1309::-;8112:4;8141:2;8170;8159:9;8152:21;8193:4;8229:6;8223:13;8259:4;8282:1;8310:9;8306:2;8302:18;8292:28;;8370:2;8359:9;8355:18;8392;8382:2;;8436:4;8428:6;8424:17;8414:27;;8382:2;8489;8481:6;8478:14;8458:18;8455:38;8452:2;;;8529:77;8523:4;8516:91;8630:4;8627:1;8620:15;8661:4;8655;8648:18;8452:2;8731:18;;;15048:19;;;15100:4;15091:14;8774:18;8801:158;;;;8973:1;8968:318;;;;8767:519;;8801:158;8849:66;8838:9;8834:82;8829:3;8822:95;8946:2;8941:3;8937:12;8930:19;;8801:158;;8968:318;14877:4;14896:17;;;14946:4;14930:21;;9063:4;9080:165;9094:6;9091:1;9088:13;9080:165;;;9172:14;;9159:11;;;9152:35;9215:16;;;;9109:10;;9080:165;;;9265:11;;;-1:-1:-1;;8767:519:1;-1:-1:-1;9303:3:1;;8121:1191;-1:-1:-1;;;;;;;;;8121:1191:1:o;15116:128::-;15156:3;15187:1;15183:6;15180:1;15177:13;15174:2;;;15193:18;;:::i;:::-;-1:-1:-1;15229:9:1;;15164:80::o;15249:228::-;15289:7;15415:1;15347:66;15343:74;15340:1;15337:81;15332:1;15325:9;15318:17;15314:105;15311:2;;;15422:18;;:::i;:::-;-1:-1:-1;15462:9:1;;15301:176::o;15482:258::-;15554:1;15564:113;15578:6;15575:1;15572:13;15564:113;;;15654:11;;;15648:18;15635:11;;;15628:39;15600:2;15593:10;15564:113;;;15695:6;15692:1;15689:13;15686:2;;;-1:-1:-1;;15730:1:1;15712:16;;15705:27;15535:205::o;15745:196::-;15784:3;15812:5;15802:2;;15821:18;;:::i;:::-;-1:-1:-1;15868:66:1;15857:78;;15792:149::o;15946:437::-;16025:1;16021:12;;;;16068;;;16089:2;;16143:4;16135:6;16131:17;16121:27;;16089:2;16196;16188:6;16185:14;16165:18;16162:38;16159:2;;;16233:77;16230:1;16223:88;16334:4;16331:1;16324:15;16362:4;16359:1;16352:15;16159:2;;16001:382;;;:::o;16388:184::-;16440:77;16437:1;16430:88;16537:4;16534:1;16527:15;16561:4;16558:1;16551:15;16577:184;16629:77;16626:1;16619:88;16726:4;16723:1;16716:15;16750:4;16747:1;16740:15
Swarm Source
ipfs://473c8ee8df211ba66aae767a1a7877833737d66937d2d9245513202e96597dad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.