Overview
TokenID
275
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PuffyLions
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-14 */ // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // 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(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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.3 // 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 { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). 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 payable 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 { _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].value`. 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 payable 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 payable 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 payable 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. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. 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`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. 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 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // 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: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: contracts/PuffyLions.sol // Developer - ReservedSnow(https://linktr.ee/reservedsnow) /* $$_____ _______ ____$$$___ _______ $$_____ ______ _______ __$$$__ $$_____ $$__$$_ ___$$_$$__ _______ $$_____ ______ $$$$$__ _$$_$$_ $$$$$__ $$__$$_ __$$___$$_ _$$$$$_ $$_____ $$_$$_ ____$$_ _$$____ $$__$$_ _$$$$$_ __$$$$$$$_ $$_____ $$$$$__ $$$_$_ _$$$$$_ $$$$___ $$__$$_ ____$$_ __$$___$$_ $$_____ $$__$$_ $$____ $$__$$_ _$$____ _$$$$__ $$$$$__ __$$___$$_ _$$$$$_ $$__$$_ $$____ _$$$$$_ _$$____ */ pragma solidity >=0.8.17 <0.9.0; contract PuffyLions is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer { using Strings for uint256; // ================== Variables Start ======================= // reveal uri - set it in contructor string internal uri; string public uriSuffix = ".json"; // hidden uri - replace it with yours string public hiddenMetadataUri = "ipfs://bafybeibwvcyhscvadwjzxffnzez2unofalnz7lpgujhhp6gnlnssc6nusy/hidden.json"; // prices - replace it with yours uint256 public price = 0.06 ether; // supply - replace it with yours uint256 public supplyLimit = 1000; // max per tx - replace it with yours uint256 public maxMintAmountPerTx = 10; // max per wallet - replace it with yours uint256 public maxLimitPerWallet = 10; // enabled bool public publicSale = false; // reveal bool public revealed = false; // mapping to keep track mapping(address => uint256) public publicMintCount; // total mint trackers uint256 public publicMinted; // ================== Variables End ======================= // ================== Constructor Start ======================= // Token NAME and SYMBOL - Replace it with yours constructor( string memory _uri ) ERC721A("Puffy Lions by Tecate Pal Norte", "Puffy Lion") { seturi(_uri); } // ================== Constructor End ======================= // ================== Mint Functions Start ======================= function PublicMint(uint256 _mintAmount, address _to) public payable { // Normal requirements require(publicSale, 'The PublicSale is paused!'); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!'); require(publicMintCount[_to] + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!'); require(msg.value >= price * _mintAmount, 'Insufficient funds!'); // Mint _safeMint(_to, _mintAmount); // Mapping update publicMintCount[_to] += _mintAmount; publicMinted += _mintAmount; } function OwnerMint(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!'); _safeMint(_receiver, _mintAmount); } function MassAirdrop(address[] calldata receivers) external onlyOwner { for (uint256 i; i < receivers.length; ++i) { require(totalSupply() + 1 <= supplyLimit, 'Max supply exceeded!'); _mint(receivers[i], 1); } } // ================== Mint Functions End ======================= // ================== Set Functions Start ======================= // reveal function setRevealed(bool _state) public onlyOwner { revealed = _state; } // uri function seturi(string memory _uri) public onlyOwner { uri = _uri; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } // sales toggle function setpublicSale(bool _publicSale) public onlyOwner { publicSale = _publicSale; } // max per tx function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } // max per wallet function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner { maxLimitPerWallet = _maxLimitPerWallet; } // price function setPrice(uint256 _price) public onlyOwner { price = _price; } // supply limit function setsupplyLimit(uint256 _supplyLimit) public onlyOwner { supplyLimit = _supplyLimit; } // ================== Set Functions End ======================= // ================== Withdraw Function Start ======================= function withdraw() public onlyOwner nonReentrant { //owner withdraw (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } // ================== Withdraw Function End======================= // ================== Read Functions Start ======================= function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _nextTokenId(); uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function _baseURI() internal view virtual override returns (string memory) { return uri; } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } // ================== Read Functions End ======================= // Developer - ReservedSnow(https://linktr.ee/reservedsnow) }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"receivers","type":"address[]"}],"name":"MassAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"payable","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":"payable","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setpublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a919062000821565b506040518060800160405280604e815260200162004a68604e9139600c908162000075919062000821565b5066d529ae9e860000600d556103e8600e55600a600f55600a6010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000d457600080fd5b5060405162004ab638038062004ab68339818101604052810190620000fa919062000a6c565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601f81526020017f5075666679204c696f6e73206279205465636174652050616c204e6f727465008152506040518060400160405280600a81526020017f5075666679204c696f6e0000000000000000000000000000000000000000000081525081600290816200018e919062000821565b508060039081620001a0919062000821565b50620001b1620003f060201b60201c565b6000819055505050620001d9620001cd620003f960201b60201c565b6200040160201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d65780156200029c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200026292919062000b02565b600060405180830381600087803b1580156200027d57600080fd5b505af115801562000292573d6000803e3d6000fd5b50505050620003d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000356576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031c92919062000b02565b600060405180830381600087803b1580156200033757600080fd5b505af11580156200034c573d6000803e3d6000fd5b50505050620003d4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039f919062000b2f565b600060405180830381600087803b158015620003ba57600080fd5b505af1158015620003cf573d6000803e3d6000fd5b505050505b5b5b5050620003e981620004c760201b60201c565b5062000bcf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004d7620004ec60201b60201c565b80600a9081620004e8919062000821565b5050565b620004fc620003f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005226200057d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005729062000bad565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062957607f821691505b6020821081036200063f576200063e620005e1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200066a565b620006b586836200066a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000702620006fc620006f684620006cd565b620006d7565b620006cd565b9050919050565b6000819050919050565b6200071e83620006e1565b620007366200072d8262000709565b84845462000677565b825550505050565b600090565b6200074d6200073e565b6200075a81848462000713565b505050565b5b8181101562000782576200077660008262000743565b60018101905062000760565b5050565b601f821115620007d1576200079b8162000645565b620007a6846200065a565b81016020851015620007b6578190505b620007ce620007c5856200065a565b8301826200075f565b50505b505050565b600082821c905092915050565b6000620007f660001984600802620007d6565b1980831691505092915050565b6000620008118383620007e3565b9150826002028217905092915050565b6200082c82620005a7565b67ffffffffffffffff811115620008485762000847620005b2565b5b62000854825462000610565b6200086182828562000786565b600060209050601f83116001811462000899576000841562000884578287015190505b62000890858262000803565b86555062000900565b601f198416620008a98662000645565b60005b82811015620008d357848901518255600182019150602085019450602081019050620008ac565b86831015620008f35784890151620008ef601f891682620007e3565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620009428262000926565b810181811067ffffffffffffffff82111715620009645762000963620005b2565b5b80604052505050565b60006200097962000908565b905062000987828262000937565b919050565b600067ffffffffffffffff821115620009aa57620009a9620005b2565b5b620009b58262000926565b9050602081019050919050565b60005b83811015620009e2578082015181840152602081019050620009c5565b60008484015250505050565b600062000a05620009ff846200098c565b6200096d565b90508281526020810184848401111562000a245762000a2362000921565b5b62000a31848285620009c2565b509392505050565b600082601f83011262000a515762000a506200091c565b5b815162000a63848260208601620009ee565b91505092915050565b60006020828403121562000a855762000a8462000912565b5b600082015167ffffffffffffffff81111562000aa65762000aa562000917565b5b62000ab48482850162000a39565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aea8262000abd565b9050919050565b62000afc8162000add565b82525050565b600060408201905062000b19600083018562000af1565b62000b28602083018462000af1565b9392505050565b600060208201905062000b46600083018462000af1565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b9560208362000b4c565b915062000ba28262000b5d565b602082019050919050565b6000602082019050818103600083015262000bc88162000b86565b9050919050565b613e898062000bdf6000396000f3fe6080604052600436106102505760003560e01c806364470f4611610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610848578063d9f0a67114610885578063e0a80853146108ae578063e985e9c5146108d7578063f2fde38b14610914578063f64849801461093d57610250565b8063a22cb46514610784578063a45ba8e7146107ad578063a4f4f8af146107d8578063b071401b14610803578063b88d4fde1461082c57610250565b806391b7f5ed116100fd57806391b7f5ed1461069d57806394354fd0146106c657806395d89b41146106f157806396330b5f1461071c578063a035b1fe1461075957610250565b806364470f46146105c557806370a08231146105e1578063715018a61461061e5780638462151c146106355780638da5cb5b1461067257610250565b806333bc1c5c116101d25780634fdd43cb116101965780634fdd43cb146104b557806351830227146104de5780635503a0e8146105095780635a0b8b23146105345780635c22abd21461055f5780636352211e1461058857610250565b806333bc1c5c146104035780633ccfd60b1461042e57806341f434341461044557806342842e0e1461047057806347d9569e1461048c57610250565b806316ba10e01161021957806316ba10e01461033f57806318160ddd1461036857806319d1997a1461039357806323b872dd146103be5780632eba0dce146103da57610250565b806275770a1461025557806301ffc9a71461027e57806306fdde03146102bb578063081812fc146102e6578063095ea7b314610323575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612aca565b610966565b005b34801561028a57600080fd5b506102a560048036038101906102a09190612b4f565b610978565b6040516102b29190612b97565b60405180910390f35b3480156102c757600080fd5b506102d0610a0a565b6040516102dd9190612c42565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190612aca565b610a9c565b60405161031a9190612ca5565b60405180910390f35b61033d60048036038101906103389190612cec565b610b1b565b005b34801561034b57600080fd5b5061036660048036038101906103619190612e61565b610b34565b005b34801561037457600080fd5b5061037d610b4f565b60405161038a9190612eb9565b60405180910390f35b34801561039f57600080fd5b506103a8610b66565b6040516103b59190612eb9565b60405180910390f35b6103d860048036038101906103d39190612ed4565b610b6c565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612f27565b610bbb565b005b34801561040f57600080fd5b50610418610c28565b6040516104259190612b97565b60405180910390f35b34801561043a57600080fd5b50610443610c3b565b005b34801561045157600080fd5b5061045a610cd3565b6040516104679190612fc6565b60405180910390f35b61048a60048036038101906104859190612ed4565b610ce5565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613041565b610d34565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612e61565b610dea565b005b3480156104ea57600080fd5b506104f3610e05565b6040516105009190612b97565b60405180910390f35b34801561051557600080fd5b5061051e610e18565b60405161052b9190612c42565b60405180910390f35b34801561054057600080fd5b50610549610ea6565b6040516105569190612eb9565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906130ba565b610eac565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612aca565b610ed1565b6040516105bc9190612ca5565b60405180910390f35b6105df60048036038101906105da9190612f27565b610ee3565b005b3480156105ed57600080fd5b50610608600480360381019061060391906130e7565b611136565b6040516106159190612eb9565b60405180910390f35b34801561062a57600080fd5b506106336111ee565b005b34801561064157600080fd5b5061065c600480360381019061065791906130e7565b611202565b60405161066991906131d2565b60405180910390f35b34801561067e57600080fd5b50610687611346565b6040516106949190612ca5565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612aca565b611370565b005b3480156106d257600080fd5b506106db611382565b6040516106e89190612eb9565b60405180910390f35b3480156106fd57600080fd5b50610706611388565b6040516107139190612c42565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906130e7565b61141a565b6040516107509190612eb9565b60405180910390f35b34801561076557600080fd5b5061076e611432565b60405161077b9190612eb9565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a691906131f4565b611438565b005b3480156107b957600080fd5b506107c2611451565b6040516107cf9190612c42565b60405180910390f35b3480156107e457600080fd5b506107ed6114df565b6040516107fa9190612eb9565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612aca565b6114e5565b005b610846600480360381019061084191906132d5565b6114f7565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612aca565b611548565b60405161087c9190612c42565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190612aca565b6116a0565b005b3480156108ba57600080fd5b506108d560048036038101906108d091906130ba565b6116b2565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190613358565b6116d7565b60405161090b9190612b97565b60405180910390f35b34801561092057600080fd5b5061093b600480360381019061093691906130e7565b61176b565b005b34801561094957600080fd5b50610964600480360381019061095f9190612e61565b6117ee565b005b61096e611809565b80600e8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a035750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a19906133c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a45906133c7565b8015610a925780601f10610a6757610100808354040283529160200191610a92565b820191906000526020600020905b815481529060010190602001808311610a7557829003601f168201915b5050505050905090565b6000610aa782611887565b610add576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b25816118e6565b610b2f83836119e3565b505050565b610b3c611809565b80600b9081610b4b919061359a565b5050565b6000610b59611b27565b6001546000540303905090565b600e5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610baa57610ba9336118e6565b5b610bb5848484611b30565b50505050565b610bc3611809565b600e5482610bcf610b4f565b610bd9919061369b565b1115610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c119061371b565b60405180910390fd5b610c248183611e52565b5050565b601160009054906101000a900460ff1681565b610c43611809565b610c4b611e70565b6000610c55611346565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c789061376c565b60006040518083038185875af1925050503d8060008114610cb5576040519150601f19603f3d011682016040523d82523d6000602084013e610cba565b606091505b5050905080610cc857600080fd5b50610cd1611ebf565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2357610d22336118e6565b5b610d2e848484611ec9565b50505050565b610d3c611809565b60005b82829050811015610de557600e546001610d57610b4f565b610d61919061369b565b1115610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d999061371b565b60405180910390fd5b610dd4838383818110610db857610db7613781565b5b9050602002016020810190610dcd91906130e7565b6001611ee9565b80610dde906137b0565b9050610d3f565b505050565b610df2611809565b80600c9081610e01919061359a565b5050565b601160019054906101000a900460ff1681565b600b8054610e25906133c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e51906133c7565b8015610e9e5780601f10610e7357610100808354040283529160200191610e9e565b820191906000526020600020905b815481529060010190602001808311610e8157829003601f168201915b505050505081565b60105481565b610eb4611809565b80601160006101000a81548160ff02191690831515021790555050565b6000610edc826120a4565b9050919050565b601160009054906101000a900460ff16610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613844565b60405180910390fd5b600082118015610f445750600f548211155b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906138b0565b60405180910390fd5b600e5482610f8f610b4f565b610f99919061369b565b1115610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd19061371b565b60405180910390fd5b60105482601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611028919061369b565b1115611069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110609061391c565b60405180910390fd5b81600d54611077919061393c565b3410156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906139ca565b60405180910390fd5b6110c38183611e52565b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611112919061369b565b92505081905550816013600082825461112b919061369b565b925050819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f6611809565b6112006000612170565b565b6060600061120f83611136565b67ffffffffffffffff81111561122857611227612d36565b5b6040519080825280602002602001820160405280156112565781602001602082028036833780820191505090505b5090506000611263612236565b905060008060005b8381101561133957600061127e8261223f565b9050806040015115611290575061132c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112d057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361132a578186858060010196508151811061131d5761131c613781565b5b6020026020010181815250505b505b808060010191505061126b565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611378611809565b80600d8190555050565b600f5481565b606060038054611397906133c7565b80601f01602080910402602001604051908101604052809291908181526020018280546113c3906133c7565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b600d5481565b81611442816118e6565b61144c838361226a565b505050565b600c805461145e906133c7565b80601f016020809104026020016040519081016040528092919081815260200182805461148a906133c7565b80156114d75780601f106114ac576101008083540402835291602001916114d7565b820191906000526020600020905b8154815290600101906020018083116114ba57829003601f168201915b505050505081565b60135481565b6114ed611809565b80600f8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461153557611534336118e6565b5b61154185858585612375565b5050505050565b606061155382611887565b611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613a5c565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361163f57600c80546115ba906133c7565b80601f01602080910402602001604051908101604052809291908181526020018280546115e6906133c7565b80156116335780601f1061160857610100808354040283529160200191611633565b820191906000526020600020905b81548152906001019060200180831161161657829003601f168201915b5050505050905061169b565b60006116496123e8565b905060008151116116695760405180602001604052806000815250611697565b806116738461247a565b600b60405160200161168793929190613b3b565b6040516020818303038152906040525b9150505b919050565b6116a8611809565b8060108190555050565b6116ba611809565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611773611809565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613bde565b60405180910390fd5b6117eb81612170565b50565b6117f6611809565b80600a9081611805919061359a565b5050565b611811612548565b73ffffffffffffffffffffffffffffffffffffffff1661182f611346565b73ffffffffffffffffffffffffffffffffffffffff1614611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613c4a565b60405180910390fd5b565b600081611892611b27565b111580156118a1575060005482105b80156118df575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156119e0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161195d929190613c6a565b602060405180830381865afa15801561197a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199e9190613ca8565b6119df57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119d69190612ca5565b60405180910390fd5b5b50565b60006119ee82610ed1565b90508073ffffffffffffffffffffffffffffffffffffffff16611a0f612550565b73ffffffffffffffffffffffffffffffffffffffff1614611a7257611a3b81611a36612550565b6116d7565b611a71576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b3b826120a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611bae84612558565b91509150611bc48187611bbf612550565b61257f565b611c1057611bd986611bd4612550565b6116d7565b611c0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c76576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8386868660016125c3565b8015611c8e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d5c85611d388888876125c9565b7c0200000000000000000000000000000000000000000000000000000000176125f1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611de25760006001850190506000600460008381526020019081526020016000205403611de0576000548114611ddf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4a868686600161261c565b505050505050565b611e6c828260405180602001604052806000815250612622565b5050565b600260095403611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90613d21565b60405180910390fd5b6002600981905550565b6001600981905550565b611ee4838383604051806020016040528060008152506114f7565b505050565b60008054905060008203611f29576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3660008483856125c3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fad83611f9e60008660006125c9565b611fa7856126bf565b176125f1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461204e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612013565b5060008203612089576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061209f600084838561261c565b505050565b600080829050806120b3611b27565b11612139576000548110156121385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612136575b6000810361212c576004600083600190039350838152602001908152602001600020549050612102565b809250505061216b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b612247612a31565b61226360046000848152602001908152602001600020546126cf565b9050919050565b8060076000612277612550565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612324612550565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123699190612b97565b60405180910390a35050565b612380848484610b6c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123e2576123ab84848484612785565b6123e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546123f7906133c7565b80601f0160208091040260200160405190810160405280929190818152602001828054612423906133c7565b80156124705780601f1061244557610100808354040283529160200191612470565b820191906000526020600020905b81548152906001019060200180831161245357829003601f168201915b5050505050905090565b606060006001612489846128d5565b01905060008167ffffffffffffffff8111156124a8576124a7612d36565b5b6040519080825280601f01601f1916602001820160405280156124da5781602001600182028036833780820191505090505b509050600082602001820190505b60011561253d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161253157612530613d41565b5b049450600085036124e8575b819350505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125e0868684612a28565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61262c8383611ee9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126ba57600080549050600083820390505b61266c6000868380600101945086612785565b6126a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126595781600054146126b757600080fd5b50505b505050565b60006001821460e11b9050919050565b6126d7612a31565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ab612550565b8786866040518563ffffffff1660e01b81526004016127cd9493929190613dc5565b6020604051808303816000875af192505050801561280957506040513d601f19601f820116820180604052508101906128069190613e26565b60015b612882573d8060008114612839576040519150601f19603f3d011682016040523d82523d6000602084013e61283e565b606091505b50600081510361287a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612933577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161292957612928613d41565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612970576d04ee2d6d415b85acef8100000000838161296657612965613d41565b5b0492506020810190505b662386f26fc10000831061299f57662386f26fc10000838161299557612994613d41565b5b0492506010810190505b6305f5e10083106129c8576305f5e10083816129be576129bd613d41565b5b0492506008810190505b61271083106129ed5761271083816129e3576129e2613d41565b5b0492506004810190505b60648310612a105760648381612a0657612a05613d41565b5b0492506002810190505b600a8310612a1f576001810190505b80915050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612aa781612a94565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b600060208284031215612ae057612adf612a8a565b5b6000612aee84828501612ab5565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b2c81612af7565b8114612b3757600080fd5b50565b600081359050612b4981612b23565b92915050565b600060208284031215612b6557612b64612a8a565b5b6000612b7384828501612b3a565b91505092915050565b60008115159050919050565b612b9181612b7c565b82525050565b6000602082019050612bac6000830184612b88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bec578082015181840152602081019050612bd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c1482612bb2565b612c1e8185612bbd565b9350612c2e818560208601612bce565b612c3781612bf8565b840191505092915050565b60006020820190508181036000830152612c5c8184612c09565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8f82612c64565b9050919050565b612c9f81612c84565b82525050565b6000602082019050612cba6000830184612c96565b92915050565b612cc981612c84565b8114612cd457600080fd5b50565b600081359050612ce681612cc0565b92915050565b60008060408385031215612d0357612d02612a8a565b5b6000612d1185828601612cd7565b9250506020612d2285828601612ab5565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d6e82612bf8565b810181811067ffffffffffffffff82111715612d8d57612d8c612d36565b5b80604052505050565b6000612da0612a80565b9050612dac8282612d65565b919050565b600067ffffffffffffffff821115612dcc57612dcb612d36565b5b612dd582612bf8565b9050602081019050919050565b82818337600083830152505050565b6000612e04612dff84612db1565b612d96565b905082815260208101848484011115612e2057612e1f612d31565b5b612e2b848285612de2565b509392505050565b600082601f830112612e4857612e47612d2c565b5b8135612e58848260208601612df1565b91505092915050565b600060208284031215612e7757612e76612a8a565b5b600082013567ffffffffffffffff811115612e9557612e94612a8f565b5b612ea184828501612e33565b91505092915050565b612eb381612a94565b82525050565b6000602082019050612ece6000830184612eaa565b92915050565b600080600060608486031215612eed57612eec612a8a565b5b6000612efb86828701612cd7565b9350506020612f0c86828701612cd7565b9250506040612f1d86828701612ab5565b9150509250925092565b60008060408385031215612f3e57612f3d612a8a565b5b6000612f4c85828601612ab5565b9250506020612f5d85828601612cd7565b9150509250929050565b6000819050919050565b6000612f8c612f87612f8284612c64565b612f67565b612c64565b9050919050565b6000612f9e82612f71565b9050919050565b6000612fb082612f93565b9050919050565b612fc081612fa5565b82525050565b6000602082019050612fdb6000830184612fb7565b92915050565b600080fd5b600080fd5b60008083601f84011261300157613000612d2c565b5b8235905067ffffffffffffffff81111561301e5761301d612fe1565b5b60208301915083602082028301111561303a57613039612fe6565b5b9250929050565b6000806020838503121561305857613057612a8a565b5b600083013567ffffffffffffffff81111561307657613075612a8f565b5b61308285828601612feb565b92509250509250929050565b61309781612b7c565b81146130a257600080fd5b50565b6000813590506130b48161308e565b92915050565b6000602082840312156130d0576130cf612a8a565b5b60006130de848285016130a5565b91505092915050565b6000602082840312156130fd576130fc612a8a565b5b600061310b84828501612cd7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314981612a94565b82525050565b600061315b8383613140565b60208301905092915050565b6000602082019050919050565b600061317f82613114565b613189818561311f565b935061319483613130565b8060005b838110156131c55781516131ac888261314f565b97506131b783613167565b925050600181019050613198565b5085935050505092915050565b600060208201905081810360008301526131ec8184613174565b905092915050565b6000806040838503121561320b5761320a612a8a565b5b600061321985828601612cd7565b925050602061322a858286016130a5565b9150509250929050565b600067ffffffffffffffff82111561324f5761324e612d36565b5b61325882612bf8565b9050602081019050919050565b600061327861327384613234565b612d96565b90508281526020810184848401111561329457613293612d31565b5b61329f848285612de2565b509392505050565b600082601f8301126132bc576132bb612d2c565b5b81356132cc848260208601613265565b91505092915050565b600080600080608085870312156132ef576132ee612a8a565b5b60006132fd87828801612cd7565b945050602061330e87828801612cd7565b935050604061331f87828801612ab5565b925050606085013567ffffffffffffffff8111156133405761333f612a8f565b5b61334c878288016132a7565b91505092959194509250565b6000806040838503121561336f5761336e612a8a565b5b600061337d85828601612cd7565b925050602061338e85828601612cd7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133df57607f821691505b6020821081036133f2576133f1613398565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261345a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261341d565b613464868361341d565b95508019841693508086168417925050509392505050565b600061349761349261348d84612a94565b612f67565b612a94565b9050919050565b6000819050919050565b6134b18361347c565b6134c56134bd8261349e565b84845461342a565b825550505050565b600090565b6134da6134cd565b6134e58184846134a8565b505050565b5b81811015613509576134fe6000826134d2565b6001810190506134eb565b5050565b601f82111561354e5761351f816133f8565b6135288461340d565b81016020851015613537578190505b61354b6135438561340d565b8301826134ea565b50505b505050565b600082821c905092915050565b600061357160001984600802613553565b1980831691505092915050565b600061358a8383613560565b9150826002028217905092915050565b6135a382612bb2565b67ffffffffffffffff8111156135bc576135bb612d36565b5b6135c682546133c7565b6135d182828561350d565b600060209050601f83116001811461360457600084156135f2578287015190505b6135fc858261357e565b865550613664565b601f198416613612866133f8565b60005b8281101561363a57848901518255600182019150602085019450602081019050613615565b868310156136575784890151613653601f891682613560565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136a682612a94565b91506136b183612a94565b92508282019050808211156136c9576136c861366c565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613705601483612bbd565b9150613710826136cf565b602082019050919050565b60006020820190508181036000830152613734816136f8565b9050919050565b600081905092915050565b50565b600061375660008361373b565b915061376182613746565b600082019050919050565b600061377782613749565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137bb82612a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137ed576137ec61366c565b5b600182019050919050565b7f546865205075626c696353616c65206973207061757365642100000000000000600082015250565b600061382e601983612bbd565b9150613839826137f8565b602082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061389a601483612bbd565b91506138a582613864565b602082019050919050565b600060208201905081810360008301526138c98161388d565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000613906601d83612bbd565b9150613911826138d0565b602082019050919050565b60006020820190508181036000830152613935816138f9565b9050919050565b600061394782612a94565b915061395283612a94565b925082820261396081612a94565b915082820484148315176139775761397661366c565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139b4601383612bbd565b91506139bf8261397e565b602082019050919050565b600060208201905081810360008301526139e3816139a7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a46602f83612bbd565b9150613a51826139ea565b604082019050919050565b60006020820190508181036000830152613a7581613a39565b9050919050565b600081905092915050565b6000613a9282612bb2565b613a9c8185613a7c565b9350613aac818560208601612bce565b80840191505092915050565b60008154613ac5816133c7565b613acf8186613a7c565b94506001821660008114613aea5760018114613aff57613b32565b60ff1983168652811515820286019350613b32565b613b08856133f8565b60005b83811015613b2a57815481890152600182019150602081019050613b0b565b838801955050505b50505092915050565b6000613b478286613a87565b9150613b538285613a87565b9150613b5f8284613ab8565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bc8602683612bbd565b9150613bd382613b6c565b604082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083612bbd565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b6000604082019050613c7f6000830185612c96565b613c8c6020830184612c96565b9392505050565b600081519050613ca28161308e565b92915050565b600060208284031215613cbe57613cbd612a8a565b5b6000613ccc84828501613c93565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d0b601f83612bbd565b9150613d1682613cd5565b602082019050919050565b60006020820190508181036000830152613d3a81613cfe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d9782613d70565b613da18185613d7b565b9350613db1818560208601612bce565b613dba81612bf8565b840191505092915050565b6000608082019050613dda6000830187612c96565b613de76020830186612c96565b613df46040830185612eaa565b8181036060830152613e068184613d8c565b905095945050505050565b600081519050613e2081612b23565b92915050565b600060208284031215613e3c57613e3b612a8a565b5b6000613e4a84828501613e11565b9150509291505056fea2646970667358221220e6c8d4a0275411fa9a36ea04c49b9ea4cb99257faf8d7f1ede3572903cb5c5b864736f6c63430008120033697066733a2f2f626166796265696277766379687363766164776a7a7866666e7a657a32756e6f66616c6e7a376c7067756a68687036676e6c6e737363366e7573792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102505760003560e01c806364470f4611610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610848578063d9f0a67114610885578063e0a80853146108ae578063e985e9c5146108d7578063f2fde38b14610914578063f64849801461093d57610250565b8063a22cb46514610784578063a45ba8e7146107ad578063a4f4f8af146107d8578063b071401b14610803578063b88d4fde1461082c57610250565b806391b7f5ed116100fd57806391b7f5ed1461069d57806394354fd0146106c657806395d89b41146106f157806396330b5f1461071c578063a035b1fe1461075957610250565b806364470f46146105c557806370a08231146105e1578063715018a61461061e5780638462151c146106355780638da5cb5b1461067257610250565b806333bc1c5c116101d25780634fdd43cb116101965780634fdd43cb146104b557806351830227146104de5780635503a0e8146105095780635a0b8b23146105345780635c22abd21461055f5780636352211e1461058857610250565b806333bc1c5c146104035780633ccfd60b1461042e57806341f434341461044557806342842e0e1461047057806347d9569e1461048c57610250565b806316ba10e01161021957806316ba10e01461033f57806318160ddd1461036857806319d1997a1461039357806323b872dd146103be5780632eba0dce146103da57610250565b806275770a1461025557806301ffc9a71461027e57806306fdde03146102bb578063081812fc146102e6578063095ea7b314610323575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612aca565b610966565b005b34801561028a57600080fd5b506102a560048036038101906102a09190612b4f565b610978565b6040516102b29190612b97565b60405180910390f35b3480156102c757600080fd5b506102d0610a0a565b6040516102dd9190612c42565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190612aca565b610a9c565b60405161031a9190612ca5565b60405180910390f35b61033d60048036038101906103389190612cec565b610b1b565b005b34801561034b57600080fd5b5061036660048036038101906103619190612e61565b610b34565b005b34801561037457600080fd5b5061037d610b4f565b60405161038a9190612eb9565b60405180910390f35b34801561039f57600080fd5b506103a8610b66565b6040516103b59190612eb9565b60405180910390f35b6103d860048036038101906103d39190612ed4565b610b6c565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612f27565b610bbb565b005b34801561040f57600080fd5b50610418610c28565b6040516104259190612b97565b60405180910390f35b34801561043a57600080fd5b50610443610c3b565b005b34801561045157600080fd5b5061045a610cd3565b6040516104679190612fc6565b60405180910390f35b61048a60048036038101906104859190612ed4565b610ce5565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613041565b610d34565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612e61565b610dea565b005b3480156104ea57600080fd5b506104f3610e05565b6040516105009190612b97565b60405180910390f35b34801561051557600080fd5b5061051e610e18565b60405161052b9190612c42565b60405180910390f35b34801561054057600080fd5b50610549610ea6565b6040516105569190612eb9565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906130ba565b610eac565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612aca565b610ed1565b6040516105bc9190612ca5565b60405180910390f35b6105df60048036038101906105da9190612f27565b610ee3565b005b3480156105ed57600080fd5b50610608600480360381019061060391906130e7565b611136565b6040516106159190612eb9565b60405180910390f35b34801561062a57600080fd5b506106336111ee565b005b34801561064157600080fd5b5061065c600480360381019061065791906130e7565b611202565b60405161066991906131d2565b60405180910390f35b34801561067e57600080fd5b50610687611346565b6040516106949190612ca5565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612aca565b611370565b005b3480156106d257600080fd5b506106db611382565b6040516106e89190612eb9565b60405180910390f35b3480156106fd57600080fd5b50610706611388565b6040516107139190612c42565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906130e7565b61141a565b6040516107509190612eb9565b60405180910390f35b34801561076557600080fd5b5061076e611432565b60405161077b9190612eb9565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a691906131f4565b611438565b005b3480156107b957600080fd5b506107c2611451565b6040516107cf9190612c42565b60405180910390f35b3480156107e457600080fd5b506107ed6114df565b6040516107fa9190612eb9565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612aca565b6114e5565b005b610846600480360381019061084191906132d5565b6114f7565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612aca565b611548565b60405161087c9190612c42565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190612aca565b6116a0565b005b3480156108ba57600080fd5b506108d560048036038101906108d091906130ba565b6116b2565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190613358565b6116d7565b60405161090b9190612b97565b60405180910390f35b34801561092057600080fd5b5061093b600480360381019061093691906130e7565b61176b565b005b34801561094957600080fd5b50610964600480360381019061095f9190612e61565b6117ee565b005b61096e611809565b80600e8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a035750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a19906133c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a45906133c7565b8015610a925780601f10610a6757610100808354040283529160200191610a92565b820191906000526020600020905b815481529060010190602001808311610a7557829003601f168201915b5050505050905090565b6000610aa782611887565b610add576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b25816118e6565b610b2f83836119e3565b505050565b610b3c611809565b80600b9081610b4b919061359a565b5050565b6000610b59611b27565b6001546000540303905090565b600e5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610baa57610ba9336118e6565b5b610bb5848484611b30565b50505050565b610bc3611809565b600e5482610bcf610b4f565b610bd9919061369b565b1115610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c119061371b565b60405180910390fd5b610c248183611e52565b5050565b601160009054906101000a900460ff1681565b610c43611809565b610c4b611e70565b6000610c55611346565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c789061376c565b60006040518083038185875af1925050503d8060008114610cb5576040519150601f19603f3d011682016040523d82523d6000602084013e610cba565b606091505b5050905080610cc857600080fd5b50610cd1611ebf565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2357610d22336118e6565b5b610d2e848484611ec9565b50505050565b610d3c611809565b60005b82829050811015610de557600e546001610d57610b4f565b610d61919061369b565b1115610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d999061371b565b60405180910390fd5b610dd4838383818110610db857610db7613781565b5b9050602002016020810190610dcd91906130e7565b6001611ee9565b80610dde906137b0565b9050610d3f565b505050565b610df2611809565b80600c9081610e01919061359a565b5050565b601160019054906101000a900460ff1681565b600b8054610e25906133c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e51906133c7565b8015610e9e5780601f10610e7357610100808354040283529160200191610e9e565b820191906000526020600020905b815481529060010190602001808311610e8157829003601f168201915b505050505081565b60105481565b610eb4611809565b80601160006101000a81548160ff02191690831515021790555050565b6000610edc826120a4565b9050919050565b601160009054906101000a900460ff16610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613844565b60405180910390fd5b600082118015610f445750600f548211155b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906138b0565b60405180910390fd5b600e5482610f8f610b4f565b610f99919061369b565b1115610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd19061371b565b60405180910390fd5b60105482601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611028919061369b565b1115611069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110609061391c565b60405180910390fd5b81600d54611077919061393c565b3410156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906139ca565b60405180910390fd5b6110c38183611e52565b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611112919061369b565b92505081905550816013600082825461112b919061369b565b925050819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f6611809565b6112006000612170565b565b6060600061120f83611136565b67ffffffffffffffff81111561122857611227612d36565b5b6040519080825280602002602001820160405280156112565781602001602082028036833780820191505090505b5090506000611263612236565b905060008060005b8381101561133957600061127e8261223f565b9050806040015115611290575061132c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112d057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361132a578186858060010196508151811061131d5761131c613781565b5b6020026020010181815250505b505b808060010191505061126b565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611378611809565b80600d8190555050565b600f5481565b606060038054611397906133c7565b80601f01602080910402602001604051908101604052809291908181526020018280546113c3906133c7565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b600d5481565b81611442816118e6565b61144c838361226a565b505050565b600c805461145e906133c7565b80601f016020809104026020016040519081016040528092919081815260200182805461148a906133c7565b80156114d75780601f106114ac576101008083540402835291602001916114d7565b820191906000526020600020905b8154815290600101906020018083116114ba57829003601f168201915b505050505081565b60135481565b6114ed611809565b80600f8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461153557611534336118e6565b5b61154185858585612375565b5050505050565b606061155382611887565b611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613a5c565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361163f57600c80546115ba906133c7565b80601f01602080910402602001604051908101604052809291908181526020018280546115e6906133c7565b80156116335780601f1061160857610100808354040283529160200191611633565b820191906000526020600020905b81548152906001019060200180831161161657829003601f168201915b5050505050905061169b565b60006116496123e8565b905060008151116116695760405180602001604052806000815250611697565b806116738461247a565b600b60405160200161168793929190613b3b565b6040516020818303038152906040525b9150505b919050565b6116a8611809565b8060108190555050565b6116ba611809565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611773611809565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613bde565b60405180910390fd5b6117eb81612170565b50565b6117f6611809565b80600a9081611805919061359a565b5050565b611811612548565b73ffffffffffffffffffffffffffffffffffffffff1661182f611346565b73ffffffffffffffffffffffffffffffffffffffff1614611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613c4a565b60405180910390fd5b565b600081611892611b27565b111580156118a1575060005482105b80156118df575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156119e0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161195d929190613c6a565b602060405180830381865afa15801561197a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199e9190613ca8565b6119df57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016119d69190612ca5565b60405180910390fd5b5b50565b60006119ee82610ed1565b90508073ffffffffffffffffffffffffffffffffffffffff16611a0f612550565b73ffffffffffffffffffffffffffffffffffffffff1614611a7257611a3b81611a36612550565b6116d7565b611a71576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b3b826120a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611bae84612558565b91509150611bc48187611bbf612550565b61257f565b611c1057611bd986611bd4612550565b6116d7565b611c0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c76576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8386868660016125c3565b8015611c8e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d5c85611d388888876125c9565b7c0200000000000000000000000000000000000000000000000000000000176125f1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611de25760006001850190506000600460008381526020019081526020016000205403611de0576000548114611ddf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4a868686600161261c565b505050505050565b611e6c828260405180602001604052806000815250612622565b5050565b600260095403611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90613d21565b60405180910390fd5b6002600981905550565b6001600981905550565b611ee4838383604051806020016040528060008152506114f7565b505050565b60008054905060008203611f29576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3660008483856125c3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fad83611f9e60008660006125c9565b611fa7856126bf565b176125f1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461204e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612013565b5060008203612089576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061209f600084838561261c565b505050565b600080829050806120b3611b27565b11612139576000548110156121385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612136575b6000810361212c576004600083600190039350838152602001908152602001600020549050612102565b809250505061216b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b612247612a31565b61226360046000848152602001908152602001600020546126cf565b9050919050565b8060076000612277612550565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612324612550565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123699190612b97565b60405180910390a35050565b612380848484610b6c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123e2576123ab84848484612785565b6123e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546123f7906133c7565b80601f0160208091040260200160405190810160405280929190818152602001828054612423906133c7565b80156124705780601f1061244557610100808354040283529160200191612470565b820191906000526020600020905b81548152906001019060200180831161245357829003601f168201915b5050505050905090565b606060006001612489846128d5565b01905060008167ffffffffffffffff8111156124a8576124a7612d36565b5b6040519080825280601f01601f1916602001820160405280156124da5781602001600182028036833780820191505090505b509050600082602001820190505b60011561253d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161253157612530613d41565b5b049450600085036124e8575b819350505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125e0868684612a28565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61262c8383611ee9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126ba57600080549050600083820390505b61266c6000868380600101945086612785565b6126a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126595781600054146126b757600080fd5b50505b505050565b60006001821460e11b9050919050565b6126d7612a31565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ab612550565b8786866040518563ffffffff1660e01b81526004016127cd9493929190613dc5565b6020604051808303816000875af192505050801561280957506040513d601f19601f820116820180604052508101906128069190613e26565b60015b612882573d8060008114612839576040519150601f19603f3d011682016040523d82523d6000602084013e61283e565b606091505b50600081510361287a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612933577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161292957612928613d41565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612970576d04ee2d6d415b85acef8100000000838161296657612965613d41565b5b0492506020810190505b662386f26fc10000831061299f57662386f26fc10000838161299557612994613d41565b5b0492506010810190505b6305f5e10083106129c8576305f5e10083816129be576129bd613d41565b5b0492506008810190505b61271083106129ed5761271083816129e3576129e2613d41565b5b0492506004810190505b60648310612a105760648381612a0657612a05613d41565b5b0492506002810190505b600a8310612a1f576001810190505b80915050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612aa781612a94565b8114612ab257600080fd5b50565b600081359050612ac481612a9e565b92915050565b600060208284031215612ae057612adf612a8a565b5b6000612aee84828501612ab5565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b2c81612af7565b8114612b3757600080fd5b50565b600081359050612b4981612b23565b92915050565b600060208284031215612b6557612b64612a8a565b5b6000612b7384828501612b3a565b91505092915050565b60008115159050919050565b612b9181612b7c565b82525050565b6000602082019050612bac6000830184612b88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bec578082015181840152602081019050612bd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c1482612bb2565b612c1e8185612bbd565b9350612c2e818560208601612bce565b612c3781612bf8565b840191505092915050565b60006020820190508181036000830152612c5c8184612c09565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8f82612c64565b9050919050565b612c9f81612c84565b82525050565b6000602082019050612cba6000830184612c96565b92915050565b612cc981612c84565b8114612cd457600080fd5b50565b600081359050612ce681612cc0565b92915050565b60008060408385031215612d0357612d02612a8a565b5b6000612d1185828601612cd7565b9250506020612d2285828601612ab5565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d6e82612bf8565b810181811067ffffffffffffffff82111715612d8d57612d8c612d36565b5b80604052505050565b6000612da0612a80565b9050612dac8282612d65565b919050565b600067ffffffffffffffff821115612dcc57612dcb612d36565b5b612dd582612bf8565b9050602081019050919050565b82818337600083830152505050565b6000612e04612dff84612db1565b612d96565b905082815260208101848484011115612e2057612e1f612d31565b5b612e2b848285612de2565b509392505050565b600082601f830112612e4857612e47612d2c565b5b8135612e58848260208601612df1565b91505092915050565b600060208284031215612e7757612e76612a8a565b5b600082013567ffffffffffffffff811115612e9557612e94612a8f565b5b612ea184828501612e33565b91505092915050565b612eb381612a94565b82525050565b6000602082019050612ece6000830184612eaa565b92915050565b600080600060608486031215612eed57612eec612a8a565b5b6000612efb86828701612cd7565b9350506020612f0c86828701612cd7565b9250506040612f1d86828701612ab5565b9150509250925092565b60008060408385031215612f3e57612f3d612a8a565b5b6000612f4c85828601612ab5565b9250506020612f5d85828601612cd7565b9150509250929050565b6000819050919050565b6000612f8c612f87612f8284612c64565b612f67565b612c64565b9050919050565b6000612f9e82612f71565b9050919050565b6000612fb082612f93565b9050919050565b612fc081612fa5565b82525050565b6000602082019050612fdb6000830184612fb7565b92915050565b600080fd5b600080fd5b60008083601f84011261300157613000612d2c565b5b8235905067ffffffffffffffff81111561301e5761301d612fe1565b5b60208301915083602082028301111561303a57613039612fe6565b5b9250929050565b6000806020838503121561305857613057612a8a565b5b600083013567ffffffffffffffff81111561307657613075612a8f565b5b61308285828601612feb565b92509250509250929050565b61309781612b7c565b81146130a257600080fd5b50565b6000813590506130b48161308e565b92915050565b6000602082840312156130d0576130cf612a8a565b5b60006130de848285016130a5565b91505092915050565b6000602082840312156130fd576130fc612a8a565b5b600061310b84828501612cd7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314981612a94565b82525050565b600061315b8383613140565b60208301905092915050565b6000602082019050919050565b600061317f82613114565b613189818561311f565b935061319483613130565b8060005b838110156131c55781516131ac888261314f565b97506131b783613167565b925050600181019050613198565b5085935050505092915050565b600060208201905081810360008301526131ec8184613174565b905092915050565b6000806040838503121561320b5761320a612a8a565b5b600061321985828601612cd7565b925050602061322a858286016130a5565b9150509250929050565b600067ffffffffffffffff82111561324f5761324e612d36565b5b61325882612bf8565b9050602081019050919050565b600061327861327384613234565b612d96565b90508281526020810184848401111561329457613293612d31565b5b61329f848285612de2565b509392505050565b600082601f8301126132bc576132bb612d2c565b5b81356132cc848260208601613265565b91505092915050565b600080600080608085870312156132ef576132ee612a8a565b5b60006132fd87828801612cd7565b945050602061330e87828801612cd7565b935050604061331f87828801612ab5565b925050606085013567ffffffffffffffff8111156133405761333f612a8f565b5b61334c878288016132a7565b91505092959194509250565b6000806040838503121561336f5761336e612a8a565b5b600061337d85828601612cd7565b925050602061338e85828601612cd7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133df57607f821691505b6020821081036133f2576133f1613398565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261345a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261341d565b613464868361341d565b95508019841693508086168417925050509392505050565b600061349761349261348d84612a94565b612f67565b612a94565b9050919050565b6000819050919050565b6134b18361347c565b6134c56134bd8261349e565b84845461342a565b825550505050565b600090565b6134da6134cd565b6134e58184846134a8565b505050565b5b81811015613509576134fe6000826134d2565b6001810190506134eb565b5050565b601f82111561354e5761351f816133f8565b6135288461340d565b81016020851015613537578190505b61354b6135438561340d565b8301826134ea565b50505b505050565b600082821c905092915050565b600061357160001984600802613553565b1980831691505092915050565b600061358a8383613560565b9150826002028217905092915050565b6135a382612bb2565b67ffffffffffffffff8111156135bc576135bb612d36565b5b6135c682546133c7565b6135d182828561350d565b600060209050601f83116001811461360457600084156135f2578287015190505b6135fc858261357e565b865550613664565b601f198416613612866133f8565b60005b8281101561363a57848901518255600182019150602085019450602081019050613615565b868310156136575784890151613653601f891682613560565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136a682612a94565b91506136b183612a94565b92508282019050808211156136c9576136c861366c565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613705601483612bbd565b9150613710826136cf565b602082019050919050565b60006020820190508181036000830152613734816136f8565b9050919050565b600081905092915050565b50565b600061375660008361373b565b915061376182613746565b600082019050919050565b600061377782613749565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137bb82612a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137ed576137ec61366c565b5b600182019050919050565b7f546865205075626c696353616c65206973207061757365642100000000000000600082015250565b600061382e601983612bbd565b9150613839826137f8565b602082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061389a601483612bbd565b91506138a582613864565b602082019050919050565b600060208201905081810360008301526138c98161388d565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000613906601d83612bbd565b9150613911826138d0565b602082019050919050565b60006020820190508181036000830152613935816138f9565b9050919050565b600061394782612a94565b915061395283612a94565b925082820261396081612a94565b915082820484148315176139775761397661366c565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139b4601383612bbd565b91506139bf8261397e565b602082019050919050565b600060208201905081810360008301526139e3816139a7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a46602f83612bbd565b9150613a51826139ea565b604082019050919050565b60006020820190508181036000830152613a7581613a39565b9050919050565b600081905092915050565b6000613a9282612bb2565b613a9c8185613a7c565b9350613aac818560208601612bce565b80840191505092915050565b60008154613ac5816133c7565b613acf8186613a7c565b94506001821660008114613aea5760018114613aff57613b32565b60ff1983168652811515820286019350613b32565b613b08856133f8565b60005b83811015613b2a57815481890152600182019150602081019050613b0b565b838801955050505b50505092915050565b6000613b478286613a87565b9150613b538285613a87565b9150613b5f8284613ab8565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bc8602683612bbd565b9150613bd382613b6c565b604082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083612bbd565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b6000604082019050613c7f6000830185612c96565b613c8c6020830184612c96565b9392505050565b600081519050613ca28161308e565b92915050565b600060208284031215613cbe57613cbd612a8a565b5b6000613ccc84828501613c93565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d0b601f83612bbd565b9150613d1682613cd5565b602082019050919050565b60006020820190508181036000830152613d3a81613cfe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d9782613d70565b613da18185613d7b565b9350613db1818560208601612bce565b613dba81612bf8565b840191505092915050565b6000608082019050613dda6000830187612c96565b613de76020830186612c96565b613df46040830185612eaa565b8181036060830152613e068184613d8c565b905095945050505050565b600081519050613e2081612b23565b92915050565b600060208284031215613e3c57613e3b612a8a565b5b6000613e4a84828501613e11565b9150509291505056fea2646970667358221220e6c8d4a0275411fa9a36ea04c49b9ea4cb99257faf8d7f1ede3572903cb5c5b864736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
84856:6794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88586:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91304:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87806:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85426:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90530:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87019:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85655:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88836:172;;;;;;;;;;;;;:::i;:::-;;80941:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90701:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87231:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87912:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85705:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85110:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85597:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88067:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86335:676;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69443:103;;;;;;;;;;;;;:::i;:::-;;89156:712;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68795:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88483:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85507:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85768:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85349:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91088:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85191:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85851:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88183:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90880:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89975:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88338:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87629:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26779:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69701:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87724:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88586:102;68681:13;:11;:13::i;:::-;88670:12:::1;88656:11;:26;;;;88586:102:::0;:::o;18437:639::-;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;26010:15;:24;26026:7;26010:24;;;;;;;;;;;:30;;;;;;;;;;;;26003:37;;25830:218;;;:::o;91304:206::-;91444:8;82723:30;82744:8;82723:20;:30::i;:::-;91470:32:::1;91484:8;91494:7;91470:13;:32::i;:::-;91304:206:::0;;;:::o;87806:100::-;68681:13;:11;:13::i;:::-;87890:10:::1;87878:9;:22;;;;;;:::i;:::-;;87806:100:::0;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;85426:33::-;;;;:::o;90530:165::-;90639:4;82457:10;82449:18;;:4;:18;;;82445:83;;82484:32;82505:10;82484:20;:32::i;:::-;82445:83;90652:37:::1;90671:4;90677:2;90681:7;90652:18;:37::i;:::-;90530:165:::0;;;;:::o;87019:204::-;68681:13;:11;:13::i;:::-;87141:11:::1;;87126;87110:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;87102:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;87184:33;87194:9;87205:11;87184:9;:33::i;:::-;87019:204:::0;;:::o;85655:30::-;;;;;;;;;;;;;:::o;88836:172::-;68681:13;:11;:13::i;:::-;72605:21:::1;:19;:21::i;:::-;88916:7:::2;88937;:5;:7::i;:::-;88929:21;;88958;88929:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88915:69;;;88999:2;88991:11;;;::::0;::::2;;88886:122;72649:20:::1;:18;:20::i;:::-;88836:172::o:0;80941:143::-;73357:42;80941:143;:::o;90701:173::-;90814:4;82457:10;82449:18;;:4;:18;;;82445:83;;82484:32;82505:10;82484:20;:32::i;:::-;82445:83;90827:41:::1;90850:4;90856:2;90860:7;90827:22;:41::i;:::-;90701:173:::0;;;;:::o;87231:238::-;68681:13;:11;:13::i;:::-;87313:9:::1;87308:156;87328:9;;:16;;87324:1;:20;87308:156;;;87389:11;;87384:1;87368:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:32;;87360:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;87434:22;87440:9;;87450:1;87440:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;87454:1;87434:5;:22::i;:::-;87346:3;;;;:::i;:::-;;;87308:156;;;;87231:238:::0;;:::o;87912:132::-;68681:13;:11;:13::i;:::-;88020:18:::1;88000:17;:38;;;;;;:::i;:::-;;87912:132:::0;:::o;85705:28::-;;;;;;;;;;;;;:::o;85110:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85597:37::-;;;;:::o;88067:95::-;68681:13;:11;:13::i;:::-;88145:11:::1;88132:10;;:24;;;;;;;;;;;;;;;;;;88067:95:::0;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;86335:676::-;86454:10;;;;;;;;;;;86446:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;86523:1;86509:11;:15;:52;;;;;86543:18;;86528:11;:33;;86509:52;86501:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;86632:11;;86617;86601:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;86593:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;86721:17;;86706:11;86683:15;:20;86699:3;86683:20;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:55;;86675:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;86808:11;86800:5;;:19;;;;:::i;:::-;86787:9;:32;;86779:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;86871:27;86881:3;86886:11;86871:9;:27::i;:::-;86955:11;86931:15;:20;86947:3;86931:20;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;86991:11;86975:12;;:27;;;;;;;:::i;:::-;;;;;;;;86335:676;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;69443:103::-;68681:13;:11;:13::i;:::-;69508:30:::1;69535:1;69508:18;:30::i;:::-;69443:103::o:0;89156:712::-;89217:16;89263:18;89298:16;89308:5;89298:9;:16::i;:::-;89284:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89263:52;;89327:11;89341:14;:12;:14::i;:::-;89327:28;;89366:19;89396:25;89437:9;89432:403;89452:3;89448:1;:7;89432:403;;;89477:31;89511:15;89524:1;89511:12;:15::i;:::-;89477:49;;89545:9;:16;;;89541:65;;;89582:8;;;89541:65;89650:1;89624:28;;:9;:14;;;:28;;;89620:103;;89693:9;:14;;;89673:34;;89620:103;89762:5;89741:26;;:17;:26;;;89737:87;;89807:1;89788;89790:13;;;;;;89788:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;89737:87;89462:373;89432:403;89457:3;;;;;;;89432:403;;;;89852:1;89845:8;;;;;;89156:712;;;:::o;68795:87::-;68841:7;68868:6;;;;;;;;;;;68861:13;;68795:87;:::o;88483:78::-;68681:13;:11;:13::i;:::-;88549:6:::1;88541:5;:14;;;;88483:78:::0;:::o;85507:38::-;;;;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;85768:50::-;;;;;;;;;;;;;;;;;:::o;85349:33::-;;;;:::o;91088:208::-;91219:8;82723:30;82744:8;82723:20;:30::i;:::-;91245:43:::1;91269:8;91279;91245:23;:43::i;:::-;91088:208:::0;;;:::o;85191:114::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85851:27::-;;;;:::o;88183:130::-;68681:13;:11;:13::i;:::-;88288:19:::1;88267:18;:40;;;;88183:130:::0;:::o;90880:198::-;91012:4;82457:10;82449:18;;:4;:18;;;82445:83;;82484:32;82505:10;82484:20;:32::i;:::-;82445:83;91025:47:::1;91048:4;91054:2;91058:7;91067:4;91025:22;:47::i;:::-;90880:198:::0;;;;;:::o;89975:445::-;90049:13;90079:17;90087:8;90079:7;:17::i;:::-;90071:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;90173:5;90161:17;;:8;;;;;;;;;;;:17;;;90157:64;;90196:17;90189:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90157:64;90229:28;90260:10;:8;:10::i;:::-;90229:41;;90315:1;90290:14;90284:28;:32;:130;;;;;;;;;;;;;;;;;90352:14;90368:19;:8;:17;:19::i;:::-;90389:9;90335:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90284:130;90277:137;;;89975:445;;;;:::o;88338:126::-;68681:13;:11;:13::i;:::-;88440:18:::1;88420:17;:38;;;;88338:126:::0;:::o;87629:81::-;68681:13;:11;:13::i;:::-;87698:6:::1;87687:8;;:17;;;;;;;;;;;;;;;;;;87629:81:::0;:::o;26779:164::-;26876:4;26900:18;:25;26919:5;26900:25;;;;;;;;;;;;;;;:35;26926:8;26900:35;;;;;;;;;;;;;;;;;;;;;;;;;26893:42;;26779:164;;;;:::o;69701:201::-;68681:13;:11;:13::i;:::-;69810:1:::1;69790:22;;:8;:22;;::::0;69782:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;69866:28;69885:8;69866:18;:28::i;:::-;69701:201:::0;:::o;87724:76::-;68681:13;:11;:13::i;:::-;87790:4:::1;87784:3;:10;;;;;;:::i;:::-;;87724:76:::0;:::o;68960:132::-;69035:12;:10;:12::i;:::-;69024:23;;:7;:5;:7::i;:::-;:23;;;69016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68960:132::o;27201:282::-;27266:4;27322:7;27303:15;:13;:15::i;:::-;:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;;27455:1;11209:8;27407:17;:26;27425:7;27407:26;;;;;;;;;;;;:44;:49;27303:153;27283:173;;27201:282;;;:::o;82866:647::-;83105:1;73357:42;83057:45;;;:49;83053:453;;;73357:42;83356;;;83407:4;83414:8;83356:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;83351:144;;83470:8;83451:28;;;;;;;;;;;:::i;:::-;;;;;;;;83351:144;83053:453;82866:647;:::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;;25424:5;25401:28;;:19;:17;:19::i;:::-;:28;;;25397:175;;25449:44;25466:5;25473:19;:17;:19::i;:::-;25449:16;:44::i;:::-;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25397:175;25617:2;25584:15;:24;25600:7;25584:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25655:7;25651:2;25635:28;;25644:5;25635:28;;;;;;;;;;;;25341:330;25263:408;;:::o;89874:95::-;89939:7;89962:1;89955:8;;89874:95;:::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;29685:45;;29701:19;29685:45;;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;29810:23;29837:35;29864:7;29837:26;:35::i;:::-;29780:92;;;;29972:68;29997:15;30014:4;30020:19;:17;:19::i;:::-;29972:24;:68::i;:::-;29967:180;;30060:43;30077:4;30083:19;:17;:19::i;:::-;30060:16;:43::i;:::-;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;29967:180;30178:1;30164:16;;:2;:16;;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30225:43;30247:4;30253:2;30257:7;30266:1;30225:21;:43::i;:::-;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;30896:26;;;;;;;;;;;;30967:18;:22;30986:2;30967:22;;;;;;;;;;;;;;;;30965:24;;;;;;;;;;;31289:146;31326:2;31375:45;31390:4;31396:2;31400:19;31375:14;:45::i;:::-;11489:8;31347:73;31289:18;:146::i;:::-;31260:17;:26;31278:7;31260:26;;;;;;;;;;;:175;;;;31606:1;11489:8;31555:19;:47;:52;31551:627;;31628:19;31660:1;31650:7;:11;31628:33;;31817:1;31783:17;:30;31801:11;31783:30;;;;;;;;;;;;:35;31779:384;;31921:13;;31906:11;:28;31902:242;;32101:19;32068:17;:30;32086:11;32068:30;;;;;;;;;;;:52;;;;31902:242;31779:384;31609:569;31551:627;32225:7;32221:2;32206:27;;32215:4;32206:27;;;;;;;;;;;;32244:42;32265:4;32271:2;32275:7;32284:1;32244:20;:42::i;:::-;29600:2694;;;29469:2825;;;:::o;43341:112::-;43418:27;43428:2;43432:8;43418:27;;;;;;;;;;;;:9;:27::i;:::-;43341:112;;:::o;72685:293::-;72087:1;72819:7;;:19;72811:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72087:1;72952:7;:18;;;;72685:293::o;72986:213::-;72043:1;73169:7;:22;;;;72986:213::o;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;36850:2966::-;36923:20;36946:13;;36923:36;;36986:1;36974:8;:13;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;37027:61;37057:1;37061:2;37065:12;37079:8;37027:21;:61::i;:::-;37571:1;10571:2;37541:1;:26;;37540:32;37528:8;:45;37502:18;:22;37521:2;37502:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37850:139;37887:2;37941:33;37964:1;37968:2;37972:1;37941:14;:33::i;:::-;37908:30;37929:8;37908:20;:30::i;:::-;:66;37850:18;:139::i;:::-;37816:17;:31;37834:12;37816:31;;;;;;;;;;;:173;;;;38006:16;38037:11;38066:8;38051:12;:23;38037:37;;38587:16;38583:2;38579:25;38567:37;;38959:12;38919:8;38878:1;38816:25;38757:1;38696;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39415:7;39411:15;39400:26;;39270:346;;;39274:77;39661:1;39649:8;:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39723:3;39707:13;:19;;;;37276:2462;;39748:60;39777:1;39781:2;39785:12;39799:8;39748:20;:60::i;:::-;36912:2904;36850:2966;;:::o;21887:1275::-;21954:7;21974:12;21989:7;21974:22;;22057:4;22038:15;:13;:15::i;:::-;:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:17;:23;22164:4;22146:23;;;;;;;;;;;;22129:40;;22263:1;11209:8;22235:6;:24;:29;22231:845;;22900:113;22917:1;22907:6;:11;22900:113;;22960:17;:25;22978:6;;;;;;;22960:25;;;;;;;;;;;;22951:34;;22900:113;;;23046:6;23039:13;;;;;;22231:845;22106:989;22080:1015;22034:1061;23123:31;;;;;;;;;;;;;;21887:1275;;;;:::o;70062:191::-;70136:16;70155:6;;;;;;;;;;;70136:25;;70181:8;70172:6;;:17;;;;;;;;;;;;;;;;;;70236:8;70205:40;;70226:8;70205:40;;;;;;;;;;;;70125:128;70062:191;:::o;14777:103::-;14832:7;14859:13;;14852:20;;14777:103;:::o;21335:161::-;21403:21;;:::i;:::-;21444:44;21463:17;:24;21481:5;21463:24;;;;;;;;;;;;21444:18;:44::i;:::-;21437:51;;21335:161;;;:::o;26388:234::-;26535:8;26483:18;:39;26502:19;:17;:19::i;:::-;26483:39;;;;;;;;;;;;;;;:49;26523:8;26483:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26595:8;26559:55;;26574:19;:17;:19::i;:::-;26559:55;;;26605:8;26559:55;;;;;;:::i;:::-;;;;;;;;26388:234;;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;33420:1;33402:2;:14;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;33436:145;33398:183;33181:407;;;;:::o;90426:98::-;90486:13;90515:3;90508:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90426:98;:::o;64773:716::-;64829:13;64880:14;64917:1;64897:17;64908:5;64897:10;:17::i;:::-;:21;64880:38;;64933:20;64967:6;64956:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64933:41;;64989:11;65118:6;65114:2;65110:15;65102:6;65098:28;65091:35;;65155:288;65162:4;65155:288;;;65187:5;;;;;;;;65329:8;65324:2;65317:5;65313:14;65308:30;65303:3;65295:44;65385:2;65376:11;;;;;;:::i;:::-;;;;;65419:1;65410:5;:10;65155:288;65406:21;65155:288;65464:6;65457:13;;;;;64773:716;;;:::o;67346:98::-;67399:7;67426:10;67419:17;;67346:98;:::o;49509:105::-;49569:7;49596:10;49589:17;;49509:105;:::o;28364:485::-;28466:27;28495:23;28536:38;28577:15;:24;28593:7;28577:24;;;;;;;;;;;28536:65;;28754:18;28731:41;;28811:19;28805:26;28786:45;;28716:126;28364:485;;;:::o;27592:659::-;27741:11;27906:16;27899:5;27895:28;27886:37;;28066:16;28055:9;28051:32;28038:45;;28216:15;28205:9;28202:30;28194:5;28183:9;28180:20;28177:56;28167:66;;27592:659;;;;;:::o;34250:159::-;;;;;:::o;48818:311::-;48953:7;48973:16;11613:3;48999:19;:41;;48973:68;;11613:3;49067:31;49078:4;49084:2;49088:9;49067:10;:31::i;:::-;49059:40;;:62;;49052:69;;;48818:311;;;;;:::o;23710:450::-;23790:14;23958:16;23951:5;23947:28;23938:37;;24135:5;24121:11;24096:23;24092:41;24089:52;24082:5;24079:63;24069:73;;23710:450;;;;:::o;35074:158::-;;;;;:::o;42568:689::-;42699:19;42705:2;42709:8;42699:5;:19::i;:::-;42778:1;42760:2;:14;;;:19;42756:483;;42800:11;42814:13;;42800:27;;42846:13;42868:8;42862:3;:14;42846:30;;42895:233;42926:62;42965:1;42969:2;42973:7;;;;;;42982:5;42926:30;:62::i;:::-;42921:167;;43024:40;;;;;;;;;;;;;;42921:167;43123:3;43115:5;:11;42895:233;;43210:3;43193:13;;:20;43189:34;;43215:8;;;43189:34;42781:458;;42756:483;42568:689;;;:::o;24262:324::-;24332:14;24565:1;24555:8;24552:15;24526:24;24522:46;24512:56;;24262:324;;;:::o;23261:366::-;23327:31;;:::i;:::-;23404:6;23371:9;:14;;:41;;;;;;;;;;;11092:3;23457:6;:33;;23423:9;:24;;:68;;;;;;;;;;;23549:1;11209:8;23521:6;:24;:29;;23502:9;:16;;:48;;;;;;;;;;;11613:3;23590:6;:28;;23561:9;:19;;:58;;;;;;;;;;;23261:366;;;:::o;35672:716::-;35835:4;35881:2;35856:45;;;35902:19;:17;:19::i;:::-;35923:4;35929:7;35938:5;35856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:1;36139:6;:13;:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36025:54;;;36015:64;;;:6;:64;;;;36008:71;;;35672:716;;;;;;:::o;61639:922::-;61692:7;61712:14;61729:1;61712:18;;61779:6;61770:5;:15;61766:102;;61815:6;61806:15;;;;;;:::i;:::-;;;;;61850:2;61840:12;;;;61766:102;61895:6;61886:5;:15;61882:102;;61931:6;61922:15;;;;;;:::i;:::-;;;;;61966:2;61956:12;;;;61882:102;62011:6;62002:5;:15;61998:102;;62047:6;62038:15;;;;;;:::i;:::-;;;;;62082:2;62072:12;;;;61998:102;62127:5;62118;:14;62114:99;;62162:5;62153:14;;;;;;:::i;:::-;;;;;62196:1;62186:11;;;;62114:99;62240:5;62231;:14;62227:99;;62275:5;62266:14;;;;;;:::i;:::-;;;;;62309:1;62299:11;;;;62227:99;62353:5;62344;:14;62340:99;;62388:5;62379:14;;;;;;:::i;:::-;;;;;62422:1;62412:11;;;;62340:99;62466:5;62457;:14;62453:66;;62502:1;62492:11;;;;62453:66;62547:6;62540:13;;;61639:922;;;:::o;48519:147::-;48656:6;48519:147;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:149::-;1061:7;1101:66;1094:5;1090:78;1079:89;;1025:149;;;:::o;1180:120::-;1252:23;1269:5;1252:23;:::i;:::-;1245:5;1242:34;1232:62;;1290:1;1287;1280:12;1232:62;1180:120;:::o;1306:137::-;1351:5;1389:6;1376:20;1367:29;;1405:32;1431:5;1405:32;:::i;:::-;1306:137;;;;:::o;1449:327::-;1507:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:119;;;1562:79;;:::i;:::-;1524:119;1682:1;1707:52;1751:7;1742:6;1731:9;1727:22;1707:52;:::i;:::-;1697:62;;1653:116;1449:327;;;;:::o;1782:90::-;1816:7;1859:5;1852:13;1845:21;1834:32;;1782:90;;;:::o;1878:109::-;1959:21;1974:5;1959:21;:::i;:::-;1954:3;1947:34;1878:109;;:::o;1993:210::-;2080:4;2118:2;2107:9;2103:18;2095:26;;2131:65;2193:1;2182:9;2178:17;2169:6;2131:65;:::i;:::-;1993:210;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:246::-;2570:1;2580:113;2594:6;2591:1;2588:13;2580:113;;;2679:1;2674:3;2670:11;2664:18;2660:1;2655:3;2651:11;2644:39;2616:2;2613:1;2609:10;2604:15;;2580:113;;;2727:1;2718:6;2713:3;2709:16;2702:27;2551:184;2489:246;;;:::o;2741:102::-;2782:6;2833:2;2829:7;2824:2;2817:5;2813:14;2809:28;2799:38;;2741:102;;;:::o;2849:377::-;2937:3;2965:39;2998:5;2965:39;:::i;:::-;3020:71;3084:6;3079:3;3020:71;:::i;:::-;3013:78;;3100:65;3158:6;3153:3;3146:4;3139:5;3135:16;3100:65;:::i;:::-;3190:29;3212:6;3190:29;:::i;:::-;3185:3;3181:39;3174:46;;2941:285;2849:377;;;;:::o;3232:313::-;3345:4;3383:2;3372:9;3368:18;3360:26;;3432:9;3426:4;3422:20;3418:1;3407:9;3403:17;3396:47;3460:78;3533:4;3524:6;3460:78;:::i;:::-;3452:86;;3232:313;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:180;5184:77;5181:1;5174:88;5281:4;5278:1;5271:15;5305:4;5302:1;5295:15;5322:281;5405:27;5427:4;5405:27;:::i;:::-;5397:6;5393:40;5535:6;5523:10;5520:22;5499:18;5487:10;5484:34;5481:62;5478:88;;;5546:18;;:::i;:::-;5478:88;5586:10;5582:2;5575:22;5365:238;5322:281;;:::o;5609:129::-;5643:6;5670:20;;:::i;:::-;5660:30;;5699:33;5727:4;5719:6;5699:33;:::i;:::-;5609:129;;;:::o;5744:308::-;5806:4;5896:18;5888:6;5885:30;5882:56;;;5918:18;;:::i;:::-;5882:56;5956:29;5978:6;5956:29;:::i;:::-;5948:37;;6040:4;6034;6030:15;6022:23;;5744:308;;;:::o;6058:146::-;6155:6;6150:3;6145;6132:30;6196:1;6187:6;6182:3;6178:16;6171:27;6058:146;;;:::o;6210:425::-;6288:5;6313:66;6329:49;6371:6;6329:49;:::i;:::-;6313:66;:::i;:::-;6304:75;;6402:6;6395:5;6388:21;6440:4;6433:5;6429:16;6478:3;6469:6;6464:3;6460:16;6457:25;6454:112;;;6485:79;;:::i;:::-;6454:112;6575:54;6622:6;6617:3;6612;6575:54;:::i;:::-;6294:341;6210:425;;;;;:::o;6655:340::-;6711:5;6760:3;6753:4;6745:6;6741:17;6737:27;6727:122;;6768:79;;:::i;:::-;6727:122;6885:6;6872:20;6910:79;6985:3;6977:6;6970:4;6962:6;6958:17;6910:79;:::i;:::-;6901:88;;6717:278;6655:340;;;;:::o;7001:509::-;7070:6;7119:2;7107:9;7098:7;7094:23;7090:32;7087:119;;;7125:79;;:::i;:::-;7087:119;7273:1;7262:9;7258:17;7245:31;7303:18;7295:6;7292:30;7289:117;;;7325:79;;:::i;:::-;7289:117;7430:63;7485:7;7476:6;7465:9;7461:22;7430:63;:::i;:::-;7420:73;;7216:287;7001:509;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:474::-;8561:6;8569;8618:2;8606:9;8597:7;8593:23;8589:32;8586:119;;;8624:79;;:::i;:::-;8586:119;8744:1;8769:53;8814:7;8805:6;8794:9;8790:22;8769:53;:::i;:::-;8759:63;;8715:117;8871:2;8897:53;8942:7;8933:6;8922:9;8918:22;8897:53;:::i;:::-;8887:63;;8842:118;8493:474;;;;;:::o;8973:60::-;9001:3;9022:5;9015:12;;8973:60;;;:::o;9039:142::-;9089:9;9122:53;9140:34;9149:24;9167:5;9149:24;:::i;:::-;9140:34;:::i;:::-;9122:53;:::i;:::-;9109:66;;9039:142;;;:::o;9187:126::-;9237:9;9270:37;9301:5;9270:37;:::i;:::-;9257:50;;9187:126;;;:::o;9319:158::-;9401:9;9434:37;9465:5;9434:37;:::i;:::-;9421:50;;9319:158;;;:::o;9483:195::-;9602:69;9665:5;9602:69;:::i;:::-;9597:3;9590:82;9483:195;;:::o;9684:286::-;9809:4;9847:2;9836:9;9832:18;9824:26;;9860:103;9960:1;9949:9;9945:17;9936:6;9860:103;:::i;:::-;9684:286;;;;:::o;9976:117::-;10085:1;10082;10075:12;10099:117;10208:1;10205;10198:12;10239:568;10312:8;10322:6;10372:3;10365:4;10357:6;10353:17;10349:27;10339:122;;10380:79;;:::i;:::-;10339:122;10493:6;10480:20;10470:30;;10523:18;10515:6;10512:30;10509:117;;;10545:79;;:::i;:::-;10509:117;10659:4;10651:6;10647:17;10635:29;;10713:3;10705:4;10697:6;10693:17;10683:8;10679:32;10676:41;10673:128;;;10720:79;;:::i;:::-;10673:128;10239:568;;;;;:::o;10813:559::-;10899:6;10907;10956:2;10944:9;10935:7;10931:23;10927:32;10924:119;;;10962:79;;:::i;:::-;10924:119;11110:1;11099:9;11095:17;11082:31;11140:18;11132:6;11129:30;11126:117;;;11162:79;;:::i;:::-;11126:117;11275:80;11347:7;11338:6;11327:9;11323:22;11275:80;:::i;:::-;11257:98;;;;11053:312;10813:559;;;;;:::o;11378:116::-;11448:21;11463:5;11448:21;:::i;:::-;11441:5;11438:32;11428:60;;11484:1;11481;11474:12;11428:60;11378:116;:::o;11500:133::-;11543:5;11581:6;11568:20;11559:29;;11597:30;11621:5;11597:30;:::i;:::-;11500:133;;;;:::o;11639:323::-;11695:6;11744:2;11732:9;11723:7;11719:23;11715:32;11712:119;;;11750:79;;:::i;:::-;11712:119;11870:1;11895:50;11937:7;11928:6;11917:9;11913:22;11895:50;:::i;:::-;11885:60;;11841:114;11639:323;;;;:::o;11968:329::-;12027:6;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;11968:329;;;;:::o;12303:114::-;12370:6;12404:5;12398:12;12388:22;;12303:114;;;:::o;12423:184::-;12522:11;12556:6;12551:3;12544:19;12596:4;12591:3;12587:14;12572:29;;12423:184;;;;:::o;12613:132::-;12680:4;12703:3;12695:11;;12733:4;12728:3;12724:14;12716:22;;12613:132;;;:::o;12751:108::-;12828:24;12846:5;12828:24;:::i;:::-;12823:3;12816:37;12751:108;;:::o;12865:179::-;12934:10;12955:46;12997:3;12989:6;12955:46;:::i;:::-;13033:4;13028:3;13024:14;13010:28;;12865:179;;;;:::o;13050:113::-;13120:4;13152;13147:3;13143:14;13135:22;;13050:113;;;:::o;13199:732::-;13318:3;13347:54;13395:5;13347:54;:::i;:::-;13417:86;13496:6;13491:3;13417:86;:::i;:::-;13410:93;;13527:56;13577:5;13527:56;:::i;:::-;13606:7;13637:1;13622:284;13647:6;13644:1;13641:13;13622:284;;;13723:6;13717:13;13750:63;13809:3;13794:13;13750:63;:::i;:::-;13743:70;;13836:60;13889:6;13836:60;:::i;:::-;13826:70;;13682:224;13669:1;13666;13662:9;13657:14;;13622:284;;;13626:14;13922:3;13915:10;;13323:608;;;13199:732;;;;:::o;13937:373::-;14080:4;14118:2;14107:9;14103:18;14095:26;;14167:9;14161:4;14157:20;14153:1;14142:9;14138:17;14131:47;14195:108;14298:4;14289:6;14195:108;:::i;:::-;14187:116;;13937:373;;;;:::o;14316:468::-;14381:6;14389;14438:2;14426:9;14417:7;14413:23;14409:32;14406:119;;;14444:79;;:::i;:::-;14406:119;14564:1;14589:53;14634:7;14625:6;14614:9;14610:22;14589:53;:::i;:::-;14579:63;;14535:117;14691:2;14717:50;14759:7;14750:6;14739:9;14735:22;14717:50;:::i;:::-;14707:60;;14662:115;14316:468;;;;;:::o;14790:307::-;14851:4;14941:18;14933:6;14930:30;14927:56;;;14963:18;;:::i;:::-;14927:56;15001:29;15023:6;15001:29;:::i;:::-;14993:37;;15085:4;15079;15075:15;15067:23;;14790:307;;;:::o;15103:423::-;15180:5;15205:65;15221:48;15262:6;15221:48;:::i;:::-;15205:65;:::i;:::-;15196:74;;15293:6;15286:5;15279:21;15331:4;15324:5;15320:16;15369:3;15360:6;15355:3;15351:16;15348:25;15345:112;;;15376:79;;:::i;:::-;15345:112;15466:54;15513:6;15508:3;15503;15466:54;:::i;:::-;15186:340;15103:423;;;;;:::o;15545:338::-;15600:5;15649:3;15642:4;15634:6;15630:17;15626:27;15616:122;;15657:79;;:::i;:::-;15616:122;15774:6;15761:20;15799:78;15873:3;15865:6;15858:4;15850:6;15846:17;15799:78;:::i;:::-;15790:87;;15606:277;15545:338;;;;:::o;15889:943::-;15984:6;15992;16000;16008;16057:3;16045:9;16036:7;16032:23;16028:33;16025:120;;;16064:79;;:::i;:::-;16025:120;16184:1;16209:53;16254:7;16245:6;16234:9;16230:22;16209:53;:::i;:::-;16199:63;;16155:117;16311:2;16337:53;16382:7;16373:6;16362:9;16358:22;16337:53;:::i;:::-;16327:63;;16282:118;16439:2;16465:53;16510:7;16501:6;16490:9;16486:22;16465:53;:::i;:::-;16455:63;;16410:118;16595:2;16584:9;16580:18;16567:32;16626:18;16618:6;16615:30;16612:117;;;16648:79;;:::i;:::-;16612:117;16753:62;16807:7;16798:6;16787:9;16783:22;16753:62;:::i;:::-;16743:72;;16538:287;15889:943;;;;;;;:::o;16838:474::-;16906:6;16914;16963:2;16951:9;16942:7;16938:23;16934:32;16931:119;;;16969:79;;:::i;:::-;16931:119;17089:1;17114:53;17159:7;17150:6;17139:9;17135:22;17114:53;:::i;:::-;17104:63;;17060:117;17216:2;17242:53;17287:7;17278:6;17267:9;17263:22;17242:53;:::i;:::-;17232:63;;17187:118;16838:474;;;;;:::o;17318:180::-;17366:77;17363:1;17356:88;17463:4;17460:1;17453:15;17487:4;17484:1;17477:15;17504:320;17548:6;17585:1;17579:4;17575:12;17565:22;;17632:1;17626:4;17622:12;17653:18;17643:81;;17709:4;17701:6;17697:17;17687:27;;17643:81;17771:2;17763:6;17760:14;17740:18;17737:38;17734:84;;17790:18;;:::i;:::-;17734:84;17555:269;17504:320;;;:::o;17830:141::-;17879:4;17902:3;17894:11;;17925:3;17922:1;17915:14;17959:4;17956:1;17946:18;17938:26;;17830:141;;;:::o;17977:93::-;18014:6;18061:2;18056;18049:5;18045:14;18041:23;18031:33;;17977:93;;;:::o;18076:107::-;18120:8;18170:5;18164:4;18160:16;18139:37;;18076:107;;;;:::o;18189:393::-;18258:6;18308:1;18296:10;18292:18;18331:97;18361:66;18350:9;18331:97;:::i;:::-;18449:39;18479:8;18468:9;18449:39;:::i;:::-;18437:51;;18521:4;18517:9;18510:5;18506:21;18497:30;;18570:4;18560:8;18556:19;18549:5;18546:30;18536:40;;18265:317;;18189:393;;;;;:::o;18588:142::-;18638:9;18671:53;18689:34;18698:24;18716:5;18698:24;:::i;:::-;18689:34;:::i;:::-;18671:53;:::i;:::-;18658:66;;18588:142;;;:::o;18736:75::-;18779:3;18800:5;18793:12;;18736:75;;;:::o;18817:269::-;18927:39;18958:7;18927:39;:::i;:::-;18988:91;19037:41;19061:16;19037:41;:::i;:::-;19029:6;19022:4;19016:11;18988:91;:::i;:::-;18982:4;18975:105;18893:193;18817:269;;;:::o;19092:73::-;19137:3;19092:73;:::o;19171:189::-;19248:32;;:::i;:::-;19289:65;19347:6;19339;19333:4;19289:65;:::i;:::-;19224:136;19171:189;;:::o;19366:186::-;19426:120;19443:3;19436:5;19433:14;19426:120;;;19497:39;19534:1;19527:5;19497:39;:::i;:::-;19470:1;19463:5;19459:13;19450:22;;19426:120;;;19366:186;;:::o;19558:543::-;19659:2;19654:3;19651:11;19648:446;;;19693:38;19725:5;19693:38;:::i;:::-;19777:29;19795:10;19777:29;:::i;:::-;19767:8;19763:44;19960:2;19948:10;19945:18;19942:49;;;19981:8;19966:23;;19942:49;20004:80;20060:22;20078:3;20060:22;:::i;:::-;20050:8;20046:37;20033:11;20004:80;:::i;:::-;19663:431;;19648:446;19558:543;;;:::o;20107:117::-;20161:8;20211:5;20205:4;20201:16;20180:37;;20107:117;;;;:::o;20230:169::-;20274:6;20307:51;20355:1;20351:6;20343:5;20340:1;20336:13;20307:51;:::i;:::-;20303:56;20388:4;20382;20378:15;20368:25;;20281:118;20230:169;;;;:::o;20404:295::-;20480:4;20626:29;20651:3;20645:4;20626:29;:::i;:::-;20618:37;;20688:3;20685:1;20681:11;20675:4;20672:21;20664:29;;20404:295;;;;:::o;20704:1395::-;20821:37;20854:3;20821:37;:::i;:::-;20923:18;20915:6;20912:30;20909:56;;;20945:18;;:::i;:::-;20909:56;20989:38;21021:4;21015:11;20989:38;:::i;:::-;21074:67;21134:6;21126;21120:4;21074:67;:::i;:::-;21168:1;21192:4;21179:17;;21224:2;21216:6;21213:14;21241:1;21236:618;;;;21898:1;21915:6;21912:77;;;21964:9;21959:3;21955:19;21949:26;21940:35;;21912:77;22015:67;22075:6;22068:5;22015:67;:::i;:::-;22009:4;22002:81;21871:222;21206:887;;21236:618;21288:4;21284:9;21276:6;21272:22;21322:37;21354:4;21322:37;:::i;:::-;21381:1;21395:208;21409:7;21406:1;21403:14;21395:208;;;21488:9;21483:3;21479:19;21473:26;21465:6;21458:42;21539:1;21531:6;21527:14;21517:24;;21586:2;21575:9;21571:18;21558:31;;21432:4;21429:1;21425:12;21420:17;;21395:208;;;21631:6;21622:7;21619:19;21616:179;;;21689:9;21684:3;21680:19;21674:26;21732:48;21774:4;21766:6;21762:17;21751:9;21732:48;:::i;:::-;21724:6;21717:64;21639:156;21616:179;21841:1;21837;21829:6;21825:14;21821:22;21815:4;21808:36;21243:611;;;21206:887;;20796:1303;;;20704:1395;;:::o;22105:180::-;22153:77;22150:1;22143:88;22250:4;22247:1;22240:15;22274:4;22271:1;22264:15;22291:191;22331:3;22350:20;22368:1;22350:20;:::i;:::-;22345:25;;22384:20;22402:1;22384:20;:::i;:::-;22379:25;;22427:1;22424;22420:9;22413:16;;22448:3;22445:1;22442:10;22439:36;;;22455:18;;:::i;:::-;22439:36;22291:191;;;;:::o;22488:170::-;22628:22;22624:1;22616:6;22612:14;22605:46;22488:170;:::o;22664:366::-;22806:3;22827:67;22891:2;22886:3;22827:67;:::i;:::-;22820:74;;22903:93;22992:3;22903:93;:::i;:::-;23021:2;23016:3;23012:12;23005:19;;22664:366;;;:::o;23036:419::-;23202:4;23240:2;23229:9;23225:18;23217:26;;23289:9;23283:4;23279:20;23275:1;23264:9;23260:17;23253:47;23317:131;23443:4;23317:131;:::i;:::-;23309:139;;23036:419;;;:::o;23461:147::-;23562:11;23599:3;23584:18;;23461:147;;;;:::o;23614:114::-;;:::o;23734:398::-;23893:3;23914:83;23995:1;23990:3;23914:83;:::i;:::-;23907:90;;24006:93;24095:3;24006:93;:::i;:::-;24124:1;24119:3;24115:11;24108:18;;23734:398;;;:::o;24138:379::-;24322:3;24344:147;24487:3;24344:147;:::i;:::-;24337:154;;24508:3;24501:10;;24138:379;;;:::o;24523:180::-;24571:77;24568:1;24561:88;24668:4;24665:1;24658:15;24692:4;24689:1;24682:15;24709:233;24748:3;24771:24;24789:5;24771:24;:::i;:::-;24762:33;;24817:66;24810:5;24807:77;24804:103;;24887:18;;:::i;:::-;24804:103;24934:1;24927:5;24923:13;24916:20;;24709:233;;;:::o;24948:175::-;25088:27;25084:1;25076:6;25072:14;25065:51;24948:175;:::o;25129:366::-;25271:3;25292:67;25356:2;25351:3;25292:67;:::i;:::-;25285:74;;25368:93;25457:3;25368:93;:::i;:::-;25486:2;25481:3;25477:12;25470:19;;25129:366;;;:::o;25501:419::-;25667:4;25705:2;25694:9;25690:18;25682:26;;25754:9;25748:4;25744:20;25740:1;25729:9;25725:17;25718:47;25782:131;25908:4;25782:131;:::i;:::-;25774:139;;25501:419;;;:::o;25926:170::-;26066:22;26062:1;26054:6;26050:14;26043:46;25926:170;:::o;26102:366::-;26244:3;26265:67;26329:2;26324:3;26265:67;:::i;:::-;26258:74;;26341:93;26430:3;26341:93;:::i;:::-;26459:2;26454:3;26450:12;26443:19;;26102:366;;;:::o;26474:419::-;26640:4;26678:2;26667:9;26663:18;26655:26;;26727:9;26721:4;26717:20;26713:1;26702:9;26698:17;26691:47;26755:131;26881:4;26755:131;:::i;:::-;26747:139;;26474:419;;;:::o;26899:179::-;27039:31;27035:1;27027:6;27023:14;27016:55;26899:179;:::o;27084:366::-;27226:3;27247:67;27311:2;27306:3;27247:67;:::i;:::-;27240:74;;27323:93;27412:3;27323:93;:::i;:::-;27441:2;27436:3;27432:12;27425:19;;27084:366;;;:::o;27456:419::-;27622:4;27660:2;27649:9;27645:18;27637:26;;27709:9;27703:4;27699:20;27695:1;27684:9;27680:17;27673:47;27737:131;27863:4;27737:131;:::i;:::-;27729:139;;27456:419;;;:::o;27881:410::-;27921:7;27944:20;27962:1;27944:20;:::i;:::-;27939:25;;27978:20;27996:1;27978:20;:::i;:::-;27973:25;;28033:1;28030;28026:9;28055:30;28073:11;28055:30;:::i;:::-;28044:41;;28234:1;28225:7;28221:15;28218:1;28215:22;28195:1;28188:9;28168:83;28145:139;;28264:18;;:::i;:::-;28145:139;27929:362;27881:410;;;;:::o;28297:169::-;28437:21;28433:1;28425:6;28421:14;28414:45;28297:169;:::o;28472:366::-;28614:3;28635:67;28699:2;28694:3;28635:67;:::i;:::-;28628:74;;28711:93;28800:3;28711:93;:::i;:::-;28829:2;28824:3;28820:12;28813:19;;28472:366;;;:::o;28844:419::-;29010:4;29048:2;29037:9;29033:18;29025:26;;29097:9;29091:4;29087:20;29083:1;29072:9;29068:17;29061:47;29125:131;29251:4;29125:131;:::i;:::-;29117:139;;28844:419;;;:::o;29269:234::-;29409:34;29405:1;29397:6;29393:14;29386:58;29478:17;29473:2;29465:6;29461:15;29454:42;29269:234;:::o;29509:366::-;29651:3;29672:67;29736:2;29731:3;29672:67;:::i;:::-;29665:74;;29748:93;29837:3;29748:93;:::i;:::-;29866:2;29861:3;29857:12;29850:19;;29509:366;;;:::o;29881:419::-;30047:4;30085:2;30074:9;30070:18;30062:26;;30134:9;30128:4;30124:20;30120:1;30109:9;30105:17;30098:47;30162:131;30288:4;30162:131;:::i;:::-;30154:139;;29881:419;;;:::o;30306:148::-;30408:11;30445:3;30430:18;;30306:148;;;;:::o;30460:390::-;30566:3;30594:39;30627:5;30594:39;:::i;:::-;30649:89;30731:6;30726:3;30649:89;:::i;:::-;30642:96;;30747:65;30805:6;30800:3;30793:4;30786:5;30782:16;30747:65;:::i;:::-;30837:6;30832:3;30828:16;30821:23;;30570:280;30460:390;;;;:::o;30880:874::-;30983:3;31020:5;31014:12;31049:36;31075:9;31049:36;:::i;:::-;31101:89;31183:6;31178:3;31101:89;:::i;:::-;31094:96;;31221:1;31210:9;31206:17;31237:1;31232:166;;;;31412:1;31407:341;;;;31199:549;;31232:166;31316:4;31312:9;31301;31297:25;31292:3;31285:38;31378:6;31371:14;31364:22;31356:6;31352:35;31347:3;31343:45;31336:52;;31232:166;;31407:341;31474:38;31506:5;31474:38;:::i;:::-;31534:1;31548:154;31562:6;31559:1;31556:13;31548:154;;;31636:7;31630:14;31626:1;31621:3;31617:11;31610:35;31686:1;31677:7;31673:15;31662:26;;31584:4;31581:1;31577:12;31572:17;;31548:154;;;31731:6;31726:3;31722:16;31715:23;;31414:334;;31199:549;;30987:767;;30880:874;;;;:::o;31760:589::-;31985:3;32007:95;32098:3;32089:6;32007:95;:::i;:::-;32000:102;;32119:95;32210:3;32201:6;32119:95;:::i;:::-;32112:102;;32231:92;32319:3;32310:6;32231:92;:::i;:::-;32224:99;;32340:3;32333:10;;31760:589;;;;;;:::o;32355:225::-;32495:34;32491:1;32483:6;32479:14;32472:58;32564:8;32559:2;32551:6;32547:15;32540:33;32355:225;:::o;32586:366::-;32728:3;32749:67;32813:2;32808:3;32749:67;:::i;:::-;32742:74;;32825:93;32914:3;32825:93;:::i;:::-;32943:2;32938:3;32934:12;32927:19;;32586:366;;;:::o;32958:419::-;33124:4;33162:2;33151:9;33147:18;33139:26;;33211:9;33205:4;33201:20;33197:1;33186:9;33182:17;33175:47;33239:131;33365:4;33239:131;:::i;:::-;33231:139;;32958:419;;;:::o;33383:182::-;33523:34;33519:1;33511:6;33507:14;33500:58;33383:182;:::o;33571:366::-;33713:3;33734:67;33798:2;33793:3;33734:67;:::i;:::-;33727:74;;33810:93;33899:3;33810:93;:::i;:::-;33928:2;33923:3;33919:12;33912:19;;33571:366;;;:::o;33943:419::-;34109:4;34147:2;34136:9;34132:18;34124:26;;34196:9;34190:4;34186:20;34182:1;34171:9;34167:17;34160:47;34224:131;34350:4;34224:131;:::i;:::-;34216:139;;33943:419;;;:::o;34368:332::-;34489:4;34527:2;34516:9;34512:18;34504:26;;34540:71;34608:1;34597:9;34593:17;34584:6;34540:71;:::i;:::-;34621:72;34689:2;34678:9;34674:18;34665:6;34621:72;:::i;:::-;34368:332;;;;;:::o;34706:137::-;34760:5;34791:6;34785:13;34776:22;;34807:30;34831:5;34807:30;:::i;:::-;34706:137;;;;:::o;34849:345::-;34916:6;34965:2;34953:9;34944:7;34940:23;34936:32;34933:119;;;34971:79;;:::i;:::-;34933:119;35091:1;35116:61;35169:7;35160:6;35149:9;35145:22;35116:61;:::i;:::-;35106:71;;35062:125;34849:345;;;;:::o;35200:181::-;35340:33;35336:1;35328:6;35324:14;35317:57;35200:181;:::o;35387:366::-;35529:3;35550:67;35614:2;35609:3;35550:67;:::i;:::-;35543:74;;35626:93;35715:3;35626:93;:::i;:::-;35744:2;35739:3;35735:12;35728:19;;35387:366;;;:::o;35759:419::-;35925:4;35963:2;35952:9;35948:18;35940:26;;36012:9;36006:4;36002:20;35998:1;35987:9;35983:17;35976:47;36040:131;36166:4;36040:131;:::i;:::-;36032:139;;35759:419;;;:::o;36184:180::-;36232:77;36229:1;36222:88;36329:4;36326:1;36319:15;36353:4;36350:1;36343:15;36370:98;36421:6;36455:5;36449:12;36439:22;;36370:98;;;:::o;36474:168::-;36557:11;36591:6;36586:3;36579:19;36631:4;36626:3;36622:14;36607:29;;36474:168;;;;:::o;36648:373::-;36734:3;36762:38;36794:5;36762:38;:::i;:::-;36816:70;36879:6;36874:3;36816:70;:::i;:::-;36809:77;;36895:65;36953:6;36948:3;36941:4;36934:5;36930:16;36895:65;:::i;:::-;36985:29;37007:6;36985:29;:::i;:::-;36980:3;36976:39;36969:46;;36738:283;36648:373;;;;:::o;37027:640::-;37222:4;37260:3;37249:9;37245:19;37237:27;;37274:71;37342:1;37331:9;37327:17;37318:6;37274:71;:::i;:::-;37355:72;37423:2;37412:9;37408:18;37399:6;37355:72;:::i;:::-;37437;37505:2;37494:9;37490:18;37481:6;37437:72;:::i;:::-;37556:9;37550:4;37546:20;37541:2;37530:9;37526:18;37519:48;37584:76;37655:4;37646:6;37584:76;:::i;:::-;37576:84;;37027:640;;;;;;;:::o;37673:141::-;37729:5;37760:6;37754:13;37745:22;;37776:32;37802:5;37776:32;:::i;:::-;37673:141;;;;:::o;37820:349::-;37889:6;37938:2;37926:9;37917:7;37913:23;37909:32;37906:119;;;37944:79;;:::i;:::-;37906:119;38064:1;38089:63;38144:7;38135:6;38124:9;38120:22;38089:63;:::i;:::-;38079:73;;38035:127;37820:349;;;;:::o
Swarm Source
ipfs://e6c8d4a0275411fa9a36ea04c49b9ea4cb99257faf8d7f1ede3572903cb5c5b8
Loading...
Loading
Loading...
Loading
[ 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.