Polygon Sponsored slots available. Book your slot here!
ERC-721
Overview
Max Total Supply
4,000 KLABS
Holders
278
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ProfKalitosLab
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-04-05 */ /** *Submitted for verification at polygonscan.com on 2022-04-17 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ 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 tokenId); /** * @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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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.7.0 <0.9.0; contract ProfKalitosLab is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 4000; uint256 public maxMintAmount = 10; bool public paused = false; address public ogMekaSwans; uint32 public allSupply = 0; uint32 public currentSupply = 0; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { ogMekaSwans = 0x414F8C30797eA7ca8d3fe3707fBB023cB43A53cf; setBaseURI(_initBaseURI); currentSupply = 4000; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public free mint function mint(uint256 _mintAmount) public { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); allSupply++; } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function airdrop(address[] calldata to) public onlyOwner { for (uint32 i = 0; i < to.length; i++) { require(1 + allSupply <= currentSupply, "Limit reached"); _safeMint(to[i], ++allSupply, ""); } } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMekaSwans","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600c9062000026908262000268565b50610fa0600d55600a600e55600f805460ff600160a81b03600160e81b031916905534801562000054575f80fd5b506040516200286f3803806200286f8339810160408190526200007791620003e1565b82825f62000086838262000268565b50600162000095828262000268565b505050620000b2620000ac6200010460201b60201c565b62000108565b600f8054610100600160a81b03191674414f8c30797ea7ca8d3fe3707fbb023cb43a53cf00179055620000e58162000159565b5050600f805463ffffffff60c81b1916607d60cd1b179055506200046c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600a546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b620001c6828262000268565b5050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001f357607f821691505b6020821081036200021257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200026357805f5260205f20601f840160051c810160208510156200023f5750805b601f840160051c820191505b8181101562000260575f81556001016200024b565b50505b505050565b81516001600160401b03811115620002845762000284620001ca565b6200029c81620002958454620001de565b8462000218565b602080601f831160018114620002d2575f8415620002ba5750858301515b5f19600386901b1c1916600185901b1785556200032c565b5f85815260208120601f198616915b828110156200030257888601518255948401946001909101908401620002e1565b50858210156200032057878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f82601f83011262000344575f80fd5b81516001600160401b0380821115620003615762000361620001ca565b604051601f8301601f19908116603f011681019082821181831017156200038c576200038c620001ca565b8160405283815260209250866020858801011115620003a9575f80fd5b5f91505b83821015620003cc5785820183015181830184015290820190620003ad565b5f602085830101528094505050505092915050565b5f805f60608486031215620003f4575f80fd5b83516001600160401b03808211156200040b575f80fd5b620004198783880162000334565b945060208601519150808211156200042f575f80fd5b6200043d8783880162000334565b9350604086015191508082111562000453575f80fd5b50620004628682870162000334565b9150509250925092565b6123f5806200047a5f395ff3fe6080604052600436106101f1575f3560e01c80636a6432a111610108578063a0712d681161009d578063c87b56dd1161006d578063c87b56dd1461058d578063d5abeb01146105ac578063da3ef23f146105c1578063e985e9c5146105e0578063f2fde38b14610627575f80fd5b8063a0712d681461051c578063a22cb4651461053b578063b88d4fde1461055a578063c668286214610579575f80fd5b8063771282f6116100d8578063771282f6146104a95780637f00c7a6146104cc5780638da5cb5b146104eb57806395d89b4114610508575f80fd5b80636a6432a11461043357806370a0823114610457578063715018a614610476578063729ad39e1461048a575f80fd5b80632f745c5911610189578063438b630011610159578063438b6300146103915780634f6ccce7146103bd57806355f804b3146103dc5780635c975abb146103fb5780636352211e14610414575f80fd5b80632f745c59146103135780633ccfd60b14610332578063423207321461033a57806342842e0e14610372575f80fd5b8063095ea7b3116101c4578063095ea7b3146102a257806318160ddd146102c1578063239c70ae146102df57806323b872dd146102f4575f80fd5b806301ffc9a7146101f557806302329a291461022957806306fdde031461024a578063081812fc1461026b575b5f80fd5b348015610200575f80fd5b5061021461020f366004611c19565b610646565b60405190151581526020015b60405180910390f35b348015610234575f80fd5b50610248610243366004611c48565b610670565b005b348015610255575f80fd5b5061025e6106b6565b6040516102209190611cae565b348015610276575f80fd5b5061028a610285366004611cc0565b610745565b6040516001600160a01b039091168152602001610220565b3480156102ad575f80fd5b506102486102bc366004611ced565b6107d8565b3480156102cc575f80fd5b506008545b604051908152602001610220565b3480156102ea575f80fd5b506102d1600e5481565b3480156102ff575f80fd5b5061024861030e366004611d15565b6108ec565b34801561031e575f80fd5b506102d161032d366004611ced565b61091d565b6102486109b1565b348015610345575f80fd5b50600f5461035d90600160a81b900463ffffffff1681565b60405163ffffffff9091168152602001610220565b34801561037d575f80fd5b5061024861038c366004611d15565b610a4a565b34801561039c575f80fd5b506103b06103ab366004611d4e565b610a64565b6040516102209190611d67565b3480156103c8575f80fd5b506102d16103d7366004611cc0565b610af9565b3480156103e7575f80fd5b506102486103f6366004611e31565b610b89565b348015610406575f80fd5b50600f546102149060ff1681565b34801561041f575f80fd5b5061028a61042e366004611cc0565b610bc3565b34801561043e575f80fd5b50600f5461028a9061010090046001600160a01b031681565b348015610462575f80fd5b506102d1610471366004611d4e565b610c39565b348015610481575f80fd5b50610248610cbe565b348015610495575f80fd5b506102486104a4366004611e76565b610cf3565b3480156104b4575f80fd5b50600f5461035d90600160c81b900463ffffffff1681565b3480156104d7575f80fd5b506102486104e6366004611cc0565b610e2d565b3480156104f6575f80fd5b50600a546001600160a01b031661028a565b348015610513575f80fd5b5061025e610e5c565b348015610527575f80fd5b50610248610536366004611cc0565b610e6b565b348015610546575f80fd5b50610248610555366004611ee5565b610f23565b348015610565575f80fd5b50610248610574366004611f16565b610fe6565b348015610584575f80fd5b5061025e61101e565b348015610598575f80fd5b5061025e6105a7366004611cc0565b6110aa565b3480156105b7575f80fd5b506102d1600d5481565b3480156105cc575f80fd5b506102486105db366004611e31565b611184565b3480156105eb575f80fd5b506102146105fa366004611f8d565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b348015610632575f80fd5b50610248610641366004611d4e565b6111ba565b5f6001600160e01b0319821663780e9d6360e01b148061066a575061066a82611252565b92915050565b600a546001600160a01b031633146106a35760405162461bcd60e51b815260040161069a90611fb5565b60405180910390fd5b600f805460ff1916911515919091179055565b60605f80546106c490611fea565b80601f01602080910402602001604051908101604052809291908181526020018280546106f090611fea565b801561073b5780601f106107125761010080835404028352916020019161073b565b820191905f5260205f20905b81548152906001019060200180831161071e57829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b03166107bd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069a565b505f908152600460205260409020546001600160a01b031690565b5f6107e282610bc3565b9050806001600160a01b0316836001600160a01b03160361084f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069a565b336001600160a01b038216148061086b575061086b81336105fa565b6108dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069a565b6108e783836112a1565b505050565b6108f6338261130e565b6109125760405162461bcd60e51b815260040161069a90612022565b6108e7838383611402565b5f61092783610c39565b82106109895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161069a565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109db5760405162461bcd60e51b815260040161069a90611fb5565b5f6109ee600a546001600160a01b031690565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610a35576040519150601f19603f3d011682016040523d82523d5f602084013e610a3a565b606091505b5050905080610a47575f80fd5b50565b6108e783838360405180602001604052805f815250610fe6565b60605f610a7083610c39565b90505f8167ffffffffffffffff811115610a8c57610a8c611daa565b604051908082528060200260200182016040528015610ab5578160200160208202803683370190505b5090505f5b82811015610af157610acc858261091d565b828281518110610ade57610ade612073565b6020908102919091010152600101610aba565b509392505050565b5f610b0360085490565b8210610b665760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161069a565b60088281548110610b7957610b79612073565b905f5260205f2001549050919050565b600a546001600160a01b03163314610bb35760405162461bcd60e51b815260040161069a90611fb5565b600b610bbf82826120d2565b5050565b5f818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069a565b5f6001600160a01b038216610ca35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069a565b506001600160a01b03165f9081526003602052604090205490565b600a546001600160a01b03163314610ce85760405162461bcd60e51b815260040161069a90611fb5565b610cf15f6115a9565b565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161069a90611fb5565b5f5b63ffffffff81168211156108e757600f5463ffffffff600160c81b8204811691610d5391600160a81b9091041660016121a6565b63ffffffff161115610d975760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161069a565b610e1b83838363ffffffff16818110610db257610db2612073565b9050602002016020810190610dc79190611d4e565b600f8054601590610de490600160a81b900463ffffffff166121ca565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff1660405180602001604052805f8152506115fa565b80610e25816121ca565b915050610d1f565b600a546001600160a01b03163314610e575760405162461bcd60e51b815260040161069a90611fb5565b600e55565b6060600180546106c490611fea565b5f610e7560085490565b600f5490915060ff1615610e87575f80fd5b5f8211610e92575f80fd5b600e54821115610ea0575f80fd5b600d54610ead83836121ec565b1115610eb7575f80fd5b60015b8281116108e757610ed433610ecf83856121ec565b61162c565b600f8054600160a81b900463ffffffff16906015610ef1836121ca565b91906101000a81548163ffffffff021916908363ffffffff160217905550508080610f1b906121ff565b915050610eba565b336001600160a01b03831603610f7b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069a565b335f8181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ff0338361130e565b61100c5760405162461bcd60e51b815260040161069a90612022565b61101884848484611645565b50505050565b600c805461102b90611fea565b80601f016020809104026020016040519081016040528092919081815260200182805461105790611fea565b80156110a25780601f10611079576101008083540402835291602001916110a2565b820191905f5260205f20905b81548152906001019060200180831161108557829003601f168201915b505050505081565b5f818152600260205260409020546060906001600160a01b03166111285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069a565b5f611131611678565b90505f81511161114f5760405180602001604052805f81525061117d565b8061115984611687565b600c60405160200161116d93929190612217565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111ae5760405162461bcd60e51b815260040161069a90611fb5565b600c610bbf82826120d2565b600a546001600160a01b031633146111e45760405162461bcd60e51b815260040161069a90611fb5565b6001600160a01b0381166112495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b610a47816115a9565b5f6001600160e01b031982166380ac58cd60e01b148061128257506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b5f81815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112d582610bc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f818152600260205260408120546001600160a01b03166113865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069a565b5f61139083610bc3565b9050806001600160a01b0316846001600160a01b031614806113cb5750836001600160a01b03166113c084610745565b6001600160a01b0316145b806113fa57506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141582610bc3565b6001600160a01b03161461147d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069a565b6001600160a01b0382166114df5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069a565b6114ea838383611784565b6114f45f826112a1565b6001600160a01b0383165f90815260036020526040812080546001929061151c9084906122b5565b90915550506001600160a01b0382165f9081526003602052604081208054600192906115499084906121ec565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b611604838361183b565b6116105f848484611985565b6108e75760405162461bcd60e51b815260040161069a906122c8565b610bbf828260405180602001604052805f8152506115fa565b611650848484611402565b61165c84848484611985565b6110185760405162461bcd60e51b815260040161069a906122c8565b6060600b80546106c490611fea565b6060815f036116ad5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156116d657806116c0816121ff565b91506116cf9050600a8361232e565b91506116b0565b5f8167ffffffffffffffff8111156116f0576116f0611daa565b6040519080825280601f01601f19166020018201604052801561171a576020820181803683370190505b5090505b84156113fa5761172f6001836122b5565b915061173c600a86612341565b6117479060306121ec565b60f81b81838151811061175c5761175c612073565b60200101906001600160f81b03191690815f1a90535061177d600a8661232e565b945061171e565b6001600160a01b0383166117de576117d981600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611801565b816001600160a01b0316836001600160a01b031614611801576118018382611a82565b6001600160a01b038216611818576108e781611b1b565b826001600160a01b0316826001600160a01b0316146108e7576108e78282611bc2565b6001600160a01b0382166118915760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069a565b5f818152600260205260409020546001600160a01b0316156118f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069a565b6119005f8383611784565b6001600160a01b0382165f9081526003602052604081208054600192906119289084906121ec565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001600160a01b0384163b15611a7757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c8903390899088908890600401612354565b6020604051808303815f875af1925050508015611a02575060408051601f3d908101601f191682019092526119ff91810190612390565b60015b611a5d573d808015611a2f576040519150601f19603f3d011682016040523d82523d5f602084013e611a34565b606091505b5080515f03611a555760405162461bcd60e51b815260040161069a906122c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113fa565b506001949350505050565b5f6001611a8e84610c39565b611a9891906122b5565b5f83815260076020526040902054909150808214611ae9576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611b2c906001906122b5565b5f8381526009602052604081205460088054939450909284908110611b5357611b53612073565b905f5260205f20015490508060088381548110611b7257611b72612073565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ba957611ba96123ab565b600190038181905f5260205f20015f9055905550505050565b5f611bcc83610c39565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610a47575f80fd5b5f60208284031215611c29575f80fd5b813561117d81611c04565b80358015158114611c43575f80fd5b919050565b5f60208284031215611c58575f80fd5b61117d82611c34565b5f5b83811015611c7b578181015183820152602001611c63565b50505f910152565b5f8151808452611c9a816020860160208601611c61565b601f01601f19169290920160200192915050565b602081525f61117d6020830184611c83565b5f60208284031215611cd0575f80fd5b5035919050565b80356001600160a01b0381168114611c43575f80fd5b5f8060408385031215611cfe575f80fd5b611d0783611cd7565b946020939093013593505050565b5f805f60608486031215611d27575f80fd5b611d3084611cd7565b9250611d3e60208501611cd7565b9150604084013590509250925092565b5f60208284031215611d5e575f80fd5b61117d82611cd7565b602080825282518282018190525f9190848201906040850190845b81811015611d9e57835183529284019291840191600101611d82565b50909695505050505050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611dd857611dd8611daa565b604051601f8501601f19908116603f01168101908282118183101715611e0057611e00611daa565b81604052809350858152868686011115611e18575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611e41575f80fd5b813567ffffffffffffffff811115611e57575f80fd5b8201601f81018413611e67575f80fd5b6113fa84823560208401611dbe565b5f8060208385031215611e87575f80fd5b823567ffffffffffffffff80821115611e9e575f80fd5b818501915085601f830112611eb1575f80fd5b813581811115611ebf575f80fd5b8660208260051b8501011115611ed3575f80fd5b60209290920196919550909350505050565b5f8060408385031215611ef6575f80fd5b611eff83611cd7565b9150611f0d60208401611c34565b90509250929050565b5f805f8060808587031215611f29575f80fd5b611f3285611cd7565b9350611f4060208601611cd7565b925060408501359150606085013567ffffffffffffffff811115611f62575f80fd5b8501601f81018713611f72575f80fd5b611f8187823560208401611dbe565b91505092959194509250565b5f8060408385031215611f9e575f80fd5b611fa783611cd7565b9150611f0d60208401611cd7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ffe57607f821691505b60208210810361201c57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b601f8211156108e757805f5260205f20601f840160051c810160208510156120ac5750805b601f840160051c820191505b818110156120cb575f81556001016120b8565b5050505050565b815167ffffffffffffffff8111156120ec576120ec611daa565b612100816120fa8454611fea565b84612087565b602080601f831160018114612133575f841561211c5750858301515b5f19600386901b1c1916600185901b17855561218a565b5f85815260208120601f198616915b8281101561216157888601518255948401946001909101908401612142565b508582101561217e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff8181168382160190808211156121c3576121c3612192565b5092915050565b5f63ffffffff8083168181036121e2576121e2612192565b6001019392505050565b8082018082111561066a5761066a612192565b5f6001820161221057612210612192565b5060010190565b5f8451602061222a828560208a01611c61565b85519184019161223e818460208a01611c61565b85549201915f9061224e81611fea565b60018281168015612266576001811461227b576122a5565b60ff19841687528215158302870194506122a5565b895f5260205f205f5b8481101561229d57815489820152908301908701612284565b505082870194505b50929a9950505050505050505050565b8181038181111561066a5761066a612192565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b5f52601260045260245ffd5b5f8261233c5761233c61231a565b500490565b5f8261234f5761234f61231a565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061238690830184611c83565b9695505050505050565b5f602082840312156123a0575f80fd5b815161117d81611c04565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220253ef8799ac9ee6214b50dcf6967eef1434c6fde11feadddab82de42cbdaabaa64736f6c63430008160033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001250726f662e204b616c69746f2773204c6162000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b4c4142530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696167356433766c746c366171663235686e7666676b7775367436336170666f796d353474646276766767757463697871326d736d2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f1575f3560e01c80636a6432a111610108578063a0712d681161009d578063c87b56dd1161006d578063c87b56dd1461058d578063d5abeb01146105ac578063da3ef23f146105c1578063e985e9c5146105e0578063f2fde38b14610627575f80fd5b8063a0712d681461051c578063a22cb4651461053b578063b88d4fde1461055a578063c668286214610579575f80fd5b8063771282f6116100d8578063771282f6146104a95780637f00c7a6146104cc5780638da5cb5b146104eb57806395d89b4114610508575f80fd5b80636a6432a11461043357806370a0823114610457578063715018a614610476578063729ad39e1461048a575f80fd5b80632f745c5911610189578063438b630011610159578063438b6300146103915780634f6ccce7146103bd57806355f804b3146103dc5780635c975abb146103fb5780636352211e14610414575f80fd5b80632f745c59146103135780633ccfd60b14610332578063423207321461033a57806342842e0e14610372575f80fd5b8063095ea7b3116101c4578063095ea7b3146102a257806318160ddd146102c1578063239c70ae146102df57806323b872dd146102f4575f80fd5b806301ffc9a7146101f557806302329a291461022957806306fdde031461024a578063081812fc1461026b575b5f80fd5b348015610200575f80fd5b5061021461020f366004611c19565b610646565b60405190151581526020015b60405180910390f35b348015610234575f80fd5b50610248610243366004611c48565b610670565b005b348015610255575f80fd5b5061025e6106b6565b6040516102209190611cae565b348015610276575f80fd5b5061028a610285366004611cc0565b610745565b6040516001600160a01b039091168152602001610220565b3480156102ad575f80fd5b506102486102bc366004611ced565b6107d8565b3480156102cc575f80fd5b506008545b604051908152602001610220565b3480156102ea575f80fd5b506102d1600e5481565b3480156102ff575f80fd5b5061024861030e366004611d15565b6108ec565b34801561031e575f80fd5b506102d161032d366004611ced565b61091d565b6102486109b1565b348015610345575f80fd5b50600f5461035d90600160a81b900463ffffffff1681565b60405163ffffffff9091168152602001610220565b34801561037d575f80fd5b5061024861038c366004611d15565b610a4a565b34801561039c575f80fd5b506103b06103ab366004611d4e565b610a64565b6040516102209190611d67565b3480156103c8575f80fd5b506102d16103d7366004611cc0565b610af9565b3480156103e7575f80fd5b506102486103f6366004611e31565b610b89565b348015610406575f80fd5b50600f546102149060ff1681565b34801561041f575f80fd5b5061028a61042e366004611cc0565b610bc3565b34801561043e575f80fd5b50600f5461028a9061010090046001600160a01b031681565b348015610462575f80fd5b506102d1610471366004611d4e565b610c39565b348015610481575f80fd5b50610248610cbe565b348015610495575f80fd5b506102486104a4366004611e76565b610cf3565b3480156104b4575f80fd5b50600f5461035d90600160c81b900463ffffffff1681565b3480156104d7575f80fd5b506102486104e6366004611cc0565b610e2d565b3480156104f6575f80fd5b50600a546001600160a01b031661028a565b348015610513575f80fd5b5061025e610e5c565b348015610527575f80fd5b50610248610536366004611cc0565b610e6b565b348015610546575f80fd5b50610248610555366004611ee5565b610f23565b348015610565575f80fd5b50610248610574366004611f16565b610fe6565b348015610584575f80fd5b5061025e61101e565b348015610598575f80fd5b5061025e6105a7366004611cc0565b6110aa565b3480156105b7575f80fd5b506102d1600d5481565b3480156105cc575f80fd5b506102486105db366004611e31565b611184565b3480156105eb575f80fd5b506102146105fa366004611f8d565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b348015610632575f80fd5b50610248610641366004611d4e565b6111ba565b5f6001600160e01b0319821663780e9d6360e01b148061066a575061066a82611252565b92915050565b600a546001600160a01b031633146106a35760405162461bcd60e51b815260040161069a90611fb5565b60405180910390fd5b600f805460ff1916911515919091179055565b60605f80546106c490611fea565b80601f01602080910402602001604051908101604052809291908181526020018280546106f090611fea565b801561073b5780601f106107125761010080835404028352916020019161073b565b820191905f5260205f20905b81548152906001019060200180831161071e57829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b03166107bd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069a565b505f908152600460205260409020546001600160a01b031690565b5f6107e282610bc3565b9050806001600160a01b0316836001600160a01b03160361084f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069a565b336001600160a01b038216148061086b575061086b81336105fa565b6108dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069a565b6108e783836112a1565b505050565b6108f6338261130e565b6109125760405162461bcd60e51b815260040161069a90612022565b6108e7838383611402565b5f61092783610c39565b82106109895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161069a565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109db5760405162461bcd60e51b815260040161069a90611fb5565b5f6109ee600a546001600160a01b031690565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610a35576040519150601f19603f3d011682016040523d82523d5f602084013e610a3a565b606091505b5050905080610a47575f80fd5b50565b6108e783838360405180602001604052805f815250610fe6565b60605f610a7083610c39565b90505f8167ffffffffffffffff811115610a8c57610a8c611daa565b604051908082528060200260200182016040528015610ab5578160200160208202803683370190505b5090505f5b82811015610af157610acc858261091d565b828281518110610ade57610ade612073565b6020908102919091010152600101610aba565b509392505050565b5f610b0360085490565b8210610b665760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161069a565b60088281548110610b7957610b79612073565b905f5260205f2001549050919050565b600a546001600160a01b03163314610bb35760405162461bcd60e51b815260040161069a90611fb5565b600b610bbf82826120d2565b5050565b5f818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069a565b5f6001600160a01b038216610ca35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069a565b506001600160a01b03165f9081526003602052604090205490565b600a546001600160a01b03163314610ce85760405162461bcd60e51b815260040161069a90611fb5565b610cf15f6115a9565b565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161069a90611fb5565b5f5b63ffffffff81168211156108e757600f5463ffffffff600160c81b8204811691610d5391600160a81b9091041660016121a6565b63ffffffff161115610d975760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b604482015260640161069a565b610e1b83838363ffffffff16818110610db257610db2612073565b9050602002016020810190610dc79190611d4e565b600f8054601590610de490600160a81b900463ffffffff166121ca565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff1660405180602001604052805f8152506115fa565b80610e25816121ca565b915050610d1f565b600a546001600160a01b03163314610e575760405162461bcd60e51b815260040161069a90611fb5565b600e55565b6060600180546106c490611fea565b5f610e7560085490565b600f5490915060ff1615610e87575f80fd5b5f8211610e92575f80fd5b600e54821115610ea0575f80fd5b600d54610ead83836121ec565b1115610eb7575f80fd5b60015b8281116108e757610ed433610ecf83856121ec565b61162c565b600f8054600160a81b900463ffffffff16906015610ef1836121ca565b91906101000a81548163ffffffff021916908363ffffffff160217905550508080610f1b906121ff565b915050610eba565b336001600160a01b03831603610f7b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069a565b335f8181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ff0338361130e565b61100c5760405162461bcd60e51b815260040161069a90612022565b61101884848484611645565b50505050565b600c805461102b90611fea565b80601f016020809104026020016040519081016040528092919081815260200182805461105790611fea565b80156110a25780601f10611079576101008083540402835291602001916110a2565b820191905f5260205f20905b81548152906001019060200180831161108557829003601f168201915b505050505081565b5f818152600260205260409020546060906001600160a01b03166111285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069a565b5f611131611678565b90505f81511161114f5760405180602001604052805f81525061117d565b8061115984611687565b600c60405160200161116d93929190612217565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111ae5760405162461bcd60e51b815260040161069a90611fb5565b600c610bbf82826120d2565b600a546001600160a01b031633146111e45760405162461bcd60e51b815260040161069a90611fb5565b6001600160a01b0381166112495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069a565b610a47816115a9565b5f6001600160e01b031982166380ac58cd60e01b148061128257506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b5f81815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112d582610bc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f818152600260205260408120546001600160a01b03166113865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069a565b5f61139083610bc3565b9050806001600160a01b0316846001600160a01b031614806113cb5750836001600160a01b03166113c084610745565b6001600160a01b0316145b806113fa57506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141582610bc3565b6001600160a01b03161461147d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069a565b6001600160a01b0382166114df5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069a565b6114ea838383611784565b6114f45f826112a1565b6001600160a01b0383165f90815260036020526040812080546001929061151c9084906122b5565b90915550506001600160a01b0382165f9081526003602052604081208054600192906115499084906121ec565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b611604838361183b565b6116105f848484611985565b6108e75760405162461bcd60e51b815260040161069a906122c8565b610bbf828260405180602001604052805f8152506115fa565b611650848484611402565b61165c84848484611985565b6110185760405162461bcd60e51b815260040161069a906122c8565b6060600b80546106c490611fea565b6060815f036116ad5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156116d657806116c0816121ff565b91506116cf9050600a8361232e565b91506116b0565b5f8167ffffffffffffffff8111156116f0576116f0611daa565b6040519080825280601f01601f19166020018201604052801561171a576020820181803683370190505b5090505b84156113fa5761172f6001836122b5565b915061173c600a86612341565b6117479060306121ec565b60f81b81838151811061175c5761175c612073565b60200101906001600160f81b03191690815f1a90535061177d600a8661232e565b945061171e565b6001600160a01b0383166117de576117d981600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611801565b816001600160a01b0316836001600160a01b031614611801576118018382611a82565b6001600160a01b038216611818576108e781611b1b565b826001600160a01b0316826001600160a01b0316146108e7576108e78282611bc2565b6001600160a01b0382166118915760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069a565b5f818152600260205260409020546001600160a01b0316156118f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161069a565b6119005f8383611784565b6001600160a01b0382165f9081526003602052604081208054600192906119289084906121ec565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001600160a01b0384163b15611a7757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119c8903390899088908890600401612354565b6020604051808303815f875af1925050508015611a02575060408051601f3d908101601f191682019092526119ff91810190612390565b60015b611a5d573d808015611a2f576040519150601f19603f3d011682016040523d82523d5f602084013e611a34565b606091505b5080515f03611a555760405162461bcd60e51b815260040161069a906122c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113fa565b506001949350505050565b5f6001611a8e84610c39565b611a9891906122b5565b5f83815260076020526040902054909150808214611ae9576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611b2c906001906122b5565b5f8381526009602052604081205460088054939450909284908110611b5357611b53612073565b905f5260205f20015490508060088381548110611b7257611b72612073565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ba957611ba96123ab565b600190038181905f5260205f20015f9055905550505050565b5f611bcc83610c39565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981168114610a47575f80fd5b5f60208284031215611c29575f80fd5b813561117d81611c04565b80358015158114611c43575f80fd5b919050565b5f60208284031215611c58575f80fd5b61117d82611c34565b5f5b83811015611c7b578181015183820152602001611c63565b50505f910152565b5f8151808452611c9a816020860160208601611c61565b601f01601f19169290920160200192915050565b602081525f61117d6020830184611c83565b5f60208284031215611cd0575f80fd5b5035919050565b80356001600160a01b0381168114611c43575f80fd5b5f8060408385031215611cfe575f80fd5b611d0783611cd7565b946020939093013593505050565b5f805f60608486031215611d27575f80fd5b611d3084611cd7565b9250611d3e60208501611cd7565b9150604084013590509250925092565b5f60208284031215611d5e575f80fd5b61117d82611cd7565b602080825282518282018190525f9190848201906040850190845b81811015611d9e57835183529284019291840191600101611d82565b50909695505050505050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611dd857611dd8611daa565b604051601f8501601f19908116603f01168101908282118183101715611e0057611e00611daa565b81604052809350858152868686011115611e18575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611e41575f80fd5b813567ffffffffffffffff811115611e57575f80fd5b8201601f81018413611e67575f80fd5b6113fa84823560208401611dbe565b5f8060208385031215611e87575f80fd5b823567ffffffffffffffff80821115611e9e575f80fd5b818501915085601f830112611eb1575f80fd5b813581811115611ebf575f80fd5b8660208260051b8501011115611ed3575f80fd5b60209290920196919550909350505050565b5f8060408385031215611ef6575f80fd5b611eff83611cd7565b9150611f0d60208401611c34565b90509250929050565b5f805f8060808587031215611f29575f80fd5b611f3285611cd7565b9350611f4060208601611cd7565b925060408501359150606085013567ffffffffffffffff811115611f62575f80fd5b8501601f81018713611f72575f80fd5b611f8187823560208401611dbe565b91505092959194509250565b5f8060408385031215611f9e575f80fd5b611fa783611cd7565b9150611f0d60208401611cd7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ffe57607f821691505b60208210810361201c57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b601f8211156108e757805f5260205f20601f840160051c810160208510156120ac5750805b601f840160051c820191505b818110156120cb575f81556001016120b8565b5050505050565b815167ffffffffffffffff8111156120ec576120ec611daa565b612100816120fa8454611fea565b84612087565b602080601f831160018114612133575f841561211c5750858301515b5f19600386901b1c1916600185901b17855561218a565b5f85815260208120601f198616915b8281101561216157888601518255948401946001909101908401612142565b508582101561217e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff8181168382160190808211156121c3576121c3612192565b5092915050565b5f63ffffffff8083168181036121e2576121e2612192565b6001019392505050565b8082018082111561066a5761066a612192565b5f6001820161221057612210612192565b5060010190565b5f8451602061222a828560208a01611c61565b85519184019161223e818460208a01611c61565b85549201915f9061224e81611fea565b60018281168015612266576001811461227b576122a5565b60ff19841687528215158302870194506122a5565b895f5260205f205f5b8481101561229d57815489820152908301908701612284565b505082870194505b50929a9950505050505050505050565b8181038181111561066a5761066a612192565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b5f52601260045260245ffd5b5f8261233c5761233c61231a565b500490565b5f8261234f5761234f61231a565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061238690830184611c83565b9695505050505050565b5f602082840312156123a0575f80fd5b815161117d81611c04565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220253ef8799ac9ee6214b50dcf6967eef1434c6fde11feadddab82de42cbdaabaa64736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001250726f662e204b616c69746f2773204c6162000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b4c4142530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696167356433766c746c366171663235686e7666676b7775367436336170666f796d353474646276766767757463697871326d736d2f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Prof. Kalito's Lab
Arg [1] : _symbol (string): KLABS
Arg [2] : _initBaseURI (string): ipfs://bafybeiag5d3vltl6aqf25hnvfgkwu6t63apfoym54tdbvvggutcixq2msm/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 50726f662e204b616c69746f2773204c61620000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4b4c414253000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f626166796265696167356433766c746c366171663235686e76
Arg [9] : 66676b7775367436336170666f796d353474646276766767757463697871326d
Arg [10] : 736d2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43189:2958:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34736:224;;;;;;;;;;-1:-1:-1;34736:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34736:224:0;;;;;;;;45739:73;;;;;;;;;;-1:-1:-1;45739:73:0;;;;;:::i;:::-;;:::i;:::-;;22628:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24187:221::-;;;;;;;;;;-1:-1:-1;24187:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;24187:221:0;1883:203:1;23710:411:0;;;;;;;;;;-1:-1:-1;23710:411:0;;;;;:::i;:::-;;:::i;35376:113::-;;;;;;;;;;-1:-1:-1;35464:10:0;:17;35376:113;;;2674:25:1;;;2662:2;2647:18;35376:113:0;2528:177:1;43376:33:0;;;;;;;;;;;;;;;;25077:339;;;;;;;;;;-1:-1:-1;25077:339:0;;;;;:::i;:::-;;:::i;35044:256::-;;;;;;;;;;-1:-1:-1;35044:256:0;;;;;:::i;:::-;;:::i;45819:323::-;;;:::i;43478:27::-;;;;;;;;;;-1:-1:-1;43478:27:0;;;;-1:-1:-1;;;43478:27:0;;;;;;;;;3217:10:1;3205:23;;;3187:42;;3175:2;3160:18;43478:27:0;3043:192:1;25487:185:0;;;;;;;;;;-1:-1:-1;25487:185:0;;;;;:::i;:::-;;:::i;44316:348::-;;;;;;;;;;-1:-1:-1;44316:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35566:233::-;;;;;;;;;;-1:-1:-1;35566:233:0;;;;;:::i;:::-;;:::i;45507:98::-;;;;;;;;;;-1:-1:-1;45507:98:0;;;;;:::i;:::-;;:::i;43414:26::-;;;;;;;;;;-1:-1:-1;43414:26:0;;;;;;;;22322:239;;;;;;;;;;-1:-1:-1;22322:239:0;;;;;:::i;:::-;;:::i;43445:26::-;;;;;;;;;;-1:-1:-1;43445:26:0;;;;;;;-1:-1:-1;;;;;43445:26:0;;;22052:208;;;;;;;;;;-1:-1:-1;22052:208:0;;;;;:::i;:::-;;:::i;42525:94::-;;;;;;;;;;;;;:::i;45122:255::-;;;;;;;;;;-1:-1:-1;45122:255:0;;;;;:::i;:::-;;:::i;43510:31::-;;;;;;;;;;-1:-1:-1;43510:31:0;;;;-1:-1:-1;;;43510:31:0;;;;;;45383:116;;;;;;;;;;-1:-1:-1;45383:116:0;;;;;:::i;:::-;;:::i;41874:87::-;;;;;;;;;;-1:-1:-1;41947:6:0;;-1:-1:-1;;;;;41947:6:0;41874:87;;22797:104;;;;;;;;;;;;;:::i;43956:354::-;;;;;;;;;;-1:-1:-1;43956:354:0;;;;;:::i;:::-;;:::i;24480:295::-;;;;;;;;;;-1:-1:-1;24480:295:0;;;;;:::i;:::-;;:::i;25743:328::-;;;;;;;;;;-1:-1:-1;25743:328:0;;;;;:::i;:::-;;:::i;43298:37::-;;;;;;;;;;;;;:::i;44670:427::-;;;;;;;;;;-1:-1:-1;44670:427:0;;;;;:::i;:::-;;:::i;43340:31::-;;;;;;;;;;;;;;;;45611:122;;;;;;;;;;-1:-1:-1;45611:122:0;;;;;:::i;:::-;;:::i;24846:164::-;;;;;;;;;;-1:-1:-1;24846:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24967:25:0;;;24943:4;24967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24846:164;42774:192;;;;;;;;;;-1:-1:-1;42774:192:0;;;;;:::i;:::-;;:::i;34736:224::-;34838:4;-1:-1:-1;;;;;;34862:50:0;;-1:-1:-1;;;34862:50:0;;:90;;;34916:36;34940:11;34916:23;:36::i;:::-;34855:97;34736:224;-1:-1:-1;;34736:224:0:o;45739:73::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;;;;;;;;;45791:6:::1;:15:::0;;-1:-1:-1;;45791:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45739:73::o;22628:100::-;22682:13;22715:5;22708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22628:100;:::o;24187:221::-;24263:7;27670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27670:16:0;24283:73;;;;-1:-1:-1;;;24283:73:0;;8057:2:1;24283:73:0;;;8039:21:1;8096:2;8076:18;;;8069:30;8135:34;8115:18;;;8108:62;-1:-1:-1;;;8186:18:1;;;8179:42;8238:19;;24283:73:0;7855:408:1;24283:73:0;-1:-1:-1;24376:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24376:24:0;;24187:221::o;23710:411::-;23791:13;23807:23;23822:7;23807:14;:23::i;:::-;23791:39;;23855:5;-1:-1:-1;;;;;23849:11:0;:2;-1:-1:-1;;;;;23849:11:0;;23841:57;;;;-1:-1:-1;;;23841:57:0;;8470:2:1;23841:57:0;;;8452:21:1;8509:2;8489:18;;;8482:30;8548:34;8528:18;;;8521:62;-1:-1:-1;;;8599:18:1;;;8592:31;8640:19;;23841:57:0;8268:397:1;23841:57:0;20237:10;-1:-1:-1;;;;;23933:21:0;;;;:62;;-1:-1:-1;23958:37:0;23975:5;20237:10;24846:164;:::i;23958:37::-;23911:168;;;;-1:-1:-1;;;23911:168:0;;8872:2:1;23911:168:0;;;8854:21:1;8911:2;8891:18;;;8884:30;8950:34;8930:18;;;8923:62;9021:26;9001:18;;;8994:54;9065:19;;23911:168:0;8670:420:1;23911:168:0;24092:21;24101:2;24105:7;24092:8;:21::i;:::-;23780:341;23710:411;;:::o;25077:339::-;25272:41;20237:10;25305:7;25272:18;:41::i;:::-;25264:103;;;;-1:-1:-1;;;25264:103:0;;;;;;;:::i;:::-;25380:28;25390:4;25396:2;25400:7;25380:9;:28::i;35044:256::-;35141:7;35177:23;35194:5;35177:16;:23::i;:::-;35169:5;:31;35161:87;;;;-1:-1:-1;;;35161:87:0;;9715:2:1;35161:87:0;;;9697:21:1;9754:2;9734:18;;;9727:30;9793:34;9773:18;;;9766:62;-1:-1:-1;;;9844:18:1;;;9837:41;9895:19;;35161:87:0;9513:407:1;35161:87:0;-1:-1:-1;;;;;;35266:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35044:256::o;45819:323::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;45964:7:::1;45985;41947:6:::0;;-1:-1:-1;;;;;41947:6:0;;41874:87;45985:7:::1;-1:-1:-1::0;;;;;45977:21:0::1;46006;45977:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45963:69;;;46047:2;46039:11;;;::::0;::::1;;45864:278;45819:323::o:0;25487:185::-;25625:39;25642:4;25648:2;25652:7;25625:39;;;;;;;;;;;;:16;:39::i;44316:348::-;44391:16;44419:23;44445:17;44455:6;44445:9;:17::i;:::-;44419:43;;44469:25;44511:15;44497:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44497:30:0;;44469:58;;44539:9;44534:103;44554:15;44550:1;:19;44534:103;;;44599:30;44619:6;44627:1;44599:19;:30::i;:::-;44585:8;44594:1;44585:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;44571:3;;44534:103;;;-1:-1:-1;44650:8:0;44316:348;-1:-1:-1;;;44316:348:0:o;35566:233::-;35641:7;35677:30;35464:10;:17;;35376:113;35677:30;35669:5;:38;35661:95;;;;-1:-1:-1;;;35661:95:0;;10469:2:1;35661:95:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:34;10527:18;;;10520:62;-1:-1:-1;;;10598:18:1;;;10591:42;10650:19;;35661:95:0;10267:408:1;35661:95:0;35774:10;35785:5;35774:17;;;;;;;;:::i;:::-;;;;;;;;;35767:24;;35566:233;;;:::o;45507:98::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;45578:7:::1;:21;45588:11:::0;45578:7;:21:::1;:::i;:::-;;45507:98:::0;:::o;22322:239::-;22394:7;22430:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22430:16:0;;22457:73;;;;-1:-1:-1;;;22457:73:0;;13052:2:1;22457:73:0;;;13034:21:1;13091:2;13071:18;;;13064:30;13130:34;13110:18;;;13103:62;-1:-1:-1;;;13181:18:1;;;13174:39;13230:19;;22457:73:0;12850:405:1;22052:208:0;22124:7;-1:-1:-1;;;;;22152:19:0;;22144:74;;;;-1:-1:-1;;;22144:74:0;;13462:2:1;22144:74:0;;;13444:21:1;13501:2;13481:18;;;13474:30;13540:34;13520:18;;;13513:62;-1:-1:-1;;;13591:18:1;;;13584:40;13641:19;;22144:74:0;13260:406:1;22144:74:0;-1:-1:-1;;;;;;22236:16:0;;;;;:9;:16;;;;;;;22052:208::o;42525:94::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;42590:21:::1;42608:1;42590:9;:21::i;:::-;42525:94::o:0;45122:255::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;45205:8:::1;45200:170;45219:13;::::0;::::1;::::0;-1:-1:-1;45200:170:0::1;;;45279:13;::::0;::::1;-1:-1:-1::0;;;45279:13:0;::::1;::::0;::::1;::::0;45262::::1;::::0;-1:-1:-1;;;45266:9:0;;::::1;;45262:1;:13;:::i;:::-;:30;;;;45254:56;;;::::0;-1:-1:-1;;;45254:56:0;;14182:2:1;45254:56:0::1;::::0;::::1;14164:21:1::0;14221:2;14201:18;;;14194:30;-1:-1:-1;;;14240:18:1;;;14233:43;14293:18;;45254:56:0::1;13980:337:1::0;45254:56:0::1;45325:33;45335:2;;45338:1;45335:5;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;45344:9;45342:11:::0;;45344:9:::1;::::0;45342:11:::1;::::0;-1:-1:-1;;;45342:11:0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;45325:33;;;;;;;;;;;;;::::0;:9:::1;:33::i;:::-;45234:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45200:170;;45383:116:::0;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;45460:13:::1;:33:::0;45383:116::o;22797:104::-;22853:13;22886:7;22879:14;;;;;:::i;43956:354::-;44006:14;44023:13;35464:10;:17;;35376:113;44023:13;44052:6;;44006:30;;-1:-1:-1;44052:6:0;;44051:7;44043:16;;;;;;44088:1;44074:11;:15;44066:24;;;;;;44120:13;;44105:11;:28;;44097:37;;;;;;44173:9;;44149:20;44158:11;44149:6;:20;:::i;:::-;:33;;44141:42;;;;;;44209:1;44192:113;44217:11;44212:1;:16;44192:113;;44244:33;44254:10;44266;44275:1;44266:6;:10;:::i;:::-;44244:9;:33::i;:::-;44286:9;:11;;-1:-1:-1;;;44286:11:0;;;;;:9;:11;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;44230:3;;;;;:::i;:::-;;;;44192:113;;24480:295;20237:10;-1:-1:-1;;;;;24583:24:0;;;24575:62;;;;-1:-1:-1;;;24575:62:0;;15000:2:1;24575:62:0;;;14982:21:1;15039:2;15019:18;;;15012:30;15078:27;15058:18;;;15051:55;15123:18;;24575:62:0;14798:349:1;24575:62:0;20237:10;24650:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24650:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24650:53:0;;;;;;;;;;24719:48;;540:41:1;;;24650:42:0;;20237:10;24719:48;;513:18:1;24719:48:0;;;;;;;24480:295;;:::o;25743:328::-;25918:41;20237:10;25951:7;25918:18;:41::i;:::-;25910:103;;;;-1:-1:-1;;;25910:103:0;;;;;;;:::i;:::-;26024:39;26038:4;26044:2;26048:7;26057:5;26024:13;:39::i;:::-;25743:328;;;;:::o;43298:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44670:427::-;27646:4;27670:16;;;:7;:16;;;;;;44768:13;;-1:-1:-1;;;;;27670:16:0;44793:97;;;;-1:-1:-1;;;44793:97:0;;15354:2:1;44793:97:0;;;15336:21:1;15393:2;15373:18;;;15366:30;15432:34;15412:18;;;15405:62;-1:-1:-1;;;15483:18:1;;;15476:45;15538:19;;44793:97:0;15152:411:1;44793:97:0;44903:28;44934:10;:8;:10::i;:::-;44903:41;;44989:1;44964:14;44958:28;:32;:133;;;;;;;;;;;;;;;;;45026:14;45042:18;:7;:16;:18::i;:::-;45062:13;45009:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44958:133;44951:140;44670:427;-1:-1:-1;;;44670:427:0:o;45611:122::-;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;45694:13:::1;:33;45710:17:::0;45694:13;:33:::1;:::i;42774:192::-:0;41947:6;;-1:-1:-1;;;;;41947:6:0;20237:10;42094:23;42086:68;;;;-1:-1:-1;;;42086:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42863:22:0;::::1;42855:73;;;::::0;-1:-1:-1;;;42855:73:0;;17036:2:1;42855:73:0::1;::::0;::::1;17018:21:1::0;17075:2;17055:18;;;17048:30;17114:34;17094:18;;;17087:62;-1:-1:-1;;;17165:18:1;;;17158:36;17211:19;;42855:73:0::1;16834:402:1::0;42855:73:0::1;42939:19;42949:8;42939:9;:19::i;21683:305::-:0;21785:4;-1:-1:-1;;;;;;21822:40:0;;-1:-1:-1;;;21822:40:0;;:105;;-1:-1:-1;;;;;;;21879:48:0;;-1:-1:-1;;;21879:48:0;21822:105;:158;;;-1:-1:-1;;;;;;;;;;7623:40:0;;;21944:36;7514:157;31563:174;31638:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31638:29:0;-1:-1:-1;;;;;31638:29:0;;;;;;;;:24;;31692:23;31638:24;31692:14;:23::i;:::-;-1:-1:-1;;;;;31683:46:0;;;;;;;;;;;31563:174;;:::o;27875:348::-;27968:4;27670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27670:16:0;27985:73;;;;-1:-1:-1;;;27985:73:0;;17443:2:1;27985:73:0;;;17425:21:1;17482:2;17462:18;;;17455:30;17521:34;17501:18;;;17494:62;-1:-1:-1;;;17572:18:1;;;17565:42;17624:19;;27985:73:0;17241:408:1;27985:73:0;28069:13;28085:23;28100:7;28085:14;:23::i;:::-;28069:39;;28138:5;-1:-1:-1;;;;;28127:16:0;:7;-1:-1:-1;;;;;28127:16:0;;:51;;;;28171:7;-1:-1:-1;;;;;28147:31:0;:20;28159:7;28147:11;:20::i;:::-;-1:-1:-1;;;;;28147:31:0;;28127:51;:87;;;-1:-1:-1;;;;;;24967:25:0;;;24943:4;24967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28182:32;28119:96;27875:348;-1:-1:-1;;;;27875:348:0:o;30867:578::-;31026:4;-1:-1:-1;;;;;30999:31:0;:23;31014:7;30999:14;:23::i;:::-;-1:-1:-1;;;;;30999:31:0;;30991:85;;;;-1:-1:-1;;;30991:85:0;;17856:2:1;30991:85:0;;;17838:21:1;17895:2;17875:18;;;17868:30;17934:34;17914:18;;;17907:62;-1:-1:-1;;;17985:18:1;;;17978:39;18034:19;;30991:85:0;17654:405:1;30991:85:0;-1:-1:-1;;;;;31095:16:0;;31087:65;;;;-1:-1:-1;;;31087:65:0;;18266:2:1;31087:65:0;;;18248:21:1;18305:2;18285:18;;;18278:30;18344:34;18324:18;;;18317:62;-1:-1:-1;;;18395:18:1;;;18388:34;18439:19;;31087:65:0;18064:400:1;31087:65:0;31165:39;31186:4;31192:2;31196:7;31165:20;:39::i;:::-;31269:29;31286:1;31290:7;31269:8;:29::i;:::-;-1:-1:-1;;;;;31311:15:0;;;;;;:9;:15;;;;;:20;;31330:1;;31311:15;:20;;31330:1;;31311:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31342:13:0;;;;;;:9;:13;;;;;:18;;31359:1;;31342:13;:18;;31359:1;;31342:18;:::i;:::-;;;;-1:-1:-1;;31371:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31371:21:0;-1:-1:-1;;;;;31371:21:0;;;;;;;;;31410:27;;31371:16;;31410:27;;;;;;;30867:578;;;:::o;42974:173::-;43049:6;;;-1:-1:-1;;;;;43066:17:0;;;-1:-1:-1;;;;;;43066:17:0;;;;;;;43099:40;;43049:6;;;43066:17;43049:6;;43099:40;;43030:16;;43099:40;43019:128;42974:173;:::o;28902:321::-;29032:18;29038:2;29042:7;29032:5;:18::i;:::-;29083:54;29114:1;29118:2;29122:7;29131:5;29083:22;:54::i;:::-;29061:154;;;;-1:-1:-1;;;29061:154:0;;;;;;;:::i;28565:110::-;28641:26;28651:2;28655:7;28641:26;;;;;;;;;;;;:9;:26::i;26953:315::-;27110:28;27120:4;27126:2;27130:7;27110:9;:28::i;:::-;27157:48;27180:4;27186:2;27190:7;27199:5;27157:22;:48::i;:::-;27149:111;;;;-1:-1:-1;;;27149:111:0;;;;;;;:::i;43825:102::-;43885:13;43914:7;43907:14;;;;;:::i;7989:723::-;8045:13;8266:5;8275:1;8266:10;8262:53;;-1:-1:-1;;8293:10:0;;;;;;;;;;;;-1:-1:-1;;;8293:10:0;;;;;7989:723::o;8262:53::-;8340:5;8325:12;8381:78;8388:9;;8381:78;;8414:8;;;;:::i;:::-;;-1:-1:-1;8437:10:0;;-1:-1:-1;8445:2:0;8437:10;;:::i;:::-;;;8381:78;;;8469:19;8501:6;8491:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8491:17:0;;8469:39;;8519:154;8526:10;;8519:154;;8553:11;8563:1;8553:11;;:::i;:::-;;-1:-1:-1;8622:10:0;8630:2;8622:5;:10;:::i;:::-;8609:24;;:2;:24;:::i;:::-;8596:39;;8579:6;8586;8579:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8579:56:0;;;;;;;;-1:-1:-1;8650:11:0;8659:2;8650:11;;:::i;:::-;;;8519:154;;36412:589;-1:-1:-1;;;;;36618:18:0;;36614:187;;36653:40;36685:7;37828:10;:17;;37801:24;;;;:15;:24;;;;;:44;;;37856:24;;;;;;;;;;;;37724:164;36653:40;36614:187;;;36723:2;-1:-1:-1;;;;;36715:10:0;:4;-1:-1:-1;;;;;36715:10:0;;36711:90;;36742:47;36775:4;36781:7;36742:32;:47::i;:::-;-1:-1:-1;;;;;36815:16:0;;36811:183;;36848:45;36885:7;36848:36;:45::i;36811:183::-;36921:4;-1:-1:-1;;;;;36915:10:0;:2;-1:-1:-1;;;;;36915:10:0;;36911:83;;36942:40;36970:2;36974:7;36942:27;:40::i;29559:382::-;-1:-1:-1;;;;;29639:16:0;;29631:61;;;;-1:-1:-1;;;29631:61:0;;19597:2:1;29631:61:0;;;19579:21:1;;;19616:18;;;19609:30;19675:34;19655:18;;;19648:62;19727:18;;29631:61:0;19395:356:1;29631:61:0;27646:4;27670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27670:16:0;:30;29703:58;;;;-1:-1:-1;;;29703:58:0;;19958:2:1;29703:58:0;;;19940:21:1;19997:2;19977:18;;;19970:30;20036;20016:18;;;20009:58;20084:18;;29703:58:0;19756:352:1;29703:58:0;29774:45;29803:1;29807:2;29811:7;29774:20;:45::i;:::-;-1:-1:-1;;;;;29832:13:0;;;;;;:9;:13;;;;;:18;;29849:1;;29832:13;:18;;29849:1;;29832:18;:::i;:::-;;;;-1:-1:-1;;29861:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29861:21:0;-1:-1:-1;;;;;29861:21:0;;;;;;;;29900:33;;29861:16;;;29900:33;;29861:16;;29900:33;29559:382;;:::o;32302:799::-;32457:4;-1:-1:-1;;;;;32478:13:0;;10837:20;10885:8;32474:620;;32514:72;;-1:-1:-1;;;32514:72:0;;-1:-1:-1;;;;;32514:36:0;;;;;:72;;20237:10;;32565:4;;32571:7;;32580:5;;32514:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32514:72:0;;;;;;;;-1:-1:-1;;32514:72:0;;;;;;;;;;;;:::i;:::-;;;32510:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32756:6;:13;32773:1;32756:18;32752:272;;32799:60;;-1:-1:-1;;;32799:60:0;;;;;;;:::i;32752:272::-;32974:6;32968:13;32959:6;32955:2;32951:15;32944:38;32510:529;-1:-1:-1;;;;;;32637:51:0;-1:-1:-1;;;32637:51:0;;-1:-1:-1;32630:58:0;;32474:620;-1:-1:-1;33078:4:0;32302:799;;;;;;:::o;38515:988::-;38781:22;38831:1;38806:22;38823:4;38806:16;:22::i;:::-;:26;;;;:::i;:::-;38843:18;38864:26;;;:17;:26;;;;;;38781:51;;-1:-1:-1;38997:28:0;;;38993:328;;-1:-1:-1;;;;;39064:18:0;;39042:19;39064:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39115:30;;;;;;:44;;;39232:30;;:17;:30;;;;;:43;;;38993:328;-1:-1:-1;39417:26:0;;;;:17;:26;;;;;;;;39410:33;;;-1:-1:-1;;;;;39461:18:0;;;;;:12;:18;;;;;:34;;;;;;;39454:41;38515:988::o;39798:1079::-;40076:10;:17;40051:22;;40076:21;;40096:1;;40076:21;:::i;:::-;40108:18;40129:24;;;:15;:24;;;;;;40502:10;:26;;40051:46;;-1:-1:-1;40129:24:0;;40051:46;;40502:26;;;;;;:::i;:::-;;;;;;;;;40480:48;;40566:11;40541:10;40552;40541:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40646:28;;;:15;:28;;;;;;;:41;;;40818:24;;;;;40811:31;40853:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39869:1008;;;39798:1079;:::o;37302:221::-;37387:14;37404:20;37421:2;37404:16;:20::i;:::-;-1:-1:-1;;;;;37435:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37480:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37302:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3240:186::-;3299:6;3352:2;3340:9;3331:7;3327:23;3323:32;3320:52;;;3368:1;3365;3358:12;3320:52;3391:29;3410:9;3391:29;:::i;3431:632::-;3602:2;3654:21;;;3724:13;;3627:18;;;3746:22;;;3573:4;;3602:2;3825:15;;;;3799:2;3784:18;;;3573:4;3868:169;3882:6;3879:1;3876:13;3868:169;;;3943:13;;3931:26;;4012:15;;;;3977:12;;;;3904:1;3897:9;3868:169;;;-1:-1:-1;4054:3:1;;3431:632;-1:-1:-1;;;;;;3431:632:1:o;4068:127::-;4129:10;4124:3;4120:20;4117:1;4110:31;4160:4;4157:1;4150:15;4184:4;4181:1;4174:15;4200:632;4265:5;4295:18;4336:2;4328:6;4325:14;4322:40;;;4342:18;;:::i;:::-;4417:2;4411:9;4385:2;4471:15;;-1:-1:-1;;4467:24:1;;;4493:2;4463:33;4459:42;4447:55;;;4517:18;;;4537:22;;;4514:46;4511:72;;;4563:18;;:::i;:::-;4603:10;4599:2;4592:22;4632:6;4623:15;;4662:6;4654;4647:22;4702:3;4693:6;4688:3;4684:16;4681:25;4678:45;;;4719:1;4716;4709:12;4678:45;4769:6;4764:3;4757:4;4749:6;4745:17;4732:44;4824:1;4817:4;4808:6;4800;4796:19;4792:30;4785:41;;;;4200:632;;;;;:::o;4837:451::-;4906:6;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5015:9;5002:23;5048:18;5040:6;5037:30;5034:50;;;5080:1;5077;5070:12;5034:50;5103:22;;5156:4;5148:13;;5144:27;-1:-1:-1;5134:55:1;;5185:1;5182;5175:12;5134:55;5208:74;5274:7;5269:2;5256:16;5251:2;5247;5243:11;5208:74;:::i;5293:615::-;5379:6;5387;5440:2;5428:9;5419:7;5415:23;5411:32;5408:52;;;5456:1;5453;5446:12;5408:52;5496:9;5483:23;5525:18;5566:2;5558:6;5555:14;5552:34;;;5582:1;5579;5572:12;5552:34;5620:6;5609:9;5605:22;5595:32;;5665:7;5658:4;5654:2;5650:13;5646:27;5636:55;;5687:1;5684;5677:12;5636:55;5727:2;5714:16;5753:2;5745:6;5742:14;5739:34;;;5769:1;5766;5759:12;5739:34;5822:7;5817:2;5807:6;5804:1;5800:14;5796:2;5792:23;5788:32;5785:45;5782:65;;;5843:1;5840;5833:12;5782:65;5874:2;5866:11;;;;;5896:6;;-1:-1:-1;5293:615:1;;-1:-1:-1;;;;5293:615:1:o;5913:254::-;5978:6;5986;6039:2;6027:9;6018:7;6014:23;6010:32;6007:52;;;6055:1;6052;6045:12;6007:52;6078:29;6097:9;6078:29;:::i;:::-;6068:39;;6126:35;6157:2;6146:9;6142:18;6126:35;:::i;:::-;6116:45;;5913:254;;;;;:::o;6172:667::-;6267:6;6275;6283;6291;6344:3;6332:9;6323:7;6319:23;6315:33;6312:53;;;6361:1;6358;6351:12;6312:53;6384:29;6403:9;6384:29;:::i;:::-;6374:39;;6432:38;6466:2;6455:9;6451:18;6432:38;:::i;:::-;6422:48;;6517:2;6506:9;6502:18;6489:32;6479:42;;6572:2;6561:9;6557:18;6544:32;6599:18;6591:6;6588:30;6585:50;;;6631:1;6628;6621:12;6585:50;6654:22;;6707:4;6699:13;;6695:27;-1:-1:-1;6685:55:1;;6736:1;6733;6726:12;6685:55;6759:74;6825:7;6820:2;6807:16;6802:2;6798;6794:11;6759:74;:::i;:::-;6749:84;;;6172:667;;;;;;;:::o;6844:260::-;6912:6;6920;6973:2;6961:9;6952:7;6948:23;6944:32;6941:52;;;6989:1;6986;6979:12;6941:52;7012:29;7031:9;7012:29;:::i;:::-;7002:39;;7060:38;7094:2;7083:9;7079:18;7060:38;:::i;7109:356::-;7311:2;7293:21;;;7330:18;;;7323:30;7389:34;7384:2;7369:18;;7362:62;7456:2;7441:18;;7109:356::o;7470:380::-;7549:1;7545:12;;;;7592;;;7613:61;;7667:4;7659:6;7655:17;7645:27;;7613:61;7720:2;7712:6;7709:14;7689:18;7686:38;7683:161;;7766:10;7761:3;7757:20;7754:1;7747:31;7801:4;7798:1;7791:15;7829:4;7826:1;7819:15;7683:161;;7470:380;;;:::o;9095:413::-;9297:2;9279:21;;;9336:2;9316:18;;;9309:30;9375:34;9370:2;9355:18;;9348:62;-1:-1:-1;;;9441:2:1;9426:18;;9419:47;9498:3;9483:19;;9095:413::o;10135:127::-;10196:10;10191:3;10187:20;10184:1;10177:31;10227:4;10224:1;10217:15;10251:4;10248:1;10241:15;10806:518;10908:2;10903:3;10900:11;10897:421;;;10944:5;10941:1;10934:16;10988:4;10985:1;10975:18;11058:2;11046:10;11042:19;11039:1;11035:27;11029:4;11025:38;11094:4;11082:10;11079:20;11076:47;;;-1:-1:-1;11117:4:1;11076:47;11172:2;11167:3;11163:12;11160:1;11156:20;11150:4;11146:31;11136:41;;11227:81;11245:2;11238:5;11235:13;11227:81;;;11304:1;11290:16;;11271:1;11260:13;11227:81;;;11231:3;;10806:518;;;:::o;11500:1345::-;11626:3;11620:10;11653:18;11645:6;11642:30;11639:56;;;11675:18;;:::i;:::-;11704:97;11794:6;11754:38;11786:4;11780:11;11754:38;:::i;:::-;11748:4;11704:97;:::i;:::-;11856:4;;11913:2;11902:14;;11930:1;11925:663;;;;12632:1;12649:6;12646:89;;;-1:-1:-1;12701:19:1;;;12695:26;12646:89;-1:-1:-1;;11457:1:1;11453:11;;;11449:24;11445:29;11435:40;11481:1;11477:11;;;11432:57;12748:81;;11895:944;;11925:663;10753:1;10746:14;;;10790:4;10777:18;;-1:-1:-1;;11961:20:1;;;12079:236;12093:7;12090:1;12087:14;12079:236;;;12182:19;;;12176:26;12161:42;;12274:27;;;;12242:1;12230:14;;;;12109:19;;12079:236;;;12083:3;12343:6;12334:7;12331:19;12328:201;;;12404:19;;;12398:26;-1:-1:-1;;12487:1:1;12483:14;;;12499:3;12479:24;12475:37;12471:42;12456:58;12441:74;;12328:201;;;12575:1;12566:6;12563:1;12559:14;12555:22;12549:4;12542:36;11895:944;;;;;11500:1345;;:::o;13671:127::-;13732:10;13727:3;13723:20;13720:1;13713:31;13763:4;13760:1;13753:15;13787:4;13784:1;13777:15;13803:172;13870:10;13900;;;13912;;;13896:27;;13935:11;;;13932:37;;;13949:18;;:::i;:::-;13932:37;13803:172;;;;:::o;14322:201::-;14360:3;14388:10;14433:2;14426:5;14422:14;14460:2;14451:7;14448:15;14445:41;;14466:18;;:::i;:::-;14515:1;14502:15;;14322:201;-1:-1:-1;;;14322:201:1:o;14528:125::-;14593:9;;;14614:10;;;14611:36;;;14627:18;;:::i;14658:135::-;14697:3;14718:17;;;14715:43;;14738:18;;:::i;:::-;-1:-1:-1;14785:1:1;14774:13;;14658:135::o;15568:1261::-;15792:3;15830:6;15824:13;15856:4;15869:66;15928:6;15923:3;15916:4;15908:6;15904:17;15869:66;:::i;:::-;15998:13;;15957:16;;;;16020:70;15998:13;15957:16;16067:4;16055:17;;16020:70;:::i;:::-;16179:13;;16112:20;;;16152:1;;16217:36;16179:13;16217:36;:::i;:::-;16272:1;16289:17;;;16315:141;;;;16470:1;16465:339;;;;16282:522;;16315:141;-1:-1:-1;;16350:24:1;;16336:39;;16427:16;;16420:24;16406:39;;16395:51;;;-1:-1:-1;16315:141:1;;16465:339;16496:6;16493:1;16486:17;16544:4;16541:1;16531:18;16571:1;16585:169;16599:8;16596:1;16593:15;16585:169;;;16681:14;;16666:13;;;16659:37;16724:16;;;;16616:10;;16585:169;;;16589:3;;16785:8;16778:5;16774:20;16767:27;;16282:522;-1:-1:-1;16820:3:1;;15568:1261;-1:-1:-1;;;;;;;;;;15568:1261:1:o;18469:128::-;18536:9;;;18557:11;;;18554:37;;;18571:18;;:::i;18602:414::-;18804:2;18786:21;;;18843:2;18823:18;;;18816:30;18882:34;18877:2;18862:18;;18855:62;-1:-1:-1;;;18948:2:1;18933:18;;18926:48;19006:3;18991:19;;18602:414::o;19021:127::-;19082:10;19077:3;19073:20;19070:1;19063:31;19113:4;19110:1;19103:15;19137:4;19134:1;19127:15;19153:120;19193:1;19219;19209:35;;19224:18;;:::i;:::-;-1:-1:-1;19258:9:1;;19153:120::o;19278:112::-;19310:1;19336;19326:35;;19341:18;;:::i;:::-;-1:-1:-1;19375:9:1;;19278:112::o;20113:489::-;-1:-1:-1;;;;;20382:15:1;;;20364:34;;20434:15;;20429:2;20414:18;;20407:43;20481:2;20466:18;;20459:34;;;20529:3;20524:2;20509:18;;20502:31;;;20307:4;;20550:46;;20576:19;;20568:6;20550:46;:::i;:::-;20542:54;20113:489;-1:-1:-1;;;;;;20113:489:1:o;20607:249::-;20676:6;20729:2;20717:9;20708:7;20704:23;20700:32;20697:52;;;20745:1;20742;20735:12;20697:52;20777:9;20771:16;20796:30;20820:5;20796:30;:::i;20861:127::-;20922:10;20917:3;20913:20;20910:1;20903:31;20953:4;20950:1;20943:15;20977:4;20974:1;20967:15
Swarm Source
ipfs://253ef8799ac9ee6214b50dcf6967eef1434c6fde11feadddab82de42cbdaabaa
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.