Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
719 GMF
Holders
42
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
50 GMFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GangsterMfers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-03 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/GMF.sol pragma solidity ^0.8.4; contract GangsterMfers is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public constant MAX_SUPPLY = 8888; uint256 public constant maxMintsPerTxn = 20; uint256 public constant PRICE = 0.01 ether; string private BASE_URI; string private baseExtension = ".json"; uint256 public FREE_MINT_LIMIT_PER_WALLET; uint256 public MAX_MINT_AMOUNT_PER_TX; bool public IS_SALE_ACTIVE; uint256 public FREE_MINT_IS_ALLOWED_UNTIL; bool public METADATA_FROZEN; mapping(address => uint256) private freeMintCountMap; constructor( string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil ) ERC721A("Gangster Mfers", "GMF") { BASE_URI = baseUri; FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; IS_SALE_ACTIVE = isSaleActive; FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } /* FREE MINT */ function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } /* GETTERS */ function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } 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)) : ""; } /* SETTERS */ function setBaseURI(string memory customBaseURI_) external onlyOwner { require(!METADATA_FROZEN, "Metadata frozen!"); BASE_URI = customBaseURI_; } function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner { FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; } function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner { MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; } function setSaleActive(bool saleIsActive) external onlyOwner { IS_SALE_ACTIVE = saleIsActive; } function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner { FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } function freezeMetadata() external onlyOwner { METADATA_FROZEN = true; } /* MINT */ modifier mintCompliance(uint256 _mintAmount) { require( _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!" ); require( _currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!" ); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 price = PRICE * _mintAmount; if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { price -= remainingFreeMint * PRICE; updateFreeMintCount(msg.sender, remainingFreeMint); } else { price -= _mintAmount * PRICE; updateFreeMintCount(msg.sender, _mintAmount); } } } require(msg.value >= price, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } /* PAYOUT */ address private constant payoutAddress1 = 0x3f250527A817f91DABA8A130e25647dD5f0358E1; function withdraw() public onlyOwner nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(payoutAddress1), balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000289565b503480156200005f57600080fd5b5060405162004440380380620044408339818101604052810190620000859190620003e5565b6040518060400160405280600e81526020017f47616e6773746572204d666572730000000000000000000000000000000000008152506040518060400160405280600381526020017f474d46000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000289565b5080600390805190602001906200012292919062000289565b5062000133620001b660201b60201c565b60008190555050506200015b6200014f620001bb60201b60201c565b620001c360201b60201c565b600160098190555084600a90805190602001906200017b92919062000289565b5083600c8190555082600d8190555081600e60006101000a81548160ff02191690831515021790555080600f8190555050505050506200065a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002979062000537565b90600052602060002090601f016020900481019282620002bb576000855562000307565b82601f10620002d657805160ff191683800117855562000307565b8280016001018555821562000307579182015b8281111562000306578251825591602001919060010190620002e9565b5b5090506200031691906200031a565b5090565b5b80821115620003355760008160009055506001016200031b565b5090565b6000620003506200034a84620004b5565b6200048c565b9050828152602081018484840111156200036f576200036e62000606565b5b6200037c84828562000501565b509392505050565b600081519050620003958162000626565b92915050565b600082601f830112620003b357620003b262000601565b5b8151620003c584826020860162000339565b91505092915050565b600081519050620003df8162000640565b92915050565b600080600080600060a0868803121562000404576200040362000610565b5b600086015167ffffffffffffffff8111156200042557620004246200060b565b5b62000433888289016200039b565b95505060206200044688828901620003ce565b94505060406200045988828901620003ce565b93505060606200046c8882890162000384565b92505060806200047f88828901620003ce565b9150509295509295909350565b600062000498620004ab565b9050620004a682826200056d565b919050565b6000604051905090565b600067ffffffffffffffff821115620004d357620004d2620005d2565b5b620004de8262000615565b9050602081019050919050565b60008115159050919050565b6000819050919050565b60005b838110156200052157808201518184015260208101905062000504565b8381111562000531576000848401525b50505050565b600060028204905060018216806200055057607f821691505b60208210811415620005675762000566620005a3565b5b50919050565b620005788262000615565b810181811067ffffffffffffffff821117156200059a5762000599620005d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200063181620004eb565b81146200063d57600080fd5b50565b6200064b81620004f7565b81146200065757600080fd5b50565b613dd6806200066a6000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d8578063d111515d14610715578063e985e9c51461072c578063f2fde38b14610769578063fdb4953a14610792576101f9565b8063a22cb46514610632578063af54001e1461065b578063b0551ac414610686578063b88d4fde146106af576101f9565b80638d859f3e116100dc5780638d859f3e146105955780638da5cb5b146105c057806395d89b41146105eb578063a0712d6814610616576101f9565b8063715018a61461050157806376d02b7114610518578063841718a6146105435780638b85e43d1461056c576101f9565b806332cb6b0c1161019057806342842e0e1161015f57806342842e0e1461040c57806355f804b314610435578063616cdb1e1461045e5780636352211e1461048757806370a08231146104c4576101f9565b806332cb6b0c146103765780633ccfd60b146103a15780634065b85f146103b8578063408cbf94146103e3576101f9565b806309ef6527116101cc57806309ef6527146102cc57806310b0c052146102f757806318160ddd1461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613042565b6107bd565b60405161023291906134b2565b60405180910390f35b34801561024757600080fd5b5061025061089f565b60405161025d91906134cd565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906130e5565b610931565b60405161029a919061344b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612fd5565b6109ad565b005b3480156102d857600080fd5b506102e1610ab8565b6040516102ee919061364f565b60405180910390f35b34801561030357600080fd5b5061030c610abe565b604051610319919061364f565b60405180910390f35b34801561032e57600080fd5b50610337610ac4565b604051610344919061364f565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190612ebf565b610adb565b005b34801561038257600080fd5b5061038b610aeb565b604051610398919061364f565b60405180910390f35b3480156103ad57600080fd5b506103b6610af1565b005b3480156103c457600080fd5b506103cd610be9565b6040516103da919061364f565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612fd5565b610bef565b005b34801561041857600080fd5b50610433600480360381019061042e9190612ebf565b610d1e565b005b34801561044157600080fd5b5061045c6004803603810190610457919061309c565b610d3e565b005b34801561046a57600080fd5b50610485600480360381019061048091906130e5565b610e24565b005b34801561049357600080fd5b506104ae60048036038101906104a991906130e5565b610eaa565b6040516104bb919061344b565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612e52565b610ec0565b6040516104f8919061364f565b60405180910390f35b34801561050d57600080fd5b50610516610f90565b005b34801561052457600080fd5b5061052d611018565b60405161053a91906134b2565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613015565b61102b565b005b34801561057857600080fd5b50610593600480360381019061058e91906130e5565b6110c4565b005b3480156105a157600080fd5b506105aa61114a565b6040516105b7919061364f565b60405180910390f35b3480156105cc57600080fd5b506105d5611155565b6040516105e2919061344b565b60405180910390f35b3480156105f757600080fd5b5061060061117f565b60405161060d91906134cd565b60405180910390f35b610630600480360381019061062b91906130e5565b611211565b005b34801561063e57600080fd5b5061065960048036038101906106549190612f95565b611437565b005b34801561066757600080fd5b506106706115af565b60405161067d919061364f565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906130e5565b6115b4565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612f12565b61163a565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906130e5565b6116b6565b60405161070c91906134cd565b60405180910390f35b34801561072157600080fd5b5061072a611760565b005b34801561073857600080fd5b50610753600480360381019061074e9190612e7f565b6117f9565b60405161076091906134b2565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190612e52565b61188d565b005b34801561079e57600080fd5b506107a7611985565b6040516107b491906134b2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782611998565b5b9050919050565b6060600280546108ae9061391f565b80601f01602080910402602001604051908101604052809291908181526020018280546108da9061391f565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c82611a02565b610972576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b882610eaa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a20576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3f611a50565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a715750610a6f81610a6a611a50565b6117f9565b155b15610aa8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ab3838383611a58565b505050565b600d5481565b600c5481565b6000610ace611b0a565b6001546000540303905090565b610ae6838383611b0f565b505050565b6122b881565b610af9611a50565b73ffffffffffffffffffffffffffffffffffffffff16610b17611155565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b649061356f565b60405180910390fd5b60026009541415610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061360f565b60405180910390fd5b60026009819055506000479050610bde733f250527a817f91daba8a130e25647dd5f0358e182612000565b506001600981905550565b600f5481565b80600081118015610c025750600d548111155b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c389061350f565b60405180910390fd5b6122b881600054610c529190613754565b1115610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a906135ef565b60405180910390fd5b610c9b611a50565b73ffffffffffffffffffffffffffffffffffffffff16610cb9611155565b73ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d069061356f565b60405180910390fd5b610d1983836120f4565b505050565b610d398383836040518060200160405280600081525061163a565b505050565b610d46611a50565b73ffffffffffffffffffffffffffffffffffffffff16610d64611155565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db19061356f565b60405180910390fd5b601060009054906101000a900460ff1615610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e01906135cf565b60405180910390fd5b80600a9080519060200190610e20929190612c23565b5050565b610e2c611a50565b73ffffffffffffffffffffffffffffffffffffffff16610e4a611155565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061356f565b60405180910390fd5b80600d8190555050565b6000610eb582612112565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f98611a50565b73ffffffffffffffffffffffffffffffffffffffff16610fb6611155565b73ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110039061356f565b60405180910390fd5b61101660006123a1565b565b600e60009054906101000a900460ff1681565b611033611a50565b73ffffffffffffffffffffffffffffffffffffffff16611051611155565b73ffffffffffffffffffffffffffffffffffffffff16146110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e9061356f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6110cc611a50565b73ffffffffffffffffffffffffffffffffffffffff166110ea611155565b73ffffffffffffffffffffffffffffffffffffffff1614611140576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111379061356f565b60405180910390fd5b80600f8190555050565b662386f26fc1000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461118e9061391f565b80601f01602080910402602001604051908101604052809291908181526020018280546111ba9061391f565b80156112075780601f106111dc57610100808354040283529160200191611207565b820191906000526020600020905b8154815290600101906020018083116111ea57829003601f168201915b5050505050905090565b806000811180156112245750600d548111155b611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a9061350f565b60405180910390fd5b6122b8816000546112749190613754565b11156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac906135ef565b60405180910390fd5b600e60009054906101000a900460ff16611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906135af565b60405180910390fd5b600082662386f26fc1000061131991906137db565b9050600f5460005410156113e5576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546113769190613835565b905060008111156113e3578084106113b757662386f26fc100008161139b91906137db565b826113a69190613835565b91506113b23382612467565b6113e2565b662386f26fc10000846113ca91906137db565b826113d59190613835565b91506113e13385612467565b5b5b505b80341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f9061362f565b60405180910390fd5b61143233846120f4565b505050565b61143f611a50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b1611a50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155e611a50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a391906134b2565b60405180910390a35050565b601481565b6115bc611a50565b73ffffffffffffffffffffffffffffffffffffffff166115da611155565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116279061356f565b60405180910390fd5b80600c8190555050565b611645848484611b0f565b6116648373ffffffffffffffffffffffffffffffffffffffff166124c1565b80156116795750611677848484846124e4565b155b156116b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116c182611a02565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061358f565b60405180910390fd5b600061170a612644565b9050600081511161172a5760405180602001604052806000815250611758565b80611734846126d6565b600b60405160200161174893929190613405565b6040516020818303038152906040525b915050919050565b611768611a50565b73ffffffffffffffffffffffffffffffffffffffff16611786611155565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061356f565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611895611a50565b73ffffffffffffffffffffffffffffffffffffffff166118b3611155565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061356f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906134ef565b60405180910390fd5b611982816123a1565b50565b601060009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a0d611b0a565b11158015611a1c575060005482105b8015611a49575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b1a82612112565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b41611a50565b73ffffffffffffffffffffffffffffffffffffffff161480611b745750611b738260000151611b6e611a50565b6117f9565b5b80611bb95750611b82611a50565b73ffffffffffffffffffffffffffffffffffffffff16611ba184610931565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bf2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cc2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ccf8585856001612837565b611cdf6000848460000151611a58565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f9057600054811015611f8f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff9858585600161283d565b5050505050565b80471015612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a9061354f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161206990613436565b60006040518083038185875af1925050503d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b50509050806120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e69061352f565b60405180910390fd5b505050565b61210e828260405180602001604052806000815250612843565b5050565b61211a612ca9565b600082905080612128611b0a565b11158015612137575060005481105b1561236a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161236857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461224c57809250505061239c565b5b60011561236757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236257809250505061239c565b61224d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b69190613754565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a611a50565b8786866040518563ffffffff1660e01b815260040161252c9493929190613466565b602060405180830381600087803b15801561254657600080fd5b505af192505050801561257757506040513d601f19601f82011682018060405250810190612574919061306f565b60015b6125f1573d80600081146125a7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ac565b606091505b506000815114156125e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546126539061391f565b80601f016020809104026020016040519081016040528092919081815260200182805461267f9061391f565b80156126cc5780601f106126a1576101008083540402835291602001916126cc565b820191906000526020600020905b8154815290600101906020018083116126af57829003601f168201915b5050505050905090565b6060600082141561271e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612832565b600082905060005b6000821461275057808061273990613982565b915050600a8261274991906137aa565b9150612726565b60008167ffffffffffffffff81111561276c5761276b613ab8565b5b6040519080825280601f01601f19166020018201604052801561279e5781602001600182028036833780820191505090505b5090505b6000851461282b576001826127b79190613835565b9150600a856127c691906139cb565b60306127d29190613754565b60f81b8183815181106127e8576127e7613a89565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561282491906137aa565b94506127a2565b8093505050505b919050565b50505050565b50505050565b6128508383836001612855565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128c2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128fd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290a6000868387612837565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ad45750612ad38773ffffffffffffffffffffffffffffffffffffffff166124c1565b5b15612b9a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4960008884806001019550886124e4565b612b7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ada578260005414612b9557600080fd5b612c06565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b9b575b816000819055505050612c1c600086838761283d565b5050505050565b828054612c2f9061391f565b90600052602060002090601f016020900481019282612c515760008555612c98565b82601f10612c6a57805160ff1916838001178555612c98565b82800160010185558215612c98579182015b82811115612c97578251825591602001919060010190612c7c565b5b509050612ca59190612cec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d05576000816000905550600101612ced565b5090565b6000612d1c612d178461368f565b61366a565b905082815260208101848484011115612d3857612d37613aec565b5b612d438482856138dd565b509392505050565b6000612d5e612d59846136c0565b61366a565b905082815260208101848484011115612d7a57612d79613aec565b5b612d858482856138dd565b509392505050565b600081359050612d9c81613d44565b92915050565b600081359050612db181613d5b565b92915050565b600081359050612dc681613d72565b92915050565b600081519050612ddb81613d72565b92915050565b600082601f830112612df657612df5613ae7565b5b8135612e06848260208601612d09565b91505092915050565b600082601f830112612e2457612e23613ae7565b5b8135612e34848260208601612d4b565b91505092915050565b600081359050612e4c81613d89565b92915050565b600060208284031215612e6857612e67613af6565b5b6000612e7684828501612d8d565b91505092915050565b60008060408385031215612e9657612e95613af6565b5b6000612ea485828601612d8d565b9250506020612eb585828601612d8d565b9150509250929050565b600080600060608486031215612ed857612ed7613af6565b5b6000612ee686828701612d8d565b9350506020612ef786828701612d8d565b9250506040612f0886828701612e3d565b9150509250925092565b60008060008060808587031215612f2c57612f2b613af6565b5b6000612f3a87828801612d8d565b9450506020612f4b87828801612d8d565b9350506040612f5c87828801612e3d565b925050606085013567ffffffffffffffff811115612f7d57612f7c613af1565b5b612f8987828801612de1565b91505092959194509250565b60008060408385031215612fac57612fab613af6565b5b6000612fba85828601612d8d565b9250506020612fcb85828601612da2565b9150509250929050565b60008060408385031215612fec57612feb613af6565b5b6000612ffa85828601612d8d565b925050602061300b85828601612e3d565b9150509250929050565b60006020828403121561302b5761302a613af6565b5b600061303984828501612da2565b91505092915050565b60006020828403121561305857613057613af6565b5b600061306684828501612db7565b91505092915050565b60006020828403121561308557613084613af6565b5b600061309384828501612dcc565b91505092915050565b6000602082840312156130b2576130b1613af6565b5b600082013567ffffffffffffffff8111156130d0576130cf613af1565b5b6130dc84828501612e0f565b91505092915050565b6000602082840312156130fb576130fa613af6565b5b600061310984828501612e3d565b91505092915050565b61311b81613869565b82525050565b61312a8161387b565b82525050565b600061313b82613706565b613145818561371c565b93506131558185602086016138ec565b61315e81613afb565b840191505092915050565b600061317482613711565b61317e8185613738565b935061318e8185602086016138ec565b61319781613afb565b840191505092915050565b60006131ad82613711565b6131b78185613749565b93506131c78185602086016138ec565b80840191505092915050565b600081546131e08161391f565b6131ea8186613749565b94506001821660008114613205576001811461321657613249565b60ff19831686528186019350613249565b61321f856136f1565b60005b8381101561324157815481890152600182019150602081019050613222565b838801955050505b50505092915050565b600061325f602683613738565b915061326a82613b0c565b604082019050919050565b6000613282601483613738565b915061328d82613b5b565b602082019050919050565b60006132a5603a83613738565b91506132b082613b84565b604082019050919050565b60006132c8601d83613738565b91506132d382613bd3565b602082019050919050565b60006132eb602083613738565b91506132f682613bfc565b602082019050919050565b600061330e602f83613738565b915061331982613c25565b604082019050919050565b6000613331601383613738565b915061333c82613c74565b602082019050919050565b6000613354601083613738565b915061335f82613c9d565b602082019050919050565b600061337760008361372d565b915061338282613cc6565b600082019050919050565b600061339a601483613738565b91506133a582613cc9565b602082019050919050565b60006133bd601f83613738565b91506133c882613cf2565b602082019050919050565b60006133e0601383613738565b91506133eb82613d1b565b602082019050919050565b6133ff816138d3565b82525050565b600061341182866131a2565b915061341d82856131a2565b915061342982846131d3565b9150819050949350505050565b60006134418261336a565b9150819050919050565b60006020820190506134606000830184613112565b92915050565b600060808201905061347b6000830187613112565b6134886020830186613112565b61349560408301856133f6565b81810360608301526134a78184613130565b905095945050505050565b60006020820190506134c76000830184613121565b92915050565b600060208201905081810360008301526134e78184613169565b905092915050565b6000602082019050818103600083015261350881613252565b9050919050565b6000602082019050818103600083015261352881613275565b9050919050565b6000602082019050818103600083015261354881613298565b9050919050565b60006020820190508181036000830152613568816132bb565b9050919050565b60006020820190508181036000830152613588816132de565b9050919050565b600060208201905081810360008301526135a881613301565b9050919050565b600060208201905081810360008301526135c881613324565b9050919050565b600060208201905081810360008301526135e881613347565b9050919050565b600060208201905081810360008301526136088161338d565b9050919050565b60006020820190508181036000830152613628816133b0565b9050919050565b60006020820190508181036000830152613648816133d3565b9050919050565b600060208201905061366460008301846133f6565b92915050565b6000613674613685565b90506136808282613951565b919050565b6000604051905090565b600067ffffffffffffffff8211156136aa576136a9613ab8565b5b6136b382613afb565b9050602081019050919050565b600067ffffffffffffffff8211156136db576136da613ab8565b5b6136e482613afb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061375f826138d3565b915061376a836138d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561379f5761379e6139fc565b5b828201905092915050565b60006137b5826138d3565b91506137c0836138d3565b9250826137d0576137cf613a2b565b5b828204905092915050565b60006137e6826138d3565b91506137f1836138d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561382a576138296139fc565b5b828202905092915050565b6000613840826138d3565b915061384b836138d3565b92508282101561385e5761385d6139fc565b5b828203905092915050565b6000613874826138b3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561390a5780820151818401526020810190506138ef565b83811115613919576000848401525b50505050565b6000600282049050600182168061393757607f821691505b6020821081141561394b5761394a613a5a565b5b50919050565b61395a82613afb565b810181811067ffffffffffffffff8211171561397957613978613ab8565b5b80604052505050565b600061398d826138d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139c0576139bf6139fc565b5b600182019050919050565b60006139d6826138d3565b91506139e1836138d3565b9250826139f1576139f0613a2b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613d4d81613869565b8114613d5857600080fd5b50565b613d648161387b565b8114613d6f57600080fd5b50565b613d7b81613887565b8114613d8657600080fd5b50565b613d92816138d3565b8114613d9d57600080fd5b5056fea2646970667358221220d04461f63dda191ea6986c9b4f05a2b4de5cb5726c899f57def792affcfdd43564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53727237487456694b72786431645858616e4155486a6a3165426b534a5272675536675a596f69576d43624a2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106d8578063d111515d14610715578063e985e9c51461072c578063f2fde38b14610769578063fdb4953a14610792576101f9565b8063a22cb46514610632578063af54001e1461065b578063b0551ac414610686578063b88d4fde146106af576101f9565b80638d859f3e116100dc5780638d859f3e146105955780638da5cb5b146105c057806395d89b41146105eb578063a0712d6814610616576101f9565b8063715018a61461050157806376d02b7114610518578063841718a6146105435780638b85e43d1461056c576101f9565b806332cb6b0c1161019057806342842e0e1161015f57806342842e0e1461040c57806355f804b314610435578063616cdb1e1461045e5780636352211e1461048757806370a08231146104c4576101f9565b806332cb6b0c146103765780633ccfd60b146103a15780634065b85f146103b8578063408cbf94146103e3576101f9565b806309ef6527116101cc57806309ef6527146102cc57806310b0c052146102f757806318160ddd1461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613042565b6107bd565b60405161023291906134b2565b60405180910390f35b34801561024757600080fd5b5061025061089f565b60405161025d91906134cd565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906130e5565b610931565b60405161029a919061344b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612fd5565b6109ad565b005b3480156102d857600080fd5b506102e1610ab8565b6040516102ee919061364f565b60405180910390f35b34801561030357600080fd5b5061030c610abe565b604051610319919061364f565b60405180910390f35b34801561032e57600080fd5b50610337610ac4565b604051610344919061364f565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190612ebf565b610adb565b005b34801561038257600080fd5b5061038b610aeb565b604051610398919061364f565b60405180910390f35b3480156103ad57600080fd5b506103b6610af1565b005b3480156103c457600080fd5b506103cd610be9565b6040516103da919061364f565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612fd5565b610bef565b005b34801561041857600080fd5b50610433600480360381019061042e9190612ebf565b610d1e565b005b34801561044157600080fd5b5061045c6004803603810190610457919061309c565b610d3e565b005b34801561046a57600080fd5b50610485600480360381019061048091906130e5565b610e24565b005b34801561049357600080fd5b506104ae60048036038101906104a991906130e5565b610eaa565b6040516104bb919061344b565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612e52565b610ec0565b6040516104f8919061364f565b60405180910390f35b34801561050d57600080fd5b50610516610f90565b005b34801561052457600080fd5b5061052d611018565b60405161053a91906134b2565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613015565b61102b565b005b34801561057857600080fd5b50610593600480360381019061058e91906130e5565b6110c4565b005b3480156105a157600080fd5b506105aa61114a565b6040516105b7919061364f565b60405180910390f35b3480156105cc57600080fd5b506105d5611155565b6040516105e2919061344b565b60405180910390f35b3480156105f757600080fd5b5061060061117f565b60405161060d91906134cd565b60405180910390f35b610630600480360381019061062b91906130e5565b611211565b005b34801561063e57600080fd5b5061065960048036038101906106549190612f95565b611437565b005b34801561066757600080fd5b506106706115af565b60405161067d919061364f565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906130e5565b6115b4565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612f12565b61163a565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906130e5565b6116b6565b60405161070c91906134cd565b60405180910390f35b34801561072157600080fd5b5061072a611760565b005b34801561073857600080fd5b50610753600480360381019061074e9190612e7f565b6117f9565b60405161076091906134b2565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190612e52565b61188d565b005b34801561079e57600080fd5b506107a7611985565b6040516107b491906134b2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782611998565b5b9050919050565b6060600280546108ae9061391f565b80601f01602080910402602001604051908101604052809291908181526020018280546108da9061391f565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c82611a02565b610972576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b882610eaa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a20576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3f611a50565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a715750610a6f81610a6a611a50565b6117f9565b155b15610aa8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ab3838383611a58565b505050565b600d5481565b600c5481565b6000610ace611b0a565b6001546000540303905090565b610ae6838383611b0f565b505050565b6122b881565b610af9611a50565b73ffffffffffffffffffffffffffffffffffffffff16610b17611155565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b649061356f565b60405180910390fd5b60026009541415610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061360f565b60405180910390fd5b60026009819055506000479050610bde733f250527a817f91daba8a130e25647dd5f0358e182612000565b506001600981905550565b600f5481565b80600081118015610c025750600d548111155b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c389061350f565b60405180910390fd5b6122b881600054610c529190613754565b1115610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a906135ef565b60405180910390fd5b610c9b611a50565b73ffffffffffffffffffffffffffffffffffffffff16610cb9611155565b73ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d069061356f565b60405180910390fd5b610d1983836120f4565b505050565b610d398383836040518060200160405280600081525061163a565b505050565b610d46611a50565b73ffffffffffffffffffffffffffffffffffffffff16610d64611155565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db19061356f565b60405180910390fd5b601060009054906101000a900460ff1615610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e01906135cf565b60405180910390fd5b80600a9080519060200190610e20929190612c23565b5050565b610e2c611a50565b73ffffffffffffffffffffffffffffffffffffffff16610e4a611155565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061356f565b60405180910390fd5b80600d8190555050565b6000610eb582612112565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f98611a50565b73ffffffffffffffffffffffffffffffffffffffff16610fb6611155565b73ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110039061356f565b60405180910390fd5b61101660006123a1565b565b600e60009054906101000a900460ff1681565b611033611a50565b73ffffffffffffffffffffffffffffffffffffffff16611051611155565b73ffffffffffffffffffffffffffffffffffffffff16146110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e9061356f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6110cc611a50565b73ffffffffffffffffffffffffffffffffffffffff166110ea611155565b73ffffffffffffffffffffffffffffffffffffffff1614611140576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111379061356f565b60405180910390fd5b80600f8190555050565b662386f26fc1000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461118e9061391f565b80601f01602080910402602001604051908101604052809291908181526020018280546111ba9061391f565b80156112075780601f106111dc57610100808354040283529160200191611207565b820191906000526020600020905b8154815290600101906020018083116111ea57829003601f168201915b5050505050905090565b806000811180156112245750600d548111155b611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a9061350f565b60405180910390fd5b6122b8816000546112749190613754565b11156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac906135ef565b60405180910390fd5b600e60009054906101000a900460ff16611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906135af565b60405180910390fd5b600082662386f26fc1000061131991906137db565b9050600f5460005410156113e5576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546113769190613835565b905060008111156113e3578084106113b757662386f26fc100008161139b91906137db565b826113a69190613835565b91506113b23382612467565b6113e2565b662386f26fc10000846113ca91906137db565b826113d59190613835565b91506113e13385612467565b5b5b505b80341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f9061362f565b60405180910390fd5b61143233846120f4565b505050565b61143f611a50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b1611a50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155e611a50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a391906134b2565b60405180910390a35050565b601481565b6115bc611a50565b73ffffffffffffffffffffffffffffffffffffffff166115da611155565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116279061356f565b60405180910390fd5b80600c8190555050565b611645848484611b0f565b6116648373ffffffffffffffffffffffffffffffffffffffff166124c1565b80156116795750611677848484846124e4565b155b156116b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116c182611a02565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061358f565b60405180910390fd5b600061170a612644565b9050600081511161172a5760405180602001604052806000815250611758565b80611734846126d6565b600b60405160200161174893929190613405565b6040516020818303038152906040525b915050919050565b611768611a50565b73ffffffffffffffffffffffffffffffffffffffff16611786611155565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061356f565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611895611a50565b73ffffffffffffffffffffffffffffffffffffffff166118b3611155565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061356f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906134ef565b60405180910390fd5b611982816123a1565b50565b601060009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a0d611b0a565b11158015611a1c575060005482105b8015611a49575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b1a82612112565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b41611a50565b73ffffffffffffffffffffffffffffffffffffffff161480611b745750611b738260000151611b6e611a50565b6117f9565b5b80611bb95750611b82611a50565b73ffffffffffffffffffffffffffffffffffffffff16611ba184610931565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bf2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cc2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ccf8585856001612837565b611cdf6000848460000151611a58565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f9057600054811015611f8f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff9858585600161283d565b5050505050565b80471015612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a9061354f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161206990613436565b60006040518083038185875af1925050503d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b50509050806120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e69061352f565b60405180910390fd5b505050565b61210e828260405180602001604052806000815250612843565b5050565b61211a612ca9565b600082905080612128611b0a565b11158015612137575060005481105b1561236a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161236857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461224c57809250505061239c565b5b60011561236757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236257809250505061239c565b61224d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b69190613754565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a611a50565b8786866040518563ffffffff1660e01b815260040161252c9493929190613466565b602060405180830381600087803b15801561254657600080fd5b505af192505050801561257757506040513d601f19601f82011682018060405250810190612574919061306f565b60015b6125f1573d80600081146125a7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ac565b606091505b506000815114156125e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546126539061391f565b80601f016020809104026020016040519081016040528092919081815260200182805461267f9061391f565b80156126cc5780601f106126a1576101008083540402835291602001916126cc565b820191906000526020600020905b8154815290600101906020018083116126af57829003601f168201915b5050505050905090565b6060600082141561271e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612832565b600082905060005b6000821461275057808061273990613982565b915050600a8261274991906137aa565b9150612726565b60008167ffffffffffffffff81111561276c5761276b613ab8565b5b6040519080825280601f01601f19166020018201604052801561279e5781602001600182028036833780820191505090505b5090505b6000851461282b576001826127b79190613835565b9150600a856127c691906139cb565b60306127d29190613754565b60f81b8183815181106127e8576127e7613a89565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561282491906137aa565b94506127a2565b8093505050505b919050565b50505050565b50505050565b6128508383836001612855565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128c2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128fd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290a6000868387612837565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ad45750612ad38773ffffffffffffffffffffffffffffffffffffffff166124c1565b5b15612b9a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b4960008884806001019550886124e4565b612b7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ada578260005414612b9557600080fd5b612c06565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b9b575b816000819055505050612c1c600086838761283d565b5050505050565b828054612c2f9061391f565b90600052602060002090601f016020900481019282612c515760008555612c98565b82601f10612c6a57805160ff1916838001178555612c98565b82800160010185558215612c98579182015b82811115612c97578251825591602001919060010190612c7c565b5b509050612ca59190612cec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d05576000816000905550600101612ced565b5090565b6000612d1c612d178461368f565b61366a565b905082815260208101848484011115612d3857612d37613aec565b5b612d438482856138dd565b509392505050565b6000612d5e612d59846136c0565b61366a565b905082815260208101848484011115612d7a57612d79613aec565b5b612d858482856138dd565b509392505050565b600081359050612d9c81613d44565b92915050565b600081359050612db181613d5b565b92915050565b600081359050612dc681613d72565b92915050565b600081519050612ddb81613d72565b92915050565b600082601f830112612df657612df5613ae7565b5b8135612e06848260208601612d09565b91505092915050565b600082601f830112612e2457612e23613ae7565b5b8135612e34848260208601612d4b565b91505092915050565b600081359050612e4c81613d89565b92915050565b600060208284031215612e6857612e67613af6565b5b6000612e7684828501612d8d565b91505092915050565b60008060408385031215612e9657612e95613af6565b5b6000612ea485828601612d8d565b9250506020612eb585828601612d8d565b9150509250929050565b600080600060608486031215612ed857612ed7613af6565b5b6000612ee686828701612d8d565b9350506020612ef786828701612d8d565b9250506040612f0886828701612e3d565b9150509250925092565b60008060008060808587031215612f2c57612f2b613af6565b5b6000612f3a87828801612d8d565b9450506020612f4b87828801612d8d565b9350506040612f5c87828801612e3d565b925050606085013567ffffffffffffffff811115612f7d57612f7c613af1565b5b612f8987828801612de1565b91505092959194509250565b60008060408385031215612fac57612fab613af6565b5b6000612fba85828601612d8d565b9250506020612fcb85828601612da2565b9150509250929050565b60008060408385031215612fec57612feb613af6565b5b6000612ffa85828601612d8d565b925050602061300b85828601612e3d565b9150509250929050565b60006020828403121561302b5761302a613af6565b5b600061303984828501612da2565b91505092915050565b60006020828403121561305857613057613af6565b5b600061306684828501612db7565b91505092915050565b60006020828403121561308557613084613af6565b5b600061309384828501612dcc565b91505092915050565b6000602082840312156130b2576130b1613af6565b5b600082013567ffffffffffffffff8111156130d0576130cf613af1565b5b6130dc84828501612e0f565b91505092915050565b6000602082840312156130fb576130fa613af6565b5b600061310984828501612e3d565b91505092915050565b61311b81613869565b82525050565b61312a8161387b565b82525050565b600061313b82613706565b613145818561371c565b93506131558185602086016138ec565b61315e81613afb565b840191505092915050565b600061317482613711565b61317e8185613738565b935061318e8185602086016138ec565b61319781613afb565b840191505092915050565b60006131ad82613711565b6131b78185613749565b93506131c78185602086016138ec565b80840191505092915050565b600081546131e08161391f565b6131ea8186613749565b94506001821660008114613205576001811461321657613249565b60ff19831686528186019350613249565b61321f856136f1565b60005b8381101561324157815481890152600182019150602081019050613222565b838801955050505b50505092915050565b600061325f602683613738565b915061326a82613b0c565b604082019050919050565b6000613282601483613738565b915061328d82613b5b565b602082019050919050565b60006132a5603a83613738565b91506132b082613b84565b604082019050919050565b60006132c8601d83613738565b91506132d382613bd3565b602082019050919050565b60006132eb602083613738565b91506132f682613bfc565b602082019050919050565b600061330e602f83613738565b915061331982613c25565b604082019050919050565b6000613331601383613738565b915061333c82613c74565b602082019050919050565b6000613354601083613738565b915061335f82613c9d565b602082019050919050565b600061337760008361372d565b915061338282613cc6565b600082019050919050565b600061339a601483613738565b91506133a582613cc9565b602082019050919050565b60006133bd601f83613738565b91506133c882613cf2565b602082019050919050565b60006133e0601383613738565b91506133eb82613d1b565b602082019050919050565b6133ff816138d3565b82525050565b600061341182866131a2565b915061341d82856131a2565b915061342982846131d3565b9150819050949350505050565b60006134418261336a565b9150819050919050565b60006020820190506134606000830184613112565b92915050565b600060808201905061347b6000830187613112565b6134886020830186613112565b61349560408301856133f6565b81810360608301526134a78184613130565b905095945050505050565b60006020820190506134c76000830184613121565b92915050565b600060208201905081810360008301526134e78184613169565b905092915050565b6000602082019050818103600083015261350881613252565b9050919050565b6000602082019050818103600083015261352881613275565b9050919050565b6000602082019050818103600083015261354881613298565b9050919050565b60006020820190508181036000830152613568816132bb565b9050919050565b60006020820190508181036000830152613588816132de565b9050919050565b600060208201905081810360008301526135a881613301565b9050919050565b600060208201905081810360008301526135c881613324565b9050919050565b600060208201905081810360008301526135e881613347565b9050919050565b600060208201905081810360008301526136088161338d565b9050919050565b60006020820190508181036000830152613628816133b0565b9050919050565b60006020820190508181036000830152613648816133d3565b9050919050565b600060208201905061366460008301846133f6565b92915050565b6000613674613685565b90506136808282613951565b919050565b6000604051905090565b600067ffffffffffffffff8211156136aa576136a9613ab8565b5b6136b382613afb565b9050602081019050919050565b600067ffffffffffffffff8211156136db576136da613ab8565b5b6136e482613afb565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061375f826138d3565b915061376a836138d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561379f5761379e6139fc565b5b828201905092915050565b60006137b5826138d3565b91506137c0836138d3565b9250826137d0576137cf613a2b565b5b828204905092915050565b60006137e6826138d3565b91506137f1836138d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561382a576138296139fc565b5b828202905092915050565b6000613840826138d3565b915061384b836138d3565b92508282101561385e5761385d6139fc565b5b828203905092915050565b6000613874826138b3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561390a5780820151818401526020810190506138ef565b83811115613919576000848401525b50505050565b6000600282049050600182168061393757607f821691505b6020821081141561394b5761394a613a5a565b5b50919050565b61395a82613afb565b810181811067ffffffffffffffff8211171561397957613978613ab8565b5b80604052505050565b600061398d826138d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139c0576139bf6139fc565b5b600182019050919050565b60006139d6826138d3565b91506139e1836138d3565b9250826139f1576139f0613a2b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613d4d81613869565b8114613d5857600080fd5b50565b613d648161387b565b8114613d6f57600080fd5b50565b613d7b81613887565b8114613d8657600080fd5b50565b613d92816138d3565b8114613d9d57600080fd5b5056fea2646970667358221220d04461f63dda191ea6986c9b4f05a2b4de5cb5726c899f57def792affcfdd43564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53727237487456694b72786431645858616e4155486a6a3165426b534a5272675536675a596f69576d43624a2f00000000000000000000
-----Decoded View---------------
Arg [0] : baseUri (string): ipfs://QmSrr7HtViKrxd1dXXanAUHjj1eBkSJRrgU6gZYoiWmCbJ/
Arg [1] : freeMintAllowance (uint256): 20
Arg [2] : maxMintPerTx (uint256): 20
Arg [3] : isSaleActive (bool): True
Arg [4] : freeMintIsAllowedUntil (uint256): 800
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d53727237487456694b72786431645858616e4155486a6a
Arg [7] : 3165426b534a5272675536675a596f69576d43624a2f00000000000000000000
Deployed Bytecode Sourcemap
48561:4486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31031:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35919:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35482:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48933:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48885:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30280:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36776:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48662:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52874:170;;;;;;;;;;;;;:::i;:::-;;49010:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52568:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37017:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50406:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50755:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34225:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31400:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;48977:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50885:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51002:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48761:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6838:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34585:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51631:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36195:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48710:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50583:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37273:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49916:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51187:86;;;;;;;;;;;;;:::i;:::-;;36545:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49058:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31031:305;31133:4;31185:25;31170:40;;;:11;:40;;;;:105;;;;31242:33;31227:48;;;:11;:48;;;;31170:105;:158;;;;31292:36;31316:11;31292:23;:36::i;:::-;31170:158;31150:178;;31031:305;;;:::o;34416:100::-;34470:13;34503:5;34496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34416:100;:::o;35919:204::-;35987:7;36012:16;36020:7;36012;:16::i;:::-;36007:64;;36037:34;;;;;;;;;;;;;;36007:64;36091:15;:24;36107:7;36091:24;;;;;;;;;;;;;;;;;;;;;36084:31;;35919:204;;;:::o;35482:371::-;35555:13;35571:24;35587:7;35571:15;:24::i;:::-;35555:40;;35616:5;35610:11;;:2;:11;;;35606:48;;;35630:24;;;;;;;;;;;;;;35606:48;35687:5;35671:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35697:37;35714:5;35721:12;:10;:12::i;:::-;35697:16;:37::i;:::-;35696:38;35671:63;35667:138;;;35758:35;;;;;;;;;;;;;;35667:138;35817:28;35826:2;35830:7;35839:5;35817:8;:28::i;:::-;35544:309;35482:371;;:::o;48933:37::-;;;;:::o;48885:41::-;;;;:::o;30280:303::-;30324:7;30549:15;:13;:15::i;:::-;30534:12;;30518:13;;:28;:46;30511:53;;30280:303;:::o;36776:170::-;36910:28;36920:4;36926:2;36930:7;36910:9;:28::i;:::-;36776:170;;;:::o;48662:41::-;48699:4;48662:41;:::o;52874:170::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;52935:15:::2;52953:21;52935:39;;52985:51;52823:42;53028:7;52985:17;:51::i;:::-;52924:120;1768:1:::1;2722:7;:22;;;;52874:170::o:0;49010:41::-;;;;:::o;52568:176::-;52661:11;51391:1;51377:11;:15;:56;;;;;51411:22;;51396:11;:37;;51377:56;51355:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;48699:4;51530:11;51514:13;;:27;;;;:::i;:::-;:41;;51492:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7069:12:::1;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52709:27:::2;52719:3;52724:11;52709:9;:27::i;:::-;52568:176:::0;;;:::o;37017:185::-;37155:39;37172:4;37178:2;37182:7;37155:39;;;;;;;;;;;;:16;:39::i;:::-;37017:185;;;:::o;50406:169::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50495:15:::1;;;;;;;;;;;50494:16;50486:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;50553:14;50542:8;:25;;;;;;;;;;;;:::i;:::-;;50406:169:::0;:::o;50755:122::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50857:12:::1;50832:22;:37;;;;50755:122:::0;:::o;34225:124::-;34289:7;34316:20;34328:7;34316:11;:20::i;:::-;:25;;;34309:32;;34225:124;;;:::o;31400:206::-;31464:7;31505:1;31488:19;;:5;:19;;;31484:60;;;31516:28;;;;;;;;;;;;;;31484:60;31570:12;:19;31583:5;31570:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31562:36;;31555:43;;31400:206;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;48977:26::-;;;;;;;;;;;;;:::o;50885:109::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50974:12:::1;50957:14;;:29;;;;;;;;;;;;;;;;;;50885:109:::0;:::o;51002:177::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51149:22:::1;51120:26;:51;;;;51002:177:::0;:::o;48761:42::-;48793:10;48761:42;:::o;6838:87::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;34585:104::-;34641:13;34674:7;34667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34585:104;:::o;51631:929::-;51723:11;51391:1;51377:11;:15;:56;;;;;51411:22;;51396:11;:37;;51377:56;51355:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;48699:4;51530:11;51514:13;;:27;;;;:::i;:::-;:41;;51492:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;51760:14:::1;;;;;;;;;;;51752:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;51811:13;51835:11;48793:10;51827:19;;;;:::i;:::-;51811:35;;51879:26;;51863:13;;:42;51859:584;;;51922:25;51996:16;:28;52013:10;51996:28;;;;;;;;;;;;;;;;51950:26;;:74;;;;:::i;:::-;51922:102;;52063:1;52043:17;:21;52039:393;;;52104:17;52089:11;:32;52085:332;;48793:10;52155:17;:25;;;;:::i;:::-;52146:34;;;;;:::i;:::-;;;52203:50;52223:10;52235:17;52203:19;:50::i;:::-;52085:332;;;48793:10;52311:11;:19;;;;:::i;:::-;52302:28;;;;;:::i;:::-;;;52353:44;52373:10;52385:11;52353:19;:44::i;:::-;52085:332;52039:393;51907:536;51859:584;52476:5;52463:9;:18;;52455:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52518:34;52528:10;52540:11;52518:9;:34::i;:::-;51741:819;51631:929:::0;;:::o;36195:279::-;36298:12;:10;:12::i;:::-;36286:24;;:8;:24;;;36282:54;;;36319:17;;;;;;;;;;;;;;36282:54;36394:8;36349:18;:32;36368:12;:10;:12::i;:::-;36349:32;;;;;;;;;;;;;;;:42;36382:8;36349:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36447:8;36418:48;;36433:12;:10;:12::i;:::-;36418:48;;;36457:8;36418:48;;;;;;:::i;:::-;;;;;;;;36195:279;;:::o;48710:43::-;48751:2;48710:43;:::o;50583:164::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50722:17:::1;50693:26;:46;;;;50583:164:::0;:::o;37273:369::-;37440:28;37450:4;37456:2;37460:7;37440:9;:28::i;:::-;37483:15;:2;:13;;;:15::i;:::-;:76;;;;;37503:56;37534:4;37540:2;37544:7;37553:5;37503:30;:56::i;:::-;37502:57;37483:76;37479:156;;;37583:40;;;;;;;;;;;;;;37479:156;37273:369;;;;:::o;49916:451::-;50014:13;50059:16;50067:7;50059;:16::i;:::-;50043:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50149:28;50180:10;:8;:10::i;:::-;50149:41;;50235:1;50210:14;50204:28;:32;:149;;;;;;;;;;;;;;;;;50276:14;50292:18;:7;:16;:18::i;:::-;50312:13;50259:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50204:149;50197:156;;;49916:451;;;:::o;51187:86::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51261:4:::1;51243:15;;:22;;;;;;;;;;;;;;;;;;51187:86::o:0;36545:164::-;36642:4;36666:18;:25;36685:5;36666:25;;;;;;;;;;;;;;;:35;36692:8;36666:35;;;;;;;;;;;;;;;;;;;;;;;;;36659:42;;36545:164;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;49058:27::-;;;;;;;;;;;;;:::o;19622:157::-;19707:4;19746:25;19731:40;;;:11;:40;;;;19724:47;;19622:157;;;:::o;37897:187::-;37954:4;37997:7;37978:15;:13;:15::i;:::-;:26;;:53;;;;;38018:13;;38008:7;:23;37978:53;:98;;;;;38049:11;:20;38061:7;38049:20;;;;;;;;;;;:27;;;;;;;;;;;;38048:28;37978:98;37971:105;;37897:187;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;45508:196::-;45650:2;45623:15;:24;45639:7;45623:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45688:7;45684:2;45668:28;;45677:5;45668:28;;;;;;;;;;;;45508:196;;;:::o;30004:92::-;30060:7;30004:92;:::o;41010:2112::-;41125:35;41163:20;41175:7;41163:11;:20::i;:::-;41125:58;;41196:22;41238:13;:18;;;41222:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41273:50;41290:13;:18;;;41310:12;:10;:12::i;:::-;41273:16;:50::i;:::-;41222:101;:154;;;;41364:12;:10;:12::i;:::-;41340:36;;:20;41352:7;41340:11;:20::i;:::-;:36;;;41222:154;41196:181;;41395:17;41390:66;;41421:35;;;;;;;;;;;;;;41390:66;41493:4;41471:26;;:13;:18;;;:26;;;41467:67;;41506:28;;;;;;;;;;;;;;41467:67;41563:1;41549:16;;:2;:16;;;41545:52;;;41574:23;;;;;;;;;;;;;;41545:52;41610:43;41632:4;41638:2;41642:7;41651:1;41610:21;:43::i;:::-;41718:49;41735:1;41739:7;41748:13;:18;;;41718:8;:49::i;:::-;42093:1;42063:12;:18;42076:4;42063:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42137:1;42109:12;:16;42122:2;42109:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42183:2;42155:11;:20;42167:7;42155:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42245:15;42200:11;:20;42212:7;42200:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42513:19;42545:1;42535:7;:11;42513:33;;42606:1;42565:43;;:11;:24;42577:11;42565:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42561:445;;;42790:13;;42776:11;:27;42772:219;;;42860:13;:18;;;42828:11;:24;42840:11;42828:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42943:13;:28;;;42901:11;:24;42913:11;42901:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42772:219;42561:445;42038:979;43053:7;43049:2;43034:27;;43043:4;43034:27;;;;;;;;;;;;43072:42;43093:4;43099:2;43103:7;43112:1;43072:20;:42::i;:::-;41114:2008;;41010:2112;;;:::o;10800:317::-;10915:6;10890:21;:31;;10882:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10969:12;10987:9;:14;;11009:6;10987:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10968:52;;;11039:7;11031:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10871:246;10800:317;;:::o;38092:104::-;38161:27;38171:2;38175:8;38161:27;;;;;;;;;;;;:9;:27::i;:::-;38092:104;;:::o;33055:1108::-;33116:21;;:::i;:::-;33150:12;33165:7;33150:22;;33233:4;33214:15;:13;:15::i;:::-;:23;;:47;;;;;33248:13;;33241:4;:20;33214:47;33210:886;;;33282:31;33316:11;:17;33328:4;33316:17;;;;;;;;;;;33282:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33357:9;:16;;;33352:729;;33428:1;33402:28;;:9;:14;;;:28;;;33398:101;;33466:9;33459:16;;;;;;33398:101;33801:261;33808:4;33801:261;;;33841:6;;;;;;;;33886:11;:17;33898:4;33886:17;;;;;;;;;;;33874:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33960:1;33934:28;;:9;:14;;;:28;;;33930:109;;34002:9;33995:16;;;;;;33930:109;33801:261;;;33352:729;33263:833;33210:886;34124:31;;;;;;;;;;;;;;33055:1108;;;;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8171:128;8108:191;:::o;49650:120::-;49757:5;49729:16;:24;49746:6;49729:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;49650:120;;:::o;9539:326::-;9599:4;9856:1;9834:7;:19;;;:23;9827:30;;9539:326;;;:::o;46196:667::-;46359:4;46396:2;46380:36;;;46417:12;:10;:12::i;:::-;46431:4;46437:7;46446:5;46380:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46376:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46631:1;46614:6;:13;:18;46610:235;;;46660:40;;;;;;;;;;;;;;46610:235;46803:6;46797:13;46788:6;46784:2;46780:15;46773:38;46376:480;46509:45;;;46499:55;;;:6;:55;;;;46492:62;;;46196:667;;;;;;:::o;49799:109::-;49859:13;49892:8;49885:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49799:109;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;47511:159::-;;;;;:::o;48329:158::-;;;;;:::o;38559:163::-;38682:32;38688:2;38692:8;38702:5;38709:4;38682:5;:32::i;:::-;38559:163;;;:::o;38981:1775::-;39120:20;39143:13;;39120:36;;39185:1;39171:16;;:2;:16;;;39167:48;;;39196:19;;;;;;;;;;;;;;39167:48;39242:1;39230:8;:13;39226:44;;;39252:18;;;;;;;;;;;;;;39226:44;39283:61;39313:1;39317:2;39321:12;39335:8;39283:21;:61::i;:::-;39656:8;39621:12;:16;39634:2;39621:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39720:8;39680:12;:16;39693:2;39680:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39779:2;39746:11;:25;39758:12;39746:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39846:15;39796:11;:25;39808:12;39796:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39879:20;39902:12;39879:35;;39929:11;39958:8;39943:12;:23;39929:37;;39987:4;:23;;;;;39995:15;:2;:13;;;:15::i;:::-;39987:23;39983:641;;;40031:314;40087:12;40083:2;40062:38;;40079:1;40062:38;;;;;;;;;;;;40128:69;40167:1;40171:2;40175:14;;;;;;40191:5;40128:30;:69::i;:::-;40123:174;;40233:40;;;;;;;;;;;;;;40123:174;40340:3;40324:12;:19;;40031:314;;40426:12;40409:13;;:29;40405:43;;40440:8;;;40405:43;39983:641;;;40489:120;40545:14;;;;;;40541:2;40520:40;;40537:1;40520:40;;;;;;;;;;;;40604:3;40588:12;:19;;40489:120;;39983:641;40654:12;40638:13;:28;;;;39596:1082;;40688:60;40717:1;40721:2;40725:12;40739:8;40688:20;:60::i;:::-;39109:1647;38981:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:398::-;12855:3;12876:83;12957:1;12952:3;12876:83;:::i;:::-;12869:90;;12968:93;13057:3;12968:93;:::i;:::-;13086:1;13081:3;13077:11;13070:18;;12696:398;;;:::o;13100:366::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:::-;13986:3;14007:67;14071:2;14066:3;14007:67;:::i;:::-;14000:74;;14083:93;14172:3;14083:93;:::i;:::-;14201:2;14196:3;14192:12;14185:19;;13844:366;;;:::o;14216:118::-;14303:24;14321:5;14303:24;:::i;:::-;14298:3;14291:37;14216:118;;:::o;14340:589::-;14565:3;14587:95;14678:3;14669:6;14587:95;:::i;:::-;14580:102;;14699:95;14790:3;14781:6;14699:95;:::i;:::-;14692:102;;14811:92;14899:3;14890:6;14811:92;:::i;:::-;14804:99;;14920:3;14913:10;;14340:589;;;;;;:::o;14935:379::-;15119:3;15141:147;15284:3;15141:147;:::i;:::-;15134:154;;15305:3;15298:10;;14935:379;;;:::o;15320:222::-;15413:4;15451:2;15440:9;15436:18;15428:26;;15464:71;15532:1;15521:9;15517:17;15508:6;15464:71;:::i;:::-;15320:222;;;;:::o;15548:640::-;15743:4;15781:3;15770:9;15766:19;15758:27;;15795:71;15863:1;15852:9;15848:17;15839:6;15795:71;:::i;:::-;15876:72;15944:2;15933:9;15929:18;15920:6;15876:72;:::i;:::-;15958;16026:2;16015:9;16011:18;16002:6;15958:72;:::i;:::-;16077:9;16071:4;16067:20;16062:2;16051:9;16047:18;16040:48;16105:76;16176:4;16167:6;16105:76;:::i;:::-;16097:84;;15548:640;;;;;;;:::o;16194:210::-;16281:4;16319:2;16308:9;16304:18;16296:26;;16332:65;16394:1;16383:9;16379:17;16370:6;16332:65;:::i;:::-;16194:210;;;;:::o;16410:313::-;16523:4;16561:2;16550:9;16546:18;16538:26;;16610:9;16604:4;16600:20;16596:1;16585:9;16581:17;16574:47;16638:78;16711:4;16702:6;16638:78;:::i;:::-;16630:86;;16410:313;;;;:::o;16729:419::-;16895:4;16933:2;16922:9;16918:18;16910:26;;16982:9;16976:4;16972:20;16968:1;16957:9;16953:17;16946:47;17010:131;17136:4;17010:131;:::i;:::-;17002:139;;16729:419;;;:::o;17154:::-;17320:4;17358:2;17347:9;17343:18;17335:26;;17407:9;17401:4;17397:20;17393:1;17382:9;17378:17;17371:47;17435:131;17561:4;17435:131;:::i;:::-;17427:139;;17154:419;;;:::o;17579:::-;17745:4;17783:2;17772:9;17768:18;17760:26;;17832:9;17826:4;17822:20;17818:1;17807:9;17803:17;17796:47;17860:131;17986:4;17860:131;:::i;:::-;17852:139;;17579:419;;;:::o;18004:::-;18170:4;18208:2;18197:9;18193:18;18185:26;;18257:9;18251:4;18247:20;18243:1;18232:9;18228:17;18221:47;18285:131;18411:4;18285:131;:::i;:::-;18277:139;;18004:419;;;:::o;18429:::-;18595:4;18633:2;18622:9;18618:18;18610:26;;18682:9;18676:4;18672:20;18668:1;18657:9;18653:17;18646:47;18710:131;18836:4;18710:131;:::i;:::-;18702:139;;18429:419;;;:::o;18854:::-;19020:4;19058:2;19047:9;19043:18;19035:26;;19107:9;19101:4;19097:20;19093:1;19082:9;19078:17;19071:47;19135:131;19261:4;19135:131;:::i;:::-;19127:139;;18854:419;;;:::o;19279:::-;19445:4;19483:2;19472:9;19468:18;19460:26;;19532:9;19526:4;19522:20;19518:1;19507:9;19503:17;19496:47;19560:131;19686:4;19560:131;:::i;:::-;19552:139;;19279:419;;;:::o;19704:::-;19870:4;19908:2;19897:9;19893:18;19885:26;;19957:9;19951:4;19947:20;19943:1;19932:9;19928:17;19921:47;19985:131;20111:4;19985:131;:::i;:::-;19977:139;;19704:419;;;:::o;20129:::-;20295:4;20333:2;20322:9;20318:18;20310:26;;20382:9;20376:4;20372:20;20368:1;20357:9;20353:17;20346:47;20410:131;20536:4;20410:131;:::i;:::-;20402:139;;20129:419;;;:::o;20554:::-;20720:4;20758:2;20747:9;20743:18;20735:26;;20807:9;20801:4;20797:20;20793:1;20782:9;20778:17;20771:47;20835:131;20961:4;20835:131;:::i;:::-;20827:139;;20554:419;;;:::o;20979:::-;21145:4;21183:2;21172:9;21168:18;21160:26;;21232:9;21226:4;21222:20;21218:1;21207:9;21203:17;21196:47;21260:131;21386:4;21260:131;:::i;:::-;21252:139;;20979:419;;;:::o;21404:222::-;21497:4;21535:2;21524:9;21520:18;21512:26;;21548:71;21616:1;21605:9;21601:17;21592:6;21548:71;:::i;:::-;21404:222;;;;:::o;21632:129::-;21666:6;21693:20;;:::i;:::-;21683:30;;21722:33;21750:4;21742:6;21722:33;:::i;:::-;21632:129;;;:::o;21767:75::-;21800:6;21833:2;21827:9;21817:19;;21767:75;:::o;21848:307::-;21909:4;21999:18;21991:6;21988:30;21985:56;;;22021:18;;:::i;:::-;21985:56;22059:29;22081:6;22059:29;:::i;:::-;22051:37;;22143:4;22137;22133:15;22125:23;;21848:307;;;:::o;22161:308::-;22223:4;22313:18;22305:6;22302:30;22299:56;;;22335:18;;:::i;:::-;22299:56;22373:29;22395:6;22373:29;:::i;:::-;22365:37;;22457:4;22451;22447:15;22439:23;;22161:308;;;:::o;22475:141::-;22524:4;22547:3;22539:11;;22570:3;22567:1;22560:14;22604:4;22601:1;22591:18;22583:26;;22475:141;;;:::o;22622:98::-;22673:6;22707:5;22701:12;22691:22;;22622:98;;;:::o;22726:99::-;22778:6;22812:5;22806:12;22796:22;;22726:99;;;:::o;22831:168::-;22914:11;22948:6;22943:3;22936:19;22988:4;22983:3;22979:14;22964:29;;22831:168;;;;:::o;23005:147::-;23106:11;23143:3;23128:18;;23005:147;;;;:::o;23158:169::-;23242:11;23276:6;23271:3;23264:19;23316:4;23311:3;23307:14;23292:29;;23158:169;;;;:::o;23333:148::-;23435:11;23472:3;23457:18;;23333:148;;;;:::o;23487:305::-;23527:3;23546:20;23564:1;23546:20;:::i;:::-;23541:25;;23580:20;23598:1;23580:20;:::i;:::-;23575:25;;23734:1;23666:66;23662:74;23659:1;23656:81;23653:107;;;23740:18;;:::i;:::-;23653:107;23784:1;23781;23777:9;23770:16;;23487:305;;;;:::o;23798:185::-;23838:1;23855:20;23873:1;23855:20;:::i;:::-;23850:25;;23889:20;23907:1;23889:20;:::i;:::-;23884:25;;23928:1;23918:35;;23933:18;;:::i;:::-;23918:35;23975:1;23972;23968:9;23963:14;;23798:185;;;;:::o;23989:348::-;24029:7;24052:20;24070:1;24052:20;:::i;:::-;24047:25;;24086:20;24104:1;24086:20;:::i;:::-;24081:25;;24274:1;24206:66;24202:74;24199:1;24196:81;24191:1;24184:9;24177:17;24173:105;24170:131;;;24281:18;;:::i;:::-;24170:131;24329:1;24326;24322:9;24311:20;;23989:348;;;;:::o;24343:191::-;24383:4;24403:20;24421:1;24403:20;:::i;:::-;24398:25;;24437:20;24455:1;24437:20;:::i;:::-;24432:25;;24476:1;24473;24470:8;24467:34;;;24481:18;;:::i;:::-;24467:34;24526:1;24523;24519:9;24511:17;;24343:191;;;;:::o;24540:96::-;24577:7;24606:24;24624:5;24606:24;:::i;:::-;24595:35;;24540:96;;;:::o;24642:90::-;24676:7;24719:5;24712:13;24705:21;24694:32;;24642:90;;;:::o;24738:149::-;24774:7;24814:66;24807:5;24803:78;24792:89;;24738:149;;;:::o;24893:126::-;24930:7;24970:42;24963:5;24959:54;24948:65;;24893:126;;;:::o;25025:77::-;25062:7;25091:5;25080:16;;25025:77;;;:::o;25108:154::-;25192:6;25187:3;25182;25169:30;25254:1;25245:6;25240:3;25236:16;25229:27;25108:154;;;:::o;25268:307::-;25336:1;25346:113;25360:6;25357:1;25354:13;25346:113;;;25445:1;25440:3;25436:11;25430:18;25426:1;25421:3;25417:11;25410:39;25382:2;25379:1;25375:10;25370:15;;25346:113;;;25477:6;25474:1;25471:13;25468:101;;;25557:1;25548:6;25543:3;25539:16;25532:27;25468:101;25317:258;25268:307;;;:::o;25581:320::-;25625:6;25662:1;25656:4;25652:12;25642:22;;25709:1;25703:4;25699:12;25730:18;25720:81;;25786:4;25778:6;25774:17;25764:27;;25720:81;25848:2;25840:6;25837:14;25817:18;25814:38;25811:84;;;25867:18;;:::i;:::-;25811:84;25632:269;25581:320;;;:::o;25907:281::-;25990:27;26012:4;25990:27;:::i;:::-;25982:6;25978:40;26120:6;26108:10;26105:22;26084:18;26072:10;26069:34;26066:62;26063:88;;;26131:18;;:::i;:::-;26063:88;26171:10;26167:2;26160:22;25950:238;25907:281;;:::o;26194:233::-;26233:3;26256:24;26274:5;26256:24;:::i;:::-;26247:33;;26302:66;26295:5;26292:77;26289:103;;;26372:18;;:::i;:::-;26289:103;26419:1;26412:5;26408:13;26401:20;;26194:233;;;:::o;26433:176::-;26465:1;26482:20;26500:1;26482:20;:::i;:::-;26477:25;;26516:20;26534:1;26516:20;:::i;:::-;26511:25;;26555:1;26545:35;;26560:18;;:::i;:::-;26545:35;26601:1;26598;26594:9;26589:14;;26433:176;;;;:::o;26615:180::-;26663:77;26660:1;26653:88;26760:4;26757:1;26750:15;26784:4;26781:1;26774:15;26801:180;26849:77;26846:1;26839:88;26946:4;26943:1;26936:15;26970:4;26967:1;26960:15;26987:180;27035:77;27032:1;27025:88;27132:4;27129:1;27122:15;27156:4;27153:1;27146:15;27173:180;27221:77;27218:1;27211:88;27318:4;27315:1;27308:15;27342:4;27339:1;27332:15;27359:180;27407:77;27404:1;27397:88;27504:4;27501:1;27494:15;27528:4;27525:1;27518:15;27545:117;27654:1;27651;27644:12;27668:117;27777:1;27774;27767:12;27791:117;27900:1;27897;27890:12;27914:117;28023:1;28020;28013:12;28037:102;28078:6;28129:2;28125:7;28120:2;28113:5;28109:14;28105:28;28095:38;;28037:102;;;:::o;28145:225::-;28285:34;28281:1;28273:6;28269:14;28262:58;28354:8;28349:2;28341:6;28337:15;28330:33;28145:225;:::o;28376:170::-;28516:22;28512:1;28504:6;28500:14;28493:46;28376:170;:::o;28552:245::-;28692:34;28688:1;28680:6;28676:14;28669:58;28761:28;28756:2;28748:6;28744:15;28737:53;28552:245;:::o;28803:179::-;28943:31;28939:1;28931:6;28927:14;28920:55;28803:179;:::o;28988:182::-;29128:34;29124:1;29116:6;29112:14;29105:58;28988:182;:::o;29176:234::-;29316:34;29312:1;29304:6;29300:14;29293:58;29385:17;29380:2;29372:6;29368:15;29361:42;29176:234;:::o;29416:169::-;29556:21;29552:1;29544:6;29540:14;29533:45;29416:169;:::o;29591:166::-;29731:18;29727:1;29719:6;29715:14;29708:42;29591:166;:::o;29763:114::-;;:::o;29883:170::-;30023:22;30019:1;30011:6;30007:14;30000:46;29883:170;:::o;30059:181::-;30199:33;30195:1;30187:6;30183:14;30176:57;30059:181;:::o;30246:169::-;30386:21;30382:1;30374:6;30370:14;30363:45;30246:169;:::o;30421:122::-;30494:24;30512:5;30494:24;:::i;:::-;30487:5;30484:35;30474:63;;30533:1;30530;30523:12;30474:63;30421:122;:::o;30549:116::-;30619:21;30634:5;30619:21;:::i;:::-;30612:5;30609:32;30599:60;;30655:1;30652;30645:12;30599:60;30549:116;:::o;30671:120::-;30743:23;30760:5;30743:23;:::i;:::-;30736:5;30733:34;30723:62;;30781:1;30778;30771:12;30723:62;30671:120;:::o;30797:122::-;30870:24;30888:5;30870:24;:::i;:::-;30863:5;30860:35;30850:63;;30909:1;30906;30899:12;30850:63;30797:122;:::o
Swarm Source
ipfs://d04461f63dda191ea6986c9b4f05a2b4de5cb5726c899f57def792affcfdd435
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.