ERC-721
Overview
Max Total Supply
0 JBALL
Holders
250
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JBALLNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-23 */ // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.0 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` 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 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: JPBERC721.sol pragma solidity ^0.8.2; contract JBALLNFT is ERC721, ERC721URIStorage, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); string private mBaseURI = ""; constructor() ERC721("J-Ball", "JBALL") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); } function _baseURI() internal view override returns (string memory) { return mBaseURI; } function setBaseURI(string memory uri) public onlyRole(MINTER_ROLE) { require(bytes(uri).length > 0, "Base URI string cannot be empty"); mBaseURI = uri; } function safeMint(address to, uint256 tokenId, string memory uri) public onlyRole(MINTER_ROLE) { _safeMint(to, tokenId); _setTokenURI(tokenId, uri); } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160089162000174565b503480156200002957600080fd5b506040805180820182526006815265128b50985b1b60d21b602080830191825283518085019094526005845264129090531360da1b908401528151919291620000759160009162000174565b5080516200008b90600190602084019062000174565b506200009d91506000905033620000cf565b620000c97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000cf565b62000257565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff16620001705760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200012f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b82805462000182906200021a565b90600052602060002090601f016020900481019282620001a65760008555620001f1565b82601f10620001c157805160ff1916838001178555620001f1565b82800160010185558215620001f1579182015b82811115620001f1578251825591602001919060010190620001d4565b50620001ff92915062000203565b5090565b5b80821115620001ff576000815560010162000204565b600181811c908216806200022f57607f821691505b602082108114156200025157634e487b7160e01b600052602260045260246000fd5b50919050565b611e1280620002676000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde146102b0578063c87b56dd146102c3578063cd279c7c146102d6578063d5391393146102e9578063d547741f14610310578063e985e9c51461032357600080fd5b806370a082311461026757806391d148541461027a57806395d89b411461028d578063a217fddf14610295578063a22cb4651461029d57600080fd5b8063248a9ca31161010a578063248a9ca3146101d75780632f2ff15d1461020857806336568abe1461021b57806342842e0e1461022e57806355f804b3146102415780636352211e1461025457600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806323b872dd146101c4575b600080fd5b61015a610155366004611a2a565b61035f565b60405190151581526020015b60405180910390f35b610177610370565b6040516101669190611ba6565b6101976101923660046119ee565b610402565b6040516001600160a01b039091168152602001610166565b6101c26101bd36600461196d565b61048f565b005b6101c26101d2366004611879565b6105a5565b6101fa6101e53660046119ee565b60009081526007602052604090206001015490565b604051908152602001610166565b6101c2610216366004611a07565b6105d6565b6101c2610229366004611a07565b6105fc565b6101c261023c366004611879565b61067a565b6101c261024f366004611a64565b610695565b6101976102623660046119ee565b610724565b6101fa61027536600461182b565b61079b565b61015a610288366004611a07565b610822565b61017761084d565b6101fa600081565b6101c26102ab366004611931565b61085c565b6101c26102be3660046118b5565b610867565b6101776102d13660046119ee565b61089f565b6101c26102e4366004611997565b6108aa565b6101fa7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101c261031e366004611a07565b6108e9565b61015a610331366004611846565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061036a8261090f565b92915050565b60606000805461037f90611d01565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611d01565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061040d82610934565b6104735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061049a82610724565b9050806001600160a01b0316836001600160a01b031614156105085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161046a565b336001600160a01b038216148061052457506105248133610331565b6105965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161046a565b6105a08383610951565b505050565b6105af33826109bf565b6105cb5760405162461bcd60e51b815260040161046a90611c0b565b6105a0838383610aa9565b6000828152600760205260409020600101546105f28133610c49565b6105a08383610cad565b6001600160a01b038116331461066c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161046a565b6106768282610d33565b5050565b6105a083838360405180602001604052806000815250610867565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106c08133610c49565b60008251116107115760405162461bcd60e51b815260206004820152601f60248201527f426173652055524920737472696e672063616e6e6f7420626520656d70747900604482015260640161046a565b81516105a09060089060208501906116e0565b6000818152600260205260408120546001600160a01b03168061036a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161046a565b60006001600160a01b0382166108065760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161046a565b506001600160a01b031660009081526003602052604090205490565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461037f90611d01565b610676338383610d9a565b61087133836109bf565b61088d5760405162461bcd60e51b815260040161046a90611c0b565b61089984848484610e69565b50505050565b606061036a82610e9c565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108d58133610c49565b6108df8484610ffe565b6108998383611018565b6000828152600760205260409020600101546109058133610c49565b6105a08383610d33565b60006001600160e01b03198216637965db0b60e01b148061036a575061036a826110a3565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061098682610724565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006109ca82610934565b610a2b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161046a565b6000610a3683610724565b9050806001600160a01b0316846001600160a01b03161480610a715750836001600160a01b0316610a6684610402565b6001600160a01b0316145b80610aa157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610abc82610724565b6001600160a01b031614610b245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161046a565b6001600160a01b038216610b865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161046a565b610b91600082610951565b6001600160a01b0383166000908152600360205260408120805460019290610bba908490611ca7565b90915550506001600160a01b0382166000908152600360205260408120805460019290610be8908490611c5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c538282610822565b61067657610c6b816001600160a01b031660146110f3565b610c768360206110f3565b604051602001610c87929190611af4565b60408051601f198184030181529082905262461bcd60e51b825261046a91600401611ba6565b610cb78282610822565b6106765760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610cef3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610d3d8282610822565b156106765760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b816001600160a01b0316836001600160a01b03161415610dfc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161046a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e74848484610aa9565b610e8084848484611296565b6108995760405162461bcd60e51b815260040161046a90611bb9565b6060610ea782610934565b610f0d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161046a565b60008281526006602052604081208054610f2690611d01565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5290611d01565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505090506000610fb06113a3565b9050805160001415610fc3575092915050565b815115610ff5578082604051602001610fdd929190611ac5565b60405160208183030381529060405292505050919050565b610aa1846113b2565b61067682826040518060200160405280600081525061147c565b61102182610934565b6110845760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161046a565b600082815260066020908152604090912082516105a0928401906116e0565b60006001600160e01b031982166380ac58cd60e01b14806110d457506001600160e01b03198216635b5e139f60e01b145b8061036a57506301ffc9a760e01b6001600160e01b031983161461036a565b60606000611102836002611c88565b61110d906002611c5c565b67ffffffffffffffff81111561112557611125611dad565b6040519080825280601f01601f19166020018201604052801561114f576020820181803683370190505b509050600360fc1b8160008151811061116a5761116a611d97565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061119957611199611d97565b60200101906001600160f81b031916908160001a90535060006111bd846002611c88565b6111c8906001611c5c565b90505b6001811115611240576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106111fc576111fc611d97565b1a60f81b82828151811061121257611212611d97565b60200101906001600160f81b031916908160001a90535060049490941c9361123981611cea565b90506111cb565b50831561128f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161046a565b9392505050565b60006001600160a01b0384163b1561139857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112da903390899088908890600401611b69565b602060405180830381600087803b1580156112f457600080fd5b505af1925050508015611324575060408051601f3d908101601f1916820190925261132191810190611a47565b60015b61137e573d808015611352576040519150601f19603f3d011682016040523d82523d6000602084013e611357565b606091505b5080516113765760405162461bcd60e51b815260040161046a90611bb9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610aa1565b506001949350505050565b60606008805461037f90611d01565b60606113bd82610934565b6114215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161046a565b600061142b6113a3565b9050600081511161144b576040518060200160405280600081525061128f565b80611455846114af565b604051602001611466929190611ac5565b6040516020818303038152906040529392505050565b61148683836115ad565b6114936000848484611296565b6105a05760405162461bcd60e51b815260040161046a90611bb9565b6060816114d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114fd57806114e781611d3c565b91506114f69050600a83611c74565b91506114d7565b60008167ffffffffffffffff81111561151857611518611dad565b6040519080825280601f01601f191660200182016040528015611542576020820181803683370190505b5090505b8415610aa157611557600183611ca7565b9150611564600a86611d57565b61156f906030611c5c565b60f81b81838151811061158457611584611d97565b60200101906001600160f81b031916908160001a9053506115a6600a86611c74565b9450611546565b6001600160a01b0382166116035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161046a565b61160c81610934565b156116595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161046a565b6001600160a01b0382166000908152600360205260408120805460019290611682908490611c5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116ec90611d01565b90600052602060002090601f01602090048101928261170e5760008555611754565b82601f1061172757805160ff1916838001178555611754565b82800160010185558215611754579182015b82811115611754578251825591602001919060010190611739565b50611760929150611764565b5090565b5b808211156117605760008155600101611765565b600067ffffffffffffffff8084111561179457611794611dad565b604051601f8501601f19908116603f011681019082821181831017156117bc576117bc611dad565b816040528093508581528686860111156117d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461180657600080fd5b919050565b600082601f83011261181c57600080fd5b61128f83833560208501611779565b60006020828403121561183d57600080fd5b61128f826117ef565b6000806040838503121561185957600080fd5b611862836117ef565b9150611870602084016117ef565b90509250929050565b60008060006060848603121561188e57600080fd5b611897846117ef565b92506118a5602085016117ef565b9150604084013590509250925092565b600080600080608085870312156118cb57600080fd5b6118d4856117ef565b93506118e2602086016117ef565b925060408501359150606085013567ffffffffffffffff81111561190557600080fd5b8501601f8101871361191657600080fd5b61192587823560208401611779565b91505092959194509250565b6000806040838503121561194457600080fd5b61194d836117ef565b91506020830135801515811461196257600080fd5b809150509250929050565b6000806040838503121561198057600080fd5b611989836117ef565b946020939093013593505050565b6000806000606084860312156119ac57600080fd5b6119b5846117ef565b925060208401359150604084013567ffffffffffffffff8111156119d857600080fd5b6119e48682870161180b565b9150509250925092565b600060208284031215611a0057600080fd5b5035919050565b60008060408385031215611a1a57600080fd5b82359150611870602084016117ef565b600060208284031215611a3c57600080fd5b813561128f81611dc3565b600060208284031215611a5957600080fd5b815161128f81611dc3565b600060208284031215611a7657600080fd5b813567ffffffffffffffff811115611a8d57600080fd5b610aa18482850161180b565b60008151808452611ab1816020860160208601611cbe565b601f01601f19169290920160200192915050565b60008351611ad7818460208801611cbe565b835190830190611aeb818360208801611cbe565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611b2c816017850160208801611cbe565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611b5d816028840160208801611cbe565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9c90830184611a99565b9695505050505050565b60208152600061128f6020830184611a99565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c6f57611c6f611d6b565b500190565b600082611c8357611c83611d81565b500490565b6000816000190483118215151615611ca257611ca2611d6b565b500290565b600082821015611cb957611cb9611d6b565b500390565b60005b83811015611cd9578181015183820152602001611cc1565b838111156108995750506000910152565b600081611cf957611cf9611d6b565b506000190190565b600181811c90821680611d1557607f821691505b60208210811415611d3657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d5057611d50611d6b565b5060010190565b600082611d6657611d66611d81565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611dd957600080fd5b5056fea2646970667358221220a313b52bf9791d906beb4551820bab125fa5cbbbde921f52b583cbe166a74f9364736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde146102b0578063c87b56dd146102c3578063cd279c7c146102d6578063d5391393146102e9578063d547741f14610310578063e985e9c51461032357600080fd5b806370a082311461026757806391d148541461027a57806395d89b411461028d578063a217fddf14610295578063a22cb4651461029d57600080fd5b8063248a9ca31161010a578063248a9ca3146101d75780632f2ff15d1461020857806336568abe1461021b57806342842e0e1461022e57806355f804b3146102415780636352211e1461025457600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806323b872dd146101c4575b600080fd5b61015a610155366004611a2a565b61035f565b60405190151581526020015b60405180910390f35b610177610370565b6040516101669190611ba6565b6101976101923660046119ee565b610402565b6040516001600160a01b039091168152602001610166565b6101c26101bd36600461196d565b61048f565b005b6101c26101d2366004611879565b6105a5565b6101fa6101e53660046119ee565b60009081526007602052604090206001015490565b604051908152602001610166565b6101c2610216366004611a07565b6105d6565b6101c2610229366004611a07565b6105fc565b6101c261023c366004611879565b61067a565b6101c261024f366004611a64565b610695565b6101976102623660046119ee565b610724565b6101fa61027536600461182b565b61079b565b61015a610288366004611a07565b610822565b61017761084d565b6101fa600081565b6101c26102ab366004611931565b61085c565b6101c26102be3660046118b5565b610867565b6101776102d13660046119ee565b61089f565b6101c26102e4366004611997565b6108aa565b6101fa7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101c261031e366004611a07565b6108e9565b61015a610331366004611846565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061036a8261090f565b92915050565b60606000805461037f90611d01565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611d01565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061040d82610934565b6104735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061049a82610724565b9050806001600160a01b0316836001600160a01b031614156105085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161046a565b336001600160a01b038216148061052457506105248133610331565b6105965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161046a565b6105a08383610951565b505050565b6105af33826109bf565b6105cb5760405162461bcd60e51b815260040161046a90611c0b565b6105a0838383610aa9565b6000828152600760205260409020600101546105f28133610c49565b6105a08383610cad565b6001600160a01b038116331461066c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161046a565b6106768282610d33565b5050565b6105a083838360405180602001604052806000815250610867565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106c08133610c49565b60008251116107115760405162461bcd60e51b815260206004820152601f60248201527f426173652055524920737472696e672063616e6e6f7420626520656d70747900604482015260640161046a565b81516105a09060089060208501906116e0565b6000818152600260205260408120546001600160a01b03168061036a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161046a565b60006001600160a01b0382166108065760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161046a565b506001600160a01b031660009081526003602052604090205490565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461037f90611d01565b610676338383610d9a565b61087133836109bf565b61088d5760405162461bcd60e51b815260040161046a90611c0b565b61089984848484610e69565b50505050565b606061036a82610e9c565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108d58133610c49565b6108df8484610ffe565b6108998383611018565b6000828152600760205260409020600101546109058133610c49565b6105a08383610d33565b60006001600160e01b03198216637965db0b60e01b148061036a575061036a826110a3565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061098682610724565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006109ca82610934565b610a2b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161046a565b6000610a3683610724565b9050806001600160a01b0316846001600160a01b03161480610a715750836001600160a01b0316610a6684610402565b6001600160a01b0316145b80610aa157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610abc82610724565b6001600160a01b031614610b245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161046a565b6001600160a01b038216610b865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161046a565b610b91600082610951565b6001600160a01b0383166000908152600360205260408120805460019290610bba908490611ca7565b90915550506001600160a01b0382166000908152600360205260408120805460019290610be8908490611c5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c538282610822565b61067657610c6b816001600160a01b031660146110f3565b610c768360206110f3565b604051602001610c87929190611af4565b60408051601f198184030181529082905262461bcd60e51b825261046a91600401611ba6565b610cb78282610822565b6106765760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610cef3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610d3d8282610822565b156106765760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b816001600160a01b0316836001600160a01b03161415610dfc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161046a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e74848484610aa9565b610e8084848484611296565b6108995760405162461bcd60e51b815260040161046a90611bb9565b6060610ea782610934565b610f0d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161046a565b60008281526006602052604081208054610f2690611d01565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5290611d01565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505090506000610fb06113a3565b9050805160001415610fc3575092915050565b815115610ff5578082604051602001610fdd929190611ac5565b60405160208183030381529060405292505050919050565b610aa1846113b2565b61067682826040518060200160405280600081525061147c565b61102182610934565b6110845760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161046a565b600082815260066020908152604090912082516105a0928401906116e0565b60006001600160e01b031982166380ac58cd60e01b14806110d457506001600160e01b03198216635b5e139f60e01b145b8061036a57506301ffc9a760e01b6001600160e01b031983161461036a565b60606000611102836002611c88565b61110d906002611c5c565b67ffffffffffffffff81111561112557611125611dad565b6040519080825280601f01601f19166020018201604052801561114f576020820181803683370190505b509050600360fc1b8160008151811061116a5761116a611d97565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061119957611199611d97565b60200101906001600160f81b031916908160001a90535060006111bd846002611c88565b6111c8906001611c5c565b90505b6001811115611240576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106111fc576111fc611d97565b1a60f81b82828151811061121257611212611d97565b60200101906001600160f81b031916908160001a90535060049490941c9361123981611cea565b90506111cb565b50831561128f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161046a565b9392505050565b60006001600160a01b0384163b1561139857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112da903390899088908890600401611b69565b602060405180830381600087803b1580156112f457600080fd5b505af1925050508015611324575060408051601f3d908101601f1916820190925261132191810190611a47565b60015b61137e573d808015611352576040519150601f19603f3d011682016040523d82523d6000602084013e611357565b606091505b5080516113765760405162461bcd60e51b815260040161046a90611bb9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610aa1565b506001949350505050565b60606008805461037f90611d01565b60606113bd82610934565b6114215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161046a565b600061142b6113a3565b9050600081511161144b576040518060200160405280600081525061128f565b80611455846114af565b604051602001611466929190611ac5565b6040516020818303038152906040529392505050565b61148683836115ad565b6114936000848484611296565b6105a05760405162461bcd60e51b815260040161046a90611bb9565b6060816114d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114fd57806114e781611d3c565b91506114f69050600a83611c74565b91506114d7565b60008167ffffffffffffffff81111561151857611518611dad565b6040519080825280601f01601f191660200182016040528015611542576020820181803683370190505b5090505b8415610aa157611557600183611ca7565b9150611564600a86611d57565b61156f906030611c5c565b60f81b81838151811061158457611584611d97565b60200101906001600160f81b031916908160001a9053506115a6600a86611c74565b9450611546565b6001600160a01b0382166116035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161046a565b61160c81610934565b156116595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161046a565b6001600160a01b0382166000908152600360205260408120805460019290611682908490611c5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116ec90611d01565b90600052602060002090601f01602090048101928261170e5760008555611754565b82601f1061172757805160ff1916838001178555611754565b82800160010185558215611754579182015b82811115611754578251825591602001919060010190611739565b50611760929150611764565b5090565b5b808211156117605760008155600101611765565b600067ffffffffffffffff8084111561179457611794611dad565b604051601f8501601f19908116603f011681019082821181831017156117bc576117bc611dad565b816040528093508581528686860111156117d557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461180657600080fd5b919050565b600082601f83011261181c57600080fd5b61128f83833560208501611779565b60006020828403121561183d57600080fd5b61128f826117ef565b6000806040838503121561185957600080fd5b611862836117ef565b9150611870602084016117ef565b90509250929050565b60008060006060848603121561188e57600080fd5b611897846117ef565b92506118a5602085016117ef565b9150604084013590509250925092565b600080600080608085870312156118cb57600080fd5b6118d4856117ef565b93506118e2602086016117ef565b925060408501359150606085013567ffffffffffffffff81111561190557600080fd5b8501601f8101871361191657600080fd5b61192587823560208401611779565b91505092959194509250565b6000806040838503121561194457600080fd5b61194d836117ef565b91506020830135801515811461196257600080fd5b809150509250929050565b6000806040838503121561198057600080fd5b611989836117ef565b946020939093013593505050565b6000806000606084860312156119ac57600080fd5b6119b5846117ef565b925060208401359150604084013567ffffffffffffffff8111156119d857600080fd5b6119e48682870161180b565b9150509250925092565b600060208284031215611a0057600080fd5b5035919050565b60008060408385031215611a1a57600080fd5b82359150611870602084016117ef565b600060208284031215611a3c57600080fd5b813561128f81611dc3565b600060208284031215611a5957600080fd5b815161128f81611dc3565b600060208284031215611a7657600080fd5b813567ffffffffffffffff811115611a8d57600080fd5b610aa18482850161180b565b60008151808452611ab1816020860160208601611cbe565b601f01601f19169290920160200192915050565b60008351611ad7818460208801611cbe565b835190830190611aeb818360208801611cbe565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611b2c816017850160208801611cbe565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611b5d816028840160208801611cbe565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9c90830184611a99565b9695505050505050565b60208152600061128f6020830184611a99565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c6f57611c6f611d6b565b500190565b600082611c8357611c83611d81565b500490565b6000816000190483118215151615611ca257611ca2611d6b565b500290565b600082821015611cb957611cb9611d6b565b500390565b60005b83811015611cd9578181015183820152602001611cc1565b838111156108995750506000910152565b600081611cf957611cf9611d6b565b506000190190565b600181811c90821680611d1557607f821691505b60208210811415611d3657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d5057611d50611d6b565b5060010190565b600082611d6657611d66611d81565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611dd957600080fd5b5056fea2646970667358221220a313b52bf9791d906beb4551820bab125fa5cbbbde921f52b583cbe166a74f9364736f6c63430008070033
Deployed Bytecode Sourcemap
46296:1438:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47522:209;;;;;;:::i;:::-;;:::i;:::-;;;7448:14:1;;7441:22;7423:41;;7411:2;7396:18;47522:209:0;;;;;;;;32735:100;;;:::i;:::-;;;;;;;:::i;34294:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6746:32:1;;;6728:51;;6716:2;6701:18;34294:221:0;6582:203:1;33817:411:0;;;;;;:::i;:::-;;:::i;:::-;;35044:339;;;;;;:::i;:::-;;:::i;21173:123::-;;;;;;:::i;:::-;21239:7;21266:12;;;:6;:12;;;;;:22;;;;21173:123;;;;7621:25:1;;;7609:2;7594:18;21173:123:0;7475:177:1;21558:147:0;;;;;;:::i;:::-;;:::i;22606:218::-;;;;;;:::i;:::-;;:::i;35454:185::-;;;;;;:::i;:::-;;:::i;46736:177::-;;;;;;:::i;:::-;;:::i;32429:239::-;;;;;;:::i;:::-;;:::i;32159:208::-;;;;;;:::i;:::-;;:::i;20058:139::-;;;;;;:::i;:::-;;:::i;32904:104::-;;;:::i;19149:49::-;;19194:4;19149:49;;34587:155;;;;;;:::i;:::-;;:::i;35710:328::-;;;;;;:::i;:::-;;:::i;47318:196::-;;;;;;:::i;:::-;;:::i;46921:::-;;;;;;:::i;:::-;;:::i;46364:62::-;;46402:24;46364:62;;21950:149;;;;;;:::i;:::-;;:::i;34813:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34934:25:0;;;34910:4;34934:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34813:164;47522:209;47658:4;47687:36;47711:11;47687:23;:36::i;:::-;47680:43;47522:209;-1:-1:-1;;47522:209:0:o;32735:100::-;32789:13;32822:5;32815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32735:100;:::o;34294:221::-;34370:7;34398:16;34406:7;34398;:16::i;:::-;34390:73;;;;-1:-1:-1;;;34390:73:0;;12832:2:1;34390:73:0;;;12814:21:1;12871:2;12851:18;;;12844:30;12910:34;12890:18;;;12883:62;-1:-1:-1;;;12961:18:1;;;12954:42;13013:19;;34390:73:0;;;;;;;;;-1:-1:-1;34483:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34483:24:0;;34294:221::o;33817:411::-;33898:13;33914:23;33929:7;33914:14;:23::i;:::-;33898:39;;33962:5;-1:-1:-1;;;;;33956:11:0;:2;-1:-1:-1;;;;;33956:11:0;;;33948:57;;;;-1:-1:-1;;;33948:57:0;;14071:2:1;33948:57:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:34;14129:18;;;14122:62;-1:-1:-1;;;14200:18:1;;;14193:31;14241:19;;33948:57:0;13869:397:1;33948:57:0;5924:10;-1:-1:-1;;;;;34040:21:0;;;;:62;;-1:-1:-1;34065:37:0;34082:5;5924:10;34813:164;:::i;34065:37::-;34018:168;;;;-1:-1:-1;;;34018:168:0;;10392:2:1;34018:168:0;;;10374:21:1;10431:2;10411:18;;;10404:30;10470:34;10450:18;;;10443:62;10541:26;10521:18;;;10514:54;10585:19;;34018:168:0;10190:420:1;34018:168:0;34199:21;34208:2;34212:7;34199:8;:21::i;:::-;33887:341;33817:411;;:::o;35044:339::-;35239:41;5924:10;35272:7;35239:18;:41::i;:::-;35231:103;;;;-1:-1:-1;;;35231:103:0;;;;;;;:::i;:::-;35347:28;35357:4;35363:2;35367:7;35347:9;:28::i;21558:147::-;21239:7;21266:12;;;:6;:12;;;;;:22;;;19640:30;19651:4;5924:10;19640;:30::i;:::-;21672:25:::1;21683:4;21689:7;21672:10;:25::i;22606:218::-:0;-1:-1:-1;;;;;22702:23:0;;5924:10;22702:23;22694:83;;;;-1:-1:-1;;;22694:83:0;;15251:2:1;22694:83:0;;;15233:21:1;15290:2;15270:18;;;15263:30;15329:34;15309:18;;;15302:62;-1:-1:-1;;;15380:18:1;;;15373:45;15435:19;;22694:83:0;15049:411:1;22694:83:0;22790:26;22802:4;22808:7;22790:11;:26::i;:::-;22606:218;;:::o;35454:185::-;35592:39;35609:4;35615:2;35619:7;35592:39;;;;;;;;;;;;:16;:39::i;46736:177::-;46402:24;19640:30;46402:24;5924:10;19640;:30::i;:::-;46843:1:::1;46829:3;46823:17;:21;46815:65;;;::::0;-1:-1:-1;;;46815:65:0;;14473:2:1;46815:65:0::1;::::0;::::1;14455:21:1::0;14512:2;14492:18;;;14485:30;14551:33;14531:18;;;14524:61;14602:18;;46815:65:0::1;14271:355:1::0;46815:65:0::1;46891:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;32429:239::-:0;32501:7;32537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32537:16:0;32572:19;32564:73;;;;-1:-1:-1;;;32564:73:0;;11228:2:1;32564:73:0;;;11210:21:1;11267:2;11247:18;;;11240:30;11306:34;11286:18;;;11279:62;-1:-1:-1;;;11357:18:1;;;11350:39;11406:19;;32564:73:0;11026:405:1;32159:208:0;32231:7;-1:-1:-1;;;;;32259:19:0;;32251:74;;;;-1:-1:-1;;;32251:74:0;;10817:2:1;32251:74:0;;;10799:21:1;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;-1:-1:-1;;;10946:18:1;;;10939:40;10996:19;;32251:74:0;10615:406:1;32251:74:0;-1:-1:-1;;;;;;32343:16:0;;;;;:9;:16;;;;;;;32159:208::o;20058:139::-;20136:4;20160:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;20160:29:0;;;;;;;;;;;;;;;20058:139::o;32904:104::-;32960:13;32993:7;32986:14;;;;;:::i;34587:155::-;34682:52;5924:10;34715:8;34725;34682:18;:52::i;35710:328::-;35885:41;5924:10;35918:7;35885:18;:41::i;:::-;35877:103;;;;-1:-1:-1;;;35877:103:0;;;;;;;:::i;:::-;35991:39;36005:4;36011:2;36015:7;36024:5;35991:13;:39::i;:::-;35710:328;;;;:::o;47318:196::-;47445:13;47483:23;47498:7;47483:14;:23::i;46921:196::-;46402:24;19640:30;46402:24;5924:10;19640;:30::i;:::-;47050:22:::1;47060:2;47064:7;47050:9;:22::i;:::-;47083:26;47096:7;47105:3;47083:12;:26::i;21950:149::-:0;21239:7;21266:12;;;:6;:12;;;;;:22;;;19640:30;19651:4;5924:10;19640;:30::i;:::-;22065:26:::1;22077:4;22083:7;22065:11;:26::i;19762:204::-:0;19847:4;-1:-1:-1;;;;;;19871:47:0;;-1:-1:-1;;;19871:47:0;;:87;;;19922:36;19946:11;19922:23;:36::i;37548:127::-;37613:4;37637:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37637:16:0;:30;;;37548:127::o;41530:174::-;41605:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41605:29:0;-1:-1:-1;;;;;41605:29:0;;;;;;;;:24;;41659:23;41605:24;41659:14;:23::i;:::-;-1:-1:-1;;;;;41650:46:0;;;;;;;;;;;41530:174;;:::o;37842:348::-;37935:4;37960:16;37968:7;37960;:16::i;:::-;37952:73;;;;-1:-1:-1;;;37952:73:0;;9979:2:1;37952:73:0;;;9961:21:1;10018:2;9998:18;;;9991:30;10057:34;10037:18;;;10030:62;-1:-1:-1;;;10108:18:1;;;10101:42;10160:19;;37952:73:0;9777:408:1;37952:73:0;38036:13;38052:23;38067:7;38052:14;:23::i;:::-;38036:39;;38105:5;-1:-1:-1;;;;;38094:16:0;:7;-1:-1:-1;;;;;38094:16:0;;:51;;;;38138:7;-1:-1:-1;;;;;38114:31:0;:20;38126:7;38114:11;:20::i;:::-;-1:-1:-1;;;;;38114:31:0;;38094:51;:87;;;-1:-1:-1;;;;;;34934:25:0;;;34910:4;34934:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38149:32;38086:96;37842:348;-1:-1:-1;;;;37842:348:0:o;40834:578::-;40993:4;-1:-1:-1;;;;;40966:31:0;:23;40981:7;40966:14;:23::i;:::-;-1:-1:-1;;;;;40966:31:0;;40958:85;;;;-1:-1:-1;;;40958:85:0;;13245:2:1;40958:85:0;;;13227:21:1;13284:2;13264:18;;;13257:30;13323:34;13303:18;;;13296:62;-1:-1:-1;;;13374:18:1;;;13367:39;13423:19;;40958:85:0;13043:405:1;40958:85:0;-1:-1:-1;;;;;41062:16:0;;41054:65;;;;-1:-1:-1;;;41054:65:0;;9220:2:1;41054:65:0;;;9202:21:1;9259:2;9239:18;;;9232:30;9298:34;9278:18;;;9271:62;-1:-1:-1;;;9349:18:1;;;9342:34;9393:19;;41054:65:0;9018:400:1;41054:65:0;41236:29;41253:1;41257:7;41236:8;:29::i;:::-;-1:-1:-1;;;;;41278:15:0;;;;;;:9;:15;;;;;:20;;41297:1;;41278:15;:20;;41297:1;;41278:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41309:13:0;;;;;;:9;:13;;;;;:18;;41326:1;;41309:13;:18;;41326:1;;41309:18;:::i;:::-;;;;-1:-1:-1;;41338:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41338:21:0;-1:-1:-1;;;;;41338:21:0;;;;;;;;;41377:27;;41338:16;;41377:27;;;;;;;40834:578;;;:::o;20487:497::-;20568:22;20576:4;20582:7;20568;:22::i;:::-;20563:414;;20756:41;20784:7;-1:-1:-1;;;;;20756:41:0;20794:2;20756:19;:41::i;:::-;20870:38;20898:4;20905:2;20870:19;:38::i;:::-;20661:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;20661:270:0;;;;;;;;;;-1:-1:-1;;;20607:358:0;;;;;;;:::i;24107:238::-;24191:22;24199:4;24205:7;24191;:22::i;:::-;24186:152;;24230:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24230:29:0;;;;;;;;;:36;;-1:-1:-1;;24230:36:0;24262:4;24230:36;;;24313:12;5924:10;;5844:98;24313:12;-1:-1:-1;;;;;24286:40:0;24304:7;-1:-1:-1;;;;;24286:40:0;24298:4;24286:40;;;;;;;;;;24107:238;;:::o;24477:239::-;24561:22;24569:4;24575:7;24561;:22::i;:::-;24557:152;;;24632:5;24600:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24600:29:0;;;;;;;;;;:37;;-1:-1:-1;;24600:37:0;;;24657:40;5924:10;;24600:12;;24657:40;;24632:5;24657:40;24477:239;;:::o;41846:315::-;42001:8;-1:-1:-1;;;;;41992:17:0;:5;-1:-1:-1;;;;;41992:17:0;;;41984:55;;;;-1:-1:-1;;;41984:55:0;;9625:2:1;41984:55:0;;;9607:21:1;9664:2;9644:18;;;9637:30;9703:27;9683:18;;;9676:55;9748:18;;41984:55:0;9423:349:1;41984:55:0;-1:-1:-1;;;;;42050:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42050:46:0;;;;;;;;;;42112:41;;7423::1;;;42112::0;;7396:18:1;42112:41:0;;;;;;;41846:315;;;:::o;36920:::-;37077:28;37087:4;37093:2;37097:7;37077:9;:28::i;:::-;37124:48;37147:4;37153:2;37157:7;37166:5;37124:22;:48::i;:::-;37116:111;;;;-1:-1:-1;;;37116:111:0;;;;;;;:::i;44741:679::-;44814:13;44848:16;44856:7;44848;:16::i;:::-;44840:78;;;;-1:-1:-1;;;44840:78:0;;12414:2:1;44840:78:0;;;12396:21:1;12453:2;12433:18;;;12426:30;12492:34;12472:18;;;12465:62;-1:-1:-1;;;12543:18:1;;;12536:47;12600:19;;44840:78:0;12212:413:1;44840:78:0;44931:23;44957:19;;;:10;:19;;;;;44931:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44987:18;45008:10;:8;:10::i;:::-;44987:31;;45100:4;45094:18;45116:1;45094:23;45090:72;;;-1:-1:-1;45141:9:0;44741:679;-1:-1:-1;;44741:679:0:o;45090:72::-;45266:23;;:27;45262:108;;45341:4;45347:9;45324:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45310:48;;;;44741:679;;;:::o;45262:108::-;45389:23;45404:7;45389:14;:23::i;38532:110::-;38608:26;38618:2;38622:7;38608:26;;;;;;;;;;;;:9;:26::i;45576:217::-;45676:16;45684:7;45676;:16::i;:::-;45668:75;;;;-1:-1:-1;;;45668:75:0;;11638:2:1;45668:75:0;;;11620:21:1;11677:2;11657:18;;;11650:30;11716:34;11696:18;;;11689:62;-1:-1:-1;;;11767:18:1;;;11760:44;11821:19;;45668:75:0;11436:410:1;45668:75:0;45754:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;31790:305::-;31892:4;-1:-1:-1;;;;;;31929:40:0;;-1:-1:-1;;;31929:40:0;;:105;;-1:-1:-1;;;;;;;31986:48:0;;-1:-1:-1;;;31986:48:0;31929:105;:158;;;-1:-1:-1;;;;;;;;;;17131:40:0;;;32051:36;17022:157;4707:451;4782:13;4808:19;4840:10;4844:6;4840:1;:10;:::i;:::-;:14;;4853:1;4840:14;:::i;:::-;4830:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4830:25:0;;4808:47;;-1:-1:-1;;;4866:6:0;4873:1;4866:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4866:15:0;;;;;;;;;-1:-1:-1;;;4892:6:0;4899:1;4892:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;4892:15:0;;;;;;;;-1:-1:-1;4923:9:0;4935:10;4939:6;4935:1;:10;:::i;:::-;:14;;4948:1;4935:14;:::i;:::-;4923:26;;4918:135;4955:1;4951;:5;4918:135;;;-1:-1:-1;;;5003:5:0;5011:3;5003:11;4990:25;;;;;;;:::i;:::-;;;;4978:6;4985:1;4978:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;4978:37:0;;;;;;;;-1:-1:-1;5040:1:0;5030:11;;;;;4958:3;;;:::i;:::-;;;4918:135;;;-1:-1:-1;5071:10:0;;5063:55;;;;-1:-1:-1;;;5063:55:0;;8083:2:1;5063:55:0;;;8065:21:1;;;8102:18;;;8095:30;8161:34;8141:18;;;8134:62;8213:18;;5063:55:0;7881:356:1;5063:55:0;5143:6;4707:451;-1:-1:-1;;;4707:451:0:o;42726:799::-;42881:4;-1:-1:-1;;;;;42902:13:0;;7201:20;7249:8;42898:620;;42938:72;;-1:-1:-1;;;42938:72:0;;-1:-1:-1;;;;;42938:36:0;;;;;:72;;5924:10;;42989:4;;42995:7;;43004:5;;42938:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42938:72:0;;;;;;;;-1:-1:-1;;42938:72:0;;;;;;;;;;;;:::i;:::-;;;42934:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43180:13:0;;43176:272;;43223:60;;-1:-1:-1;;;43223:60:0;;;;;;;:::i;43176:272::-;43398:6;43392:13;43383:6;43379:2;43375:15;43368:38;42934:529;-1:-1:-1;;;;;;43061:51:0;-1:-1:-1;;;43061:51:0;;-1:-1:-1;43054:58:0;;42898:620;-1:-1:-1;43502:4:0;42726:799;;;;;;:::o;46627:101::-;46679:13;46712:8;46705:15;;;;;:::i;33079:334::-;33152:13;33186:16;33194:7;33186;:16::i;:::-;33178:76;;;;-1:-1:-1;;;33178:76:0;;13655:2:1;33178:76:0;;;13637:21:1;13694:2;13674:18;;;13667:30;13733:34;13713:18;;;13706:62;-1:-1:-1;;;13784:18:1;;;13777:45;13839:19;;33178:76:0;13453:411:1;33178:76:0;33267:21;33291:10;:8;:10::i;:::-;33267:34;;33343:1;33325:7;33319:21;:25;:86;;;;;;;;;;;;;;;;;33371:7;33380:18;:7;:16;:18::i;:::-;33354:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33312:93;33079:334;-1:-1:-1;;;33079:334:0:o;38869:321::-;38999:18;39005:2;39009:7;38999:5;:18::i;:::-;39050:54;39081:1;39085:2;39089:7;39098:5;39050:22;:54::i;:::-;39028:154;;;;-1:-1:-1;;;39028:154:0;;;;;;;:::i;3406:723::-;3462:13;3683:10;3679:53;;-1:-1:-1;;3710:10:0;;;;;;;;;;;;-1:-1:-1;;;3710:10:0;;;;;3406:723::o;3679:53::-;3757:5;3742:12;3798:78;3805:9;;3798:78;;3831:8;;;;:::i;:::-;;-1:-1:-1;3854:10:0;;-1:-1:-1;3862:2:0;3854:10;;:::i;:::-;;;3798:78;;;3886:19;3918:6;3908:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3908:17:0;;3886:39;;3936:154;3943:10;;3936:154;;3970:11;3980:1;3970:11;;:::i;:::-;;-1:-1:-1;4039:10:0;4047:2;4039:5;:10;:::i;:::-;4026:24;;:2;:24;:::i;:::-;4013:39;;3996:6;4003;3996:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3996:56:0;;;;;;;;-1:-1:-1;4067:11:0;4076:2;4067:11;;:::i;:::-;;;3936:154;;39526:382;-1:-1:-1;;;;;39606:16:0;;39598:61;;;;-1:-1:-1;;;39598:61:0;;12053:2:1;39598:61:0;;;12035:21:1;;;12072:18;;;12065:30;12131:34;12111:18;;;12104:62;12183:18;;39598:61:0;11851:356:1;39598:61:0;39679:16;39687:7;39679;:16::i;:::-;39678:17;39670:58;;;;-1:-1:-1;;;39670:58:0;;8863:2:1;39670:58:0;;;8845:21:1;8902:2;8882:18;;;8875:30;8941;8921:18;;;8914:58;8989:18;;39670:58:0;8661:352:1;39670:58:0;-1:-1:-1;;;;;39799:13:0;;;;;;:9;:13;;;;;:18;;39816:1;;39799:13;:18;;39816:1;;39799:18;:::i;:::-;;;;-1:-1:-1;;39828:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39828:21:0;-1:-1:-1;;;;;39828:21:0;;;;;;;;39867:33;;39828:16;;;39867:33;;39828:16;;39867:33;39526:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:464::-;3212:6;3220;3228;3281:2;3269:9;3260:7;3256:23;3252:32;3249:52;;;3297:1;3294;3287:12;3249:52;3320:29;3339:9;3320:29;:::i;:::-;3310:39;;3396:2;3385:9;3381:18;3368:32;3358:42;;3451:2;3440:9;3436:18;3423:32;3478:18;3470:6;3467:30;3464:50;;;3510:1;3507;3500:12;3464:50;3533;3575:7;3566:6;3555:9;3551:22;3533:50;:::i;:::-;3523:60;;;3125:464;;;;;:::o;3594:180::-;3653:6;3706:2;3694:9;3685:7;3681:23;3677:32;3674:52;;;3722:1;3719;3712:12;3674:52;-1:-1:-1;3745:23:1;;3594:180;-1:-1:-1;3594:180:1:o;3779:254::-;3847:6;3855;3908:2;3896:9;3887:7;3883:23;3879:32;3876:52;;;3924:1;3921;3914:12;3876:52;3960:9;3947:23;3937:33;;3989:38;4023:2;4012:9;4008:18;3989:38;:::i;4038:245::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4204:9;4191:23;4223:30;4247:5;4223:30;:::i;4288:249::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4458:9;4452:16;4477:30;4501:5;4477:30;:::i;4542:322::-;4611:6;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4720:9;4707:23;4753:18;4745:6;4742:30;4739:50;;;4785:1;4782;4775:12;4739:50;4808;4850:7;4841:6;4830:9;4826:22;4808:50;:::i;5054:257::-;5095:3;5133:5;5127:12;5160:6;5155:3;5148:19;5176:63;5232:6;5225:4;5220:3;5216:14;5209:4;5202:5;5198:16;5176:63;:::i;:::-;5293:2;5272:15;-1:-1:-1;;5268:29:1;5259:39;;;;5300:4;5255:50;;5054:257;-1:-1:-1;;5054:257:1:o;5316:470::-;5495:3;5533:6;5527:13;5549:53;5595:6;5590:3;5583:4;5575:6;5571:17;5549:53;:::i;:::-;5665:13;;5624:16;;;;5687:57;5665:13;5624:16;5721:4;5709:17;;5687:57;:::i;:::-;5760:20;;5316:470;-1:-1:-1;;;;5316:470:1:o;5791:786::-;6202:25;6197:3;6190:38;6172:3;6257:6;6251:13;6273:62;6328:6;6323:2;6318:3;6314:12;6307:4;6299:6;6295:17;6273:62;:::i;:::-;-1:-1:-1;;;6394:2:1;6354:16;;;6386:11;;;6379:40;6444:13;;6466:63;6444:13;6515:2;6507:11;;6500:4;6488:17;;6466:63;:::i;:::-;6549:17;6568:2;6545:26;;5791:786;-1:-1:-1;;;;5791:786:1:o;6790:488::-;-1:-1:-1;;;;;7059:15:1;;;7041:34;;7111:15;;7106:2;7091:18;;7084:43;7158:2;7143:18;;7136:34;;;7206:3;7201:2;7186:18;;7179:31;;;6984:4;;7227:45;;7252:19;;7244:6;7227:45;:::i;:::-;7219:53;6790:488;-1:-1:-1;;;;;;6790:488:1:o;7657:219::-;7806:2;7795:9;7788:21;7769:4;7826:44;7866:2;7855:9;7851:18;7843:6;7826:44;:::i;8242:414::-;8444:2;8426:21;;;8483:2;8463:18;;;8456:30;8522:34;8517:2;8502:18;;8495:62;-1:-1:-1;;;8588:2:1;8573:18;;8566:48;8646:3;8631:19;;8242:414::o;14631:413::-;14833:2;14815:21;;;14872:2;14852:18;;;14845:30;14911:34;14906:2;14891:18;;14884:62;-1:-1:-1;;;14977:2:1;14962:18;;14955:47;15034:3;15019:19;;14631:413::o;15647:128::-;15687:3;15718:1;15714:6;15711:1;15708:13;15705:39;;;15724:18;;:::i;:::-;-1:-1:-1;15760:9:1;;15647:128::o;15780:120::-;15820:1;15846;15836:35;;15851:18;;:::i;:::-;-1:-1:-1;15885:9:1;;15780:120::o;15905:168::-;15945:7;16011:1;16007;16003:6;15999:14;15996:1;15993:21;15988:1;15981:9;15974:17;15970:45;15967:71;;;16018:18;;:::i;:::-;-1:-1:-1;16058:9:1;;15905:168::o;16078:125::-;16118:4;16146:1;16143;16140:8;16137:34;;;16151:18;;:::i;:::-;-1:-1:-1;16188:9:1;;16078:125::o;16208:258::-;16280:1;16290:113;16304:6;16301:1;16298:13;16290:113;;;16380:11;;;16374:18;16361:11;;;16354:39;16326:2;16319:10;16290:113;;;16421:6;16418:1;16415:13;16412:48;;;-1:-1:-1;;16456:1:1;16438:16;;16431:27;16208:258::o;16471:136::-;16510:3;16538:5;16528:39;;16547:18;;:::i;:::-;-1:-1:-1;;;16583:18:1;;16471:136::o;16612:380::-;16691:1;16687:12;;;;16734;;;16755:61;;16809:4;16801:6;16797:17;16787:27;;16755:61;16862:2;16854:6;16851:14;16831:18;16828:38;16825:161;;;16908:10;16903:3;16899:20;16896:1;16889:31;16943:4;16940:1;16933:15;16971:4;16968:1;16961:15;16825:161;;16612:380;;;:::o;16997:135::-;17036:3;-1:-1:-1;;17057:17:1;;17054:43;;;17077:18;;:::i;:::-;-1:-1:-1;17124:1:1;17113:13;;16997:135::o;17137:112::-;17169:1;17195;17185:35;;17200:18;;:::i;:::-;-1:-1:-1;17234:9:1;;17137:112::o;17254:127::-;17315:10;17310:3;17306:20;17303:1;17296:31;17346:4;17343:1;17336:15;17370:4;17367:1;17360:15;17386:127;17447:10;17442:3;17438:20;17435:1;17428:31;17478:4;17475:1;17468:15;17502:4;17499:1;17492:15;17518:127;17579:10;17574:3;17570:20;17567:1;17560:31;17610:4;17607:1;17600:15;17634:4;17631:1;17624:15;17650:127;17711:10;17706:3;17702:20;17699:1;17692:31;17742:4;17739:1;17732:15;17766:4;17763:1;17756:15;17782:131;-1:-1:-1;;;;;;17856:32:1;;17846:43;;17836:71;;17903:1;17900;17893:12;17836:71;17782:131;:::o
Swarm Source
ipfs://a313b52bf9791d906beb4551820bab125fa5cbbbde921f52b583cbe166a74f93
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.