Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
0 fA
Holders
3,170
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 fALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
flooredApe
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; /* .-+*%@@@@@@%#+-. =**=: :+%@@#*=--::--=*#@@%+. .=**+ %#:+@@%#@@*: :+@@%#@@+:*@. *%=*=-@@@= =%@@=-*+#* @+* :@@* +@@: +=@ @=#*@@+ =@@*#=@ +@+#@% #@%=@* =#@@- -@@#= .@@: .@@: .@@- *%#- +##= :@@: %@* :%@@.-::#@@: +@@ -@@- :+*%++*+:=+-=**+#%*=: :@@= =@@-:*@*-. +-:+ :=#@@@+ -@@@* . .*@@= +@@*: -**+ :*@@*. .+@@@*=: -gm=:-*%@@+. :=#%@@@@%%@@@@@#+: d'b 8 8 .oo 8 8 8 .P 8 o8P 8 .oPYo. .oPYo. oPYo. .oPYo. .oPYo8 .P 8 .oPYo. .oPYo. 8 8 8 8 8 8 8 `' 8oooo8 8 8 oPooo8 8 8 8oooo8 8 8 8 8 8 8 8 8. 8 8 .P 8 8 8 8. 8 8 `Ygmi' `Wgmi' 8 `Wagmi `YooP' .P 8 8YooP' `Yooo' :..::..:.....::.....:..:::::.....::.....:..:::::..8 ....::.....: ::::::::::::::::::::::::::::::::::::::::::::::::::8 :::::::::::: */ import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "../contracts/Counters.sol"; contract flooredApe is ERC721, ERC721URIStorage, ReentrancyGuard, Pausable, AccessControl { using Counters for Counters.Counter; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant OG_ROLE = keccak256("OG_ROLE"); bool public publicBool = false; bool public whiteListBool = false; bool public adminBool = true; string private _baseURIextended = "https://flooredape.mypinata.cloud/ipfs/QmTUaRSYBKMRPReZKNk9HiB8MwPKtUXUposFBtSx6q41RQ/"; string private uriValue = "https://flooredape.mypinata.cloud/ipfs/Qmcc1GFU8DJPsLsrQJUEKpQafAFu2SrWqjX8ywDXi7x1zj"; string private degen = "degen.json"; string private og = "og.json"; Counters.Counter private _tokenIdCounter; Counters.Counter private _ogTokenIdCounter; uint256 public MINT_RATE = 0.02 ether; constructor() ERC721("flooredApe", "fA") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(PAUSER_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); _setupRole(OG_ROLE, msg.sender); _tokenIdCounter.setCounter(); } function setBaseURI(string memory baseURI_) external onlyRole(DEFAULT_ADMIN_ROLE) { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function batchFreeMint( address[] memory whiteList, uint256 amount ) public onlyRole(DEFAULT_ADMIN_ROLE) { require(publicBool, "Function not currently accessible"); require(_tokenIdCounter.current() < 50001, "Tokens are sold out."); for (uint256 j = 0; j < whiteList.length; j++) { address to = whiteList[j]; for (uint256 i = 0; i < amount; i++) { _safeMint(to, _tokenIdCounter.current()); _setTokenURI(_tokenIdCounter.current(), degen); _tokenIdCounter.increment(); } } } function degenMint( uint256 amount ) public payable nonReentrant { require(amount < 11, "amount exceeds limit (10)"); require(publicBool, "Function not currently accessible"); require(_tokenIdCounter.current() < 50001, "Tokens are sold out."); require(msg.value >= amount * MINT_RATE, "Not enough ether."); address to = msg.sender; for (uint256 i = 0; i < amount; i++) { _safeMint(to, _tokenIdCounter.current()); _setTokenURI(_tokenIdCounter.current(), degen); _tokenIdCounter.increment(); } } function whiteListMint( uint256 amount ) public payable onlyRole(MINTER_ROLE) nonReentrant { address to = msg.sender; require(amount < 11, "amount exceeds limit (10)"); require(whiteListBool, "Function not currently accessible"); require(_tokenIdCounter.current() < 50001, "Tokens are sold out."); require(msg.value >= amount * MINT_RATE, "Not enough ether."); for (uint256 i = 0; i < amount; i++) { _safeMint(to, _tokenIdCounter.current()); _setTokenURI(_tokenIdCounter.current(), degen); _tokenIdCounter.increment(); } } function batchOwnMint ( address[] memory whiteList, uint256 amount ) public onlyRole(DEFAULT_ADMIN_ROLE) { require(adminBool, "Function not currently accessible"); require(_ogTokenIdCounter.current() < 1001, "OG Tokens are sold out"); for (uint256 j = 0; j < whiteList.length; j++) { address to = whiteList[j]; for (uint256 i = 0; i < amount; i++) { _safeMint(to, _ogTokenIdCounter.current()); _setTokenURI(_ogTokenIdCounter.current(), og); _ogTokenIdCounter.increment(); } } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function contractURI() public view returns (string memory) { return uriValue; } function setContractURI(string memory uri) public onlyRole(DEFAULT_ADMIN_ROLE){ uriValue = uri; } 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); } function batchRole(bytes32 role, address[] memory arr) public onlyRole(DEFAULT_ADMIN_ROLE) { for (uint256 i = 0; i < arr.length; i++) { grantRole(role, arr[i]); } } function batchRevoke(bytes32 role, address[] memory arr) public onlyRole(DEFAULT_ADMIN_ROLE) { for (uint256 i = 0; i < arr.length; i++) { revokeRole(role, arr[i]); } } function currentPublic() public view returns (uint256) { return _tokenIdCounter.current(); } function currentOg() public view returns (uint256) { return _ogTokenIdCounter.current(); } function flipPublic() public onlyRole(DEFAULT_ADMIN_ROLE) { publicBool = !publicBool; } function flipWhiteList() public onlyRole(DEFAULT_ADMIN_ROLE) { whiteListBool = !whiteListBool; } function flipOwner() public onlyRole(DEFAULT_ADMIN_ROLE) { adminBool = !adminBool; } function withdrawFees() public onlyRole(DEFAULT_ADMIN_ROLE){ address payable to = payable(msg.sender); to.transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @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]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @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 granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function setCounter(Counter storage counter) internal { unchecked { counter._value = 1001; } } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT 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); } } } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[],"name":"MINT_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address[]","name":"whiteList","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteList","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchOwnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address[]","name":"arr","type":"address[]"}],"name":"batchRevoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address[]","name":"arr","type":"address[]"}],"name":"batchRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentOg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"degenMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhiteList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawFees","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550604051806080016040528060568152602001620055d460569139600b90805190602001906200008692919062000482565b506040518060800160405280605581526020016200562a60559139600c9080519060200190620000b892919062000482565b506040518060400160405280600a81526020017f646567656e2e6a736f6e00000000000000000000000000000000000000000000815250600d90805190602001906200010692919062000482565b506040518060400160405280600781526020017f6f672e6a736f6e00000000000000000000000000000000000000000000000000815250600e90805190602001906200015492919062000482565b5066470de4df8200006011553480156200016d57600080fd5b506040518060400160405280600a81526020017f666c6f6f726564417065000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f66410000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001f292919062000482565b5080600190805190602001906200020b92919062000482565b50505060016007819055506000600860006101000a81548160ff021916908315150217905550620002466000801b33620002f960201b60201c565b620002787f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620002f960201b60201c565b620002aa7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002f960201b60201c565b620002dc7f1cd079cd572ed6a2cd7c4420285102a79d15d064e5f36cea34a21e6294dcef7433620002f960201b60201c565b620002f3600f6200030f60201b62001f311760201c565b62000597565b6200030b82826200031d60201b60201c565b5050565b6103e9816000018190555050565b6200032f82826200040f60201b60201c565b6200040b5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003b06200047a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620004909062000561565b90600052602060002090601f016020900481019282620004b4576000855562000500565b82601f10620004cf57805160ff191683800117855562000500565b8280016001018555821562000500579182015b82811115620004ff578251825591602001919060010190620004e2565b5b5090506200050f919062000513565b5090565b5b808211156200052e57600081600090555060010162000514565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057a57607f821691505b6020821081141562000591576200059062000532565b5b50919050565b61502d80620005a76000396000f3fe6080604052600436106102675760003560e01c806391d1485411610144578063c546afa9116100b6578063d53913931161007a578063d53913931461089c578063d547741f146108c7578063e63ab1e9146108f0578063e8a3d4851461091b578063e985e9c514610946578063f5c1be3c1461098357610267565b8063c546afa9146107da578063c71e8cdf14610803578063c877142b1461082c578063c87b56dd14610843578063cce1a31d1461088057610267565b8063a217fddf11610108578063a217fddf146106f2578063a22cb4651461071d578063a386a7b314610746578063b44bf00d14610771578063b88d4fde14610788578063c2e3d02d146107b157610267565b806391d148541461060b578063938e3d7b1461064857806395d89b41146106715780639b9d1e2b1461069c578063a1f0cd11146106c757610267565b80633f4ba83a116101dd5780635c975abb116101a15780635c975abb146104f95780636352211e1461052457806366d454d9146105615780636e04e19c1461058c57806370a08231146105b75780638456cb59146105f457610267565b80633f4ba83a1461045057806342842e0e14610467578063476343ee14610490578063528dbd05146104a757806355f804b3146104d057610267565b80630ed495d81161022f5780630ed495d81461035657806323b872dd1461036d578063248a9ca3146103965780632b66921c146103d35780632f2ff15d146103fe57806336568abe1461042757610267565b806301ffc9a71461026c57806302e001ef146102a957806306fdde03146102c5578063081812fc146102f0578063095ea7b31461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e919061357b565b6109ae565b6040516102a091906135c3565b60405180910390f35b6102c360048036038101906102be9190613614565b6109c0565b005b3480156102d157600080fd5b506102da610c5a565b6040516102e791906136da565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613614565b610cec565b604051610324919061373d565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613784565b610d71565b005b34801561036257600080fd5b5061036b610e89565b005b34801561037957600080fd5b50610394600480360381019061038f91906137c4565b610ecb565b005b3480156103a257600080fd5b506103bd60048036038101906103b8919061384d565b610f2b565b6040516103ca9190613889565b60405180910390f35b3480156103df57600080fd5b506103e8610f4b565b6040516103f591906135c3565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906138a4565b610f5e565b005b34801561043357600080fd5b5061044e600480360381019061044991906138a4565b610f87565b005b34801561045c57600080fd5b5061046561100a565b005b34801561047357600080fd5b5061048e600480360381019061048991906137c4565b611047565b005b34801561049c57600080fd5b506104a5611067565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190613a2c565b6110cc565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613b3d565b61129b565b005b34801561050557600080fd5b5061050e6112cb565b60405161051b91906135c3565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613614565b6112e2565b604051610558919061373d565b60405180910390f35b34801561056d57600080fd5b50610576611394565b6040516105839190613b95565b60405180910390f35b34801561059857600080fd5b506105a16113a5565b6040516105ae9190613b95565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613bb0565b6113b6565b6040516105eb9190613b95565b60405180910390f35b34801561060057600080fd5b5061060961146e565b005b34801561061757600080fd5b50610632600480360381019061062d91906138a4565b6114ab565b60405161063f91906135c3565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613b3d565b611516565b005b34801561067d57600080fd5b50610686611546565b60405161069391906136da565b60405180910390f35b3480156106a857600080fd5b506106b16115d8565b6040516106be91906135c3565b60405180910390f35b3480156106d357600080fd5b506106dc6115eb565b6040516106e991906135c3565b60405180910390f35b3480156106fe57600080fd5b506107076115fe565b6040516107149190613889565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613c09565b611605565b005b34801561075257600080fd5b5061075b611786565b6040516107689190613889565b60405180910390f35b34801561077d57600080fd5b506107866117aa565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613cea565b6117ec565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613d6d565b61184e565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613a2c565b6118ac565b005b34801561080f57600080fd5b5061082a60048036038101906108259190613d6d565b611a7b565b005b34801561083857600080fd5b50610841611ad9565b005b34801561084f57600080fd5b5061086a60048036038101906108659190613614565b611b1b565b60405161087791906136da565b60405180910390f35b61089a60048036038101906108959190613614565b611b2d565b005b3480156108a857600080fd5b506108b1611d94565b6040516108be9190613889565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e991906138a4565b611db8565b005b3480156108fc57600080fd5b50610905611de1565b6040516109129190613889565b60405180910390f35b34801561092757600080fd5b50610930611e05565b60405161093d91906136da565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613dc9565b611e97565b60405161097a91906135c3565b60405180910390f35b34801561098f57600080fd5b50610998611f2b565b6040516109a59190613b95565b60405180910390f35b60006109b982611f3f565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109f2816109ed611fb9565b611fc1565b60026007541415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613e55565b60405180910390fd5b60026007819055506000339050600b8310610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613ec1565b60405180910390fd5b600a60019054906101000a900460ff16610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90613f53565b60405180910390fd5b61c351610ae4600f61205e565b10610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90613fbf565b60405180910390fd5b60115483610b32919061400e565b341015610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906140b4565b60405180910390fd5b60005b83811015610c4c57610b9282610b8d600f61205e565b61206c565b610c2f610b9f600f61205e565b600d8054610bac90614103565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd890614103565b8015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b505050505061208a565b610c39600f6120fe565b8080610c4490614135565b915050610b77565b505060016007819055505050565b606060008054610c6990614103565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9590614103565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b5050505050905090565b6000610cf782612114565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906141f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d7c826112e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490614282565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0c611fb9565b73ffffffffffffffffffffffffffffffffffffffff161480610e3b5750610e3a81610e35611fb9565b611e97565b5b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190614314565b60405180910390fd5b610e848383612180565b505050565b6000801b610e9e81610e99611fb9565b611fc1565b600a60019054906101000a900460ff1615600a60016101000a81548160ff02191690831515021790555050565b610edc610ed6611fb9565b82612239565b610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906143a6565b60405180910390fd5b610f26838383612317565b505050565b600060096000838152602001908152602001600020600101549050919050565b600a60019054906101000a900460ff1681565b610f6782610f2b565b610f7881610f73611fb9565b611fc1565b610f828383612573565b505050565b610f8f611fb9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390614438565b60405180910390fd5b6110068282612654565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61103c81611037611fb9565b611fc1565b611044612736565b50565b611062838383604051806020016040528060008152506117ec565b505050565b6000801b61107c81611077611fb9565b611fc1565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110c7573d6000803e3d6000fd5b505050565b6000801b6110e1816110dc611fb9565b611fc1565b600a60009054906101000a900460ff16611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613f53565b60405180910390fd5b61c35161113d600f61205e565b1061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613fbf565b60405180910390fd5b60005b835181101561129557600084828151811061119e5761119d614458565b5b6020026020010151905060005b84811015611280576111c6826111c1600f61205e565b61206c565b6112636111d3600f61205e565b600d80546111e090614103565b80601f016020809104026020016040519081016040528092919081815260200182805461120c90614103565b80156112595780601f1061122e57610100808354040283529160200191611259565b820191906000526020600020905b81548152906001019060200180831161123c57829003601f168201915b505050505061208a565b61126d600f6120fe565b808061127890614135565b9150506111ab565b5050808061128d90614135565b915050611180565b50505050565b6000801b6112b0816112ab611fb9565b611fc1565b81600b90805190602001906112c692919061346c565b505050565b6000600860009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611382906144f9565b60405180910390fd5b80915050919050565b60006113a0600f61205e565b905090565b60006113b1601061205e565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061458b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6114a08161149b611fb9565b611fc1565b6114a86127d8565b50565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b61152b81611526611fb9565b611fc1565b81600c908051906020019061154192919061346c565b505050565b60606001805461155590614103565b80601f016020809104026020016040519081016040528092919081815260200182805461158190614103565b80156115ce5780601f106115a3576101008083540402835291602001916115ce565b820191906000526020600020905b8154815290600101906020018083116115b157829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b600a60029054906101000a900460ff1681565b6000801b81565b61160d611fb9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906145f7565b60405180910390fd5b8060056000611688611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611735611fb9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161177a91906135c3565b60405180910390a35050565b7f1cd079cd572ed6a2cd7c4420285102a79d15d064e5f36cea34a21e6294dcef7481565b6000801b6117bf816117ba611fb9565b611fc1565b600a60029054906101000a900460ff1615600a60026101000a81548160ff02191690831515021790555050565b6117fd6117f7611fb9565b83612239565b61183c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611833906143a6565b60405180910390fd5b6118488484848461287b565b50505050565b6000801b6118638161185e611fb9565b611fc1565b60005b82518110156118a6576118938484838151811061188657611885614458565b5b6020026020010151610f5e565b808061189e90614135565b915050611866565b50505050565b6000801b6118c1816118bc611fb9565b611fc1565b600a60029054906101000a900460ff16611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613f53565b60405180910390fd5b6103e961191d601061205e565b1061195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614663565b60405180910390fd5b60005b8351811015611a7557600084828151811061197e5761197d614458565b5b6020026020010151905060005b84811015611a60576119a6826119a1601061205e565b61206c565b611a436119b3601061205e565b600e80546119c090614103565b80601f01602080910402602001604051908101604052809291908181526020018280546119ec90614103565b8015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b505050505061208a565b611a4d60106120fe565b8080611a5890614135565b91505061198b565b50508080611a6d90614135565b915050611960565b50505050565b6000801b611a9081611a8b611fb9565b611fc1565b60005b8251811015611ad357611ac084848381518110611ab357611ab2614458565b5b6020026020010151611db8565b8080611acb90614135565b915050611a93565b50505050565b6000801b611aee81611ae9611fb9565b611fc1565b600a60009054906101000a900460ff1615600a60006101000a81548160ff02191690831515021790555050565b6060611b26826128d7565b9050919050565b60026007541415611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613e55565b60405180910390fd5b6002600781905550600b8110611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613ec1565b60405180910390fd5b600a60009054906101000a900460ff16611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613f53565b60405180910390fd5b61c351611c1a600f61205e565b10611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613fbf565b60405180910390fd5b60115481611c68919061400e565b341015611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906140b4565b60405180910390fd5b600033905060005b82811015611d8757611ccd82611cc8600f61205e565b61206c565b611d6a611cda600f61205e565b600d8054611ce790614103565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1390614103565b8015611d605780601f10611d3557610100808354040283529160200191611d60565b820191906000526020600020905b815481529060010190602001808311611d4357829003601f168201915b505050505061208a565b611d74600f6120fe565b8080611d7f90614135565b915050611cb2565b5050600160078190555050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611dc182610f2b565b611dd281611dcd611fb9565b611fc1565b611ddc8383612654565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6060600c8054611e1490614103565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4090614103565b8015611e8d5780601f10611e6257610100808354040283529160200191611e8d565b820191906000526020600020905b815481529060010190602001808311611e7057829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b6103e9816000018190555050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb25750611fb182612a29565b5b9050919050565b600033905090565b611fcb82826114ab565b61205a57611ff08173ffffffffffffffffffffffffffffffffffffffff166014612b0b565b611ffe8360001c6020612b0b565b60405160200161200f929190614757565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205191906136da565b60405180910390fd5b5050565b600081600001549050919050565b612086828260405180602001604052806000815250612d47565b5050565b61209382612114565b6120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c990614803565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906120f992919061346c565b505050565b6001816000016000828254019250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121f3836112e2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061224482612114565b612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614895565b60405180910390fd5b600061228e836112e2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122fd57508373ffffffffffffffffffffffffffffffffffffffff166122e584610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b8061230e575061230d8185611e97565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612337826112e2565b73ffffffffffffffffffffffffffffffffffffffff161461238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238490614927565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f4906149b9565b60405180910390fd5b612408838383612da2565b612413600082612180565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246391906149d9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ba9190614a0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61257d82826114ab565b6126505760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125f5611fb9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61265e82826114ab565b156127325760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126d7611fb9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61273e6112cb565b61277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614aaf565b60405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6127c1611fb9565b6040516127ce919061373d565b60405180910390a1565b6127e06112cb565b15612820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281790614b1b565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612864611fb9565b604051612871919061373d565b60405180910390a1565b612886848484612317565b61289284848484612dfa565b6128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614bad565b60405180910390fd5b50505050565b60606128e282612114565b612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890614c3f565b60405180910390fd5b600060066000848152602001908152602001600020805461294190614103565b80601f016020809104026020016040519081016040528092919081815260200182805461296d90614103565b80156129ba5780601f1061298f576101008083540402835291602001916129ba565b820191906000526020600020905b81548152906001019060200180831161299d57829003601f168201915b5050505050905060006129cb612f82565b90506000815114156129e1578192505050612a24565b600082511115612a165780826040516020016129fe929190614c5f565b60405160208183030381529060405292505050612a24565b612a1f84613014565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612af457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b045750612b03826130bb565b5b9050919050565b606060006002836002612b1e919061400e565b612b289190614a0d565b67ffffffffffffffff811115612b4157612b406138e9565b5b6040519080825280601f01601f191660200182016040528015612b735781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612bab57612baa614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c0f57612c0e614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c4f919061400e565b612c599190614a0d565b90505b6001811115612cf9577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612c9b57612c9a614458565b5b1a60f81b828281518110612cb257612cb1614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612cf290614c83565b9050612c5c565b5060008414612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3490614cf9565b60405180910390fd5b8091505092915050565b612d518383613125565b612d5e6000848484612dfa565b612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9490614bad565b60405180910390fd5b505050565b612daa6112cb565b15612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de190614b1b565b60405180910390fd5b612df58383836132f3565b505050565b6000612e1b8473ffffffffffffffffffffffffffffffffffffffff166132f8565b15612f75578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e44611fb9565b8786866040518563ffffffff1660e01b8152600401612e669493929190614d6e565b6020604051808303816000875af1925050508015612ea257506040513d601f19601f82011682018060405250810190612e9f9190614dcf565b60015b612f25573d8060008114612ed2576040519150601f19603f3d011682016040523d82523d6000602084013e612ed7565b606091505b50600081511415612f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1490614bad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f7a565b600190505b949350505050565b6060600b8054612f9190614103565b80601f0160208091040260200160405190810160405280929190818152602001828054612fbd90614103565b801561300a5780601f10612fdf5761010080835404028352916020019161300a565b820191906000526020600020905b815481529060010190602001808311612fed57829003601f168201915b5050505050905090565b606061301f82612114565b61305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590614e6e565b60405180910390fd5b6000613068612f82565b9050600081511161308857604051806020016040528060008152506130b3565b806130928461330b565b6040516020016130a3929190614c5f565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318c90614eda565b60405180910390fd5b61319e81612114565b156131de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d590614f46565b60405180910390fd5b6131ea60008383612da2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323a9190614a0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600080823b905060008111915050919050565b60606000821415613353576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613467565b600082905060005b6000821461338557808061336e90614135565b915050600a8261337e9190614f95565b915061335b565b60008167ffffffffffffffff8111156133a1576133a06138e9565b5b6040519080825280601f01601f1916602001820160405280156133d35781602001600182028036833780820191505090505b5090505b60008514613460576001826133ec91906149d9565b9150600a856133fb9190614fc6565b60306134079190614a0d565b60f81b81838151811061341d5761341c614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134599190614f95565b94506133d7565b8093505050505b919050565b82805461347890614103565b90600052602060002090601f01602090048101928261349a57600085556134e1565b82601f106134b357805160ff19168380011785556134e1565b828001600101855582156134e1579182015b828111156134e05782518255916020019190600101906134c5565b5b5090506134ee91906134f2565b5090565b5b8082111561350b5760008160009055506001016134f3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355881613523565b811461356357600080fd5b50565b6000813590506135758161354f565b92915050565b60006020828403121561359157613590613519565b5b600061359f84828501613566565b91505092915050565b60008115159050919050565b6135bd816135a8565b82525050565b60006020820190506135d860008301846135b4565b92915050565b6000819050919050565b6135f1816135de565b81146135fc57600080fd5b50565b60008135905061360e816135e8565b92915050565b60006020828403121561362a57613629613519565b5b6000613638848285016135ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561367b578082015181840152602081019050613660565b8381111561368a576000848401525b50505050565b6000601f19601f8301169050919050565b60006136ac82613641565b6136b6818561364c565b93506136c681856020860161365d565b6136cf81613690565b840191505092915050565b600060208201905081810360008301526136f481846136a1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613727826136fc565b9050919050565b6137378161371c565b82525050565b6000602082019050613752600083018461372e565b92915050565b6137618161371c565b811461376c57600080fd5b50565b60008135905061377e81613758565b92915050565b6000806040838503121561379b5761379a613519565b5b60006137a98582860161376f565b92505060206137ba858286016135ff565b9150509250929050565b6000806000606084860312156137dd576137dc613519565b5b60006137eb8682870161376f565b93505060206137fc8682870161376f565b925050604061380d868287016135ff565b9150509250925092565b6000819050919050565b61382a81613817565b811461383557600080fd5b50565b60008135905061384781613821565b92915050565b60006020828403121561386357613862613519565b5b600061387184828501613838565b91505092915050565b61388381613817565b82525050565b600060208201905061389e600083018461387a565b92915050565b600080604083850312156138bb576138ba613519565b5b60006138c985828601613838565b92505060206138da8582860161376f565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61392182613690565b810181811067ffffffffffffffff821117156139405761393f6138e9565b5b80604052505050565b600061395361350f565b905061395f8282613918565b919050565b600067ffffffffffffffff82111561397f5761397e6138e9565b5b602082029050602081019050919050565b600080fd5b60006139a86139a384613964565b613949565b905080838252602082019050602084028301858111156139cb576139ca613990565b5b835b818110156139f457806139e0888261376f565b8452602084019350506020810190506139cd565b5050509392505050565b600082601f830112613a1357613a126138e4565b5b8135613a23848260208601613995565b91505092915050565b60008060408385031215613a4357613a42613519565b5b600083013567ffffffffffffffff811115613a6157613a6061351e565b5b613a6d858286016139fe565b9250506020613a7e858286016135ff565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613aa857613aa76138e9565b5b613ab182613690565b9050602081019050919050565b82818337600083830152505050565b6000613ae0613adb84613a8d565b613949565b905082815260208101848484011115613afc57613afb613a88565b5b613b07848285613abe565b509392505050565b600082601f830112613b2457613b236138e4565b5b8135613b34848260208601613acd565b91505092915050565b600060208284031215613b5357613b52613519565b5b600082013567ffffffffffffffff811115613b7157613b7061351e565b5b613b7d84828501613b0f565b91505092915050565b613b8f816135de565b82525050565b6000602082019050613baa6000830184613b86565b92915050565b600060208284031215613bc657613bc5613519565b5b6000613bd48482850161376f565b91505092915050565b613be6816135a8565b8114613bf157600080fd5b50565b600081359050613c0381613bdd565b92915050565b60008060408385031215613c2057613c1f613519565b5b6000613c2e8582860161376f565b9250506020613c3f85828601613bf4565b9150509250929050565b600067ffffffffffffffff821115613c6457613c636138e9565b5b613c6d82613690565b9050602081019050919050565b6000613c8d613c8884613c49565b613949565b905082815260208101848484011115613ca957613ca8613a88565b5b613cb4848285613abe565b509392505050565b600082601f830112613cd157613cd06138e4565b5b8135613ce1848260208601613c7a565b91505092915050565b60008060008060808587031215613d0457613d03613519565b5b6000613d128782880161376f565b9450506020613d238782880161376f565b9350506040613d34878288016135ff565b925050606085013567ffffffffffffffff811115613d5557613d5461351e565b5b613d6187828801613cbc565b91505092959194509250565b60008060408385031215613d8457613d83613519565b5b6000613d9285828601613838565b925050602083013567ffffffffffffffff811115613db357613db261351e565b5b613dbf858286016139fe565b9150509250929050565b60008060408385031215613de057613ddf613519565b5b6000613dee8582860161376f565b9250506020613dff8582860161376f565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e3f601f8361364c565b9150613e4a82613e09565b602082019050919050565b60006020820190508181036000830152613e6e81613e32565b9050919050565b7f616d6f756e742065786365656473206c696d6974202831302900000000000000600082015250565b6000613eab60198361364c565b9150613eb682613e75565b602082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b7f46756e6374696f6e206e6f742063757272656e746c792061636365737369626c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f3d60218361364c565b9150613f4882613ee1565b604082019050919050565b60006020820190508181036000830152613f6c81613f30565b9050919050565b7f546f6b656e732061726520736f6c64206f75742e000000000000000000000000600082015250565b6000613fa960148361364c565b9150613fb482613f73565b602082019050919050565b60006020820190508181036000830152613fd881613f9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614019826135de565b9150614024836135de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405d5761405c613fdf565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722e000000000000000000000000000000600082015250565b600061409e60118361364c565b91506140a982614068565b602082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061411b57607f821691505b6020821081141561412f5761412e6140d4565b5b50919050565b6000614140826135de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561417357614172613fdf565b5b600182019050919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141da602c8361364c565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061426c60218361364c565b915061427782614210565b604082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142fe60388361364c565b9150614309826142a2565b604082019050919050565b6000602082019050818103600083015261432d816142f1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061439060318361364c565b915061439b82614334565b604082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614422602f8361364c565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006144e360298361364c565b91506144ee82614487565b604082019050919050565b60006020820190508181036000830152614512816144d6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614575602a8361364c565b915061458082614519565b604082019050919050565b600060208201905081810360008301526145a481614568565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145e160198361364c565b91506145ec826145ab565b602082019050919050565b60006020820190508181036000830152614610816145d4565b9050919050565b7f4f4720546f6b656e732061726520736f6c64206f757400000000000000000000600082015250565b600061464d60168361364c565b915061465882614617565b602082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006146c4601783614683565b91506146cf8261468e565b601782019050919050565b60006146e582613641565b6146ef8185614683565b93506146ff81856020860161365d565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614741601183614683565b915061474c8261470b565b601182019050919050565b6000614762826146b7565b915061476e82856146da565b915061477982614734565b915061478582846146da565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006147ed602e8361364c565b91506147f882614791565b604082019050919050565b6000602082019050818103600083015261481c816147e0565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061487f602c8361364c565b915061488a82614823565b604082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061491160298361364c565b915061491c826148b5565b604082019050919050565b6000602082019050818103600083015261494081614904565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149a360248361364c565b91506149ae82614947565b604082019050919050565b600060208201905081810360008301526149d281614996565b9050919050565b60006149e4826135de565b91506149ef836135de565b925082821015614a0257614a01613fdf565b5b828203905092915050565b6000614a18826135de565b9150614a23836135de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5857614a57613fdf565b5b828201905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614a9960148361364c565b9150614aa482614a63565b602082019050919050565b60006020820190508181036000830152614ac881614a8c565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614b0560108361364c565b9150614b1082614acf565b602082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b9760328361364c565b9150614ba282614b3b565b604082019050919050565b60006020820190508181036000830152614bc681614b8a565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614c2960318361364c565b9150614c3482614bcd565b604082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b6000614c6b82856146da565b9150614c7782846146da565b91508190509392505050565b6000614c8e826135de565b91506000821415614ca257614ca1613fdf565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614ce360208361364c565b9150614cee82614cad565b602082019050919050565b60006020820190508181036000830152614d1281614cd6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d4082614d19565b614d4a8185614d24565b9350614d5a81856020860161365d565b614d6381613690565b840191505092915050565b6000608082019050614d83600083018761372e565b614d90602083018661372e565b614d9d6040830185613b86565b8181036060830152614daf8184614d35565b905095945050505050565b600081519050614dc98161354f565b92915050565b600060208284031215614de557614de4613519565b5b6000614df384828501614dba565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e58602f8361364c565b9150614e6382614dfc565b604082019050919050565b60006020820190508181036000830152614e8781614e4b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614ec460208361364c565b9150614ecf82614e8e565b602082019050919050565b60006020820190508181036000830152614ef381614eb7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f30601c8361364c565b9150614f3b82614efa565b602082019050919050565b60006020820190508181036000830152614f5f81614f23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fa0826135de565b9150614fab836135de565b925082614fbb57614fba614f66565b5b828204905092915050565b6000614fd1826135de565b9150614fdc836135de565b925082614fec57614feb614f66565b5b82820690509291505056fea264697066735822122042023c44cbc1e2102109f6e0d33b37d93509a9a87b4a1e6fb3131322fa62921864736f6c634300080a003368747470733a2f2f666c6f6f7265646170652e6d7970696e6174612e636c6f75642f697066732f516d545561525359424b4d525052655a4b4e6b39486942384d77504b74555855706f7346427453783671343152512f68747470733a2f2f666c6f6f7265646170652e6d7970696e6174612e636c6f75642f697066732f516d63633147465538444a50734c7372514a55454b7051616641467532537257716a583879774458693778317a6a
Deployed Bytecode
0x6080604052600436106102675760003560e01c806391d1485411610144578063c546afa9116100b6578063d53913931161007a578063d53913931461089c578063d547741f146108c7578063e63ab1e9146108f0578063e8a3d4851461091b578063e985e9c514610946578063f5c1be3c1461098357610267565b8063c546afa9146107da578063c71e8cdf14610803578063c877142b1461082c578063c87b56dd14610843578063cce1a31d1461088057610267565b8063a217fddf11610108578063a217fddf146106f2578063a22cb4651461071d578063a386a7b314610746578063b44bf00d14610771578063b88d4fde14610788578063c2e3d02d146107b157610267565b806391d148541461060b578063938e3d7b1461064857806395d89b41146106715780639b9d1e2b1461069c578063a1f0cd11146106c757610267565b80633f4ba83a116101dd5780635c975abb116101a15780635c975abb146104f95780636352211e1461052457806366d454d9146105615780636e04e19c1461058c57806370a08231146105b75780638456cb59146105f457610267565b80633f4ba83a1461045057806342842e0e14610467578063476343ee14610490578063528dbd05146104a757806355f804b3146104d057610267565b80630ed495d81161022f5780630ed495d81461035657806323b872dd1461036d578063248a9ca3146103965780632b66921c146103d35780632f2ff15d146103fe57806336568abe1461042757610267565b806301ffc9a71461026c57806302e001ef146102a957806306fdde03146102c5578063081812fc146102f0578063095ea7b31461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e919061357b565b6109ae565b6040516102a091906135c3565b60405180910390f35b6102c360048036038101906102be9190613614565b6109c0565b005b3480156102d157600080fd5b506102da610c5a565b6040516102e791906136da565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613614565b610cec565b604051610324919061373d565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613784565b610d71565b005b34801561036257600080fd5b5061036b610e89565b005b34801561037957600080fd5b50610394600480360381019061038f91906137c4565b610ecb565b005b3480156103a257600080fd5b506103bd60048036038101906103b8919061384d565b610f2b565b6040516103ca9190613889565b60405180910390f35b3480156103df57600080fd5b506103e8610f4b565b6040516103f591906135c3565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906138a4565b610f5e565b005b34801561043357600080fd5b5061044e600480360381019061044991906138a4565b610f87565b005b34801561045c57600080fd5b5061046561100a565b005b34801561047357600080fd5b5061048e600480360381019061048991906137c4565b611047565b005b34801561049c57600080fd5b506104a5611067565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190613a2c565b6110cc565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613b3d565b61129b565b005b34801561050557600080fd5b5061050e6112cb565b60405161051b91906135c3565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613614565b6112e2565b604051610558919061373d565b60405180910390f35b34801561056d57600080fd5b50610576611394565b6040516105839190613b95565b60405180910390f35b34801561059857600080fd5b506105a16113a5565b6040516105ae9190613b95565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613bb0565b6113b6565b6040516105eb9190613b95565b60405180910390f35b34801561060057600080fd5b5061060961146e565b005b34801561061757600080fd5b50610632600480360381019061062d91906138a4565b6114ab565b60405161063f91906135c3565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613b3d565b611516565b005b34801561067d57600080fd5b50610686611546565b60405161069391906136da565b60405180910390f35b3480156106a857600080fd5b506106b16115d8565b6040516106be91906135c3565b60405180910390f35b3480156106d357600080fd5b506106dc6115eb565b6040516106e991906135c3565b60405180910390f35b3480156106fe57600080fd5b506107076115fe565b6040516107149190613889565b60405180910390f35b34801561072957600080fd5b50610744600480360381019061073f9190613c09565b611605565b005b34801561075257600080fd5b5061075b611786565b6040516107689190613889565b60405180910390f35b34801561077d57600080fd5b506107866117aa565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613cea565b6117ec565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613d6d565b61184e565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190613a2c565b6118ac565b005b34801561080f57600080fd5b5061082a60048036038101906108259190613d6d565b611a7b565b005b34801561083857600080fd5b50610841611ad9565b005b34801561084f57600080fd5b5061086a60048036038101906108659190613614565b611b1b565b60405161087791906136da565b60405180910390f35b61089a60048036038101906108959190613614565b611b2d565b005b3480156108a857600080fd5b506108b1611d94565b6040516108be9190613889565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e991906138a4565b611db8565b005b3480156108fc57600080fd5b50610905611de1565b6040516109129190613889565b60405180910390f35b34801561092757600080fd5b50610930611e05565b60405161093d91906136da565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613dc9565b611e97565b60405161097a91906135c3565b60405180910390f35b34801561098f57600080fd5b50610998611f2b565b6040516109a59190613b95565b60405180910390f35b60006109b982611f3f565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109f2816109ed611fb9565b611fc1565b60026007541415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613e55565b60405180910390fd5b60026007819055506000339050600b8310610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613ec1565b60405180910390fd5b600a60019054906101000a900460ff16610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90613f53565b60405180910390fd5b61c351610ae4600f61205e565b10610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90613fbf565b60405180910390fd5b60115483610b32919061400e565b341015610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b906140b4565b60405180910390fd5b60005b83811015610c4c57610b9282610b8d600f61205e565b61206c565b610c2f610b9f600f61205e565b600d8054610bac90614103565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd890614103565b8015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b505050505061208a565b610c39600f6120fe565b8080610c4490614135565b915050610b77565b505060016007819055505050565b606060008054610c6990614103565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9590614103565b8015610ce25780601f10610cb757610100808354040283529160200191610ce2565b820191906000526020600020905b815481529060010190602001808311610cc557829003601f168201915b5050505050905090565b6000610cf782612114565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906141f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d7c826112e2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490614282565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0c611fb9565b73ffffffffffffffffffffffffffffffffffffffff161480610e3b5750610e3a81610e35611fb9565b611e97565b5b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190614314565b60405180910390fd5b610e848383612180565b505050565b6000801b610e9e81610e99611fb9565b611fc1565b600a60019054906101000a900460ff1615600a60016101000a81548160ff02191690831515021790555050565b610edc610ed6611fb9565b82612239565b610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906143a6565b60405180910390fd5b610f26838383612317565b505050565b600060096000838152602001908152602001600020600101549050919050565b600a60019054906101000a900460ff1681565b610f6782610f2b565b610f7881610f73611fb9565b611fc1565b610f828383612573565b505050565b610f8f611fb9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390614438565b60405180910390fd5b6110068282612654565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61103c81611037611fb9565b611fc1565b611044612736565b50565b611062838383604051806020016040528060008152506117ec565b505050565b6000801b61107c81611077611fb9565b611fc1565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110c7573d6000803e3d6000fd5b505050565b6000801b6110e1816110dc611fb9565b611fc1565b600a60009054906101000a900460ff16611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613f53565b60405180910390fd5b61c35161113d600f61205e565b1061117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613fbf565b60405180910390fd5b60005b835181101561129557600084828151811061119e5761119d614458565b5b6020026020010151905060005b84811015611280576111c6826111c1600f61205e565b61206c565b6112636111d3600f61205e565b600d80546111e090614103565b80601f016020809104026020016040519081016040528092919081815260200182805461120c90614103565b80156112595780601f1061122e57610100808354040283529160200191611259565b820191906000526020600020905b81548152906001019060200180831161123c57829003601f168201915b505050505061208a565b61126d600f6120fe565b808061127890614135565b9150506111ab565b5050808061128d90614135565b915050611180565b50505050565b6000801b6112b0816112ab611fb9565b611fc1565b81600b90805190602001906112c692919061346c565b505050565b6000600860009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611382906144f9565b60405180910390fd5b80915050919050565b60006113a0600f61205e565b905090565b60006113b1601061205e565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061458b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6114a08161149b611fb9565b611fc1565b6114a86127d8565b50565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b61152b81611526611fb9565b611fc1565b81600c908051906020019061154192919061346c565b505050565b60606001805461155590614103565b80601f016020809104026020016040519081016040528092919081815260200182805461158190614103565b80156115ce5780601f106115a3576101008083540402835291602001916115ce565b820191906000526020600020905b8154815290600101906020018083116115b157829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b600a60029054906101000a900460ff1681565b6000801b81565b61160d611fb9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906145f7565b60405180910390fd5b8060056000611688611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611735611fb9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161177a91906135c3565b60405180910390a35050565b7f1cd079cd572ed6a2cd7c4420285102a79d15d064e5f36cea34a21e6294dcef7481565b6000801b6117bf816117ba611fb9565b611fc1565b600a60029054906101000a900460ff1615600a60026101000a81548160ff02191690831515021790555050565b6117fd6117f7611fb9565b83612239565b61183c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611833906143a6565b60405180910390fd5b6118488484848461287b565b50505050565b6000801b6118638161185e611fb9565b611fc1565b60005b82518110156118a6576118938484838151811061188657611885614458565b5b6020026020010151610f5e565b808061189e90614135565b915050611866565b50505050565b6000801b6118c1816118bc611fb9565b611fc1565b600a60029054906101000a900460ff16611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613f53565b60405180910390fd5b6103e961191d601061205e565b1061195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490614663565b60405180910390fd5b60005b8351811015611a7557600084828151811061197e5761197d614458565b5b6020026020010151905060005b84811015611a60576119a6826119a1601061205e565b61206c565b611a436119b3601061205e565b600e80546119c090614103565b80601f01602080910402602001604051908101604052809291908181526020018280546119ec90614103565b8015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b505050505061208a565b611a4d60106120fe565b8080611a5890614135565b91505061198b565b50508080611a6d90614135565b915050611960565b50505050565b6000801b611a9081611a8b611fb9565b611fc1565b60005b8251811015611ad357611ac084848381518110611ab357611ab2614458565b5b6020026020010151611db8565b8080611acb90614135565b915050611a93565b50505050565b6000801b611aee81611ae9611fb9565b611fc1565b600a60009054906101000a900460ff1615600a60006101000a81548160ff02191690831515021790555050565b6060611b26826128d7565b9050919050565b60026007541415611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613e55565b60405180910390fd5b6002600781905550600b8110611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613ec1565b60405180910390fd5b600a60009054906101000a900460ff16611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613f53565b60405180910390fd5b61c351611c1a600f61205e565b10611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613fbf565b60405180910390fd5b60115481611c68919061400e565b341015611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906140b4565b60405180910390fd5b600033905060005b82811015611d8757611ccd82611cc8600f61205e565b61206c565b611d6a611cda600f61205e565b600d8054611ce790614103565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1390614103565b8015611d605780601f10611d3557610100808354040283529160200191611d60565b820191906000526020600020905b815481529060010190602001808311611d4357829003601f168201915b505050505061208a565b611d74600f6120fe565b8080611d7f90614135565b915050611cb2565b5050600160078190555050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611dc182610f2b565b611dd281611dcd611fb9565b611fc1565b611ddc8383612654565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6060600c8054611e1490614103565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4090614103565b8015611e8d5780601f10611e6257610100808354040283529160200191611e8d565b820191906000526020600020905b815481529060010190602001808311611e7057829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b6103e9816000018190555050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb25750611fb182612a29565b5b9050919050565b600033905090565b611fcb82826114ab565b61205a57611ff08173ffffffffffffffffffffffffffffffffffffffff166014612b0b565b611ffe8360001c6020612b0b565b60405160200161200f929190614757565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205191906136da565b60405180910390fd5b5050565b600081600001549050919050565b612086828260405180602001604052806000815250612d47565b5050565b61209382612114565b6120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c990614803565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906120f992919061346c565b505050565b6001816000016000828254019250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121f3836112e2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061224482612114565b612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614895565b60405180910390fd5b600061228e836112e2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122fd57508373ffffffffffffffffffffffffffffffffffffffff166122e584610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b8061230e575061230d8185611e97565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612337826112e2565b73ffffffffffffffffffffffffffffffffffffffff161461238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238490614927565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f4906149b9565b60405180910390fd5b612408838383612da2565b612413600082612180565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246391906149d9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ba9190614a0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61257d82826114ab565b6126505760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125f5611fb9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61265e82826114ab565b156127325760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126d7611fb9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61273e6112cb565b61277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490614aaf565b60405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6127c1611fb9565b6040516127ce919061373d565b60405180910390a1565b6127e06112cb565b15612820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281790614b1b565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612864611fb9565b604051612871919061373d565b60405180910390a1565b612886848484612317565b61289284848484612dfa565b6128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614bad565b60405180910390fd5b50505050565b60606128e282612114565b612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890614c3f565b60405180910390fd5b600060066000848152602001908152602001600020805461294190614103565b80601f016020809104026020016040519081016040528092919081815260200182805461296d90614103565b80156129ba5780601f1061298f576101008083540402835291602001916129ba565b820191906000526020600020905b81548152906001019060200180831161299d57829003601f168201915b5050505050905060006129cb612f82565b90506000815114156129e1578192505050612a24565b600082511115612a165780826040516020016129fe929190614c5f565b60405160208183030381529060405292505050612a24565b612a1f84613014565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612af457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b045750612b03826130bb565b5b9050919050565b606060006002836002612b1e919061400e565b612b289190614a0d565b67ffffffffffffffff811115612b4157612b406138e9565b5b6040519080825280601f01601f191660200182016040528015612b735781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612bab57612baa614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c0f57612c0e614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c4f919061400e565b612c599190614a0d565b90505b6001811115612cf9577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612c9b57612c9a614458565b5b1a60f81b828281518110612cb257612cb1614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612cf290614c83565b9050612c5c565b5060008414612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3490614cf9565b60405180910390fd5b8091505092915050565b612d518383613125565b612d5e6000848484612dfa565b612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9490614bad565b60405180910390fd5b505050565b612daa6112cb565b15612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de190614b1b565b60405180910390fd5b612df58383836132f3565b505050565b6000612e1b8473ffffffffffffffffffffffffffffffffffffffff166132f8565b15612f75578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e44611fb9565b8786866040518563ffffffff1660e01b8152600401612e669493929190614d6e565b6020604051808303816000875af1925050508015612ea257506040513d601f19601f82011682018060405250810190612e9f9190614dcf565b60015b612f25573d8060008114612ed2576040519150601f19603f3d011682016040523d82523d6000602084013e612ed7565b606091505b50600081511415612f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1490614bad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f7a565b600190505b949350505050565b6060600b8054612f9190614103565b80601f0160208091040260200160405190810160405280929190818152602001828054612fbd90614103565b801561300a5780601f10612fdf5761010080835404028352916020019161300a565b820191906000526020600020905b815481529060010190602001808311612fed57829003601f168201915b5050505050905090565b606061301f82612114565b61305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590614e6e565b60405180910390fd5b6000613068612f82565b9050600081511161308857604051806020016040528060008152506130b3565b806130928461330b565b6040516020016130a3929190614c5f565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318c90614eda565b60405180910390fd5b61319e81612114565b156131de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d590614f46565b60405180910390fd5b6131ea60008383612da2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323a9190614a0d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600080823b905060008111915050919050565b60606000821415613353576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613467565b600082905060005b6000821461338557808061336e90614135565b915050600a8261337e9190614f95565b915061335b565b60008167ffffffffffffffff8111156133a1576133a06138e9565b5b6040519080825280601f01601f1916602001820160405280156133d35781602001600182028036833780820191505090505b5090505b60008514613460576001826133ec91906149d9565b9150600a856133fb9190614fc6565b60306134079190614a0d565b60f81b81838151811061341d5761341c614458565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134599190614f95565b94506133d7565b8093505050505b919050565b82805461347890614103565b90600052602060002090601f01602090048101928261349a57600085556134e1565b82601f106134b357805160ff19168380011785556134e1565b828001600101855582156134e1579182015b828111156134e05782518255916020019190600101906134c5565b5b5090506134ee91906134f2565b5090565b5b8082111561350b5760008160009055506001016134f3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355881613523565b811461356357600080fd5b50565b6000813590506135758161354f565b92915050565b60006020828403121561359157613590613519565b5b600061359f84828501613566565b91505092915050565b60008115159050919050565b6135bd816135a8565b82525050565b60006020820190506135d860008301846135b4565b92915050565b6000819050919050565b6135f1816135de565b81146135fc57600080fd5b50565b60008135905061360e816135e8565b92915050565b60006020828403121561362a57613629613519565b5b6000613638848285016135ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561367b578082015181840152602081019050613660565b8381111561368a576000848401525b50505050565b6000601f19601f8301169050919050565b60006136ac82613641565b6136b6818561364c565b93506136c681856020860161365d565b6136cf81613690565b840191505092915050565b600060208201905081810360008301526136f481846136a1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613727826136fc565b9050919050565b6137378161371c565b82525050565b6000602082019050613752600083018461372e565b92915050565b6137618161371c565b811461376c57600080fd5b50565b60008135905061377e81613758565b92915050565b6000806040838503121561379b5761379a613519565b5b60006137a98582860161376f565b92505060206137ba858286016135ff565b9150509250929050565b6000806000606084860312156137dd576137dc613519565b5b60006137eb8682870161376f565b93505060206137fc8682870161376f565b925050604061380d868287016135ff565b9150509250925092565b6000819050919050565b61382a81613817565b811461383557600080fd5b50565b60008135905061384781613821565b92915050565b60006020828403121561386357613862613519565b5b600061387184828501613838565b91505092915050565b61388381613817565b82525050565b600060208201905061389e600083018461387a565b92915050565b600080604083850312156138bb576138ba613519565b5b60006138c985828601613838565b92505060206138da8582860161376f565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61392182613690565b810181811067ffffffffffffffff821117156139405761393f6138e9565b5b80604052505050565b600061395361350f565b905061395f8282613918565b919050565b600067ffffffffffffffff82111561397f5761397e6138e9565b5b602082029050602081019050919050565b600080fd5b60006139a86139a384613964565b613949565b905080838252602082019050602084028301858111156139cb576139ca613990565b5b835b818110156139f457806139e0888261376f565b8452602084019350506020810190506139cd565b5050509392505050565b600082601f830112613a1357613a126138e4565b5b8135613a23848260208601613995565b91505092915050565b60008060408385031215613a4357613a42613519565b5b600083013567ffffffffffffffff811115613a6157613a6061351e565b5b613a6d858286016139fe565b9250506020613a7e858286016135ff565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613aa857613aa76138e9565b5b613ab182613690565b9050602081019050919050565b82818337600083830152505050565b6000613ae0613adb84613a8d565b613949565b905082815260208101848484011115613afc57613afb613a88565b5b613b07848285613abe565b509392505050565b600082601f830112613b2457613b236138e4565b5b8135613b34848260208601613acd565b91505092915050565b600060208284031215613b5357613b52613519565b5b600082013567ffffffffffffffff811115613b7157613b7061351e565b5b613b7d84828501613b0f565b91505092915050565b613b8f816135de565b82525050565b6000602082019050613baa6000830184613b86565b92915050565b600060208284031215613bc657613bc5613519565b5b6000613bd48482850161376f565b91505092915050565b613be6816135a8565b8114613bf157600080fd5b50565b600081359050613c0381613bdd565b92915050565b60008060408385031215613c2057613c1f613519565b5b6000613c2e8582860161376f565b9250506020613c3f85828601613bf4565b9150509250929050565b600067ffffffffffffffff821115613c6457613c636138e9565b5b613c6d82613690565b9050602081019050919050565b6000613c8d613c8884613c49565b613949565b905082815260208101848484011115613ca957613ca8613a88565b5b613cb4848285613abe565b509392505050565b600082601f830112613cd157613cd06138e4565b5b8135613ce1848260208601613c7a565b91505092915050565b60008060008060808587031215613d0457613d03613519565b5b6000613d128782880161376f565b9450506020613d238782880161376f565b9350506040613d34878288016135ff565b925050606085013567ffffffffffffffff811115613d5557613d5461351e565b5b613d6187828801613cbc565b91505092959194509250565b60008060408385031215613d8457613d83613519565b5b6000613d9285828601613838565b925050602083013567ffffffffffffffff811115613db357613db261351e565b5b613dbf858286016139fe565b9150509250929050565b60008060408385031215613de057613ddf613519565b5b6000613dee8582860161376f565b9250506020613dff8582860161376f565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e3f601f8361364c565b9150613e4a82613e09565b602082019050919050565b60006020820190508181036000830152613e6e81613e32565b9050919050565b7f616d6f756e742065786365656473206c696d6974202831302900000000000000600082015250565b6000613eab60198361364c565b9150613eb682613e75565b602082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b7f46756e6374696f6e206e6f742063757272656e746c792061636365737369626c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f3d60218361364c565b9150613f4882613ee1565b604082019050919050565b60006020820190508181036000830152613f6c81613f30565b9050919050565b7f546f6b656e732061726520736f6c64206f75742e000000000000000000000000600082015250565b6000613fa960148361364c565b9150613fb482613f73565b602082019050919050565b60006020820190508181036000830152613fd881613f9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614019826135de565b9150614024836135de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405d5761405c613fdf565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722e000000000000000000000000000000600082015250565b600061409e60118361364c565b91506140a982614068565b602082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061411b57607f821691505b6020821081141561412f5761412e6140d4565b5b50919050565b6000614140826135de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561417357614172613fdf565b5b600182019050919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141da602c8361364c565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061426c60218361364c565b915061427782614210565b604082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142fe60388361364c565b9150614309826142a2565b604082019050919050565b6000602082019050818103600083015261432d816142f1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061439060318361364c565b915061439b82614334565b604082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614422602f8361364c565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006144e360298361364c565b91506144ee82614487565b604082019050919050565b60006020820190508181036000830152614512816144d6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614575602a8361364c565b915061458082614519565b604082019050919050565b600060208201905081810360008301526145a481614568565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145e160198361364c565b91506145ec826145ab565b602082019050919050565b60006020820190508181036000830152614610816145d4565b9050919050565b7f4f4720546f6b656e732061726520736f6c64206f757400000000000000000000600082015250565b600061464d60168361364c565b915061465882614617565b602082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006146c4601783614683565b91506146cf8261468e565b601782019050919050565b60006146e582613641565b6146ef8185614683565b93506146ff81856020860161365d565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614741601183614683565b915061474c8261470b565b601182019050919050565b6000614762826146b7565b915061476e82856146da565b915061477982614734565b915061478582846146da565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006147ed602e8361364c565b91506147f882614791565b604082019050919050565b6000602082019050818103600083015261481c816147e0565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061487f602c8361364c565b915061488a82614823565b604082019050919050565b600060208201905081810360008301526148ae81614872565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061491160298361364c565b915061491c826148b5565b604082019050919050565b6000602082019050818103600083015261494081614904565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149a360248361364c565b91506149ae82614947565b604082019050919050565b600060208201905081810360008301526149d281614996565b9050919050565b60006149e4826135de565b91506149ef836135de565b925082821015614a0257614a01613fdf565b5b828203905092915050565b6000614a18826135de565b9150614a23836135de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5857614a57613fdf565b5b828201905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614a9960148361364c565b9150614aa482614a63565b602082019050919050565b60006020820190508181036000830152614ac881614a8c565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614b0560108361364c565b9150614b1082614acf565b602082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b9760328361364c565b9150614ba282614b3b565b604082019050919050565b60006020820190508181036000830152614bc681614b8a565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614c2960318361364c565b9150614c3482614bcd565b604082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b6000614c6b82856146da565b9150614c7782846146da565b91508190509392505050565b6000614c8e826135de565b91506000821415614ca257614ca1613fdf565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614ce360208361364c565b9150614cee82614cad565b602082019050919050565b60006020820190508181036000830152614d1281614cd6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d4082614d19565b614d4a8185614d24565b9350614d5a81856020860161365d565b614d6381613690565b840191505092915050565b6000608082019050614d83600083018761372e565b614d90602083018661372e565b614d9d6040830185613b86565b8181036060830152614daf8184614d35565b905095945050505050565b600081519050614dc98161354f565b92915050565b600060208284031215614de557614de4613519565b5b6000614df384828501614dba565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e58602f8361364c565b9150614e6382614dfc565b604082019050919050565b60006020820190508181036000830152614e8781614e4b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614ec460208361364c565b9150614ecf82614e8e565b602082019050919050565b60006020820190508181036000830152614ef381614eb7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f30601c8361364c565b9150614f3b82614efa565b602082019050919050565b60006020820190508181036000830152614f5f81614f23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614fa0826135de565b9150614fab836135de565b925082614fbb57614fba614f66565b5b828204905092915050565b6000614fd1826135de565b9150614fdc836135de565b925082614fec57614feb614f66565b5b82820690509291505056fea264697066735822122042023c44cbc1e2102109f6e0d33b37d93509a9a87b4a1e6fb3131322fa62921864736f6c634300080a0033
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.