Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
200 NXCSentimentAPIAlpha
Holders
112
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NXCSentimentAPIAlphaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NXCSentimentAlpha
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-22 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/NXCSentimentAPI.sol pragma solidity >=0.7.0 <0.9.0; contract NXCSentimentAlpha is ERC721A, Ownable { using Strings for uint256; string private baseUri; string private suffix = ".json"; uint256 public constant maxSupply = 50; uint256 public constant mintQuantity = 1; bool public mintIsActive; address private _manager; mapping(address => uint256) public amountMinted; constructor() ERC721A("NXC Sentiment API Alpha", "NXCSentimentAPIAlpha") { baseUri = "ipfs://QmQxdz8aA1MZ5HTnRL992KDzNgDzMQoU9LqMMQf2cLUacu/"; mintIsActive = false; _mint(msg.sender, 5); } modifier onlyOwnerOrManager() { require(owner() == _msgSender() || _manager == _msgSender(), "Caller is not the owner or manager"); _; } modifier eligibleToMint() { require(mintIsActive, "The contract has not started minting."); require(amountMinted[_msgSender()] == 0, "You can not mint more than one token per wallet."); require(totalSupply() + mintQuantity <= maxSupply, "All tokens have been minted."); _; } function mint() public eligibleToMint { amountMinted[msg.sender] += mintQuantity; _mint(msg.sender, mintQuantity); } function ownerMint(uint256 _quantity) public onlyOwnerOrManager { _mint(msg.sender, _quantity); } function flipMintState() external onlyOwnerOrManager { mintIsActive = !mintIsActive; } function setManager(address manager) external onlyOwnerOrManager { _manager = manager; } function withdraw() public onlyOwnerOrManager { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function setBaseUri(string memory _baseUri) public onlyOwner { baseUri = _baseUri; } function _baseURI() internal view virtual override returns (string memory) { return baseUri; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), suffix)) : ""; } function _startTokenId() internal pure override(ERC721A) returns(uint256 startId) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"flipMintState","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":"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"address","name":"manager","type":"address"}],"name":"setManager","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620004f2565b503480156200005f57600080fd5b506040518060400160405280601781526020017f4e58432053656e74696d656e742041504920416c7068610000000000000000008152506040518060400160405280601481526020017f4e584353656e74696d656e74415049416c7068610000000000000000000000008152508160029080519060200190620000e4929190620004f2565b508060039080519060200190620000fd929190620004f2565b506200010e6200019c60201b60201c565b6000819055505050620001366200012a620001a560201b60201c565b620001ad60201b60201c565b604051806060016040528060368152602001620035d5603691396009908051906020019062000167929190620004f2565b506000600b60006101000a81548160ff021916908315150217905550620001963360056200027360201b60201c565b62000607565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620002e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156200031d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200033260008483856200047260201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003c183620003a360008660006200047860201b60201c565b620003b485620004a860201b60201c565b17620004b860201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620003e5578060008190555050506200046d6000848385620004e360201b60201c565b505050565b50505050565b60008060e883901c905060e862000497868684620004e960201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b8280546200050090620005a2565b90600052602060002090601f01602090048101928262000524576000855562000570565b82601f106200053f57805160ff191683800117855562000570565b8280016001018555821562000570579182015b828111156200056f57825182559160200191906001019062000552565b5b5090506200057f919062000583565b5090565b5b808211156200059e57600081600090555060010162000584565b5090565b60006002820490506001821680620005bb57607f821691505b60208210811415620005d257620005d1620005d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612fbe80620006176000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b88d4fde11610097578063d5abeb0111610071578063d5abeb011461046e578063e985e9c51461048c578063f19e75d4146104bc578063f2fde38b146104d8576101a9565b8063b88d4fde14610406578063c87b56dd14610422578063d0ebdbe714610452576101a9565b80638da5cb5b116100d35780638da5cb5b1461039257806395d89b41146103b0578063a0bcfc7f146103ce578063a22cb465146103ea576101a9565b80636352211e1461032857806370a0823114610358578063715018a614610388576101a9565b806323b872dd116101665780634338cd5f116101405780634338cd5f146102b2578063438a67e7146102d0578063471a42941461030057806359c74f291461031e576101a9565b806323b872dd146102705780633ccfd60b1461028c57806342842e0e14610296576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c5780631249c58b1461024857806318160ddd14610252575b600080fd5b6101c860048036038101906101c391906123e8565b6104f4565b6040516101d591906127cc565b60405180910390f35b6101e6610586565b6040516101f391906127e7565b60405180910390f35b6102166004803603810190610211919061248b565b610618565b6040516102239190612765565b60405180910390f35b610246600480360381019061024191906123a8565b610694565b005b6102506107d5565b005b61025a610968565b60405161026791906128e9565b60405180910390f35b61028a60048036038101906102859190612292565b61097f565b005b610294610ca4565b005b6102b060048036038101906102ab9190612292565b610dff565b005b6102ba610e1f565b6040516102c791906128e9565b60405180910390f35b6102ea60048036038101906102e59190612225565b610e24565b6040516102f791906128e9565b60405180910390f35b610308610e3c565b60405161031591906127cc565b60405180910390f35b610326610e4f565b005b610342600480360381019061033d919061248b565b610f56565b60405161034f9190612765565b60405180910390f35b610372600480360381019061036d9190612225565b610f68565b60405161037f91906128e9565b60405180910390f35b610390611021565b005b61039a6110a9565b6040516103a79190612765565b60405180910390f35b6103b86110d3565b6040516103c591906127e7565b60405180910390f35b6103e860048036038101906103e39190612442565b611165565b005b61040460048036038101906103ff9190612368565b6111fb565b005b610420600480360381019061041b91906122e5565b611373565b005b61043c6004803603810190610437919061248b565b6113e6565b60405161044991906127e7565b60405180910390f35b61046c60048036038101906104679190612225565b611490565b005b6104766115af565b60405161048391906128e9565b60405180910390f35b6104a660048036038101906104a19190612252565b6115b4565b6040516104b391906127cc565b60405180910390f35b6104d660048036038101906104d1919061248b565b611648565b005b6104f260048036038101906104ed9190612225565b611730565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061057f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461059590612b5f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190612b5f565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b600061062382611828565b610659576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069f82610f56565b90508073ffffffffffffffffffffffffffffffffffffffff166106c0611887565b73ffffffffffffffffffffffffffffffffffffffff1614610723576106ec816106e7611887565b6115b4565b610722576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60009054906101000a900460ff16610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b906128c9565b60405180910390fd5b6000600c600061083261188f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490612829565b60405180910390fd5b603260016108b9610968565b6108c391906129ee565b1115610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90612849565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461095491906129ee565b92505081905550610966336001611897565b565b6000610972611a6b565b6001546000540303905090565b600061098a82611a74565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109fd84611b42565b91509150610a138187610a0e611887565b611b64565b610a5f57610a2886610a23611887565b6115b4565b610a5e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ac6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad38686866001611ba8565b8015610ade57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bac85610b88888887611bae565b7c020000000000000000000000000000000000000000000000000000000017611bd6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c34576000600185019050600060046000838152602001908152602001600020541415610c32576000548114610c31578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c9c8686866001611c01565b505050505050565b610cac61188f565b73ffffffffffffffffffffffffffffffffffffffff16610cca6110a9565b73ffffffffffffffffffffffffffffffffffffffff161480610d405750610cef61188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690612869565b60405180910390fd5b6000610d896110a9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612750565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611373565b505050565b600181565b600c6020528060005260406000206000915090505481565b600b60009054906101000a900460ff1681565b610e5761188f565b73ffffffffffffffffffffffffffffffffffffffff16610e756110a9565b73ffffffffffffffffffffffffffffffffffffffff161480610eeb5750610e9a61188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612869565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000610f6182611a74565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102961188f565b73ffffffffffffffffffffffffffffffffffffffff166110476110a9565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490612889565b60405180910390fd5b6110a76000611c07565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e290612b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461110e90612b5f565b801561115b5780601f106111305761010080835404028352916020019161115b565b820191906000526020600020905b81548152906001019060200180831161113e57829003601f168201915b5050505050905090565b61116d61188f565b73ffffffffffffffffffffffffffffffffffffffff1661118b6110a9565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890612889565b60405180910390fd5b80600990805190602001906111f7929190612039565b5050565b611203611887565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611268576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611275611887565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611322611887565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161136791906127cc565b60405180910390a35050565b61137e84848461097f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113e0576113a984848484611ccd565b6113df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113f182611828565b611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906128a9565b60405180910390fd5b600061143a611e2d565b9050600081511161145a5760405180602001604052806000815250611488565b8061146484611ebf565b600a6040516020016114789392919061271f565b6040516020818303038152906040525b915050919050565b61149861188f565b73ffffffffffffffffffffffffffffffffffffffff166114b66110a9565b73ffffffffffffffffffffffffffffffffffffffff16148061152c57506114db61188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290612869565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165061188f565b73ffffffffffffffffffffffffffffffffffffffff1661166e6110a9565b73ffffffffffffffffffffffffffffffffffffffff1614806116e4575061169361188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612869565b60405180910390fd5b61172d3382611897565b50565b61173861188f565b73ffffffffffffffffffffffffffffffffffffffff166117566110a9565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390612889565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390612809565b60405180910390fd5b61182581611c07565b50565b600081611833611a6b565b11158015611842575060005482105b8015611880575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611904576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561193f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61194c6000848385611ba8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119c3836119b46000866000611bae565b6119bd85612020565b17611bd6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106119e757806000819055505050611a666000848385611c01565b505050565b60006001905090565b60008082905080611a83611a6b565b11611b0b57600054811015611b0a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b08575b6000811415611afe576004600083600190039350838152602001908152602001600020549050611ad3565b8092505050611b3d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bc5868684612030565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cf3611887565b8786866040518563ffffffff1660e01b8152600401611d159493929190612780565b602060405180830381600087803b158015611d2f57600080fd5b505af1925050508015611d6057506040513d601f19601f82011682018060405250810190611d5d9190612415565b60015b611dda573d8060008114611d90576040519150601f19603f3d011682016040523d82523d6000602084013e611d95565b606091505b50600081511415611dd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e3c90612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6890612b5f565b8015611eb55780601f10611e8a57610100808354040283529160200191611eb5565b820191906000526020600020905b815481529060010190602001808311611e9857829003601f168201915b5050505050905090565b60606000821415611f07576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061201b565b600082905060005b60008214611f39578080611f2290612bc2565b915050600a82611f329190612a44565b9150611f0f565b60008167ffffffffffffffff811115611f5557611f54612cf8565b5b6040519080825280601f01601f191660200182016040528015611f875781602001600182028036833780820191505090505b5090505b6000851461201457600182611fa09190612a75565b9150600a85611faf9190612c0b565b6030611fbb91906129ee565b60f81b818381518110611fd157611fd0612cc9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561200d9190612a44565b9450611f8b565b8093505050505b919050565b60006001821460e11b9050919050565b60009392505050565b82805461204590612b5f565b90600052602060002090601f01602090048101928261206757600085556120ae565b82601f1061208057805160ff19168380011785556120ae565b828001600101855582156120ae579182015b828111156120ad578251825591602001919060010190612092565b5b5090506120bb91906120bf565b5090565b5b808211156120d85760008160009055506001016120c0565b5090565b60006120ef6120ea84612929565b612904565b90508281526020810184848401111561210b5761210a612d2c565b5b612116848285612b1d565b509392505050565b600061213161212c8461295a565b612904565b90508281526020810184848401111561214d5761214c612d2c565b5b612158848285612b1d565b509392505050565b60008135905061216f81612f2c565b92915050565b60008135905061218481612f43565b92915050565b60008135905061219981612f5a565b92915050565b6000815190506121ae81612f5a565b92915050565b600082601f8301126121c9576121c8612d27565b5b81356121d98482602086016120dc565b91505092915050565b600082601f8301126121f7576121f6612d27565b5b813561220784826020860161211e565b91505092915050565b60008135905061221f81612f71565b92915050565b60006020828403121561223b5761223a612d36565b5b600061224984828501612160565b91505092915050565b6000806040838503121561226957612268612d36565b5b600061227785828601612160565b925050602061228885828601612160565b9150509250929050565b6000806000606084860312156122ab576122aa612d36565b5b60006122b986828701612160565b93505060206122ca86828701612160565b92505060406122db86828701612210565b9150509250925092565b600080600080608085870312156122ff576122fe612d36565b5b600061230d87828801612160565b945050602061231e87828801612160565b935050604061232f87828801612210565b925050606085013567ffffffffffffffff8111156123505761234f612d31565b5b61235c878288016121b4565b91505092959194509250565b6000806040838503121561237f5761237e612d36565b5b600061238d85828601612160565b925050602061239e85828601612175565b9150509250929050565b600080604083850312156123bf576123be612d36565b5b60006123cd85828601612160565b92505060206123de85828601612210565b9150509250929050565b6000602082840312156123fe576123fd612d36565b5b600061240c8482850161218a565b91505092915050565b60006020828403121561242b5761242a612d36565b5b60006124398482850161219f565b91505092915050565b60006020828403121561245857612457612d36565b5b600082013567ffffffffffffffff81111561247657612475612d31565b5b612482848285016121e2565b91505092915050565b6000602082840312156124a1576124a0612d36565b5b60006124af84828501612210565b91505092915050565b6124c181612aa9565b82525050565b6124d081612abb565b82525050565b60006124e1826129a0565b6124eb81856129b6565b93506124fb818560208601612b2c565b61250481612d3b565b840191505092915050565b600061251a826129ab565b61252481856129d2565b9350612534818560208601612b2c565b61253d81612d3b565b840191505092915050565b6000612553826129ab565b61255d81856129e3565b935061256d818560208601612b2c565b80840191505092915050565b6000815461258681612b5f565b61259081866129e3565b945060018216600081146125ab57600181146125bc576125ef565b60ff198316865281860193506125ef565b6125c58561298b565b60005b838110156125e7578154818901526001820191506020810190506125c8565b838801955050505b50505092915050565b60006126056026836129d2565b915061261082612d4c565b604082019050919050565b60006126286030836129d2565b915061263382612d9b565b604082019050919050565b600061264b601c836129d2565b915061265682612dea565b602082019050919050565b600061266e6022836129d2565b915061267982612e13565b604082019050919050565b60006126916020836129d2565b915061269c82612e62565b602082019050919050565b60006126b4602f836129d2565b91506126bf82612e8b565b604082019050919050565b60006126d76000836129c7565b91506126e282612eda565b600082019050919050565b60006126fa6025836129d2565b915061270582612edd565b604082019050919050565b61271981612b13565b82525050565b600061272b8286612548565b91506127378285612548565b91506127438284612579565b9150819050949350505050565b600061275b826126ca565b9150819050919050565b600060208201905061277a60008301846124b8565b92915050565b600060808201905061279560008301876124b8565b6127a260208301866124b8565b6127af6040830185612710565b81810360608301526127c181846124d6565b905095945050505050565b60006020820190506127e160008301846124c7565b92915050565b60006020820190508181036000830152612801818461250f565b905092915050565b60006020820190508181036000830152612822816125f8565b9050919050565b600060208201905081810360008301526128428161261b565b9050919050565b600060208201905081810360008301526128628161263e565b9050919050565b6000602082019050818103600083015261288281612661565b9050919050565b600060208201905081810360008301526128a281612684565b9050919050565b600060208201905081810360008301526128c2816126a7565b9050919050565b600060208201905081810360008301526128e2816126ed565b9050919050565b60006020820190506128fe6000830184612710565b92915050565b600061290e61291f565b905061291a8282612b91565b919050565b6000604051905090565b600067ffffffffffffffff82111561294457612943612cf8565b5b61294d82612d3b565b9050602081019050919050565b600067ffffffffffffffff82111561297557612974612cf8565b5b61297e82612d3b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006129f982612b13565b9150612a0483612b13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a3957612a38612c3c565b5b828201905092915050565b6000612a4f82612b13565b9150612a5a83612b13565b925082612a6a57612a69612c6b565b5b828204905092915050565b6000612a8082612b13565b9150612a8b83612b13565b925082821015612a9e57612a9d612c3c565b5b828203905092915050565b6000612ab482612af3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b4a578082015181840152602081019050612b2f565b83811115612b59576000848401525b50505050565b60006002820490506001821680612b7757607f821691505b60208210811415612b8b57612b8a612c9a565b5b50919050565b612b9a82612d3b565b810181811067ffffffffffffffff82111715612bb957612bb8612cf8565b5b80604052505050565b6000612bcd82612b13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c0057612bff612c3c565b5b600182019050919050565b6000612c1682612b13565b9150612c2183612b13565b925082612c3157612c30612c6b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e206f6e65207460008201527f6f6b656e207065722077616c6c65742e00000000000000000000000000000000602082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465642e00000000600082015250565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f54686520636f6e747261637420686173206e6f742073746172746564206d696e60008201527f74696e672e000000000000000000000000000000000000000000000000000000602082015250565b612f3581612aa9565b8114612f4057600080fd5b50565b612f4c81612abb565b8114612f5757600080fd5b50565b612f6381612ac7565b8114612f6e57600080fd5b50565b612f7a81612b13565b8114612f8557600080fd5b5056fea2646970667358221220dbf1aa2a5965161acbf65ff3bf5a7d87ec778e4c0700f586cd4125a96fdb9d0c64736f6c63430008070033697066733a2f2f516d5178647a386141314d5a3548546e524c3939324b447a4e67447a4d516f55394c714d4d516632634c556163752f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063b88d4fde11610097578063d5abeb0111610071578063d5abeb011461046e578063e985e9c51461048c578063f19e75d4146104bc578063f2fde38b146104d8576101a9565b8063b88d4fde14610406578063c87b56dd14610422578063d0ebdbe714610452576101a9565b80638da5cb5b116100d35780638da5cb5b1461039257806395d89b41146103b0578063a0bcfc7f146103ce578063a22cb465146103ea576101a9565b80636352211e1461032857806370a0823114610358578063715018a614610388576101a9565b806323b872dd116101665780634338cd5f116101405780634338cd5f146102b2578063438a67e7146102d0578063471a42941461030057806359c74f291461031e576101a9565b806323b872dd146102705780633ccfd60b1461028c57806342842e0e14610296576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c5780631249c58b1461024857806318160ddd14610252575b600080fd5b6101c860048036038101906101c391906123e8565b6104f4565b6040516101d591906127cc565b60405180910390f35b6101e6610586565b6040516101f391906127e7565b60405180910390f35b6102166004803603810190610211919061248b565b610618565b6040516102239190612765565b60405180910390f35b610246600480360381019061024191906123a8565b610694565b005b6102506107d5565b005b61025a610968565b60405161026791906128e9565b60405180910390f35b61028a60048036038101906102859190612292565b61097f565b005b610294610ca4565b005b6102b060048036038101906102ab9190612292565b610dff565b005b6102ba610e1f565b6040516102c791906128e9565b60405180910390f35b6102ea60048036038101906102e59190612225565b610e24565b6040516102f791906128e9565b60405180910390f35b610308610e3c565b60405161031591906127cc565b60405180910390f35b610326610e4f565b005b610342600480360381019061033d919061248b565b610f56565b60405161034f9190612765565b60405180910390f35b610372600480360381019061036d9190612225565b610f68565b60405161037f91906128e9565b60405180910390f35b610390611021565b005b61039a6110a9565b6040516103a79190612765565b60405180910390f35b6103b86110d3565b6040516103c591906127e7565b60405180910390f35b6103e860048036038101906103e39190612442565b611165565b005b61040460048036038101906103ff9190612368565b6111fb565b005b610420600480360381019061041b91906122e5565b611373565b005b61043c6004803603810190610437919061248b565b6113e6565b60405161044991906127e7565b60405180910390f35b61046c60048036038101906104679190612225565b611490565b005b6104766115af565b60405161048391906128e9565b60405180910390f35b6104a660048036038101906104a19190612252565b6115b4565b6040516104b391906127cc565b60405180910390f35b6104d660048036038101906104d1919061248b565b611648565b005b6104f260048036038101906104ed9190612225565b611730565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061057f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461059590612b5f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c190612b5f565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b600061062382611828565b610659576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061069f82610f56565b90508073ffffffffffffffffffffffffffffffffffffffff166106c0611887565b73ffffffffffffffffffffffffffffffffffffffff1614610723576106ec816106e7611887565b6115b4565b610722576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b60009054906101000a900460ff16610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b906128c9565b60405180910390fd5b6000600c600061083261188f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490612829565b60405180910390fd5b603260016108b9610968565b6108c391906129ee565b1115610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90612849565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461095491906129ee565b92505081905550610966336001611897565b565b6000610972611a6b565b6001546000540303905090565b600061098a82611a74565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109fd84611b42565b91509150610a138187610a0e611887565b611b64565b610a5f57610a2886610a23611887565b6115b4565b610a5e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ac6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad38686866001611ba8565b8015610ade57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bac85610b88888887611bae565b7c020000000000000000000000000000000000000000000000000000000017611bd6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c34576000600185019050600060046000838152602001908152602001600020541415610c32576000548114610c31578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c9c8686866001611c01565b505050505050565b610cac61188f565b73ffffffffffffffffffffffffffffffffffffffff16610cca6110a9565b73ffffffffffffffffffffffffffffffffffffffff161480610d405750610cef61188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690612869565b60405180910390fd5b6000610d896110a9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612750565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611373565b505050565b600181565b600c6020528060005260406000206000915090505481565b600b60009054906101000a900460ff1681565b610e5761188f565b73ffffffffffffffffffffffffffffffffffffffff16610e756110a9565b73ffffffffffffffffffffffffffffffffffffffff161480610eeb5750610e9a61188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612869565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000610f6182611a74565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61102961188f565b73ffffffffffffffffffffffffffffffffffffffff166110476110a9565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490612889565b60405180910390fd5b6110a76000611c07565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110e290612b5f565b80601f016020809104026020016040519081016040528092919081815260200182805461110e90612b5f565b801561115b5780601f106111305761010080835404028352916020019161115b565b820191906000526020600020905b81548152906001019060200180831161113e57829003601f168201915b5050505050905090565b61116d61188f565b73ffffffffffffffffffffffffffffffffffffffff1661118b6110a9565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890612889565b60405180910390fd5b80600990805190602001906111f7929190612039565b5050565b611203611887565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611268576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611275611887565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611322611887565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161136791906127cc565b60405180910390a35050565b61137e84848461097f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113e0576113a984848484611ccd565b6113df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113f182611828565b611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906128a9565b60405180910390fd5b600061143a611e2d565b9050600081511161145a5760405180602001604052806000815250611488565b8061146484611ebf565b600a6040516020016114789392919061271f565b6040516020818303038152906040525b915050919050565b61149861188f565b73ffffffffffffffffffffffffffffffffffffffff166114b66110a9565b73ffffffffffffffffffffffffffffffffffffffff16148061152c57506114db61188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290612869565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b603281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165061188f565b73ffffffffffffffffffffffffffffffffffffffff1661166e6110a9565b73ffffffffffffffffffffffffffffffffffffffff1614806116e4575061169361188f565b73ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612869565b60405180910390fd5b61172d3382611897565b50565b61173861188f565b73ffffffffffffffffffffffffffffffffffffffff166117566110a9565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390612889565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390612809565b60405180910390fd5b61182581611c07565b50565b600081611833611a6b565b11158015611842575060005482105b8015611880575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611904576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561193f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61194c6000848385611ba8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119c3836119b46000866000611bae565b6119bd85612020565b17611bd6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106119e757806000819055505050611a666000848385611c01565b505050565b60006001905090565b60008082905080611a83611a6b565b11611b0b57600054811015611b0a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b08575b6000811415611afe576004600083600190039350838152602001908152602001600020549050611ad3565b8092505050611b3d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bc5868684612030565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cf3611887565b8786866040518563ffffffff1660e01b8152600401611d159493929190612780565b602060405180830381600087803b158015611d2f57600080fd5b505af1925050508015611d6057506040513d601f19601f82011682018060405250810190611d5d9190612415565b60015b611dda573d8060008114611d90576040519150601f19603f3d011682016040523d82523d6000602084013e611d95565b606091505b50600081511415611dd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e3c90612b5f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6890612b5f565b8015611eb55780601f10611e8a57610100808354040283529160200191611eb5565b820191906000526020600020905b815481529060010190602001808311611e9857829003601f168201915b5050505050905090565b60606000821415611f07576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061201b565b600082905060005b60008214611f39578080611f2290612bc2565b915050600a82611f329190612a44565b9150611f0f565b60008167ffffffffffffffff811115611f5557611f54612cf8565b5b6040519080825280601f01601f191660200182016040528015611f875781602001600182028036833780820191505090505b5090505b6000851461201457600182611fa09190612a75565b9150600a85611faf9190612c0b565b6030611fbb91906129ee565b60f81b818381518110611fd157611fd0612cc9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561200d9190612a44565b9450611f8b565b8093505050505b919050565b60006001821460e11b9050919050565b60009392505050565b82805461204590612b5f565b90600052602060002090601f01602090048101928261206757600085556120ae565b82601f1061208057805160ff19168380011785556120ae565b828001600101855582156120ae579182015b828111156120ad578251825591602001919060010190612092565b5b5090506120bb91906120bf565b5090565b5b808211156120d85760008160009055506001016120c0565b5090565b60006120ef6120ea84612929565b612904565b90508281526020810184848401111561210b5761210a612d2c565b5b612116848285612b1d565b509392505050565b600061213161212c8461295a565b612904565b90508281526020810184848401111561214d5761214c612d2c565b5b612158848285612b1d565b509392505050565b60008135905061216f81612f2c565b92915050565b60008135905061218481612f43565b92915050565b60008135905061219981612f5a565b92915050565b6000815190506121ae81612f5a565b92915050565b600082601f8301126121c9576121c8612d27565b5b81356121d98482602086016120dc565b91505092915050565b600082601f8301126121f7576121f6612d27565b5b813561220784826020860161211e565b91505092915050565b60008135905061221f81612f71565b92915050565b60006020828403121561223b5761223a612d36565b5b600061224984828501612160565b91505092915050565b6000806040838503121561226957612268612d36565b5b600061227785828601612160565b925050602061228885828601612160565b9150509250929050565b6000806000606084860312156122ab576122aa612d36565b5b60006122b986828701612160565b93505060206122ca86828701612160565b92505060406122db86828701612210565b9150509250925092565b600080600080608085870312156122ff576122fe612d36565b5b600061230d87828801612160565b945050602061231e87828801612160565b935050604061232f87828801612210565b925050606085013567ffffffffffffffff8111156123505761234f612d31565b5b61235c878288016121b4565b91505092959194509250565b6000806040838503121561237f5761237e612d36565b5b600061238d85828601612160565b925050602061239e85828601612175565b9150509250929050565b600080604083850312156123bf576123be612d36565b5b60006123cd85828601612160565b92505060206123de85828601612210565b9150509250929050565b6000602082840312156123fe576123fd612d36565b5b600061240c8482850161218a565b91505092915050565b60006020828403121561242b5761242a612d36565b5b60006124398482850161219f565b91505092915050565b60006020828403121561245857612457612d36565b5b600082013567ffffffffffffffff81111561247657612475612d31565b5b612482848285016121e2565b91505092915050565b6000602082840312156124a1576124a0612d36565b5b60006124af84828501612210565b91505092915050565b6124c181612aa9565b82525050565b6124d081612abb565b82525050565b60006124e1826129a0565b6124eb81856129b6565b93506124fb818560208601612b2c565b61250481612d3b565b840191505092915050565b600061251a826129ab565b61252481856129d2565b9350612534818560208601612b2c565b61253d81612d3b565b840191505092915050565b6000612553826129ab565b61255d81856129e3565b935061256d818560208601612b2c565b80840191505092915050565b6000815461258681612b5f565b61259081866129e3565b945060018216600081146125ab57600181146125bc576125ef565b60ff198316865281860193506125ef565b6125c58561298b565b60005b838110156125e7578154818901526001820191506020810190506125c8565b838801955050505b50505092915050565b60006126056026836129d2565b915061261082612d4c565b604082019050919050565b60006126286030836129d2565b915061263382612d9b565b604082019050919050565b600061264b601c836129d2565b915061265682612dea565b602082019050919050565b600061266e6022836129d2565b915061267982612e13565b604082019050919050565b60006126916020836129d2565b915061269c82612e62565b602082019050919050565b60006126b4602f836129d2565b91506126bf82612e8b565b604082019050919050565b60006126d76000836129c7565b91506126e282612eda565b600082019050919050565b60006126fa6025836129d2565b915061270582612edd565b604082019050919050565b61271981612b13565b82525050565b600061272b8286612548565b91506127378285612548565b91506127438284612579565b9150819050949350505050565b600061275b826126ca565b9150819050919050565b600060208201905061277a60008301846124b8565b92915050565b600060808201905061279560008301876124b8565b6127a260208301866124b8565b6127af6040830185612710565b81810360608301526127c181846124d6565b905095945050505050565b60006020820190506127e160008301846124c7565b92915050565b60006020820190508181036000830152612801818461250f565b905092915050565b60006020820190508181036000830152612822816125f8565b9050919050565b600060208201905081810360008301526128428161261b565b9050919050565b600060208201905081810360008301526128628161263e565b9050919050565b6000602082019050818103600083015261288281612661565b9050919050565b600060208201905081810360008301526128a281612684565b9050919050565b600060208201905081810360008301526128c2816126a7565b9050919050565b600060208201905081810360008301526128e2816126ed565b9050919050565b60006020820190506128fe6000830184612710565b92915050565b600061290e61291f565b905061291a8282612b91565b919050565b6000604051905090565b600067ffffffffffffffff82111561294457612943612cf8565b5b61294d82612d3b565b9050602081019050919050565b600067ffffffffffffffff82111561297557612974612cf8565b5b61297e82612d3b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006129f982612b13565b9150612a0483612b13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a3957612a38612c3c565b5b828201905092915050565b6000612a4f82612b13565b9150612a5a83612b13565b925082612a6a57612a69612c6b565b5b828204905092915050565b6000612a8082612b13565b9150612a8b83612b13565b925082821015612a9e57612a9d612c3c565b5b828203905092915050565b6000612ab482612af3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b4a578082015181840152602081019050612b2f565b83811115612b59576000848401525b50505050565b60006002820490506001821680612b7757607f821691505b60208210811415612b8b57612b8a612c9a565b5b50919050565b612b9a82612d3b565b810181811067ffffffffffffffff82111715612bb957612bb8612cf8565b5b80604052505050565b6000612bcd82612b13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c0057612bff612c3c565b5b600182019050919050565b6000612c1682612b13565b9150612c2183612b13565b925082612c3157612c30612c6b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e206f6e65207460008201527f6f6b656e207065722077616c6c65742e00000000000000000000000000000000602082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465642e00000000600082015250565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d616e616760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f54686520636f6e747261637420686173206e6f742073746172746564206d696e60008201527f74696e672e000000000000000000000000000000000000000000000000000000602082015250565b612f3581612aa9565b8114612f4057600080fd5b50565b612f4c81612abb565b8114612f5757600080fd5b50565b612f6381612ac7565b8114612f6e57600080fd5b50565b612f7a81612b13565b8114612f8557600080fd5b5056fea2646970667358221220dbf1aa2a5965161acbf65ff3bf5a7d87ec778e4c0700f586cd4125a96fdb9d0c64736f6c63430008070033
Deployed Bytecode Sourcemap
82073:2360:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51854:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57501:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59447:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58995:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83096:129;;;:::i;:::-;;50908:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68712:2800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83544:146;;;:::i;:::-;;60337:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82265:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82372:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82312:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83342:94;;;:::i;:::-;;57290:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52533:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36445:103;;;:::i;:::-;;35794:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57670:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83696:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59723:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60593:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83902:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83442:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82222:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60102:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83231:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36703:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51854:615;51939:4;52254:10;52239:25;;:11;:25;;;;:102;;;;52331:10;52316:25;;:11;:25;;;;52239:102;:179;;;;52408:10;52393:25;;:11;:25;;;;52239:179;52219:199;;51854:615;;;:::o;57501:100::-;57555:13;57588:5;57581:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57501:100;:::o;59447:204::-;59515:7;59540:16;59548:7;59540;:16::i;:::-;59535:64;;59565:34;;;;;;;;;;;;;;59535:64;59619:15;:24;59635:7;59619:24;;;;;;;;;;;;;;;;;;;;;59612:31;;59447:204;;;:::o;58995:386::-;59068:13;59084:16;59092:7;59084;:16::i;:::-;59068:32;;59140:5;59117:28;;:19;:17;:19::i;:::-;:28;;;59113:175;;59165:44;59182:5;59189:19;:17;:19::i;:::-;59165:16;:44::i;:::-;59160:128;;59237:35;;;;;;;;;;;;;;59160:128;59113:175;59327:2;59300:15;:24;59316:7;59300:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;59365:7;59361:2;59345:28;;59354:5;59345:28;;;;;;;;;;;;59057:324;58995:386;;:::o;83096:129::-;82834:12;;;;;;;;;;;82826:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;82933:1;82903:12;:26;82916:12;:10;:12::i;:::-;82903:26;;;;;;;;;;;;;;;;:31;82895:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;82258:2;82304:1;83002:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;;82994:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;82304:1:::1;83141:12;:24;83154:10;83141:24;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;83188:31;83194:10;82304:1;83188:5;:31::i;:::-;83096:129::o:0;50908:315::-;50961:7;51189:15;:13;:15::i;:::-;51174:12;;51158:13;;:28;:46;51151:53;;50908:315;:::o;68712:2800::-;68846:27;68876;68895:7;68876:18;:27::i;:::-;68846:57;;68961:4;68920:45;;68936:19;68920:45;;;68916:86;;68974:28;;;;;;;;;;;;;;68916:86;69016:27;69045:23;69072:28;69092:7;69072:19;:28::i;:::-;69015:85;;;;69200:62;69219:15;69236:4;69242:19;:17;:19::i;:::-;69200:18;:62::i;:::-;69195:174;;69282:43;69299:4;69305:19;:17;:19::i;:::-;69282:16;:43::i;:::-;69277:92;;69334:35;;;;;;;;;;;;;;69277:92;69195:174;69400:1;69386:16;;:2;:16;;;69382:52;;;69411:23;;;;;;;;;;;;;;69382:52;69447:43;69469:4;69475:2;69479:7;69488:1;69447:21;:43::i;:::-;69583:15;69580:160;;;69723:1;69702:19;69695:30;69580:160;70118:18;:24;70137:4;70118:24;;;;;;;;;;;;;;;;70116:26;;;;;;;;;;;;70187:18;:22;70206:2;70187:22;;;;;;;;;;;;;;;;70185:24;;;;;;;;;;;70509:145;70546:2;70594:45;70609:4;70615:2;70619:19;70594:14;:45::i;:::-;48136:8;70567:72;70509:18;:145::i;:::-;70480:17;:26;70498:7;70480:26;;;;;;;;;;;:174;;;;70824:1;48136:8;70774:19;:46;:51;70770:626;;;70846:19;70878:1;70868:7;:11;70846:33;;71035:1;71001:17;:30;71019:11;71001:30;;;;;;;;;;;;:35;70997:384;;;71139:13;;71124:11;:28;71120:242;;71319:19;71286:17;:30;71304:11;71286:30;;;;;;;;;;;:52;;;;71120:242;70997:384;70827:569;70770:626;71443:7;71439:2;71424:27;;71433:4;71424:27;;;;;;;;;;;;71462:42;71483:4;71489:2;71493:7;71502:1;71462:20;:42::i;:::-;68835:2677;;;68712:2800;;;:::o;83544:146::-;82694:12;:10;:12::i;:::-;82683:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;82722:12;:10;:12::i;:::-;82710:24;;:8;;;;;;;;;;;:24;;;82683:51;82675:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;83598:7:::1;83619;:5;:7::i;:::-;83611:21;;83640;83611:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83597:69;;;83681:2;83673:11;;;::::0;::::1;;83590:100;83544:146::o:0;60337:185::-;60475:39;60492:4;60498:2;60502:7;60475:39;;;;;;;;;;;;:16;:39::i;:::-;60337:185;;;:::o;82265:40::-;82304:1;82265:40;:::o;82372:47::-;;;;;;;;;;;;;;;;;:::o;82312:24::-;;;;;;;;;;;;;:::o;83342:94::-;82694:12;:10;:12::i;:::-;82683:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;82722:12;:10;:12::i;:::-;82710:24;;:8;;;;;;;;;;;:24;;;82683:51;82675:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;83418:12:::1;;;;;;;;;;;83417:13;83402:12;;:28;;;;;;;;;;;;;;;;;;83342:94::o:0;57290:144::-;57354:7;57397:27;57416:7;57397:18;:27::i;:::-;57374:52;;57290:144;;;:::o;52533:224::-;52597:7;52638:1;52621:19;;:5;:19;;;52617:60;;;52649:28;;;;;;;;;;;;;;52617:60;47088:13;52695:18;:25;52714:5;52695:25;;;;;;;;;;;;;;;;:54;52688:61;;52533:224;;;:::o;36445:103::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36510:30:::1;36537:1;36510:18;:30::i;:::-;36445:103::o:0;35794:87::-;35840:7;35867:6;;;;;;;;;;;35860:13;;35794:87;:::o;57670:104::-;57726:13;57759:7;57752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57670:104;:::o;83696:92::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83774:8:::1;83764:7;:18;;;;;;;;;;;;:::i;:::-;;83696:92:::0;:::o;59723:308::-;59834:19;:17;:19::i;:::-;59822:31;;:8;:31;;;59818:61;;;59862:17;;;;;;;;;;;;;;59818:61;59944:8;59892:18;:39;59911:19;:17;:19::i;:::-;59892:39;;;;;;;;;;;;;;;:49;59932:8;59892:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;60004:8;59968:55;;59983:19;:17;:19::i;:::-;59968:55;;;60014:8;59968:55;;;;;;:::i;:::-;;;;;;;;59723:308;;:::o;60593:399::-;60760:31;60773:4;60779:2;60783:7;60760:12;:31::i;:::-;60824:1;60806:2;:14;;;:19;60802:183;;60845:56;60876:4;60882:2;60886:7;60895:5;60845:30;:56::i;:::-;60840:145;;60929:40;;;;;;;;;;;;;;60840:145;60802:183;60593:399;;;;:::o;83902:419::-;84001:13;84042:17;84050:8;84042:7;:17::i;:::-;84026:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;84133:28;84164:10;:8;:10::i;:::-;84133:41;;84219:1;84194:14;84188:28;:32;:127;;;;;;;;;;;;;;;;;84256:14;84272:19;:8;:17;:19::i;:::-;84293:6;84239:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84188:127;84181:134;;;83902:419;;;:::o;83442:96::-;82694:12;:10;:12::i;:::-;82683:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;82722:12;:10;:12::i;:::-;82710:24;;:8;;;;;;;;;;;:24;;;82683:51;82675:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;83525:7:::1;83514:8;;:18;;;;;;;;;;;;;;;;;;83442:96:::0;:::o;82222:38::-;82258:2;82222:38;:::o;60102:164::-;60199:4;60223:18;:25;60242:5;60223:25;;;;;;;;;;;;;;;:35;60249:8;60223:35;;;;;;;;;;;;;;;;;;;;;;;;;60216:42;;60102:164;;;;:::o;83231:105::-;82694:12;:10;:12::i;:::-;82683:23;;:7;:5;:7::i;:::-;:23;;;:51;;;;82722:12;:10;:12::i;:::-;82710:24;;:8;;;;;;;;;;;:24;;;82683:51;82675:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;83302:28:::1;83308:10;83320:9;83302:5;:28::i;:::-;83231:105:::0;:::o;36703:201::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36812:1:::1;36792:22;;:8;:22;;;;36784:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36868:28;36887:8;36868:18;:28::i;:::-;36703:201:::0;:::o;61247:273::-;61304:4;61360:7;61341:15;:13;:15::i;:::-;:26;;:66;;;;;61394:13;;61384:7;:23;61341:66;:152;;;;;61492:1;47858:8;61445:17;:26;61463:7;61445:26;;;;;;;;;;;;:43;:48;61341:152;61321:172;;61247:273;;;:::o;79808:105::-;79868:7;79895:10;79888:17;;79808:105;:::o;19996:98::-;20049:7;20076:10;20069:17;;19996:98;:::o;63078:1529::-;63143:20;63166:13;;63143:36;;63208:1;63194:16;;:2;:16;;;63190:48;;;63219:19;;;;;;;;;;;;;;63190:48;63265:1;63253:8;:13;63249:44;;;63275:18;;;;;;;;;;;;;;63249:44;63306:61;63336:1;63340:2;63344:12;63358:8;63306:21;:61::i;:::-;63849:1;47225:2;63820:1;:25;;63819:31;63807:8;:44;63781:18;:22;63800:2;63781:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;64128:139;64165:2;64219:33;64242:1;64246:2;64250:1;64219:14;:33::i;:::-;64186:30;64207:8;64186:20;:30::i;:::-;:66;64128:18;:139::i;:::-;64094:17;:31;64112:12;64094:31;;;;;;;;;;;:173;;;;64284:15;64302:12;64284:30;;64329:11;64358:8;64343:12;:23;64329:37;;64381:101;64433:9;;;;;;64429:2;64408:35;;64425:1;64408:35;;;;;;;;;;;;64477:3;64467:7;:13;64381:101;;64514:3;64498:13;:19;;;;63555:974;;64539:60;64568:1;64572:2;64576:12;64590:8;64539:20;:60::i;:::-;63132:1475;63078:1529;;:::o;84327:103::-;84392:15;84423:1;84416:8;;84327:103;:::o;54207:1129::-;54274:7;54294:12;54309:7;54294:22;;54377:4;54358:15;:13;:15::i;:::-;:23;54354:915;;54411:13;;54404:4;:20;54400:869;;;54449:14;54466:17;:23;54484:4;54466:23;;;;;;;;;;;;54449:40;;54582:1;47858:8;54555:6;:23;:28;54551:699;;;55074:113;55091:1;55081:6;:11;55074:113;;;55134:17;:25;55152:6;;;;;;;55134:25;;;;;;;;;;;;55125:34;;55074:113;;;55220:6;55213:13;;;;;;54551:699;54426:843;54400:869;54354:915;55297:31;;;;;;;;;;;;;;54207:1129;;;;:::o;67048:652::-;67143:27;67172:23;67213:53;67269:15;67213:71;;67455:7;67449:4;67442:21;67490:22;67484:4;67477:36;67566:4;67560;67550:21;67527:44;;67662:19;67656:26;67637:45;;67393:300;67048:652;;;:::o;67813:645::-;67955:11;68117:15;68111:4;68107:26;68099:34;;68276:15;68265:9;68261:31;68248:44;;68423:15;68412:9;68409:30;68402:4;68391:9;68388:19;68385:55;68375:65;;67813:645;;;;;:::o;78641:159::-;;;;;:::o;76953:309::-;77088:7;77108:16;48259:3;77134:19;:40;;77108:67;;48259:3;77201:31;77212:4;77218:2;77222:9;77201:10;:31::i;:::-;77193:40;;:61;;77186:68;;;76953:309;;;;;:::o;56781:447::-;56861:14;57029:15;57022:5;57018:27;57009:36;;57203:5;57189:11;57165:22;57161:40;57158:51;57151:5;57148:62;57138:72;;56781:447;;;;:::o;79459:158::-;;;;;:::o;37064:191::-;37138:16;37157:6;;;;;;;;;;;37138:25;;37183:8;37174:6;;:17;;;;;;;;;;;;;;;;;;37238:8;37207:40;;37228:8;37207:40;;;;;;;;;;;;37127:128;37064:191;:::o;75463:716::-;75626:4;75672:2;75647:45;;;75693:19;:17;:19::i;:::-;75714:4;75720:7;75729:5;75647:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;75643:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75947:1;75930:6;:13;:18;75926:235;;;75976:40;;;;;;;;;;;;;;75926:235;76119:6;76113:13;76104:6;76100:2;76096:15;76089:38;75643:529;75816:54;;;75806:64;;;:6;:64;;;;75799:71;;;75463:716;;;;;;:::o;83794:102::-;83854:13;83883:7;83876:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83794:102;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;58611:322::-;58681:14;58912:1;58902:8;58899:15;58874:23;58870:45;58860:55;;58611:322;;;:::o;77838:147::-;77975:6;77838:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:398::-;11782:3;11803:83;11884:1;11879:3;11803:83;:::i;:::-;11796:90;;11895:93;11984:3;11895:93;:::i;:::-;12013:1;12008:3;12004:11;11997:18;;11623:398;;;:::o;12027:366::-;12169:3;12190:67;12254:2;12249:3;12190:67;:::i;:::-;12183:74;;12266:93;12355:3;12266:93;:::i;:::-;12384:2;12379:3;12375:12;12368:19;;12027:366;;;:::o;12399:118::-;12486:24;12504:5;12486:24;:::i;:::-;12481:3;12474:37;12399:118;;:::o;12523:589::-;12748:3;12770:95;12861:3;12852:6;12770:95;:::i;:::-;12763:102;;12882:95;12973:3;12964:6;12882:95;:::i;:::-;12875:102;;12994:92;13082:3;13073:6;12994:92;:::i;:::-;12987:99;;13103:3;13096:10;;12523:589;;;;;;:::o;13118:379::-;13302:3;13324:147;13467:3;13324:147;:::i;:::-;13317:154;;13488:3;13481:10;;13118:379;;;:::o;13503:222::-;13596:4;13634:2;13623:9;13619:18;13611:26;;13647:71;13715:1;13704:9;13700:17;13691:6;13647:71;:::i;:::-;13503:222;;;;:::o;13731:640::-;13926:4;13964:3;13953:9;13949:19;13941:27;;13978:71;14046:1;14035:9;14031:17;14022:6;13978:71;:::i;:::-;14059:72;14127:2;14116:9;14112:18;14103:6;14059:72;:::i;:::-;14141;14209:2;14198:9;14194:18;14185:6;14141:72;:::i;:::-;14260:9;14254:4;14250:20;14245:2;14234:9;14230:18;14223:48;14288:76;14359:4;14350:6;14288:76;:::i;:::-;14280:84;;13731:640;;;;;;;:::o;14377:210::-;14464:4;14502:2;14491:9;14487:18;14479:26;;14515:65;14577:1;14566:9;14562:17;14553:6;14515:65;:::i;:::-;14377:210;;;;:::o;14593:313::-;14706:4;14744:2;14733:9;14729:18;14721:26;;14793:9;14787:4;14783:20;14779:1;14768:9;14764:17;14757:47;14821:78;14894:4;14885:6;14821:78;:::i;:::-;14813:86;;14593:313;;;;:::o;14912:419::-;15078:4;15116:2;15105:9;15101:18;15093:26;;15165:9;15159:4;15155:20;15151:1;15140:9;15136:17;15129:47;15193:131;15319:4;15193:131;:::i;:::-;15185:139;;14912:419;;;:::o;15337:::-;15503:4;15541:2;15530:9;15526:18;15518:26;;15590:9;15584:4;15580:20;15576:1;15565:9;15561:17;15554:47;15618:131;15744:4;15618:131;:::i;:::-;15610:139;;15337:419;;;:::o;15762:::-;15928:4;15966:2;15955:9;15951:18;15943:26;;16015:9;16009:4;16005:20;16001:1;15990:9;15986:17;15979:47;16043:131;16169:4;16043:131;:::i;:::-;16035:139;;15762:419;;;:::o;16187:::-;16353:4;16391:2;16380:9;16376:18;16368:26;;16440:9;16434:4;16430:20;16426:1;16415:9;16411:17;16404:47;16468:131;16594:4;16468:131;:::i;:::-;16460:139;;16187:419;;;:::o;16612:::-;16778:4;16816:2;16805:9;16801:18;16793:26;;16865:9;16859:4;16855:20;16851:1;16840:9;16836:17;16829:47;16893:131;17019:4;16893:131;:::i;:::-;16885:139;;16612:419;;;:::o;17037:::-;17203:4;17241:2;17230:9;17226:18;17218:26;;17290:9;17284:4;17280:20;17276:1;17265:9;17261:17;17254:47;17318:131;17444:4;17318:131;:::i;:::-;17310:139;;17037:419;;;:::o;17462:::-;17628:4;17666:2;17655:9;17651:18;17643:26;;17715:9;17709:4;17705:20;17701:1;17690:9;17686:17;17679:47;17743:131;17869:4;17743:131;:::i;:::-;17735:139;;17462:419;;;:::o;17887:222::-;17980:4;18018:2;18007:9;18003:18;17995:26;;18031:71;18099:1;18088:9;18084:17;18075:6;18031:71;:::i;:::-;17887:222;;;;:::o;18115:129::-;18149:6;18176:20;;:::i;:::-;18166:30;;18205:33;18233:4;18225:6;18205:33;:::i;:::-;18115:129;;;:::o;18250:75::-;18283:6;18316:2;18310:9;18300:19;;18250:75;:::o;18331:307::-;18392:4;18482:18;18474:6;18471:30;18468:56;;;18504:18;;:::i;:::-;18468:56;18542:29;18564:6;18542:29;:::i;:::-;18534:37;;18626:4;18620;18616:15;18608:23;;18331:307;;;:::o;18644:308::-;18706:4;18796:18;18788:6;18785:30;18782:56;;;18818:18;;:::i;:::-;18782:56;18856:29;18878:6;18856:29;:::i;:::-;18848:37;;18940:4;18934;18930:15;18922:23;;18644:308;;;:::o;18958:141::-;19007:4;19030:3;19022:11;;19053:3;19050:1;19043:14;19087:4;19084:1;19074:18;19066:26;;18958:141;;;:::o;19105:98::-;19156:6;19190:5;19184:12;19174:22;;19105:98;;;:::o;19209:99::-;19261:6;19295:5;19289:12;19279:22;;19209:99;;;:::o;19314:168::-;19397:11;19431:6;19426:3;19419:19;19471:4;19466:3;19462:14;19447:29;;19314:168;;;;:::o;19488:147::-;19589:11;19626:3;19611:18;;19488:147;;;;:::o;19641:169::-;19725:11;19759:6;19754:3;19747:19;19799:4;19794:3;19790:14;19775:29;;19641:169;;;;:::o;19816:148::-;19918:11;19955:3;19940:18;;19816:148;;;;:::o;19970:305::-;20010:3;20029:20;20047:1;20029:20;:::i;:::-;20024:25;;20063:20;20081:1;20063:20;:::i;:::-;20058:25;;20217:1;20149:66;20145:74;20142:1;20139:81;20136:107;;;20223:18;;:::i;:::-;20136:107;20267:1;20264;20260:9;20253:16;;19970:305;;;;:::o;20281:185::-;20321:1;20338:20;20356:1;20338:20;:::i;:::-;20333:25;;20372:20;20390:1;20372:20;:::i;:::-;20367:25;;20411:1;20401:35;;20416:18;;:::i;:::-;20401:35;20458:1;20455;20451:9;20446:14;;20281:185;;;;:::o;20472:191::-;20512:4;20532:20;20550:1;20532:20;:::i;:::-;20527:25;;20566:20;20584:1;20566:20;:::i;:::-;20561:25;;20605:1;20602;20599:8;20596:34;;;20610:18;;:::i;:::-;20596:34;20655:1;20652;20648:9;20640:17;;20472:191;;;;:::o;20669:96::-;20706:7;20735:24;20753:5;20735:24;:::i;:::-;20724:35;;20669:96;;;:::o;20771:90::-;20805:7;20848:5;20841:13;20834:21;20823:32;;20771:90;;;:::o;20867:149::-;20903:7;20943:66;20936:5;20932:78;20921:89;;20867:149;;;:::o;21022:126::-;21059:7;21099:42;21092:5;21088:54;21077:65;;21022:126;;;:::o;21154:77::-;21191:7;21220:5;21209:16;;21154:77;;;:::o;21237:154::-;21321:6;21316:3;21311;21298:30;21383:1;21374:6;21369:3;21365:16;21358:27;21237:154;;;:::o;21397:307::-;21465:1;21475:113;21489:6;21486:1;21483:13;21475:113;;;21574:1;21569:3;21565:11;21559:18;21555:1;21550:3;21546:11;21539:39;21511:2;21508:1;21504:10;21499:15;;21475:113;;;21606:6;21603:1;21600:13;21597:101;;;21686:1;21677:6;21672:3;21668:16;21661:27;21597:101;21446:258;21397:307;;;:::o;21710:320::-;21754:6;21791:1;21785:4;21781:12;21771:22;;21838:1;21832:4;21828:12;21859:18;21849:81;;21915:4;21907:6;21903:17;21893:27;;21849:81;21977:2;21969:6;21966:14;21946:18;21943:38;21940:84;;;21996:18;;:::i;:::-;21940:84;21761:269;21710:320;;;:::o;22036:281::-;22119:27;22141:4;22119:27;:::i;:::-;22111:6;22107:40;22249:6;22237:10;22234:22;22213:18;22201:10;22198:34;22195:62;22192:88;;;22260:18;;:::i;:::-;22192:88;22300:10;22296:2;22289:22;22079:238;22036:281;;:::o;22323:233::-;22362:3;22385:24;22403:5;22385:24;:::i;:::-;22376:33;;22431:66;22424:5;22421:77;22418:103;;;22501:18;;:::i;:::-;22418:103;22548:1;22541:5;22537:13;22530:20;;22323:233;;;:::o;22562:176::-;22594:1;22611:20;22629:1;22611:20;:::i;:::-;22606:25;;22645:20;22663:1;22645:20;:::i;:::-;22640:25;;22684:1;22674:35;;22689:18;;:::i;:::-;22674:35;22730:1;22727;22723:9;22718:14;;22562:176;;;;:::o;22744:180::-;22792:77;22789:1;22782:88;22889:4;22886:1;22879:15;22913:4;22910:1;22903:15;22930:180;22978:77;22975:1;22968:88;23075:4;23072:1;23065:15;23099:4;23096:1;23089:15;23116:180;23164:77;23161:1;23154:88;23261:4;23258:1;23251:15;23285:4;23282:1;23275:15;23302:180;23350:77;23347:1;23340:88;23447:4;23444:1;23437:15;23471:4;23468:1;23461:15;23488:180;23536:77;23533:1;23526:88;23633:4;23630:1;23623:15;23657:4;23654:1;23647:15;23674:117;23783:1;23780;23773:12;23797:117;23906:1;23903;23896:12;23920:117;24029:1;24026;24019:12;24043:117;24152:1;24149;24142:12;24166:102;24207:6;24258:2;24254:7;24249:2;24242:5;24238:14;24234:28;24224:38;;24166:102;;;:::o;24274:225::-;24414:34;24410:1;24402:6;24398:14;24391:58;24483:8;24478:2;24470:6;24466:15;24459:33;24274:225;:::o;24505:235::-;24645:34;24641:1;24633:6;24629:14;24622:58;24714:18;24709:2;24701:6;24697:15;24690:43;24505:235;:::o;24746:178::-;24886:30;24882:1;24874:6;24870:14;24863:54;24746:178;:::o;24930:221::-;25070:34;25066:1;25058:6;25054:14;25047:58;25139:4;25134:2;25126:6;25122:15;25115:29;24930:221;:::o;25157:182::-;25297:34;25293:1;25285:6;25281:14;25274:58;25157:182;:::o;25345:234::-;25485:34;25481:1;25473:6;25469:14;25462:58;25554:17;25549:2;25541:6;25537:15;25530:42;25345:234;:::o;25585:114::-;;:::o;25705:224::-;25845:34;25841:1;25833:6;25829:14;25822:58;25914:7;25909:2;25901:6;25897:15;25890:32;25705:224;:::o;25935:122::-;26008:24;26026:5;26008:24;:::i;:::-;26001:5;25998:35;25988:63;;26047:1;26044;26037:12;25988:63;25935:122;:::o;26063:116::-;26133:21;26148:5;26133:21;:::i;:::-;26126:5;26123:32;26113:60;;26169:1;26166;26159:12;26113:60;26063:116;:::o;26185:120::-;26257:23;26274:5;26257:23;:::i;:::-;26250:5;26247:34;26237:62;;26295:1;26292;26285:12;26237:62;26185:120;:::o;26311:122::-;26384:24;26402:5;26384:24;:::i;:::-;26377:5;26374:35;26364:63;;26423:1;26420;26413:12;26364:63;26311:122;:::o
Swarm Source
ipfs://dbf1aa2a5965161acbf65ff3bf5a7d87ec778e4c0700f586cd4125a96fdb9d0c
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.