ERC-721
Overview
Max Total Supply
1,001 PING
Holders
656
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PINGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pingies
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-09 */ // SPDX-License-Identifier: MIT // 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/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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: penguins.sol //Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel pragma solidity >=0.7.0 <0.9.0; contract Pingies is ERC721A, Ownable, ReentrancyGuard { string public baseURI; string public notRevealedUri; uint256 public cost = 0.0033 ether; uint256 public maxSupply = 10000; uint256 public MaxperWallet = 100; uint256 public FreeLimit = 1; bool public paused = false; mapping (address => uint256) public AddressFreeMinted; constructor() ERC721A("Pingies", "PING") { setBaseURI("ipfs://bafybeib2h4pedq7i7j5wnw2ocu3ojbqzz7oktulwlr2hziusht6ge3l5uu/"); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // public /// @dev Public mint function mint(uint256 tokens) public payable nonReentrant { require(!paused, "oops contract is paused"); require(tokens <= MaxperWallet, "max mint amount per tx exceeded"); require(totalSupply() + tokens <= maxSupply, "We Soldout"); if(_numberMinted(_msgSenderERC721A()) >= FreeLimit) { require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded"); require(msg.value >= cost * tokens, "insufficient funds"); } else { require(msg.value >= cost * (tokens - (FreeLimit - AddressFreeMinted[_msgSenderERC721A()])), "insufficient funds"); AddressFreeMinted[_msgSenderERC721A()] = FreeLimit; } _safeMint(_msgSenderERC721A(), tokens); } /// @dev use it for giveaway and team mint function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant { require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } /// @notice returns metadata link of tokenid function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if(tokenId <= 5000) { string memory currentBaseURI = "ipfs://bafybeib2h4pedq7i7j5wnw2ocu3ojbqzz7oktulwlr2hziusht6ge3l5uu/"; return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), ".json")) : ""; } else { string memory currentBaseURI = "ipfs://bafybeiairhdnkuh2ahrxrzwo45rccfgvtkeaovf3herfylgl36mv5vidgu/"; return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), ".json")) : ""; } } /// @notice return the number minted by an address function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } /// @notice return the tokens owned by an address function tokensOfOwner(address owner) public view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } //only owner /// @dev change the public max per wallet function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } /// @dev change the whitelist max per wallet function setFreeLimit(uint256 _limit) public onlyOwner { FreeLimit = _limit; } /// @dev change the public price(amount need to be in wei) function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } /// @dev cut the supply if we dont sold out function setMaxsupply(uint256 _newsupply) public onlyOwner { maxSupply = _newsupply; } /// @dev set your baseuri function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } /// @dev to pause and unpause your contract(use booleans true or false) function pause(bool _state) public onlyOwner { paused = _state; } /// @dev withdraw funds from contract function withdraw() public payable onlyOwner nonReentrant { uint256 balance = address(this).balance; payable(_msgSenderERC721A()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"}]
Contract Creation Code
6080604052660bb9551fc24000600c55612710600d556064600e556001600f556010805460ff191690553480156200003657600080fd5b50604080518082018252600781526650696e6769657360c81b60208083019182528351808501909452600484526350494e4760e01b9084015281519192916200008291600291620001b3565b50805162000098906003906020840190620001b3565b5050600160005550620000ab33620000dd565b6001600981905550620000d760405180608001604052806043815260200162002073604391396200012f565b62000296565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013962000152565b80516200014e90600a906020840190620001b3565b5050565b6008546001600160a01b03163314620001b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001c19062000259565b90600052602060002090601f016020900481019282620001e5576000855562000230565b82601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b600181811c908216806200026e57607f821691505b602082108114156200029057634e487b7160e01b600052602260045260246000fd5b50919050565b611dcd80620002a66000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063bc63f02e116100a0578063dc33e6811161006f578063dc33e681146105c9578063e268e4d3146105e9578063e985e9c514610609578063f2fde38b14610652578063f8604f111461067257600080fd5b8063bc63f02e1461055d578063bd7a19981461057d578063c87b56dd14610593578063d5abeb01146105b357600080fd5b80638da5cb5b116100e75780638da5cb5b146104d757806395d89b41146104f5578063a0712d681461050a578063a22cb4651461051d578063b88d4fde1461053d57600080fd5b80636c0360eb1461046057806370a0823114610475578063715018a6146104955780638462151c146104aa57600080fd5b806318160ddd1161019b5780634404f8521161016a5780634404f852146103d057806344a0d68a146103e657806355f804b3146104065780635c975abb146104265780636352211e1461044057600080fd5b806318160ddd1461036b57806323b872dd146103885780633ccfd60b146103a857806342842e0e146103b057600080fd5b8063081c8c44116101e2578063081c8c44146102c5578063095ea7b3146102da578063123d1d8b146102fa57806313faede614610335578063149835a01461034b57600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f36600461181f565b610692565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461184c565b6106e4565b005b34801561027757600080fd5b506102806106ff565b60405161024091906118bf565b34801561029957600080fd5b506102ad6102a83660046118d2565b610791565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102806107d5565b3480156102e657600080fd5b506102696102f5366004611902565b610863565b34801561030657600080fd5b5061032761031536600461192c565b60116020526000908152604090205481565b604051908152602001610240565b34801561034157600080fd5b50610327600c5481565b34801561035757600080fd5b506102696103663660046118d2565b610903565b34801561037757600080fd5b506001546000540360001901610327565b34801561039457600080fd5b506102696103a3366004611947565b610910565b610269610aa1565b3480156103bc57600080fd5b506102696103cb366004611947565b610b12565b3480156103dc57600080fd5b50610327600f5481565b3480156103f257600080fd5b506102696104013660046118d2565b610b32565b34801561041257600080fd5b50610269610421366004611a0f565b610b3f565b34801561043257600080fd5b506010546102349060ff1681565b34801561044c57600080fd5b506102ad61045b3660046118d2565b610b5e565b34801561046c57600080fd5b50610280610b69565b34801561048157600080fd5b5061032761049036600461192c565b610b76565b3480156104a157600080fd5b50610269610bc5565b3480156104b657600080fd5b506104ca6104c536600461192c565b610bd9565b6040516102409190611a58565b3480156104e357600080fd5b506008546001600160a01b03166102ad565b34801561050157600080fd5b50610280610ce9565b6102696105183660046118d2565b610cf8565b34801561052957600080fd5b50610269610538366004611a90565b610f86565b34801561054957600080fd5b50610269610558366004611ac3565b61101c565b34801561056957600080fd5b50610269610578366004611b3f565b611066565b34801561058957600080fd5b50610327600e5481565b34801561059f57600080fd5b506102806105ae3660046118d2565b611102565b3480156105bf57600080fd5b50610327600d5481565b3480156105d557600080fd5b506103276105e436600461192c565b611228565b3480156105f557600080fd5b506102696106043660046118d2565b611233565b34801561061557600080fd5b50610234610624366004611b62565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065e57600080fd5b5061026961066d36600461192c565b611240565b34801561067e57600080fd5b5061026961068d3660046118d2565b6112b9565b60006301ffc9a760e01b6001600160e01b0319831614806106c357506380ac58cd60e01b6001600160e01b03198316145b806106de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6106ec6112c6565b6010805460ff1916911515919091179055565b60606002805461070e90611b8c565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90611b8c565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b600061079c82611320565b6107b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b80546107e290611b8c565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90611b8c565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b505050505081565b600061086e82610b5e565b9050336001600160a01b038216146108a75761088a8133610624565b6108a7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61090b6112c6565b600d55565b600061091b82611355565b9050836001600160a01b0316816001600160a01b03161461094e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761099b5761097e8633610624565b61099b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109c257604051633a954ecd60e21b815260040160405180910390fd5b80156109cd57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a585760018401600081815260046020526040902054610a56576000548114610a565760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610aa96112c6565b60026009541415610ad55760405162461bcd60e51b8152600401610acc90611bc7565b60405180910390fd5b60026009556040514790339082156108fc029083906000818181858888f19350505050158015610b09573d6000803e3d6000fd5b50506001600955565b610b2d8383836040518060200160405280600081525061101c565b505050565b610b3a6112c6565b600c55565b610b476112c6565b8051610b5a90600a906020840190611770565b5050565b60006106de82611355565b600a80546107e290611b8c565b60006001600160a01b038216610b9f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610bcd6112c6565b610bd760006113be565b565b60606000806000610be985610b76565b905060008167ffffffffffffffff811115610c0657610c06611983565b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b509050610c5c60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610cdd57610c6f81611410565b9150816040015115610c8057610cd5565b81516001600160a01b031615610c9557815194505b876001600160a01b0316856001600160a01b03161415610cd55780838780600101985081518110610cc857610cc8611bfe565b6020026020010181815250505b600101610c5f565b50909695505050505050565b60606003805461070e90611b8c565b60026009541415610d1b5760405162461bcd60e51b8152600401610acc90611bc7565b600260095560105460ff1615610d735760405162461bcd60e51b815260206004820152601760248201527f6f6f707320636f6e7472616374206973207061757365640000000000000000006044820152606401610acc565b600e54811115610dc55760405162461bcd60e51b815260206004820152601f60248201527f6d6178206d696e7420616d6f756e7420706572207478206578636565646564006044820152606401610acc565b600d546001546000548391900360001901610de09190611c2a565b1115610e1b5760405162461bcd60e51b815260206004820152600a60248201526915d94814dbdb191bdd5d60b21b6044820152606401610acc565b600f54610e273361148f565b10610ee857600e5481610e393361148f565b610e439190611c2a565b1115610e915760405162461bcd60e51b815260206004820152601b60248201527f4d6178204e4654205065722057616c6c657420657863656564656400000000006044820152606401610acc565b80600c54610e9f9190611c42565b341015610ee35760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610acc565b610f74565b33600090815260116020526040902054600f54610f059190611c61565b610f0f9082611c61565b600c54610f1c9190611c42565b341015610f605760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610acc565b600f54336000908152601160205260409020555b610f7e33826114b8565b506001600955565b6001600160a01b038216331415610fb05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611027848484610910565b6001600160a01b0383163b1561106057611043848484846114d2565b611060576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61106e6112c6565b600260095414156110915760405162461bcd60e51b8152600401610acc90611bc7565b6002600955600d5460015460005484919003600019016110b19190611c2a565b11156110f85760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610acc565b610b0981836114b8565b606061110d82611320565b6111725760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610acc565b61138882116111e8576000604051806080016040528060438152602001611d1260439139905060008151116111b657604051806020016040528060008152506111e1565b806111c0846115ca565b6040516020016111d1929190611c78565b6040516020818303038152906040525b9392505050565b6000604051806080016040528060438152602001611d5560439139905060008151116111b657604051806020016040528060008152506111e1565b919050565b60006106de8261148f565b61123b6112c6565b600e55565b6112486112c6565b6001600160a01b0381166112ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acc565b6112b6816113be565b50565b6112c16112c6565b600f55565b6008546001600160a01b03163314610bd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610acc565b600081600111158015611334575060005482105b80156106de575050600090815260046020526040902054600160e01b161590565b600081806001116113a5576000548110156113a557600081815260046020526040902054600160e01b81166113a3575b806111e1575060001901600081815260046020526040902054611385565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546106de90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610b5a82826040518060200160405280600081525061160c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611cb7565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611cf4565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080019081905280825b600183039250600a81066030018353600a9004806115f5576115fa565b6115d8565b50819003601f19909101908152919050565b6116168383611679565b6001600160a01b0383163b15610b2d576000548281035b61164060008683806001019450866114d2565b61165d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061162d57816000541461167257600080fd5b5050505050565b6000548161169a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461174957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611711565b508161176757604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461177c90611b8c565b90600052602060002090601f01602090048101928261179e57600085556117e4565b82601f106117b757805160ff19168380011785556117e4565b828001600101855582156117e4579182015b828111156117e45782518255916020019190600101906117c9565b506117f09291506117f4565b5090565b5b808211156117f057600081556001016117f5565b6001600160e01b0319811681146112b657600080fd5b60006020828403121561183157600080fd5b81356111e181611809565b8035801515811461122357600080fd5b60006020828403121561185e57600080fd5b6111e18261183c565b60005b8381101561188257818101518382015260200161186a565b838111156110605750506000910152565b600081518084526118ab816020860160208601611867565b601f01601f19169290920160200192915050565b6020815260006111e16020830184611893565b6000602082840312156118e457600080fd5b5035919050565b80356001600160a01b038116811461122357600080fd5b6000806040838503121561191557600080fd5b61191e836118eb565b946020939093013593505050565b60006020828403121561193e57600080fd5b6111e1826118eb565b60008060006060848603121561195c57600080fd5b611965846118eb565b9250611973602085016118eb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119b4576119b4611983565b604051601f8501601f19908116603f011681019082821181831017156119dc576119dc611983565b816040528093508581528686860111156119f557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a2157600080fd5b813567ffffffffffffffff811115611a3857600080fd5b8201601f81018413611a4957600080fd5b6115c284823560208401611999565b6020808252825182820181905260009190848201906040850190845b81811015610cdd57835183529284019291840191600101611a74565b60008060408385031215611aa357600080fd5b611aac836118eb565b9150611aba6020840161183c565b90509250929050565b60008060008060808587031215611ad957600080fd5b611ae2856118eb565b9350611af0602086016118eb565b925060408501359150606085013567ffffffffffffffff811115611b1357600080fd5b8501601f81018713611b2457600080fd5b611b3387823560208401611999565b91505092959194509250565b60008060408385031215611b5257600080fd5b82359150611aba602084016118eb565b60008060408385031215611b7557600080fd5b611b7e836118eb565b9150611aba602084016118eb565b600181811c90821680611ba057607f821691505b60208210811415611bc157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115611c3d57611c3d611c14565b500190565b6000816000190483118215151615611c5c57611c5c611c14565b500290565b600082821015611c7357611c73611c14565b500390565b60008351611c8a818460208801611867565b835190830190611c9e818360208801611867565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cea90830184611893565b9695505050505050565b600060208284031215611d0657600080fd5b81516111e18161180956fe697066733a2f2f6261667962656962326834706564713769376a35776e77326f6375336f6a62717a7a376f6b74756c776c7232687a6975736874366765336c3575752f697066733a2f2f6261667962656961697268646e6b75683261687278727a776f3435726363666776746b65616f76663368657266796c676c33366d763576696467752fa264697066735822122088f64d9a4df976b9a73aed26a39642376305bd6aa5f3567ef1238de6462f9eb964736f6c63430008090033697066733a2f2f6261667962656962326834706564713769376a35776e77326f6375336f6a62717a7a376f6b74756c776c7232687a6975736874366765336c3575752f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063bc63f02e116100a0578063dc33e6811161006f578063dc33e681146105c9578063e268e4d3146105e9578063e985e9c514610609578063f2fde38b14610652578063f8604f111461067257600080fd5b8063bc63f02e1461055d578063bd7a19981461057d578063c87b56dd14610593578063d5abeb01146105b357600080fd5b80638da5cb5b116100e75780638da5cb5b146104d757806395d89b41146104f5578063a0712d681461050a578063a22cb4651461051d578063b88d4fde1461053d57600080fd5b80636c0360eb1461046057806370a0823114610475578063715018a6146104955780638462151c146104aa57600080fd5b806318160ddd1161019b5780634404f8521161016a5780634404f852146103d057806344a0d68a146103e657806355f804b3146104065780635c975abb146104265780636352211e1461044057600080fd5b806318160ddd1461036b57806323b872dd146103885780633ccfd60b146103a857806342842e0e146103b057600080fd5b8063081c8c44116101e2578063081c8c44146102c5578063095ea7b3146102da578063123d1d8b146102fa57806313faede614610335578063149835a01461034b57600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f36600461181f565b610692565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461184c565b6106e4565b005b34801561027757600080fd5b506102806106ff565b60405161024091906118bf565b34801561029957600080fd5b506102ad6102a83660046118d2565b610791565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102806107d5565b3480156102e657600080fd5b506102696102f5366004611902565b610863565b34801561030657600080fd5b5061032761031536600461192c565b60116020526000908152604090205481565b604051908152602001610240565b34801561034157600080fd5b50610327600c5481565b34801561035757600080fd5b506102696103663660046118d2565b610903565b34801561037757600080fd5b506001546000540360001901610327565b34801561039457600080fd5b506102696103a3366004611947565b610910565b610269610aa1565b3480156103bc57600080fd5b506102696103cb366004611947565b610b12565b3480156103dc57600080fd5b50610327600f5481565b3480156103f257600080fd5b506102696104013660046118d2565b610b32565b34801561041257600080fd5b50610269610421366004611a0f565b610b3f565b34801561043257600080fd5b506010546102349060ff1681565b34801561044c57600080fd5b506102ad61045b3660046118d2565b610b5e565b34801561046c57600080fd5b50610280610b69565b34801561048157600080fd5b5061032761049036600461192c565b610b76565b3480156104a157600080fd5b50610269610bc5565b3480156104b657600080fd5b506104ca6104c536600461192c565b610bd9565b6040516102409190611a58565b3480156104e357600080fd5b506008546001600160a01b03166102ad565b34801561050157600080fd5b50610280610ce9565b6102696105183660046118d2565b610cf8565b34801561052957600080fd5b50610269610538366004611a90565b610f86565b34801561054957600080fd5b50610269610558366004611ac3565b61101c565b34801561056957600080fd5b50610269610578366004611b3f565b611066565b34801561058957600080fd5b50610327600e5481565b34801561059f57600080fd5b506102806105ae3660046118d2565b611102565b3480156105bf57600080fd5b50610327600d5481565b3480156105d557600080fd5b506103276105e436600461192c565b611228565b3480156105f557600080fd5b506102696106043660046118d2565b611233565b34801561061557600080fd5b50610234610624366004611b62565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065e57600080fd5b5061026961066d36600461192c565b611240565b34801561067e57600080fd5b5061026961068d3660046118d2565b6112b9565b60006301ffc9a760e01b6001600160e01b0319831614806106c357506380ac58cd60e01b6001600160e01b03198316145b806106de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6106ec6112c6565b6010805460ff1916911515919091179055565b60606002805461070e90611b8c565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90611b8c565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b600061079c82611320565b6107b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b80546107e290611b8c565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90611b8c565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b505050505081565b600061086e82610b5e565b9050336001600160a01b038216146108a75761088a8133610624565b6108a7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61090b6112c6565b600d55565b600061091b82611355565b9050836001600160a01b0316816001600160a01b03161461094e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761099b5761097e8633610624565b61099b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109c257604051633a954ecd60e21b815260040160405180910390fd5b80156109cd57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a585760018401600081815260046020526040902054610a56576000548114610a565760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610aa96112c6565b60026009541415610ad55760405162461bcd60e51b8152600401610acc90611bc7565b60405180910390fd5b60026009556040514790339082156108fc029083906000818181858888f19350505050158015610b09573d6000803e3d6000fd5b50506001600955565b610b2d8383836040518060200160405280600081525061101c565b505050565b610b3a6112c6565b600c55565b610b476112c6565b8051610b5a90600a906020840190611770565b5050565b60006106de82611355565b600a80546107e290611b8c565b60006001600160a01b038216610b9f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610bcd6112c6565b610bd760006113be565b565b60606000806000610be985610b76565b905060008167ffffffffffffffff811115610c0657610c06611983565b604051908082528060200260200182016040528015610c2f578160200160208202803683370190505b509050610c5c60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610cdd57610c6f81611410565b9150816040015115610c8057610cd5565b81516001600160a01b031615610c9557815194505b876001600160a01b0316856001600160a01b03161415610cd55780838780600101985081518110610cc857610cc8611bfe565b6020026020010181815250505b600101610c5f565b50909695505050505050565b60606003805461070e90611b8c565b60026009541415610d1b5760405162461bcd60e51b8152600401610acc90611bc7565b600260095560105460ff1615610d735760405162461bcd60e51b815260206004820152601760248201527f6f6f707320636f6e7472616374206973207061757365640000000000000000006044820152606401610acc565b600e54811115610dc55760405162461bcd60e51b815260206004820152601f60248201527f6d6178206d696e7420616d6f756e7420706572207478206578636565646564006044820152606401610acc565b600d546001546000548391900360001901610de09190611c2a565b1115610e1b5760405162461bcd60e51b815260206004820152600a60248201526915d94814dbdb191bdd5d60b21b6044820152606401610acc565b600f54610e273361148f565b10610ee857600e5481610e393361148f565b610e439190611c2a565b1115610e915760405162461bcd60e51b815260206004820152601b60248201527f4d6178204e4654205065722057616c6c657420657863656564656400000000006044820152606401610acc565b80600c54610e9f9190611c42565b341015610ee35760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610acc565b610f74565b33600090815260116020526040902054600f54610f059190611c61565b610f0f9082611c61565b600c54610f1c9190611c42565b341015610f605760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610acc565b600f54336000908152601160205260409020555b610f7e33826114b8565b506001600955565b6001600160a01b038216331415610fb05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611027848484610910565b6001600160a01b0383163b1561106057611043848484846114d2565b611060576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61106e6112c6565b600260095414156110915760405162461bcd60e51b8152600401610acc90611bc7565b6002600955600d5460015460005484919003600019016110b19190611c2a565b11156110f85760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610acc565b610b0981836114b8565b606061110d82611320565b6111725760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610acc565b61138882116111e8576000604051806080016040528060438152602001611d1260439139905060008151116111b657604051806020016040528060008152506111e1565b806111c0846115ca565b6040516020016111d1929190611c78565b6040516020818303038152906040525b9392505050565b6000604051806080016040528060438152602001611d5560439139905060008151116111b657604051806020016040528060008152506111e1565b919050565b60006106de8261148f565b61123b6112c6565b600e55565b6112486112c6565b6001600160a01b0381166112ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acc565b6112b6816113be565b50565b6112c16112c6565b600f55565b6008546001600160a01b03163314610bd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610acc565b600081600111158015611334575060005482105b80156106de575050600090815260046020526040902054600160e01b161590565b600081806001116113a5576000548110156113a557600081815260046020526040902054600160e01b81166113a3575b806111e1575060001901600081815260046020526040902054611385565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546106de90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610b5a82826040518060200160405280600081525061160c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611cb7565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611cf4565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080019081905280825b600183039250600a81066030018353600a9004806115f5576115fa565b6115d8565b50819003601f19909101908152919050565b6116168383611679565b6001600160a01b0383163b15610b2d576000548281035b61164060008683806001019450866114d2565b61165d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061162d57816000541461167257600080fd5b5050505050565b6000548161169a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461174957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611711565b508161176757604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461177c90611b8c565b90600052602060002090601f01602090048101928261179e57600085556117e4565b82601f106117b757805160ff19168380011785556117e4565b828001600101855582156117e4579182015b828111156117e45782518255916020019190600101906117c9565b506117f09291506117f4565b5090565b5b808211156117f057600081556001016117f5565b6001600160e01b0319811681146112b657600080fd5b60006020828403121561183157600080fd5b81356111e181611809565b8035801515811461122357600080fd5b60006020828403121561185e57600080fd5b6111e18261183c565b60005b8381101561188257818101518382015260200161186a565b838111156110605750506000910152565b600081518084526118ab816020860160208601611867565b601f01601f19169290920160200192915050565b6020815260006111e16020830184611893565b6000602082840312156118e457600080fd5b5035919050565b80356001600160a01b038116811461122357600080fd5b6000806040838503121561191557600080fd5b61191e836118eb565b946020939093013593505050565b60006020828403121561193e57600080fd5b6111e1826118eb565b60008060006060848603121561195c57600080fd5b611965846118eb565b9250611973602085016118eb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119b4576119b4611983565b604051601f8501601f19908116603f011681019082821181831017156119dc576119dc611983565b816040528093508581528686860111156119f557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a2157600080fd5b813567ffffffffffffffff811115611a3857600080fd5b8201601f81018413611a4957600080fd5b6115c284823560208401611999565b6020808252825182820181905260009190848201906040850190845b81811015610cdd57835183529284019291840191600101611a74565b60008060408385031215611aa357600080fd5b611aac836118eb565b9150611aba6020840161183c565b90509250929050565b60008060008060808587031215611ad957600080fd5b611ae2856118eb565b9350611af0602086016118eb565b925060408501359150606085013567ffffffffffffffff811115611b1357600080fd5b8501601f81018713611b2457600080fd5b611b3387823560208401611999565b91505092959194509250565b60008060408385031215611b5257600080fd5b82359150611aba602084016118eb565b60008060408385031215611b7557600080fd5b611b7e836118eb565b9150611aba602084016118eb565b600181811c90821680611ba057607f821691505b60208210811415611bc157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115611c3d57611c3d611c14565b500190565b6000816000190483118215151615611c5c57611c5c611c14565b500290565b600082821015611c7357611c73611c14565b500390565b60008351611c8a818460208801611867565b835190830190611c9e818360208801611867565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cea90830184611893565b9695505050505050565b600060208284031215611d0657600080fd5b81516111e18161180956fe697066733a2f2f6261667962656962326834706564713769376a35776e77326f6375336f6a62717a7a376f6b74756c776c7232687a6975736874366765336c3575752f697066733a2f2f6261667962656961697268646e6b75683261687278727a776f3435726363666776746b65616f76663368657266796c676c33366d763576696467752fa264697066735822122088f64d9a4df976b9a73aed26a39642376305bd6aa5f3567ef1238de6462f9eb964736f6c63430008090033
Deployed Bytecode Sourcemap
57346:4852:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24820:639;;;;;;;;;;-1:-1:-1;24820:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24820:639:0;;;;;;;;61906:73;;;;;;;;;;-1:-1:-1;61906:73:0;;;;;:::i;:::-;;:::i;:::-;;25722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32205:218::-;;;;;;;;;;-1:-1:-1;32205:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;32205:218:0;1878:203:1;57435:28:0;;;;;;;;;;;;;:::i;31646:400::-;;;;;;;;;;-1:-1:-1;31646:400:0;;;;;:::i;:::-;;:::i;57646:53::-;;;;;;;;;;-1:-1:-1;57646:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2860:25:1;;;2848:2;2833:18;57646:53:0;2714:177:1;57468:34:0;;;;;;;;;;;;;;;;61598:94;;;;;;;;;;-1:-1:-1;61598:94:0;;;;;:::i;:::-;;:::i;21473:323::-;;;;;;;;;;-1:-1:-1;58064:1:0;21747:12;21534:7;21731:13;:28;-1:-1:-1;;21731:46:0;21473:323;;35912:2817;;;;;;;;;;-1:-1:-1;35912:2817:0;;;;;:::i;:::-;;:::i;62028:167::-;;;:::i;38825:185::-;;;;;;;;;;-1:-1:-1;38825:185:0;;;;;:::i;:::-;;:::i;57582:28::-;;;;;;;;;;;;;;;;61463:80;;;;;;;;;;-1:-1:-1;61463:80:0;;;;;:::i;:::-;;:::i;61728:98::-;;;;;;;;;;-1:-1:-1;61728:98:0;;;;;:::i;:::-;;:::i;57615:26::-;;;;;;;;;;-1:-1:-1;57615:26:0;;;;;;;;27115:152;;;;;;;;;;-1:-1:-1;27115:152:0;;;;;:::i;:::-;;:::i;57409:21::-;;;;;;;;;;;;;:::i;22657:233::-;;;;;;;;;;-1:-1:-1;22657:233:0;;;;;:::i;:::-;;:::i;5568:103::-;;;;;;;;;;;;;:::i;60212:881::-;;;;;;;;;;-1:-1:-1;60212:881:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4920:87::-;;;;;;;;;;-1:-1:-1;4993:6:0;;-1:-1:-1;;;;;4993:6:0;4920:87;;25898:104;;;;;;;;;;;;;:::i;58117:745::-;;;;;;:::i;:::-;;:::i;32763:308::-;;;;;;;;;;-1:-1:-1;32763:308:0;;;;;:::i;:::-;;:::i;39608:399::-;;;;;;;;;;-1:-1:-1;39608:399:0;;;;;:::i;:::-;;:::i;58917:223::-;;;;;;;;;;-1:-1:-1;58917:223:0;;;;;:::i;:::-;;:::i;57544:33::-;;;;;;;;;;;;;;;;59192:783;;;;;;;;;;-1:-1:-1;59192:783:0;;;;;:::i;:::-;;:::i;57507:32::-;;;;;;;;;;;;;;;;60040:107;;;;;;;;;;-1:-1:-1;60040:107:0;;;;;:::i;:::-;;:::i;61160:92::-;;;;;;;;;;-1:-1:-1;61160:92:0;;;;;:::i;:::-;;:::i;33228:164::-;;;;;;;;;;-1:-1:-1;33228:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33349:25:0;;;33325:4;33349:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33228:164;5826:201;;;;;;;;;;-1:-1:-1;5826:201:0;;;;;:::i;:::-;;:::i;61308:86::-;;;;;;;;;;-1:-1:-1;61308:86:0;;;;;:::i;:::-;;:::i;24820:639::-;24905:4;-1:-1:-1;;;;;;;;;25229:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25306:25:0;;;25229:102;:179;;;-1:-1:-1;;;;;;;;;;25383:25:0;;;25229:179;25209:199;24820:639;-1:-1:-1;;24820:639:0:o;61906:73::-;4806:13;:11;:13::i;:::-;61958:6:::1;:15:::0;;-1:-1:-1;;61958:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61906:73::o;25722:100::-;25776:13;25809:5;25802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25722:100;:::o;32205:218::-;32281:7;32306:16;32314:7;32306;:16::i;:::-;32301:64;;32331:34;;-1:-1:-1;;;32331:34:0;;;;;;;;;;;32301:64;-1:-1:-1;32385:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32385:30:0;;32205:218::o;57435:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31646:400::-;31727:13;31743:16;31751:7;31743;:16::i;:::-;31727:32;-1:-1:-1;55503:10:0;-1:-1:-1;;;;;31776:28:0;;;31772:175;;31824:44;31841:5;55503:10;33228:164;:::i;31824:44::-;31819:128;;31896:35;;-1:-1:-1;;;31896:35:0;;;;;;;;;;;31819:128;31959:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31959:35:0;-1:-1:-1;;;;;31959:35:0;;;;;;;;;32010:28;;31959:24;;32010:28;;;;;;;31716:330;31646:400;;:::o;61598:94::-;4806:13;:11;:13::i;:::-;61664:9:::1;:22:::0;61598:94::o;35912:2817::-;36046:27;36076;36095:7;36076:18;:27::i;:::-;36046:57;;36161:4;-1:-1:-1;;;;;36120:45:0;36136:19;-1:-1:-1;;;;;36120:45:0;;36116:86;;36174:28;;-1:-1:-1;;;36174:28:0;;;;;;;;;;;36116:86;36216:27;35026:24;;;:15;:24;;;;;35248:26;;55503:10;34651:30;;;-1:-1:-1;;;;;34344:28:0;;34629:20;;;34626:56;36402:180;;36495:43;36512:4;55503:10;33228:164;:::i;36495:43::-;36490:92;;36547:35;;-1:-1:-1;;;36547:35:0;;;;;;;;;;;36490:92;-1:-1:-1;;;;;36599:16:0;;36595:52;;36624:23;;-1:-1:-1;;;36624:23:0;;;;;;;;;;;36595:52;36796:15;36793:160;;;36936:1;36915:19;36908:30;36793:160;-1:-1:-1;;;;;37333:24:0;;;;;;;:18;:24;;;;;;37331:26;;-1:-1:-1;;37331:26:0;;;37402:22;;;;;;;;;37400:24;;-1:-1:-1;37400:24:0;;;30504:11;30479:23;30475:41;30462:63;-1:-1:-1;;;30462:63:0;37695:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37990:47:0;;37986:627;;38095:1;38085:11;;38063:19;38218:30;;;:17;:30;;;;;;38214:384;;38356:13;;38341:11;:28;38337:242;;38503:30;;;;:17;:30;;;;;:52;;;38337:242;38044:569;37986:627;38660:7;38656:2;-1:-1:-1;;;;;38641:27:0;38650:4;-1:-1:-1;;;;;38641:27:0;;;;;;;;;;;36035:2694;;;35912:2817;;;:::o;62028:167::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;-1:-1:-1::0;;;2435:63:0::1;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18:::0;62143:46:::2;::::0;62113:21:::2;::::0;55503:10;;62143:46;::::2;;;::::0;62113:21;;62143:46:::2;::::0;;;62113:21;55503:10;62143:46;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1801:1:0::1;2755:7;:22:::0;62028:167::o;38825:185::-;38963:39;38980:4;38986:2;38990:7;38963:39;;;;;;;;;;;;:16;:39::i;:::-;38825:185;;;:::o;61463:80::-;4806:13;:11;:13::i;:::-;61522:4:::1;:15:::0;61463:80::o;61728:98::-;4806:13;:11;:13::i;:::-;61799:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;61728:98:::0;:::o;27115:152::-;27187:7;27230:27;27249:7;27230:18;:27::i;57409:21::-;;;;;;;:::i;22657:233::-;22729:7;-1:-1:-1;;;;;22753:19:0;;22749:60;;22781:28;;-1:-1:-1;;;22781:28:0;;;;;;;;;;;22749:60;-1:-1:-1;;;;;;22827:25:0;;;;;:18;:25;;;;;;16816:13;22827:55;;22657:233::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;60212:881::-;60271:16;60325:19;60359:25;60399:22;60424:16;60434:5;60424:9;:16::i;:::-;60399:41;;60455:25;60497:14;60483:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60483:29:0;;60455:57;;60527:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60527:31:0;58064:1;60573:472;60622:14;60607:11;:29;60573:472;;60674:15;60687:1;60674:12;:15::i;:::-;60662:27;;60712:9;:16;;;60708:73;;;60753:8;;60708:73;60803:14;;-1:-1:-1;;;;;60803:28:0;;60799:111;;60876:14;;;-1:-1:-1;60799:111:0;60953:5;-1:-1:-1;;;;;60932:26:0;:17;-1:-1:-1;;;;;60932:26:0;;60928:102;;;61009:1;60983:8;60992:13;;;;;;60983:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;60928:102;60638:3;;60573:472;;;-1:-1:-1;61066:8:0;;60212:881;-1:-1:-1;;;;;;60212:881:0:o;25898:104::-;25954:13;25987:7;25980:14;;;;;:::i;58117:745::-;1845:1;2443:7;;:19;;2435:63;;;;-1:-1:-1;;;2435:63:0;;;;;;;:::i;:::-;1845:1;2576:7;:18;58191:6:::1;::::0;::::1;;58190:7;58182:43;;;::::0;-1:-1:-1;;;58182:43:0;;7625:2:1;58182:43:0::1;::::0;::::1;7607:21:1::0;7664:2;7644:18;;;7637:30;7703:25;7683:18;;;7676:53;7746:18;;58182:43:0::1;7423:347:1::0;58182:43:0::1;58250:12;;58240:6;:22;;58232:66;;;::::0;-1:-1:-1;;;58232:66:0;;7977:2:1;58232:66:0::1;::::0;::::1;7959:21:1::0;8016:2;7996:18;;;7989:30;8055:33;8035:18;;;8028:61;8106:18;;58232:66:0::1;7775:355:1::0;58232:66:0::1;58339:9;::::0;58064:1;21747:12;21534:7;21731:13;58329:6;;21731:28;;-1:-1:-1;;21731:46:0;58313:22:::1;;;;:::i;:::-;:35;;58305:58;;;::::0;-1:-1:-1;;;58305:58:0;;8602:2:1;58305:58:0::1;::::0;::::1;8584:21:1::0;8641:2;8621:18;;;8614:30;-1:-1:-1;;;8660:18:1;;;8653:40;8710:18;;58305:58:0::1;8400:334:1::0;58305:58:0::1;58413:9;::::0;58375:34:::1;55503:10:::0;58375:13:::1;:34::i;:::-;:47;58372:438;;58486:12;::::0;58476:6;58439:34:::1;55503:10:::0;58375:13:::1;:34::i;58439:::-;:43;;;;:::i;:::-;:59;;58431:99;;;::::0;-1:-1:-1;;;58431:99:0;;8941:2:1;58431:99:0::1;::::0;::::1;8923:21:1::0;8980:2;8960:18;;;8953:30;9019:29;8999:18;;;8992:57;9066:18;;58431:99:0::1;8739:351:1::0;58431:99:0::1;58565:6;58558:4;;:13;;;;:::i;:::-;58545:9;:26;;58537:57;;;::::0;-1:-1:-1;;;58537:57:0;;9470:2:1;58537:57:0::1;::::0;::::1;9452:21:1::0;9509:2;9489:18;;;9482:30;-1:-1:-1;;;9528:18:1;;;9521:48;9586:18;;58537:57:0::1;9268:342:1::0;58537:57:0::1;58372:438;;;55503:10:::0;58674:38:::1;::::0;;;:17:::1;:38;::::0;;;;;58662:9:::1;::::0;:50:::1;::::0;58674:38;58662:50:::1;:::i;:::-;58652:61;::::0;:6;:61:::1;:::i;:::-;58644:4;;:70;;;;:::i;:::-;58631:9;:83;;58623:114;;;::::0;-1:-1:-1;;;58623:114:0;;9470:2:1;58623:114:0::1;::::0;::::1;9452:21:1::0;9509:2;9489:18;;;9482:30;-1:-1:-1;;;9528:18:1;;;9521:48;9586:18;;58623:114:0::1;9268:342:1::0;58623:114:0::1;58793:9;::::0;55503:10;58752:38:::1;::::0;;;:17:::1;:38;::::0;;;;:50;58372:438:::1;58818:38;55503:10:::0;58849:6:::1;58818:9;:38::i;:::-;-1:-1:-1::0;1801:1:0;2755:7;:22;58117:745::o;32763:308::-;-1:-1:-1;;;;;32862:31:0;;55503:10;32862:31;32858:61;;;32902:17;;-1:-1:-1;;;32902:17:0;;;;;;;;;;;32858:61;55503:10;32932:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32932:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32932:60:0;;;;;;;;;;33008:55;;540:41:1;;;32932:49:0;;55503:10;33008:55;;513:18:1;33008:55:0;;;;;;;32763:308;;:::o;39608:399::-;39775:31;39788:4;39794:2;39798:7;39775:12;:31::i;:::-;-1:-1:-1;;;;;39821:14:0;;;:19;39817:183;;39860:56;39891:4;39897:2;39901:7;39910:5;39860:30;:56::i;:::-;39855:145;;39944:40;;-1:-1:-1;;;39944:40:0;;;;;;;;;;;39855:145;39608:399;;;;:::o;58917:223::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;-1:-1:-1::0;;;2435:63:0::1;;;;;;;:::i;:::-;1845:1;2576:7;:18:::0;59052:9:::2;::::0;58064:1;21747:12;21534:7;21731:13;59037:11;;21731:28;;-1:-1:-1;;21731:46:0;59021:27:::2;;;;:::i;:::-;:40;;59013:75;;;::::0;-1:-1:-1;;;59013:75:0;;9947:2:1;59013:75:0::2;::::0;::::2;9929:21:1::0;9986:2;9966:18;;;9959:30;-1:-1:-1;;;10005:18:1;;;9998:52;10067:18;;59013:75:0::2;9745:346:1::0;59013:75:0::2;59099:35;59109:11;59122;59099:9;:35::i;59192:783::-:0;59290:13;59331:16;59339:7;59331;:16::i;:::-;59315:98;;;;-1:-1:-1;;;59315:98:0;;10298:2:1;59315:98:0;;;10280:21:1;10337:2;10317:18;;;10310:30;10376:34;10356:18;;;10349:62;-1:-1:-1;;;10427:18:1;;;10420:46;10483:19;;59315:98:0;10096:412:1;59315:98:0;59436:4;59425:7;:15;59422:548;;59449:28;:100;;;;;;;;;;;;;;;;;;;59594:1;59569:14;59563:28;:32;:127;;;;;;;;;;;;;;;;;59631:14;59647:18;59657:7;59647:9;:18::i;:::-;59614:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59563:127;59556:134;59192:783;-1:-1:-1;;;59192:783:0:o;59422:548::-;59717:28;:100;;;;;;;;;;;;;;;;;;;59866:1;59841:14;59835:28;:32;:127;;;;;;;;;;;;;;;;59422:548;59192:783;;;:::o;60040:107::-;60098:7;60121:20;60135:5;60121:13;:20::i;61160:92::-;4806:13;:11;:13::i;:::-;61225:12:::1;:21:::0;61160:92::o;5826:201::-;4806:13;:11;:13::i;:::-;-1:-1:-1;;;;;5915:22:0;::::1;5907:73;;;::::0;-1:-1:-1;;;5907:73:0;;11357:2:1;5907:73:0::1;::::0;::::1;11339:21:1::0;11396:2;11376:18;;;11369:30;11435:34;11415:18;;;11408:62;-1:-1:-1;;;11486:18:1;;;11479:36;11532:19;;5907:73:0::1;11155:402:1::0;5907:73:0::1;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;61308:86::-;4806:13;:11;:13::i;:::-;61370:9:::1;:18:::0;61308:86::o;5085:132::-;4993:6;;-1:-1:-1;;;;;4993:6:0;55503:10;5149:23;5141:68;;;;-1:-1:-1;;;5141:68:0;;11764:2:1;5141:68:0;;;11746:21:1;;;11783:18;;;11776:30;11842:34;11822:18;;;11815:62;11894:18;;5141:68:0;11562:356:1;33650:282:0;33715:4;33771:7;58064:1;33752:26;;:66;;;;;33805:13;;33795:7;:23;33752:66;:153;;;;-1:-1:-1;;33856:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33856:44:0;:49;;33650:282::o;28270:1275::-;28337:7;28372;;58064:1;28421:23;28417:1061;;28474:13;;28467:4;:20;28463:1015;;;28512:14;28529:23;;;:17;:23;;;;;;-1:-1:-1;;;28618:24:0;;28614:845;;29283:113;29290:11;29283:113;;-1:-1:-1;;;29361:6:0;29343:25;;;;:17;:25;;;;;;29283:113;;28614:845;28489:989;28463:1015;29506:31;;-1:-1:-1;;;29506:31:0;;;;;;;;;;;6187:191;6280:6;;;-1:-1:-1;;;;;6297:17:0;;;-1:-1:-1;;;;;;6297:17:0;;;;;;;6330:40;;6280:6;;;6297:17;6280:6;;6330:40;;6261:16;;6330:40;6250:128;6187:191;:::o;27718:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27846:24:0;;;;:17;:24;;;;;;27827:44;;-1:-1:-1;;;;;;;;;;;;;29754:41:0;;;;17475:3;29840:33;;;29806:68;;-1:-1:-1;;;29806:68:0;-1:-1:-1;;;29904:24:0;;:29;;-1:-1:-1;;;29885:48:0;;;;17996:3;29973:28;;;;-1:-1:-1;;;29944:58:0;-1:-1:-1;29644:366:0;22972:178;-1:-1:-1;;;;;23061:25:0;23033:7;23061:25;;;:18;:25;;16954:2;23061:25;;;;;:50;;16816:13;23060:82;;22972:178::o;49248:112::-;49325:27;49335:2;49339:8;49325:27;;;;;;;;;;;;:9;:27::i;42091:716::-;42275:88;;-1:-1:-1;;;42275:88:0;;42254:4;;-1:-1:-1;;;;;42275:45:0;;;;;:88;;55503:10;;42342:4;;42348:7;;42357:5;;42275:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42275:88:0;;;;;;;;-1:-1:-1;;42275:88:0;;;;;;;;;;;;:::i;:::-;;;42271:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42558:13:0;;42554:235;;42604:40;;-1:-1:-1;;;42604:40:0;;;;;;;;;;;42554:235;42747:6;42741:13;42732:6;42728:2;42724:15;42717:38;42271:529;-1:-1:-1;;;;;;42434:64:0;-1:-1:-1;;;42434:64:0;;-1:-1:-1;42271:529:0;42091:716;;;;;;:::o;55623:1581::-;56106:4;56100:11;;56113:4;56096:22;56192:17;;;;56096:22;56550:5;56532:428;56598:1;56593:3;56589:11;56582:18;;56769:2;56763:4;56759:13;56755:2;56751:22;56746:3;56738:36;56863:2;56853:13;;;56920:25;;56938:5;;56920:25;56532:428;;;-1:-1:-1;56990:13:0;;;-1:-1:-1;;57105:14:0;;;57167:19;;;57105:14;55623:1581;-1:-1:-1;55623:1581:0:o;48475:689::-;48606:19;48612:2;48616:8;48606:5;:19::i;:::-;-1:-1:-1;;;;;48667:14:0;;;:19;48663:483;;48707:11;48721:13;48769:14;;;48802:233;48833:62;48872:1;48876:2;48880:7;;;;;;48889:5;48833:30;:62::i;:::-;48828:167;;48931:40;;-1:-1:-1;;;48931:40:0;;;;;;;;;;;48828:167;49030:3;49022:5;:11;48802:233;;49117:3;49100:13;;:20;49096:34;;49122:8;;;49096:34;48688:458;;48475:689;;;:::o;43269:2454::-;43342:20;43365:13;43393;43389:44;;43415:18;;-1:-1:-1;;;43415:18:0;;;;;;;;;;;43389:44;-1:-1:-1;;;;;43921:22:0;;;;;;:18;:22;;;;16954:2;43921:22;;;:71;;43959:32;43947:45;;43921:71;;;44235:31;;;:17;:31;;;;;-1:-1:-1;30935:15:0;;30909:24;30905:46;30504:11;30479:23;30475:41;30472:52;30462:63;;44235:173;;44470:23;;;;44235:31;;43921:22;;44969:25;43921:22;;44822:335;45237:1;45223:12;45219:20;45177:346;45278:3;45269:7;45266:16;45177:346;;45496:7;45486:8;45483:1;45456:25;45453:1;45450;45445:59;45331:1;45318:15;45177:346;;;-1:-1:-1;45556:13:0;45552:45;;45578:19;;-1:-1:-1;;;45578:19:0;;;;;;;;;;;45552:45;45614:13;:19;-1:-1:-1;38825:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;757:180;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2523:186::-;2582:6;2635:2;2623:9;2614:7;2610:23;2606:32;2603:52;;;2651:1;2648;2641:12;2603:52;2674:29;2693:9;2674:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:127::-;3290:10;3285:3;3281:20;3278:1;3271:31;3321:4;3318:1;3311:15;3345:4;3342:1;3335:15;3361:632;3426:5;3456:18;3497:2;3489:6;3486:14;3483:40;;;3503:18;;:::i;:::-;3578:2;3572:9;3546:2;3632:15;;-1:-1:-1;;3628:24:1;;;3654:2;3624:33;3620:42;3608:55;;;3678:18;;;3698:22;;;3675:46;3672:72;;;3724:18;;:::i;:::-;3764:10;3760:2;3753:22;3793:6;3784:15;;3823:6;3815;3808:22;3863:3;3854:6;3849:3;3845:16;3842:25;3839:45;;;3880:1;3877;3870:12;3839:45;3930:6;3925:3;3918:4;3910:6;3906:17;3893:44;3985:1;3978:4;3969:6;3961;3957:19;3953:30;3946:41;;;;3361:632;;;;;:::o;3998:451::-;4067:6;4120:2;4108:9;4099:7;4095:23;4091:32;4088:52;;;4136:1;4133;4126:12;4088:52;4176:9;4163:23;4209:18;4201:6;4198:30;4195:50;;;4241:1;4238;4231:12;4195:50;4264:22;;4317:4;4309:13;;4305:27;-1:-1:-1;4295:55:1;;4346:1;4343;4336:12;4295:55;4369:74;4435:7;4430:2;4417:16;4412:2;4408;4404:11;4369:74;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;5091:254;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:254::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6203:9;6190:23;6180:33;;6232:38;6266:2;6255:9;6251:18;6232:38;:::i;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;6931:355::-;7133:2;7115:21;;;7172:2;7152:18;;;7145:30;7211:33;7206:2;7191:18;;7184:61;7277:2;7262:18;;6931:355::o;7291:127::-;7352:10;7347:3;7343:20;7340:1;7333:31;7383:4;7380:1;7373:15;7407:4;7404:1;7397:15;8135:127;8196:10;8191:3;8187:20;8184:1;8177:31;8227:4;8224:1;8217:15;8251:4;8248:1;8241:15;8267:128;8307:3;8338:1;8334:6;8331:1;8328:13;8325:39;;;8344:18;;:::i;:::-;-1:-1:-1;8380:9:1;;8267:128::o;9095:168::-;9135:7;9201:1;9197;9193:6;9189:14;9186:1;9183:21;9178:1;9171:9;9164:17;9160:45;9157:71;;;9208:18;;:::i;:::-;-1:-1:-1;9248:9:1;;9095:168::o;9615:125::-;9655:4;9683:1;9680;9677:8;9674:34;;;9688:18;;:::i;:::-;-1:-1:-1;9725:9:1;;9615:125::o;10513:637::-;10793:3;10831:6;10825:13;10847:53;10893:6;10888:3;10881:4;10873:6;10869:17;10847:53;:::i;:::-;10963:13;;10922:16;;;;10985:57;10963:13;10922:16;11019:4;11007:17;;10985:57;:::i;:::-;-1:-1:-1;;;11064:20:1;;11093:22;;;11142:1;11131:13;;10513:637;-1:-1:-1;;;;10513:637:1:o;11923:489::-;-1:-1:-1;;;;;12192:15:1;;;12174:34;;12244:15;;12239:2;12224:18;;12217:43;12291:2;12276:18;;12269:34;;;12339:3;12334:2;12319:18;;12312:31;;;12117:4;;12360:46;;12386:19;;12378:6;12360:46;:::i;:::-;12352:54;11923:489;-1:-1:-1;;;;;;11923:489:1:o;12417:249::-;12486:6;12539:2;12527:9;12518:7;12514:23;12510:32;12507:52;;;12555:1;12552;12545:12;12507:52;12587:9;12581:16;12606:30;12630:5;12606:30;:::i
Swarm Source
ipfs://88f64d9a4df976b9a73aed26a39642376305bd6aa5f3567ef1238de6462f9eb9
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.