ERC-721
Overview
Max Total Supply
1,629 NFTV
Holders
337
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 NFTVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFTVz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // ,----, // ,--. ,/ .`| // ,--.'| ,---,. ,` .' : // ,--,: : | ,' .' | ; ; / ,---. // ,`--.'`| ' :,---.' |.'___,/ ,' /__./| ,----, // | : : | || | .'| : | ,---.; ; | .' .`| // : | \ | :: : : ; |.'; ;/___/ \ | | .' .' .' // | : ' '; |: | |-,`----' | |\ ; \ ' |,---, ' ./ // ' ' ;. ;| : ;/| ' : ; \ \ \: |; | .' / // | | | \ || | .' | | ' ; \ ' .`---' / ;--, // ' : | ; .'' : ' ' : | \ \ ' / / / .`| // | | '`--' | | | ; |.' \ ` ;./__; .' // ' : | | : \ '---' : \ |; | .' // ; |.' | | ,' '---" `---' // '---' `----' // ========================== NFTVz ========================== /** * @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; } } 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); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } 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); } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex = 1; // The number of tokens burned. uint256 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return (_currentIndex - _burnCounter) - 1; } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} } library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n � 2 + 1, and for v in (302): v ? {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } contract NFTVz is Ownable, ERC721A { uint256 public adoptionLimit = 5; using Strings for uint256; mapping(uint256 => string) private _tokenURIs; bool public publicSaleOpen = false; string public baseURI = "ipfs://bafybeighd5vlaz4v5lnvtkrehjqxvj2vmpq7lh2aifb6yq2a3ellazothm/"; string public _extension = ".json"; uint256 public price = 0 ether; uint256 public maxSupply = 4444; constructor() ERC721A("NFTVz", "NFTV"){} function mintNFT(uint256 _quantity) public payable { require(_quantity > 0 && _quantity <= adoptionLimit, "Wallet full, check max per wallet!"); require(totalSupply() + _quantity <= maxSupply, "Reached max supply!"); require(msg.value == price * _quantity, "Needs to send more ETH!"); require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceeded max minting amount!"); require(publicSaleOpen, "Public sale not yet started!"); _safeMint(msg.sender, _quantity); } function sendGifts(address[] memory _wallets) external onlyOwner{ require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached."); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], 1); } function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{ require(totalSupply() + _num <= maxSupply, "Max Supply Reached."); _safeMint(_wallet, _num); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI set of nonexistent token" ); return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension)); } function updateBaseURI(string memory _newBaseURI) onlyOwner public { baseURI = _newBaseURI; } function updateExtension(string memory _temp) onlyOwner public { _extension = _temp; } function getBaseURI() external view returns(string memory) { return baseURI; } function setPrice(uint256 _price) public onlyOwner() { price = _price; } function setAdoptionlimits(uint256 _adoptionLimit) public onlyOwner() { adoptionLimit = _adoptionLimit; } function setmaxSupply(uint256 _supply) public onlyOwner() { maxSupply = _supply; } function toggleSale() public onlyOwner() { publicSaleOpen = !publicSaleOpen; } function getBalance() public view returns(uint) { return address(this).balance; } function getMintedCount(address owner) public view returns (uint256) { return _numberMinted(owner); } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(owner()).transfer(_balance); //Owner } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } receive() external payable {} }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"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":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_adoptionLimit","type":"uint256"}],"name":"setAdoptionlimits","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001805560056009556000600b60006101000a81548160ff0219169083151502179055506040518060800160405280604381526020016200421860439139600c90805190602001906200005992919062000253565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000a792919062000253565b506000600e5561115c600f55348015620000c057600080fd5b506040518060400160405280600581526020017f4e4654567a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e465456000000000000000000000000000000000000000000000000000000008152506200014d620001416200018760201b60201c565b6200018f60201b60201c565b81600390805190602001906200016592919062000253565b5080600490805190602001906200017e92919062000253565b50505062000368565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002619062000303565b90600052602060002090601f016020900481019282620002855760008555620002d1565b82601f10620002a057805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d0578251825591602001919060010190620002b3565b5b509050620002e09190620002e4565b5090565b5b80821115620002ff576000816000905550600101620002e5565b5090565b600060028204905060018216806200031c57607f821691505b6020821081141562000333576200033262000339565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ea080620003786000396000f3fe60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e917a28c146107d0578063e985e9c5146107fb578063f2fde38b14610838578063f9e237991461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637e6182d91461053257806381a89b591461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a657806370a082311161017557806370a0823114610473578063714c5398146104b0578063715018a6146104db5780637c8255db146104f25780637d8966e41461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780636352211e1461040b5780636c0360eb1461044857610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061315b565b61088c565b60405161025e91906135bc565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906135d7565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906131fe565b610a00565b6040516102c69190613555565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906130d2565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a9190613734565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b6040516103459190613734565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906131fe565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190612fbc565b610c26565b005b3480156103ac57600080fd5b506103b5610c36565b6040516103c291906135d7565b60405180910390f35b3480156103d757600080fd5b506103e0610cc4565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612fbc565b610d96565b005b34801561041757600080fd5b50610432600480360381019061042d91906131fe565b610db6565b60405161043f9190613555565b60405180910390f35b34801561045457600080fd5b5061045d610dcc565b60405161046a91906135d7565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612f4f565b610e5a565b6040516104a79190613734565b60405180910390f35b3480156104bc57600080fd5b506104c5610f2a565b6040516104d291906135d7565b60405180910390f35b3480156104e757600080fd5b506104f0610fbc565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613112565b611044565b005b34801561052757600080fd5b50610530611160565b005b34801561053e57600080fd5b50610559600480360381019061055491906131b5565b611208565b005b34801561056757600080fd5b50610582600480360381019061057d91906131fe565b61129e565b005b34801561059057600080fd5b50610599611324565b6040516105a69190613555565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906131fe565b61134d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906131fe565b6113d3565b60405161060c9190613719565b60405180910390f35b61062f600480360381019061062a91906131fe565b6113eb565b005b34801561063d57600080fd5b50610658600480360381019061065391906131b5565b611596565b005b34801561066657600080fd5b5061066f61162c565b60405161067c91906135d7565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612f4f565b6116be565b6040516106b99190613734565b60405180910390f35b3480156106ce57600080fd5b506106d76116d0565b6040516106e49190613734565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613092565b6116d6565b005b34801561072257600080fd5b5061073d6004803603810190610738919061300f565b61184e565b005b34801561074b57600080fd5b50610766600480360381019061076191906131fe565b6118a1565b60405161077391906135d7565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906130d2565b611920565b005b3480156107b157600080fd5b506107ba611a01565b6040516107c79190613734565b60405180910390f35b3480156107dc57600080fd5b506107e5611a07565b6040516107f29190613734565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190612f7c565b611a0d565b60405161082f91906135bc565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190612f4f565b611aa1565b005b34801561086d57600080fd5b50610876611b99565b60405161088391906135bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bac565b5b9050919050565b60606003805461097d90613a39565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613a39565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c16565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610db6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c51565b611a0d565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c59565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c51565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906136b9565b60405180910390fd5b80600f8190555050565b610c31838383611d0b565b505050565b600d8054610c4390613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6f90613a39565b8015610cbc5780601f10610c9157610100808354040283529160200191610cbc565b820191906000526020600020905b815481529060010190602001808311610c9f57829003601f168201915b505050505081565b610ccc611c51565b73ffffffffffffffffffffffffffffffffffffffff16610cea611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d37906136b9565b60405180910390fd5b6000479050610d4d611324565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db18383836040518060200160405280600081525061184e565b505050565b6000610dc1826121fc565b600001519050919050565b600c8054610dd990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0590613a39565b8015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c8054610f3990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6590613a39565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b610fc4611c51565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611324565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906136b9565b60405180910390fd5b6110426000612478565b565b61104c611c51565b73ffffffffffffffffffffffffffffffffffffffff1661106a611324565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906136b9565b60405180910390fd5b600f5481516110cd610b8f565b6110d7919061385a565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906136f9565b60405180910390fd5b60005b815181101561115c5761114982828151811061113a57611139613ba3565b5b6020026020010151600161253c565b808061115490613a9c565b91505061111b565b5050565b611168611c51565b73ffffffffffffffffffffffffffffffffffffffff16611186611324565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d3906136b9565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611210611c51565b73ffffffffffffffffffffffffffffffffffffffff1661122e611324565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906136b9565b60405180910390fd5b80600d908051906020019061129a929190612c82565b5050565b6112a6611c51565b73ffffffffffffffffffffffffffffffffffffffff166112c4611324565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906136b9565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611c51565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906136b9565b60405180910390fd5b80600e8190555050565b6113db612d08565b6113e4826121fc565b9050919050565b6000811180156113fd57506009548111155b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613679565b60405180910390fd5b600f5481611448610b8f565b611452919061385a565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906136d9565b60405180910390fd5b80600e546114a191906138e1565b34146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613619565b60405180910390fd5b600954816114ef336116be565b6114f9919061385a565b111561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613659565b60405180910390fd5b600b60009054906101000a900460ff16611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906135f9565b60405180910390fd5b611593338261253c565b50565b61159e611c51565b73ffffffffffffffffffffffffffffffffffffffff166115bc611324565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906136b9565b60405180910390fd5b80600c9080519060200190611628929190612c82565b5050565b60606004805461163b90613a39565b80601f016020809104026020016040519081016040528092919081815260200182805461166790613a39565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60006116c98261255a565b9050919050565b600e5481565b6116de611c51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611750611c51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fd611c51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184291906135bc565b60405180910390a35050565b611859848484611d0b565b6118658484848461262a565b61189b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ac82611c16565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613699565b60405180910390fd5b600c6118f6836127b8565b600d60405160200161190a93929190613524565b6040516020818303038152906040529050919050565b611928611c51565b73ffffffffffffffffffffffffffffffffffffffff16611946611324565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906136b9565b60405180910390fd5b600f54816119a8610b8f565b6119b2919061385a565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906136f9565b60405180910390fd5b6119fd828261253c565b5050565b600f5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa9611c51565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611324565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906136b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613639565b60405180910390fd5b611b9681612478565b50565b600b60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c4a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d16826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d3d611c51565b73ffffffffffffffffffffffffffffffffffffffff161480611d705750611d6f8260000151611d6a611c51565b611a0d565b5b80611db55750611d7e611c51565b73ffffffffffffffffffffffffffffffffffffffff16611d9d84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dee576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecb8585856001612919565b611edb6000848460000151611c59565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c5760015481101561218b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f5858585600161291f565b5050505050565b612204612d08565b6000829050600154811015612441576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612323578092505050612473565b5b60011561243e57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612439578092505050612473565b612324565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612556828260405180602001604052806000815250612925565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061264b8473ffffffffffffffffffffffffffffffffffffffff16612937565b156127ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612674611c51565b8786866040518563ffffffff1660e01b81526004016126969493929190613570565b602060405180830381600087803b1580156126b057600080fd5b505af19250505080156126e157506040513d601f19601f820116820180604052508101906126de9190613188565b60015b61275b573d8060008114612711576040519150601f19603f3d011682016040523d82523d6000602084013e612716565b606091505b50600081511415612753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b0565b600190505b949350505050565b60606000821415612800576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612914565b600082905060005b6000821461283257808061281b90613a9c565b915050600a8261282b91906138b0565b9150612808565b60008167ffffffffffffffff81111561284e5761284d613bd2565b5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090505b6000851461290d57600182612899919061393b565b9150600a856128a89190613ae5565b60306128b4919061385a565b60f81b8183815181106128ca576128c9613ba3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561290691906138b0565b9450612884565b8093505050505b919050565b50505050565b50505050565b612932838383600161294a565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129f3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a006000868387612919565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c6557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c195750612c17600088848861262a565b155b15612c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b9e565b508060018190555050612c7b600086838761291f565b5050505050565b828054612c8e90613a39565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957805160ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578251825591602001919060010190612cdb565b5b509050612d049190612d4b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d64576000816000905550600101612d4c565b5090565b6000612d7b612d7684613774565b61374f565b90508083825260208201905082856020860282011115612d9e57612d9d613c06565b5b60005b85811015612dce5781612db48882612e5c565b845260208401935060208301925050600181019050612da1565b5050509392505050565b6000612deb612de6846137a0565b61374f565b905082815260208101848484011115612e0757612e06613c0b565b5b612e128482856139f7565b509392505050565b6000612e2d612e28846137d1565b61374f565b905082815260208101848484011115612e4957612e48613c0b565b5b612e548482856139f7565b509392505050565b600081359050612e6b81613e0e565b92915050565b600082601f830112612e8657612e85613c01565b5b8135612e96848260208601612d68565b91505092915050565b600081359050612eae81613e25565b92915050565b600081359050612ec381613e3c565b92915050565b600081519050612ed881613e3c565b92915050565b600082601f830112612ef357612ef2613c01565b5b8135612f03848260208601612dd8565b91505092915050565b600082601f830112612f2157612f20613c01565b5b8135612f31848260208601612e1a565b91505092915050565b600081359050612f4981613e53565b92915050565b600060208284031215612f6557612f64613c15565b5b6000612f7384828501612e5c565b91505092915050565b60008060408385031215612f9357612f92613c15565b5b6000612fa185828601612e5c565b9250506020612fb285828601612e5c565b9150509250929050565b600080600060608486031215612fd557612fd4613c15565b5b6000612fe386828701612e5c565b9350506020612ff486828701612e5c565b925050604061300586828701612f3a565b9150509250925092565b6000806000806080858703121561302957613028613c15565b5b600061303787828801612e5c565b945050602061304887828801612e5c565b935050604061305987828801612f3a565b925050606085013567ffffffffffffffff81111561307a57613079613c10565b5b61308687828801612ede565b91505092959194509250565b600080604083850312156130a9576130a8613c15565b5b60006130b785828601612e5c565b92505060206130c885828601612e9f565b9150509250929050565b600080604083850312156130e9576130e8613c15565b5b60006130f785828601612e5c565b925050602061310885828601612f3a565b9150509250929050565b60006020828403121561312857613127613c15565b5b600082013567ffffffffffffffff81111561314657613145613c10565b5b61315284828501612e71565b91505092915050565b60006020828403121561317157613170613c15565b5b600061317f84828501612eb4565b91505092915050565b60006020828403121561319e5761319d613c15565b5b60006131ac84828501612ec9565b91505092915050565b6000602082840312156131cb576131ca613c15565b5b600082013567ffffffffffffffff8111156131e9576131e8613c10565b5b6131f584828501612f0c565b91505092915050565b60006020828403121561321457613213613c15565b5b600061322284828501612f3a565b91505092915050565b6132348161396f565b82525050565b6132438161396f565b82525050565b61325281613981565b82525050565b61326181613981565b82525050565b600061327282613817565b61327c818561382d565b935061328c818560208601613a06565b61329581613c1a565b840191505092915050565b60006132ab82613822565b6132b5818561383e565b93506132c5818560208601613a06565b6132ce81613c1a565b840191505092915050565b60006132e482613822565b6132ee818561384f565b93506132fe818560208601613a06565b80840191505092915050565b6000815461331781613a39565b613321818661384f565b9450600182166000811461333c576001811461334d57613380565b60ff19831686528186019350613380565b61335685613802565b60005b8381101561337857815481890152600182019150602081019050613359565b838801955050505b50505092915050565b6000613396601c8361383e565b91506133a182613c2b565b602082019050919050565b60006133b960178361383e565b91506133c482613c54565b602082019050919050565b60006133dc60268361383e565b91506133e782613c7d565b604082019050919050565b60006133ff601c8361383e565b915061340a82613ccc565b602082019050919050565b600061342260228361383e565b915061342d82613cf5565b604082019050919050565b6000613445602c8361383e565b915061345082613d44565b604082019050919050565b600061346860208361383e565b915061347382613d93565b602082019050919050565b600061348b60138361383e565b915061349682613dbc565b602082019050919050565b60006134ae60138361383e565b91506134b982613de5565b602082019050919050565b6060820160008201516134da600085018261322b565b5060208201516134ed6020850182613515565b5060408201516135006040850182613249565b50505050565b61350f816139d9565b82525050565b61351e816139e3565b82525050565b6000613530828661330a565b915061353c82856132d9565b9150613548828461330a565b9150819050949350505050565b600060208201905061356a600083018461323a565b92915050565b6000608082019050613585600083018761323a565b613592602083018661323a565b61359f6040830185613506565b81810360608301526135b18184613267565b905095945050505050565b60006020820190506135d16000830184613258565b92915050565b600060208201905081810360008301526135f181846132a0565b905092915050565b6000602082019050818103600083015261361281613389565b9050919050565b60006020820190508181036000830152613632816133ac565b9050919050565b60006020820190508181036000830152613652816133cf565b9050919050565b60006020820190508181036000830152613672816133f2565b9050919050565b6000602082019050818103600083015261369281613415565b9050919050565b600060208201905081810360008301526136b281613438565b9050919050565b600060208201905081810360008301526136d28161345b565b9050919050565b600060208201905081810360008301526136f28161347e565b9050919050565b60006020820190508181036000830152613712816134a1565b9050919050565b600060608201905061372e60008301846134c4565b92915050565b60006020820190506137496000830184613506565b92915050565b600061375961376a565b90506137658282613a6b565b919050565b6000604051905090565b600067ffffffffffffffff82111561378f5761378e613bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137bb576137ba613bd2565b5b6137c482613c1a565b9050602081019050919050565b600067ffffffffffffffff8211156137ec576137eb613bd2565b5b6137f582613c1a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613865826139d9565b9150613870836139d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a5576138a4613b16565b5b828201905092915050565b60006138bb826139d9565b91506138c6836139d9565b9250826138d6576138d5613b45565b5b828204905092915050565b60006138ec826139d9565b91506138f7836139d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139305761392f613b16565b5b828202905092915050565b6000613946826139d9565b9150613951836139d9565b92508282101561396457613963613b16565b5b828203905092915050565b600061397a826139b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a24578082015181840152602081019050613a09565b83811115613a33576000848401525b50505050565b60006002820490506001821680613a5157607f821691505b60208210811415613a6557613a64613b74565b5b50919050565b613a7482613c1a565b810181811067ffffffffffffffff82111715613a9357613a92613bd2565b5b80604052505050565b6000613aa7826139d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ada57613ad9613b16565b5b600182019050919050565b6000613af0826139d9565b9150613afb836139d9565b925082613b0b57613b0a613b45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b613e178161396f565b8114613e2257600080fd5b50565b613e2e81613981565b8114613e3957600080fd5b50565b613e458161398d565b8114613e5057600080fd5b50565b613e5c816139d9565b8114613e6757600080fd5b5056fea264697066735822122064f3cd30b409cc879a26ffdf7d301c5062d63a1e37827a9fdf83ffb2ade2f1ed64736f6c63430008070033697066733a2f2f6261667962656967686435766c617a3476356c6e76746b7265686a7178766a32766d7071376c683261696662367971326133656c6c617a6f74686d2f
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80637e6182d911610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e917a28c146107d0578063e985e9c5146107fb578063f2fde38b14610838578063f9e237991461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637e6182d91461053257806381a89b591461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a657806370a082311161017557806370a0823114610473578063714c5398146104b0578063715018a6146104db5780637c8255db146104f25780637d8966e41461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780636352211e1461040b5780636c0360eb1461044857610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061315b565b61088c565b60405161025e91906135bc565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906135d7565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906131fe565b610a00565b6040516102c69190613555565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906130d2565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a9190613734565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b6040516103459190613734565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906131fe565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190612fbc565b610c26565b005b3480156103ac57600080fd5b506103b5610c36565b6040516103c291906135d7565b60405180910390f35b3480156103d757600080fd5b506103e0610cc4565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612fbc565b610d96565b005b34801561041757600080fd5b50610432600480360381019061042d91906131fe565b610db6565b60405161043f9190613555565b60405180910390f35b34801561045457600080fd5b5061045d610dcc565b60405161046a91906135d7565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612f4f565b610e5a565b6040516104a79190613734565b60405180910390f35b3480156104bc57600080fd5b506104c5610f2a565b6040516104d291906135d7565b60405180910390f35b3480156104e757600080fd5b506104f0610fbc565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613112565b611044565b005b34801561052757600080fd5b50610530611160565b005b34801561053e57600080fd5b50610559600480360381019061055491906131b5565b611208565b005b34801561056757600080fd5b50610582600480360381019061057d91906131fe565b61129e565b005b34801561059057600080fd5b50610599611324565b6040516105a69190613555565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906131fe565b61134d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906131fe565b6113d3565b60405161060c9190613719565b60405180910390f35b61062f600480360381019061062a91906131fe565b6113eb565b005b34801561063d57600080fd5b50610658600480360381019061065391906131b5565b611596565b005b34801561066657600080fd5b5061066f61162c565b60405161067c91906135d7565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612f4f565b6116be565b6040516106b99190613734565b60405180910390f35b3480156106ce57600080fd5b506106d76116d0565b6040516106e49190613734565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613092565b6116d6565b005b34801561072257600080fd5b5061073d6004803603810190610738919061300f565b61184e565b005b34801561074b57600080fd5b50610766600480360381019061076191906131fe565b6118a1565b60405161077391906135d7565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906130d2565b611920565b005b3480156107b157600080fd5b506107ba611a01565b6040516107c79190613734565b60405180910390f35b3480156107dc57600080fd5b506107e5611a07565b6040516107f29190613734565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190612f7c565b611a0d565b60405161082f91906135bc565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190612f4f565b611aa1565b005b34801561086d57600080fd5b50610876611b99565b60405161088391906135bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bac565b5b9050919050565b60606003805461097d90613a39565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613a39565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c16565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610db6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c51565b611a0d565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c59565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c51565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906136b9565b60405180910390fd5b80600f8190555050565b610c31838383611d0b565b505050565b600d8054610c4390613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6f90613a39565b8015610cbc5780601f10610c9157610100808354040283529160200191610cbc565b820191906000526020600020905b815481529060010190602001808311610c9f57829003601f168201915b505050505081565b610ccc611c51565b73ffffffffffffffffffffffffffffffffffffffff16610cea611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d37906136b9565b60405180910390fd5b6000479050610d4d611324565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d92573d6000803e3d6000fd5b5050565b610db18383836040518060200160405280600081525061184e565b505050565b6000610dc1826121fc565b600001519050919050565b600c8054610dd990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0590613a39565b8015610e525780601f10610e2757610100808354040283529160200191610e52565b820191906000526020600020905b815481529060010190602001808311610e3557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c8054610f3990613a39565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6590613a39565b8015610fb25780601f10610f8757610100808354040283529160200191610fb2565b820191906000526020600020905b815481529060010190602001808311610f9557829003601f168201915b5050505050905090565b610fc4611c51565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611324565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906136b9565b60405180910390fd5b6110426000612478565b565b61104c611c51565b73ffffffffffffffffffffffffffffffffffffffff1661106a611324565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b7906136b9565b60405180910390fd5b600f5481516110cd610b8f565b6110d7919061385a565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906136f9565b60405180910390fd5b60005b815181101561115c5761114982828151811061113a57611139613ba3565b5b6020026020010151600161253c565b808061115490613a9c565b91505061111b565b5050565b611168611c51565b73ffffffffffffffffffffffffffffffffffffffff16611186611324565b73ffffffffffffffffffffffffffffffffffffffff16146111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d3906136b9565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611210611c51565b73ffffffffffffffffffffffffffffffffffffffff1661122e611324565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906136b9565b60405180910390fd5b80600d908051906020019061129a929190612c82565b5050565b6112a6611c51565b73ffffffffffffffffffffffffffffffffffffffff166112c4611324565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906136b9565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611c51565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906136b9565b60405180910390fd5b80600e8190555050565b6113db612d08565b6113e4826121fc565b9050919050565b6000811180156113fd57506009548111155b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613679565b60405180910390fd5b600f5481611448610b8f565b611452919061385a565b1115611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906136d9565b60405180910390fd5b80600e546114a191906138e1565b34146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613619565b60405180910390fd5b600954816114ef336116be565b6114f9919061385a565b111561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613659565b60405180910390fd5b600b60009054906101000a900460ff16611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906135f9565b60405180910390fd5b611593338261253c565b50565b61159e611c51565b73ffffffffffffffffffffffffffffffffffffffff166115bc611324565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906136b9565b60405180910390fd5b80600c9080519060200190611628929190612c82565b5050565b60606004805461163b90613a39565b80601f016020809104026020016040519081016040528092919081815260200182805461166790613a39565b80156116b45780601f10611689576101008083540402835291602001916116b4565b820191906000526020600020905b81548152906001019060200180831161169757829003601f168201915b5050505050905090565b60006116c98261255a565b9050919050565b600e5481565b6116de611c51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611743576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611750611c51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117fd611c51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184291906135bc565b60405180910390a35050565b611859848484611d0b565b6118658484848461262a565b61189b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ac82611c16565b6118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613699565b60405180910390fd5b600c6118f6836127b8565b600d60405160200161190a93929190613524565b6040516020818303038152906040529050919050565b611928611c51565b73ffffffffffffffffffffffffffffffffffffffff16611946611324565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906136b9565b60405180910390fd5b600f54816119a8610b8f565b6119b2919061385a565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906136f9565b60405180910390fd5b6119fd828261253c565b5050565b600f5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa9611c51565b73ffffffffffffffffffffffffffffffffffffffff16611ac7611324565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906136b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613639565b60405180910390fd5b611b9681612478565b50565b600b60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c4a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d16826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d3d611c51565b73ffffffffffffffffffffffffffffffffffffffff161480611d705750611d6f8260000151611d6a611c51565b611a0d565b5b80611db55750611d7e611c51565b73ffffffffffffffffffffffffffffffffffffffff16611d9d84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dee576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ebe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ecb8585856001612919565b611edb6000848460000151611c59565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c5760015481101561218b5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f5858585600161291f565b5050505050565b612204612d08565b6000829050600154811015612441576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612323578092505050612473565b5b60011561243e57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612439578092505050612473565b612324565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612556828260405180602001604052806000815250612925565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061264b8473ffffffffffffffffffffffffffffffffffffffff16612937565b156127ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612674611c51565b8786866040518563ffffffff1660e01b81526004016126969493929190613570565b602060405180830381600087803b1580156126b057600080fd5b505af19250505080156126e157506040513d601f19601f820116820180604052508101906126de9190613188565b60015b61275b573d8060008114612711576040519150601f19603f3d011682016040523d82523d6000602084013e612716565b606091505b50600081511415612753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b0565b600190505b949350505050565b60606000821415612800576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612914565b600082905060005b6000821461283257808061281b90613a9c565b915050600a8261282b91906138b0565b9150612808565b60008167ffffffffffffffff81111561284e5761284d613bd2565b5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090505b6000851461290d57600182612899919061393b565b9150600a856128a89190613ae5565b60306128b4919061385a565b60f81b8183815181106128ca576128c9613ba3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561290691906138b0565b9450612884565b8093505050505b919050565b50505050565b50505050565b612932838383600161294a565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129b8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129f3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a006000868387612919565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c6557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c195750612c17600088848861262a565b155b15612c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b9e565b508060018190555050612c7b600086838761291f565b5050505050565b828054612c8e90613a39565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957805160ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578251825591602001919060010190612cdb565b5b509050612d049190612d4b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d64576000816000905550600101612d4c565b5090565b6000612d7b612d7684613774565b61374f565b90508083825260208201905082856020860282011115612d9e57612d9d613c06565b5b60005b85811015612dce5781612db48882612e5c565b845260208401935060208301925050600181019050612da1565b5050509392505050565b6000612deb612de6846137a0565b61374f565b905082815260208101848484011115612e0757612e06613c0b565b5b612e128482856139f7565b509392505050565b6000612e2d612e28846137d1565b61374f565b905082815260208101848484011115612e4957612e48613c0b565b5b612e548482856139f7565b509392505050565b600081359050612e6b81613e0e565b92915050565b600082601f830112612e8657612e85613c01565b5b8135612e96848260208601612d68565b91505092915050565b600081359050612eae81613e25565b92915050565b600081359050612ec381613e3c565b92915050565b600081519050612ed881613e3c565b92915050565b600082601f830112612ef357612ef2613c01565b5b8135612f03848260208601612dd8565b91505092915050565b600082601f830112612f2157612f20613c01565b5b8135612f31848260208601612e1a565b91505092915050565b600081359050612f4981613e53565b92915050565b600060208284031215612f6557612f64613c15565b5b6000612f7384828501612e5c565b91505092915050565b60008060408385031215612f9357612f92613c15565b5b6000612fa185828601612e5c565b9250506020612fb285828601612e5c565b9150509250929050565b600080600060608486031215612fd557612fd4613c15565b5b6000612fe386828701612e5c565b9350506020612ff486828701612e5c565b925050604061300586828701612f3a565b9150509250925092565b6000806000806080858703121561302957613028613c15565b5b600061303787828801612e5c565b945050602061304887828801612e5c565b935050604061305987828801612f3a565b925050606085013567ffffffffffffffff81111561307a57613079613c10565b5b61308687828801612ede565b91505092959194509250565b600080604083850312156130a9576130a8613c15565b5b60006130b785828601612e5c565b92505060206130c885828601612e9f565b9150509250929050565b600080604083850312156130e9576130e8613c15565b5b60006130f785828601612e5c565b925050602061310885828601612f3a565b9150509250929050565b60006020828403121561312857613127613c15565b5b600082013567ffffffffffffffff81111561314657613145613c10565b5b61315284828501612e71565b91505092915050565b60006020828403121561317157613170613c15565b5b600061317f84828501612eb4565b91505092915050565b60006020828403121561319e5761319d613c15565b5b60006131ac84828501612ec9565b91505092915050565b6000602082840312156131cb576131ca613c15565b5b600082013567ffffffffffffffff8111156131e9576131e8613c10565b5b6131f584828501612f0c565b91505092915050565b60006020828403121561321457613213613c15565b5b600061322284828501612f3a565b91505092915050565b6132348161396f565b82525050565b6132438161396f565b82525050565b61325281613981565b82525050565b61326181613981565b82525050565b600061327282613817565b61327c818561382d565b935061328c818560208601613a06565b61329581613c1a565b840191505092915050565b60006132ab82613822565b6132b5818561383e565b93506132c5818560208601613a06565b6132ce81613c1a565b840191505092915050565b60006132e482613822565b6132ee818561384f565b93506132fe818560208601613a06565b80840191505092915050565b6000815461331781613a39565b613321818661384f565b9450600182166000811461333c576001811461334d57613380565b60ff19831686528186019350613380565b61335685613802565b60005b8381101561337857815481890152600182019150602081019050613359565b838801955050505b50505092915050565b6000613396601c8361383e565b91506133a182613c2b565b602082019050919050565b60006133b960178361383e565b91506133c482613c54565b602082019050919050565b60006133dc60268361383e565b91506133e782613c7d565b604082019050919050565b60006133ff601c8361383e565b915061340a82613ccc565b602082019050919050565b600061342260228361383e565b915061342d82613cf5565b604082019050919050565b6000613445602c8361383e565b915061345082613d44565b604082019050919050565b600061346860208361383e565b915061347382613d93565b602082019050919050565b600061348b60138361383e565b915061349682613dbc565b602082019050919050565b60006134ae60138361383e565b91506134b982613de5565b602082019050919050565b6060820160008201516134da600085018261322b565b5060208201516134ed6020850182613515565b5060408201516135006040850182613249565b50505050565b61350f816139d9565b82525050565b61351e816139e3565b82525050565b6000613530828661330a565b915061353c82856132d9565b9150613548828461330a565b9150819050949350505050565b600060208201905061356a600083018461323a565b92915050565b6000608082019050613585600083018761323a565b613592602083018661323a565b61359f6040830185613506565b81810360608301526135b18184613267565b905095945050505050565b60006020820190506135d16000830184613258565b92915050565b600060208201905081810360008301526135f181846132a0565b905092915050565b6000602082019050818103600083015261361281613389565b9050919050565b60006020820190508181036000830152613632816133ac565b9050919050565b60006020820190508181036000830152613652816133cf565b9050919050565b60006020820190508181036000830152613672816133f2565b9050919050565b6000602082019050818103600083015261369281613415565b9050919050565b600060208201905081810360008301526136b281613438565b9050919050565b600060208201905081810360008301526136d28161345b565b9050919050565b600060208201905081810360008301526136f28161347e565b9050919050565b60006020820190508181036000830152613712816134a1565b9050919050565b600060608201905061372e60008301846134c4565b92915050565b60006020820190506137496000830184613506565b92915050565b600061375961376a565b90506137658282613a6b565b919050565b6000604051905090565b600067ffffffffffffffff82111561378f5761378e613bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137bb576137ba613bd2565b5b6137c482613c1a565b9050602081019050919050565b600067ffffffffffffffff8211156137ec576137eb613bd2565b5b6137f582613c1a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613865826139d9565b9150613870836139d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a5576138a4613b16565b5b828201905092915050565b60006138bb826139d9565b91506138c6836139d9565b9250826138d6576138d5613b45565b5b828204905092915050565b60006138ec826139d9565b91506138f7836139d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139305761392f613b16565b5b828202905092915050565b6000613946826139d9565b9150613951836139d9565b92508282101561396457613963613b16565b5b828203905092915050565b600061397a826139b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a24578082015181840152602081019050613a09565b83811115613a33576000848401525b50505050565b60006002820490506001821680613a5157607f821691505b60208210811415613a6557613a64613b74565b5b50919050565b613a7482613c1a565b810181811067ffffffffffffffff82111715613a9357613a92613bd2565b5b80604052505050565b6000613aa7826139d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ada57613ad9613b16565b5b600182019050919050565b6000613af0826139d9565b9150613afb836139d9565b925082613b0b57613b0a613b45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b613e178161396f565b8114613e2257600080fd5b50565b613e2e81613981565b8114613e3957600080fd5b50565b613e458161398d565b8114613e5057600080fd5b50565b613e5c816139d9565b8114613e6757600080fd5b5056fea264697066735822122064f3cd30b409cc879a26ffdf7d301c5062d63a1e37827a9fdf83ffb2ade2f1ed64736f6c63430008070033
Deployed Bytecode Sourcemap
56036:3126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26401:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31264:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30827:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58596:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26052:277;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58390:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32121:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56346:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58816:149;;;;;;;;;;;;;:::i;:::-;;32362:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29570:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56246:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26770:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58071:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15167:94;;;;;;;;;;;;;:::i;:::-;;57064:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58494:92;;;;;;;;;;;;;:::i;:::-;;57963:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58263:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14516:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58171:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58973:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56516:538;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57850:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29930:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58699:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56387:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31540:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32618:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57537:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57321:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56424:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56080:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31890:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15416:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56205:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26401:305;26503:4;26555:25;26540:40;;;:11;:40;;;;:105;;;;26612:33;26597:48;;;:11;:48;;;;26540:105;:158;;;;26662:36;26686:11;26662:23;:36::i;:::-;26540:158;26520:178;;26401:305;;;:::o;29761:100::-;29815:13;29848:5;29841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29761:100;:::o;31264:204::-;31332:7;31357:16;31365:7;31357;:16::i;:::-;31352:64;;31382:34;;;;;;;;;;;;;;31352:64;31436:15;:24;31452:7;31436:24;;;;;;;;;;;;;;;;;;;;;31429:31;;31264:204;;;:::o;30827:371::-;30900:13;30916:24;30932:7;30916:15;:24::i;:::-;30900:40;;30961:5;30955:11;;:2;:11;;;30951:48;;;30975:24;;;;;;;;;;;;;;30951:48;31032:5;31016:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31042:37;31059:5;31066:12;:10;:12::i;:::-;31042:16;:37::i;:::-;31041:38;31016:63;31012:138;;;31103:35;;;;;;;;;;;;;;31012:138;31162:28;31171:2;31175:7;31184:5;31162:8;:28::i;:::-;30889:309;30827:371;;:::o;58596:95::-;58638:4;58662:21;58655:28;;58596:95;:::o;26052:277::-;26096:7;26305:1;26289:12;;26273:13;;:28;26272:34;26265:41;;26052:277;:::o;58390:96::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58471:7:::1;58459:9;:19;;;;58390:96:::0;:::o;32121:170::-;32255:28;32265:4;32271:2;32275:7;32255:9;:28::i;:::-;32121:170;;;:::o;56346:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58816:149::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58866:13:::1;58882:21;58866:37;;58922:7;:5;:7::i;:::-;58914:25;;:35;58940:8;58914:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58855:110;58816:149::o:0;32362:185::-;32500:39;32517:4;32523:2;32527:7;32500:39;;;;;;;;;;;;:16;:39::i;:::-;32362:185;;;:::o;29570:124::-;29634:7;29661:20;29673:7;29661:11;:20::i;:::-;:25;;;29654:32;;29570:124;;;:::o;56246:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26770:206::-;26834:7;26875:1;26858:19;;:5;:19;;;26854:60;;;26886:28;;;;;;;;;;;;;;26854:60;26940:12;:19;26953:5;26940:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26932:36;;26925:43;;26770:206;;;:::o;58071:92::-;58115:13;58148:7;58141:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58071:92;:::o;15167:94::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:21:::1;15250:1;15232:9;:21::i;:::-;15167:94::o:0;57064:252::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57182:9:::1;;57163:8;:15;57147:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;57139:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57230:6;57226:80;57246:8;:15;57242:1;:19;57226:80;;;57281:25;57291:8;57300:1;57291:11;;;;;;;;:::i;:::-;;;;;;;;57304:1;57281:9;:25::i;:::-;57263:3;;;;;:::i;:::-;;;;57226:80;;;;57064:252:::0;:::o;58494:92::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58564:14:::1;;;;;;;;;;;58563:15;58546:14;;:32;;;;;;;;;;;;;;;;;;58494:92::o:0;57963:100::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58050:5:::1;58037:10;:18;;;;;;;;;;;;:::i;:::-;;57963:100:::0;:::o;58263:119::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58360:14:::1;58344:13;:30;;;;58263:119:::0;:::o;14516:87::-;14562:7;14589:6;;;;;;;;;;;14582:13;;14516:87;:::o;58171:86::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58243:6:::1;58235:5;:14;;;;58171:86:::0;:::o;58973:147::-;59054:21;;:::i;:::-;59094:20;59106:7;59094:11;:20::i;:::-;59087:27;;58973:147;;;:::o;56516:538::-;56598:1;56586:9;:13;:43;;;;;56616:13;;56603:9;:26;;56586:43;56578:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;56716:9;;56703;56687:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;56679:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56789:9;56781:5;;:17;;;;:::i;:::-;56768:9;:30;56760:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56887:13;;56874:9;56845:26;56860:10;56845:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;56837:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;56952:14;;;;;;;;;;;56944:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57012:32;57022:10;57034:9;57012;:32::i;:::-;56516:538;:::o;57850:107::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57938:11:::1;57928:7;:21;;;;;;;;;;;;:::i;:::-;;57850:107:::0;:::o;29930:104::-;29986:13;30019:7;30012:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29930:104;:::o;58699:109::-;58759:7;58782:20;58796:5;58782:13;:20::i;:::-;58775:27;;58699:109;;;:::o;56387:30::-;;;;:::o;31540:279::-;31643:12;:10;:12::i;:::-;31631:24;;:8;:24;;;31627:54;;;31664:17;;;;;;;;;;;;;;31627:54;31739:8;31694:18;:32;31713:12;:10;:12::i;:::-;31694:32;;;;;;;;;;;;;;;:42;31727:8;31694:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31792:8;31763:48;;31778:12;:10;:12::i;:::-;31763:48;;;31802:8;31763:48;;;;;;:::i;:::-;;;;;;;;31540:279;;:::o;32618:342::-;32785:28;32795:4;32801:2;32805:7;32785:9;:28::i;:::-;32829:48;32852:4;32858:2;32862:7;32871:5;32829:22;:48::i;:::-;32824:129;;32901:40;;;;;;;;;;;;;;32824:129;32618:342;;;;:::o;57537:305::-;57611:13;57659:17;57667:8;57659:7;:17::i;:::-;57637:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57792:7;57801:19;:8;:17;:19::i;:::-;57822:10;57775:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57761:73;;57537:305;;;:::o;57321:206::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57447:9:::1;;57439:4;57423:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;57415:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57495:24;57505:7;57514:4;57495:9;:24::i;:::-;57321:206:::0;;:::o;56424:31::-;;;;:::o;56080:32::-;;;;:::o;31890:164::-;31987:4;32011:18;:25;32030:5;32011:25;;;;;;;;;;;;;;;:35;32037:8;32011:35;;;;;;;;;;;;;;;;;;;;;;;;;32004:42;;31890:164;;;;:::o;15416:192::-;14747:12;:10;:12::i;:::-;14736:23;;:7;:5;:7::i;:::-;:23;;;14728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15525:1:::1;15505:22;;:8;:22;;;;15497:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15581:19;15591:8;15581:9;:19::i;:::-;15416:192:::0;:::o;56205:34::-;;;;;;;;;;;;;:::o;16521:157::-;16606:4;16645:25;16630:40;;;:11;:40;;;;16623:47;;16521:157;;;:::o;33215:144::-;33272:4;33306:13;;33296:7;:23;:55;;;;;33324:11;:20;33336:7;33324:20;;;;;;;;;;;:27;;;;;;;;;;;;33323:28;33296:55;33289:62;;33215:144;;;:::o;1656:98::-;1709:7;1736:10;1729:17;;1656:98;:::o;40421:196::-;40563:2;40536:15;:24;40552:7;40536:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40601:7;40597:2;40581:28;;40590:5;40581:28;;;;;;;;;;;;40421:196;;;:::o;35922:2112::-;36037:35;36075:20;36087:7;36075:11;:20::i;:::-;36037:58;;36108:22;36150:13;:18;;;36134:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;36185:50;36202:13;:18;;;36222:12;:10;:12::i;:::-;36185:16;:50::i;:::-;36134:101;:154;;;;36276:12;:10;:12::i;:::-;36252:36;;:20;36264:7;36252:11;:20::i;:::-;:36;;;36134:154;36108:181;;36307:17;36302:66;;36333:35;;;;;;;;;;;;;;36302:66;36405:4;36383:26;;:13;:18;;;:26;;;36379:67;;36418:28;;;;;;;;;;;;;;36379:67;36475:1;36461:16;;:2;:16;;;36457:52;;;36486:23;;;;;;;;;;;;;;36457:52;36522:43;36544:4;36550:2;36554:7;36563:1;36522:21;:43::i;:::-;36630:49;36647:1;36651:7;36660:13;:18;;;36630:8;:49::i;:::-;37005:1;36975:12;:18;36988:4;36975:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37049:1;37021:12;:16;37034:2;37021:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37095:2;37067:11;:20;37079:7;37067:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;37157:15;37112:11;:20;37124:7;37112:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37425:19;37457:1;37447:7;:11;37425:33;;37518:1;37477:43;;:11;:24;37489:11;37477:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37473:445;;;37702:13;;37688:11;:27;37684:219;;;37772:13;:18;;;37740:11;:24;37752:11;37740:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37855:13;:28;;;37813:11;:24;37825:11;37813:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37684:219;37473:445;36950:979;37965:7;37961:2;37946:27;;37955:4;37946:27;;;;;;;;;;;;37984:42;38005:4;38011:2;38015:7;38024:1;37984:20;:42::i;:::-;36026:2008;;35922:2112;;;:::o;28425:1083::-;28486:21;;:::i;:::-;28520:12;28535:7;28520:22;;28591:13;;28584:4;:20;28580:861;;;28625:31;28659:11;:17;28671:4;28659:17;;;;;;;;;;;28625:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28700:9;:16;;;28695:731;;28771:1;28745:28;;:9;:14;;;:28;;;28741:101;;28809:9;28802:16;;;;;;28741:101;29146:261;29153:4;29146:261;;;29186:6;;;;;;;;29231:11;:17;29243:4;29231:17;;;;;;;;;;;29219:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29305:1;29279:28;;:9;:14;;;:28;;;29275:109;;29347:9;29340:16;;;;;;29275:109;29146:261;;;28695:731;28606:835;28580:861;29469:31;;;;;;;;;;;;;;28425:1083;;;;:::o;15616:173::-;15672:16;15691:6;;;;;;;;;;;15672:25;;15717:8;15708:6;;:17;;;;;;;;;;;;;;;;;;15772:8;15741:40;;15762:8;15741:40;;;;;;;;;;;;15661:128;15616:173;:::o;33367:104::-;33436:27;33446:2;33450:8;33436:27;;;;;;;;;;;;:9;:27::i;:::-;33367:104;;:::o;27058:207::-;27119:7;27160:1;27143:19;;:5;:19;;;27139:59;;;27171:27;;;;;;;;;;;;;;27139:59;27224:12;:19;27237:5;27224:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27216:41;;27209:48;;27058:207;;;:::o;41182:790::-;41337:4;41358:15;:2;:13;;;:15::i;:::-;41354:611;;;41410:2;41394:36;;;41431:12;:10;:12::i;:::-;41445:4;41451:7;41460:5;41394:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41390:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41657:1;41640:6;:13;:18;41636:259;;;41690:40;;;;;;;;;;;;;;41636:259;41845:6;41839:13;41830:6;41826:2;41822:15;41815:38;41390:520;41527:45;;;41517:55;;;:6;:55;;;;41510:62;;;;;41354:611;41949:4;41942:11;;41182:790;;;;;;;:::o;2121:723::-;2177:13;2407:1;2398:5;:10;2394:53;;;2425:10;;;;;;;;;;;;;;;;;;;;;2394:53;2457:12;2472:5;2457:20;;2488:14;2513:78;2528:1;2520:4;:9;2513:78;;2546:8;;;;;:::i;:::-;;;;2577:2;2569:10;;;;;:::i;:::-;;;2513:78;;;2601:19;2633:6;2623:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2601:39;;2651:154;2667:1;2658:5;:10;2651:154;;2695:1;2685:11;;;;;:::i;:::-;;;2762:2;2754:5;:10;;;;:::i;:::-;2741:2;:24;;;;:::i;:::-;2728:39;;2711:6;2718;2711:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2791:2;2782:11;;;;;:::i;:::-;;;2651:154;;;2829:6;2815:21;;;;;2121:723;;;;:::o;42620:159::-;;;;;:::o;43438:158::-;;;;;:::o;33834:163::-;33957:32;33963:2;33967:8;33977:5;33984:4;33957:5;:32::i;:::-;33834:163;;;:::o;4586:387::-;4646:4;4854:12;4921:7;4909:20;4901:28;;4964:1;4957:4;:8;4950:15;;;4586:387;;;:::o;34256:1412::-;34395:20;34418:13;;34395:36;;34460:1;34446:16;;:2;:16;;;34442:48;;;34471:19;;;;;;;;;;;;;;34442:48;34517:1;34505:8;:13;34501:44;;;34527:18;;;;;;;;;;;;;;34501:44;34558:61;34588:1;34592:2;34596:12;34610:8;34558:21;:61::i;:::-;34931:8;34896:12;:16;34909:2;34896:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34995:8;34955:12;:16;34968:2;34955:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35054:2;35021:11;:25;35033:12;35021:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35121:15;35071:11;:25;35083:12;35071:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35154:20;35177:12;35154:35;;35211:9;35206:328;35226:8;35222:1;:12;35206:328;;;35290:12;35286:2;35265:38;;35282:1;35265:38;;;;;;;;;;;;35326:4;:68;;;;;35335:59;35366:1;35370:2;35374:12;35388:5;35335:22;:59::i;:::-;35334:60;35326:68;35322:164;;;35426:40;;;;;;;;;;;;;;35322:164;35504:14;;;;;;;35236:3;;;;;;;35206:328;;;;35566:12;35550:13;:28;;;;34871:719;35600:60;35629:1;35633:2;35637:12;35651:8;35600:20;:60::i;:::-;34384:1284;34256:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:327::-;7361:6;7410:2;7398:9;7389:7;7385:23;7381:32;7378:119;;;7416:79;;:::i;:::-;7378:119;7536:1;7561:52;7605:7;7596:6;7585:9;7581:22;7561:52;:::i;:::-;7551:62;;7507:116;7303:327;;;;:::o;7636:349::-;7705:6;7754:2;7742:9;7733:7;7729:23;7725:32;7722:119;;;7760:79;;:::i;:::-;7722:119;7880:1;7905:63;7960:7;7951:6;7940:9;7936:22;7905:63;:::i;:::-;7895:73;;7851:127;7636:349;;;;:::o;7991:509::-;8060:6;8109:2;8097:9;8088:7;8084:23;8080:32;8077:119;;;8115:79;;:::i;:::-;8077:119;8263:1;8252:9;8248:17;8235:31;8293:18;8285:6;8282:30;8279:117;;;8315:79;;:::i;:::-;8279:117;8420:63;8475:7;8466:6;8455:9;8451:22;8420:63;:::i;:::-;8410:73;;8206:287;7991:509;;;;:::o;8506:329::-;8565:6;8614:2;8602:9;8593:7;8589:23;8585:32;8582:119;;;8620:79;;:::i;:::-;8582:119;8740:1;8765:53;8810:7;8801:6;8790:9;8786:22;8765:53;:::i;:::-;8755:63;;8711:117;8506:329;;;;:::o;8841:108::-;8918:24;8936:5;8918:24;:::i;:::-;8913:3;8906:37;8841:108;;:::o;8955:118::-;9042:24;9060:5;9042:24;:::i;:::-;9037:3;9030:37;8955:118;;:::o;9079:99::-;9150:21;9165:5;9150:21;:::i;:::-;9145:3;9138:34;9079:99;;:::o;9184:109::-;9265:21;9280:5;9265:21;:::i;:::-;9260:3;9253:34;9184:109;;:::o;9299:360::-;9385:3;9413:38;9445:5;9413:38;:::i;:::-;9467:70;9530:6;9525:3;9467:70;:::i;:::-;9460:77;;9546:52;9591:6;9586:3;9579:4;9572:5;9568:16;9546:52;:::i;:::-;9623:29;9645:6;9623:29;:::i;:::-;9618:3;9614:39;9607:46;;9389:270;9299:360;;;;:::o;9665:364::-;9753:3;9781:39;9814:5;9781:39;:::i;:::-;9836:71;9900:6;9895:3;9836:71;:::i;:::-;9829:78;;9916:52;9961:6;9956:3;9949:4;9942:5;9938:16;9916:52;:::i;:::-;9993:29;10015:6;9993:29;:::i;:::-;9988:3;9984:39;9977:46;;9757:272;9665:364;;;;:::o;10035:377::-;10141:3;10169:39;10202:5;10169:39;:::i;:::-;10224:89;10306:6;10301:3;10224:89;:::i;:::-;10217:96;;10322:52;10367:6;10362:3;10355:4;10348:5;10344:16;10322:52;:::i;:::-;10399:6;10394:3;10390:16;10383:23;;10145:267;10035:377;;;;:::o;10442:845::-;10545:3;10582:5;10576:12;10611:36;10637:9;10611:36;:::i;:::-;10663:89;10745:6;10740:3;10663:89;:::i;:::-;10656:96;;10783:1;10772:9;10768:17;10799:1;10794:137;;;;10945:1;10940:341;;;;10761:520;;10794:137;10878:4;10874:9;10863;10859:25;10854:3;10847:38;10914:6;10909:3;10905:16;10898:23;;10794:137;;10940:341;11007:38;11039:5;11007:38;:::i;:::-;11067:1;11081:154;11095:6;11092:1;11089:13;11081:154;;;11169:7;11163:14;11159:1;11154:3;11150:11;11143:35;11219:1;11210:7;11206:15;11195:26;;11117:4;11114:1;11110:12;11105:17;;11081:154;;;11264:6;11259:3;11255:16;11248:23;;10947:334;;10761:520;;10549:738;;10442:845;;;;:::o;11293:366::-;11435:3;11456:67;11520:2;11515:3;11456:67;:::i;:::-;11449:74;;11532:93;11621:3;11532:93;:::i;:::-;11650:2;11645:3;11641:12;11634:19;;11293:366;;;:::o;11665:::-;11807:3;11828:67;11892:2;11887:3;11828:67;:::i;:::-;11821:74;;11904:93;11993:3;11904:93;:::i;:::-;12022:2;12017:3;12013:12;12006:19;;11665:366;;;:::o;12037:::-;12179:3;12200:67;12264:2;12259:3;12200:67;:::i;:::-;12193:74;;12276:93;12365:3;12276:93;:::i;:::-;12394:2;12389:3;12385:12;12378:19;;12037:366;;;:::o;12409:::-;12551:3;12572:67;12636:2;12631:3;12572:67;:::i;:::-;12565:74;;12648:93;12737:3;12648:93;:::i;:::-;12766:2;12761:3;12757:12;12750:19;;12409:366;;;:::o;12781:::-;12923:3;12944:67;13008:2;13003:3;12944:67;:::i;:::-;12937:74;;13020:93;13109:3;13020:93;:::i;:::-;13138:2;13133:3;13129:12;13122:19;;12781:366;;;:::o;13153:::-;13295:3;13316:67;13380:2;13375:3;13316:67;:::i;:::-;13309:74;;13392:93;13481:3;13392:93;:::i;:::-;13510:2;13505:3;13501:12;13494:19;;13153:366;;;:::o;13525:::-;13667:3;13688:67;13752:2;13747:3;13688:67;:::i;:::-;13681:74;;13764:93;13853:3;13764:93;:::i;:::-;13882:2;13877:3;13873:12;13866:19;;13525:366;;;:::o;13897:::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:::-;14411:3;14432:67;14496:2;14491:3;14432:67;:::i;:::-;14425:74;;14508:93;14597:3;14508:93;:::i;:::-;14626:2;14621:3;14617:12;14610:19;;14269:366;;;:::o;14711:697::-;14870:4;14865:3;14861:14;14957:4;14950:5;14946:16;14940:23;14976:63;15033:4;15028:3;15024:14;15010:12;14976:63;:::i;:::-;14885:164;15141:4;15134:5;15130:16;15124:23;15160:61;15215:4;15210:3;15206:14;15192:12;15160:61;:::i;:::-;15059:172;15315:4;15308:5;15304:16;15298:23;15334:57;15385:4;15380:3;15376:14;15362:12;15334:57;:::i;:::-;15241:160;14839:569;14711:697;;:::o;15414:118::-;15501:24;15519:5;15501:24;:::i;:::-;15496:3;15489:37;15414:118;;:::o;15538:105::-;15613:23;15630:5;15613:23;:::i;:::-;15608:3;15601:36;15538:105;;:::o;15649:583::-;15871:3;15893:92;15981:3;15972:6;15893:92;:::i;:::-;15886:99;;16002:95;16093:3;16084:6;16002:95;:::i;:::-;15995:102;;16114:92;16202:3;16193:6;16114:92;:::i;:::-;16107:99;;16223:3;16216:10;;15649:583;;;;;;:::o;16238:222::-;16331:4;16369:2;16358:9;16354:18;16346:26;;16382:71;16450:1;16439:9;16435:17;16426:6;16382:71;:::i;:::-;16238:222;;;;:::o;16466:640::-;16661:4;16699:3;16688:9;16684:19;16676:27;;16713:71;16781:1;16770:9;16766:17;16757:6;16713:71;:::i;:::-;16794:72;16862:2;16851:9;16847:18;16838:6;16794:72;:::i;:::-;16876;16944:2;16933:9;16929:18;16920:6;16876:72;:::i;:::-;16995:9;16989:4;16985:20;16980:2;16969:9;16965:18;16958:48;17023:76;17094:4;17085:6;17023:76;:::i;:::-;17015:84;;16466:640;;;;;;;:::o;17112:210::-;17199:4;17237:2;17226:9;17222:18;17214:26;;17250:65;17312:1;17301:9;17297:17;17288:6;17250:65;:::i;:::-;17112:210;;;;:::o;17328:313::-;17441:4;17479:2;17468:9;17464:18;17456:26;;17528:9;17522:4;17518:20;17514:1;17503:9;17499:17;17492:47;17556:78;17629:4;17620:6;17556:78;:::i;:::-;17548:86;;17328:313;;;;:::o;17647:419::-;17813:4;17851:2;17840:9;17836:18;17828:26;;17900:9;17894:4;17890:20;17886:1;17875:9;17871:17;17864:47;17928:131;18054:4;17928:131;:::i;:::-;17920:139;;17647:419;;;:::o;18072:::-;18238:4;18276:2;18265:9;18261:18;18253:26;;18325:9;18319:4;18315:20;18311:1;18300:9;18296:17;18289:47;18353:131;18479:4;18353:131;:::i;:::-;18345:139;;18072:419;;;:::o;18497:::-;18663:4;18701:2;18690:9;18686:18;18678:26;;18750:9;18744:4;18740:20;18736:1;18725:9;18721:17;18714:47;18778:131;18904:4;18778:131;:::i;:::-;18770:139;;18497:419;;;:::o;18922:::-;19088:4;19126:2;19115:9;19111:18;19103:26;;19175:9;19169:4;19165:20;19161:1;19150:9;19146:17;19139:47;19203:131;19329:4;19203:131;:::i;:::-;19195:139;;18922:419;;;:::o;19347:::-;19513:4;19551:2;19540:9;19536:18;19528:26;;19600:9;19594:4;19590:20;19586:1;19575:9;19571:17;19564:47;19628:131;19754:4;19628:131;:::i;:::-;19620:139;;19347:419;;;:::o;19772:::-;19938:4;19976:2;19965:9;19961:18;19953:26;;20025:9;20019:4;20015:20;20011:1;20000:9;19996:17;19989:47;20053:131;20179:4;20053:131;:::i;:::-;20045:139;;19772:419;;;:::o;20197:::-;20363:4;20401:2;20390:9;20386:18;20378:26;;20450:9;20444:4;20440:20;20436:1;20425:9;20421:17;20414:47;20478:131;20604:4;20478:131;:::i;:::-;20470:139;;20197:419;;;:::o;20622:::-;20788:4;20826:2;20815:9;20811:18;20803:26;;20875:9;20869:4;20865:20;20861:1;20850:9;20846:17;20839:47;20903:131;21029:4;20903:131;:::i;:::-;20895:139;;20622:419;;;:::o;21047:::-;21213:4;21251:2;21240:9;21236:18;21228:26;;21300:9;21294:4;21290:20;21286:1;21275:9;21271:17;21264:47;21328:131;21454:4;21328:131;:::i;:::-;21320:139;;21047:419;;;:::o;21472:346::-;21627:4;21665:2;21654:9;21650:18;21642:26;;21678:133;21808:1;21797:9;21793:17;21784:6;21678:133;:::i;:::-;21472:346;;;;:::o;21824:222::-;21917:4;21955:2;21944:9;21940:18;21932:26;;21968:71;22036:1;22025:9;22021:17;22012:6;21968:71;:::i;:::-;21824:222;;;;:::o;22052:129::-;22086:6;22113:20;;:::i;:::-;22103:30;;22142:33;22170:4;22162:6;22142:33;:::i;:::-;22052:129;;;:::o;22187:75::-;22220:6;22253:2;22247:9;22237:19;;22187:75;:::o;22268:311::-;22345:4;22435:18;22427:6;22424:30;22421:56;;;22457:18;;:::i;:::-;22421:56;22507:4;22499:6;22495:17;22487:25;;22567:4;22561;22557:15;22549:23;;22268:311;;;:::o;22585:307::-;22646:4;22736:18;22728:6;22725:30;22722:56;;;22758:18;;:::i;:::-;22722:56;22796:29;22818:6;22796:29;:::i;:::-;22788:37;;22880:4;22874;22870:15;22862:23;;22585:307;;;:::o;22898:308::-;22960:4;23050:18;23042:6;23039:30;23036:56;;;23072:18;;:::i;:::-;23036:56;23110:29;23132:6;23110:29;:::i;:::-;23102:37;;23194:4;23188;23184:15;23176:23;;22898:308;;;:::o;23212:141::-;23261:4;23284:3;23276:11;;23307:3;23304:1;23297:14;23341:4;23338:1;23328:18;23320:26;;23212:141;;;:::o;23359:98::-;23410:6;23444:5;23438:12;23428:22;;23359:98;;;:::o;23463:99::-;23515:6;23549:5;23543:12;23533:22;;23463:99;;;:::o;23568:168::-;23651:11;23685:6;23680:3;23673:19;23725:4;23720:3;23716:14;23701:29;;23568:168;;;;:::o;23742:169::-;23826:11;23860:6;23855:3;23848:19;23900:4;23895:3;23891:14;23876:29;;23742:169;;;;:::o;23917:148::-;24019:11;24056:3;24041:18;;23917:148;;;;:::o;24071:305::-;24111:3;24130:20;24148:1;24130:20;:::i;:::-;24125:25;;24164:20;24182:1;24164:20;:::i;:::-;24159:25;;24318:1;24250:66;24246:74;24243:1;24240:81;24237:107;;;24324:18;;:::i;:::-;24237:107;24368:1;24365;24361:9;24354:16;;24071:305;;;;:::o;24382:185::-;24422:1;24439:20;24457:1;24439:20;:::i;:::-;24434:25;;24473:20;24491:1;24473:20;:::i;:::-;24468:25;;24512:1;24502:35;;24517:18;;:::i;:::-;24502:35;24559:1;24556;24552:9;24547:14;;24382:185;;;;:::o;24573:348::-;24613:7;24636:20;24654:1;24636:20;:::i;:::-;24631:25;;24670:20;24688:1;24670:20;:::i;:::-;24665:25;;24858:1;24790:66;24786:74;24783:1;24780:81;24775:1;24768:9;24761:17;24757:105;24754:131;;;24865:18;;:::i;:::-;24754:131;24913:1;24910;24906:9;24895:20;;24573:348;;;;:::o;24927:191::-;24967:4;24987:20;25005:1;24987:20;:::i;:::-;24982:25;;25021:20;25039:1;25021:20;:::i;:::-;25016:25;;25060:1;25057;25054:8;25051:34;;;25065:18;;:::i;:::-;25051:34;25110:1;25107;25103:9;25095:17;;24927:191;;;;:::o;25124:96::-;25161:7;25190:24;25208:5;25190:24;:::i;:::-;25179:35;;25124:96;;;:::o;25226:90::-;25260:7;25303:5;25296:13;25289:21;25278:32;;25226:90;;;:::o;25322:149::-;25358:7;25398:66;25391:5;25387:78;25376:89;;25322:149;;;:::o;25477:126::-;25514:7;25554:42;25547:5;25543:54;25532:65;;25477:126;;;:::o;25609:77::-;25646:7;25675:5;25664:16;;25609:77;;;:::o;25692:101::-;25728:7;25768:18;25761:5;25757:30;25746:41;;25692:101;;;:::o;25799:154::-;25883:6;25878:3;25873;25860:30;25945:1;25936:6;25931:3;25927:16;25920:27;25799:154;;;:::o;25959:307::-;26027:1;26037:113;26051:6;26048:1;26045:13;26037:113;;;26136:1;26131:3;26127:11;26121:18;26117:1;26112:3;26108:11;26101:39;26073:2;26070:1;26066:10;26061:15;;26037:113;;;26168:6;26165:1;26162:13;26159:101;;;26248:1;26239:6;26234:3;26230:16;26223:27;26159:101;26008:258;25959:307;;;:::o;26272:320::-;26316:6;26353:1;26347:4;26343:12;26333:22;;26400:1;26394:4;26390:12;26421:18;26411:81;;26477:4;26469:6;26465:17;26455:27;;26411:81;26539:2;26531:6;26528:14;26508:18;26505:38;26502:84;;;26558:18;;:::i;:::-;26502:84;26323:269;26272:320;;;:::o;26598:281::-;26681:27;26703:4;26681:27;:::i;:::-;26673:6;26669:40;26811:6;26799:10;26796:22;26775:18;26763:10;26760:34;26757:62;26754:88;;;26822:18;;:::i;:::-;26754:88;26862:10;26858:2;26851:22;26641:238;26598:281;;:::o;26885:233::-;26924:3;26947:24;26965:5;26947:24;:::i;:::-;26938:33;;26993:66;26986:5;26983:77;26980:103;;;27063:18;;:::i;:::-;26980:103;27110:1;27103:5;27099:13;27092:20;;26885:233;;;:::o;27124:176::-;27156:1;27173:20;27191:1;27173:20;:::i;:::-;27168:25;;27207:20;27225:1;27207:20;:::i;:::-;27202:25;;27246:1;27236:35;;27251:18;;:::i;:::-;27236:35;27292:1;27289;27285:9;27280:14;;27124:176;;;;:::o;27306:180::-;27354:77;27351:1;27344:88;27451:4;27448:1;27441:15;27475:4;27472:1;27465:15;27492:180;27540:77;27537:1;27530:88;27637:4;27634:1;27627:15;27661:4;27658:1;27651:15;27678:180;27726:77;27723:1;27716:88;27823:4;27820:1;27813:15;27847:4;27844:1;27837:15;27864:180;27912:77;27909:1;27902:88;28009:4;28006:1;27999:15;28033:4;28030:1;28023:15;28050:180;28098:77;28095:1;28088:88;28195:4;28192:1;28185:15;28219:4;28216:1;28209:15;28236:117;28345:1;28342;28335:12;28359:117;28468:1;28465;28458:12;28482:117;28591:1;28588;28581:12;28605:117;28714:1;28711;28704:12;28728:117;28837:1;28834;28827:12;28851:102;28892:6;28943:2;28939:7;28934:2;28927:5;28923:14;28919:28;28909:38;;28851:102;;;:::o;28959:178::-;29099:30;29095:1;29087:6;29083:14;29076:54;28959:178;:::o;29143:173::-;29283:25;29279:1;29271:6;29267:14;29260:49;29143:173;:::o;29322:225::-;29462:34;29458:1;29450:6;29446:14;29439:58;29531:8;29526:2;29518:6;29514:15;29507:33;29322:225;:::o;29553:178::-;29693:30;29689:1;29681:6;29677:14;29670:54;29553:178;:::o;29737:221::-;29877:34;29873:1;29865:6;29861:14;29854:58;29946:4;29941:2;29933:6;29929:15;29922:29;29737:221;:::o;29964:231::-;30104:34;30100:1;30092:6;30088:14;30081:58;30173:14;30168:2;30160:6;30156:15;30149:39;29964:231;:::o;30201:182::-;30341:34;30337:1;30329:6;30325:14;30318:58;30201:182;:::o;30389:169::-;30529:21;30525:1;30517:6;30513:14;30506:45;30389:169;:::o;30564:::-;30704:21;30700:1;30692:6;30688:14;30681:45;30564:169;:::o;30739:122::-;30812:24;30830:5;30812:24;:::i;:::-;30805:5;30802:35;30792:63;;30851:1;30848;30841:12;30792:63;30739:122;:::o;30867:116::-;30937:21;30952:5;30937:21;:::i;:::-;30930:5;30927:32;30917:60;;30973:1;30970;30963:12;30917:60;30867:116;:::o;30989:120::-;31061:23;31078:5;31061:23;:::i;:::-;31054:5;31051:34;31041:62;;31099:1;31096;31089:12;31041:62;30989:120;:::o;31115:122::-;31188:24;31206:5;31188:24;:::i;:::-;31181:5;31178:35;31168:63;;31227:1;31224;31217:12;31168:63;31115:122;:::o
Swarm Source
ipfs://64f3cd30b409cc879a26ffdf7d301c5062d63a1e37827a9fdf83ffb2ade2f1ed
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.