ERC-721
NFT
Overview
Max Total Supply
3,352 ASWANG
Holders
1,529
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
188 ASWANGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AswangTribe
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 3333 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "../Augminted/ERC721ABase.sol"; import "./IDugo.sol"; error AswangTribe_EggAlreadyHatched(); error AswangTribe_InvalidTokenId(); error AswangTribe_PrayingDisabled(); error AswangTribe_SenderNotTokenOwner(); error AswangTribe_TokenPraying(); error AswangTribe_TokenNotPraying(); /** .,,,,. ,l;..,l;. .co, ,ol. ;do'.'::'..ox;. .cxl..:xOOk:..cxc. .dk:. ;xxc:dk; ;xd, ,xx; 'xk;. 'xx, 'dx; ;xd, .dOxc;,;oOx. .okc. .cko. .oOo'. .c0o. .lkl. .okc. .:kx, .dkc. ;xd, ;xd, .. .. 'okc. .lOo. .lko. .oOl. :Od' .dOc. ;kx' ,xk; ...'',,,,,,''... ,xk; .:xx' ..';:coodddddddddoddoollc:;'. .okl. .okl. ..''..... ....''.. :kk, .:O0c ..,:loxkkxxkkdl:,.. 'xOc. .o0k; .,:oxkkkkxoooooodxkO00Okxoc,.. .o0x. ,k0o. .;ldxdoc;'....',,;;;;,....,:lxOOOko:,. :0O; .cOO:. .:odo:'. 'cdoc:,,,;:lloc' .':oxOOxc,. ,kKl. .dX0; .:ooc'. 'lxd;. 'lko' .'cxOOxc' .xXk' ;OKd'.'oxl' ;dxc. .''. ,xk: .'cxOkl'.lK0: .oK0:.'okl. ,xk:. .ldlldc. 'xk; .,okxc';OXd. 'kXx'.cxl. .oOd. .ck: ,xl. .lOd. ,oxl''xXO, ;0Kl..cl' .dOo. .oO: ,kx. cOx, .'cc..lKK: .cKKo;cdo. .l0x' .ol;,lx:. .d0d' .cdc':0Xo. .dX0c.oKXO:. 'x0l. ..... .lOOc. .xK0o.'xXx. ;OXk; .:k0Oo;. ;OKd' 'd00o. .:xxl;' .lKO: .oKKo. .;okOko;. 'oOOd:'......,cx0KOl. .;oxo;. 'xKo. 'xXO: ..'cxO0Odc,. .,:lddxxkxkkkdc,. .'cxxd:... .c0k' ;0Xx' .;c;. .':ok00Odl;'. ...... ..;ldkxo;. .lko, ,O0; .cKXd. .:dl' .';ldk00Oxoc;,... ..,;coxkkxl;.. .;xko, 'kKl. .oKKl. ,oo, .:; .';lxkO00Okkxdoc:;:clodxOOOkoc;.. ,;. .;dxc. .dKx. ,kKO:. .;' 'oo. ..',::codkkxxkxdlc:,... ;xx; '::. .lKO; .c0Xk, 'ol. 'l, .:c. 'oko. ;OKl. .oKKo. .. .:;. 'dc. .;; .;, ;xl. .;xd, .. 'xXd. .xX0c. .dk: .. .:c. ;xc .,dk. cOl. .,:. :Ok, .oKk' 'kXO: :Okc;. .'. .ld' .l0: .cx: ;cdkc. cKO; ;0XO; .dXx. .;; 'ko. ,:. .xKx' ;0Kc. cKXx'.;O0dl' . ;; .. :dldkc. 'kKo. .oXXd..oKO:.cd:,;cdl. .lko;;oOo''oOd' .dKd. .dX0l. :OOdoloxdlc;,:' .:;,:ldxolllxOl. .lKx. 'xXO:. ........ ...... .c0k' 'OWNOoccccccccccc:c::::::;;;;,,,;;;,,,,,,,,;,,,,,,,;;,,,'''''''',,,,;;;;,,,,,;;,;;;;;;;;;;;:::::;::cccccccllccllllodONO' :XWWWNXK00OO00000000000000OOOOOOO00OOOOO00000000000000KXXXXXXXXXKK00000000OO0O000OOOOOOOOOOOO000OOOO000OOOOOOOO00KXNNWNd * @title Aswang Tribe * @author Augminted Labs, LLC */ contract AswangTribe is ERC721ABase { event StartPraying(uint256 indexed tokenId); event StopPraying(uint256 indexed tokenId); event Summon(uint256 indexed tokenId); event Hatch(uint256 indexed tokenId); struct TokenInfo { uint64 prayingStartedAt; uint64 totalTimePraying; bool hatched; } uint256 public constant MAX_SUPPLY = 6666; uint256 public constant SUMMONING_COST = 900 ether; uint256[7] public RANK_DURATIONS; IDugo public Dugo; bool public prayingEnabled; string public genesisURI; string public manananggalURI; mapping(uint256 => TokenInfo) public tokenInfo; constructor( address signer, address vrfCoordinator, bytes32 keyHash, uint64 subId ) ERC721ABase( "AswangTribe", "ASWANG", 3333, vrfCoordinator ) { setMintConfig(MintConfig({ price: 0.1 ether, maxPerAddress: 0, signer: signer })); setVrfRequestConfig(VrfRequestConfig({ keyHash: keyHash, subId: subId, callbackGasLimit: 200000, requestConfirmations: 3 })); RANK_DURATIONS = [30 days, 90 days, 180 days, 365 days, 1095 days, 12045 days, 121545 days]; prayingEnabled = true; } /** * @notice Metadata URI for specified token * @param tokenId Token to return metadata URI of */ function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (revealed) { return string(abi.encodePacked( tokenId < MAX_MINTABLE ? genesisURI : manananggalURI, _toString(rank(tokenId)), "/", _toString(tokenId)) ); } else { return metadata.placeholderURI; } } /** * @notice Current rank of token, based on how long it's been !praying * @param tokenId Token to return rank of */ function rank(uint256 tokenId) public view returns (uint256) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (tokenInfo[tokenId].prayingStartedAt == 0) return 0; uint256 durationPraying = block.timestamp - tokenInfo[tokenId].prayingStartedAt; for (uint256 i; i < RANK_DURATIONS.length; ++i) { if (RANK_DURATIONS[i] > durationPraying) return i; } return RANK_DURATIONS.length; } /** * @notice Time the token started !praying * @param tokenId Token to return info for */ function prayingStartedAt(uint256 tokenId) public view returns (uint256) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return tokenInfo[tokenId].prayingStartedAt; } /** * @notice Total time the token has spent !praying * @param tokenId Token to return info for */ function totalTimePraying(uint256 tokenId) public view returns (uint256) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return tokenInfo[tokenId].totalTimePraying; } /** * @notice If the token has been hatched (only applies to Manananggal tokens) * @param tokenId Token to return info for */ function hatched(uint256 tokenId) public view returns (bool) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return tokenInfo[tokenId].hatched; } /** * @notice Set a new $DUGO contract * @param dugo New $DUGO contract */ function setDugo(IDugo dugo) external lockable onlyOwner { Dugo = dugo; } /** * @notice Update base token URI for genesis tokens * @param uri New base token URI */ function setGenesisURI(string calldata uri) external lockable onlyOwner { genesisURI = uri; } /** * @notice Update base token URI for Manananggal tokens * @param uri New base token URI */ function setManananggalURI(string calldata uri) external lockable onlyOwner { manananggalURI = uri; } /** * @notice Flip between praying being enabled or disabled */ function flipPrayingEnabled() external lockable onlyOwner { prayingEnabled = !prayingEnabled; } /** * @notice Mint a specified amount of tokens to specified receivers * @param receivers Receivers of the airdrop * @param amounts Amounts of tokens to airdrop for corresponding receivers */ function airdrop(address[] calldata receivers, uint256[] calldata amounts) external lockable onlyOwner { for (uint256 i; i < receivers.length;) { _mint(receivers[i], amounts[i]); unchecked { ++i; } } } /** * @notice Mint a specified amount of tokens using a signature * @param amount Amount of tokens to mint * @param signature Ethereum signed message, created by `signer` */ function mint(uint256 amount, uint256 max, bytes memory signature) public payable { if (msg.value != mintConfig.price * amount) revert ERC721ABase_InvalidValue(); if (_numberMinted(_msgSender()) + amount > max) revert ERC721ABase_ExceedsMaxPerAddress(); if (mintConfig.signer != ECDSA.recover( ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(_msgSender(), max))), signature )) revert ERC721ABase_InvalidSignature(); _mint(amount); } /** * @dev Override to force use of the above mint function */ function mint(uint256 amount, bytes memory signature) public override payable { mint(amount, amount, signature); } /** * @notice Start !praying * @param tokenIds Tokens to start !praying */ function startPraying(uint256[] calldata tokenIds) external { if (!prayingEnabled) revert AswangTribe_PrayingDisabled(); for (uint256 i; i < tokenIds.length;) { uint256 tokenId = tokenIds[i]; if (ownerOf(tokenId) != _msgSender()) revert AswangTribe_SenderNotTokenOwner(); if (tokenInfo[tokenId].prayingStartedAt != 0) revert AswangTribe_TokenPraying(); tokenInfo[tokenId].prayingStartedAt = uint64(block.timestamp); emit StartPraying(tokenId); unchecked { ++i; } } } /** * @notice Stop !praying * @param tokenIds Tokens to stop !praying */ function stopPraying(uint256[] calldata tokenIds) external { for (uint256 i; i < tokenIds.length;) { uint256 tokenId = tokenIds[i]; if (ownerOf(tokenId) != _msgSender()) revert AswangTribe_SenderNotTokenOwner(); if (tokenInfo[tokenId].prayingStartedAt == 0) revert AswangTribe_TokenNotPraying(); if (address(Dugo) != address(0)) Dugo.claim(_msgSender(), tokenId); tokenInfo[tokenId].totalTimePraying += uint64(block.timestamp - tokenInfo[tokenId].prayingStartedAt); tokenInfo[tokenId].prayingStartedAt = 0; emit StopPraying(tokenId); unchecked { ++i; } } } /** * @notice Summon a Manananggal egg * @param tokenId Genesis token currently !praying * @param amount Amount of Manananggal eggs to summon */ function summon(uint256 tokenId, uint256 amount) external { if (tokenId >= MAX_MINTABLE) revert AswangTribe_InvalidTokenId(); if (ownerOf(tokenId) != _msgSender()) revert AswangTribe_SenderNotTokenOwner(); if (tokenInfo[tokenId].prayingStartedAt == 0) revert AswangTribe_TokenNotPraying(); if (_totalMinted() + amount > MAX_SUPPLY) revert ERC721ABase_InsufficientSupply(); Dugo.burn(_msgSender(), SUMMONING_COST * amount); for (uint256 i; i < amount;) { emit Summon(_nextTokenId() + i); unchecked { ++i; } } _mint(_msgSender(), amount); } /** * @notice Hatch a Manananggal eggs, revealing traits * @param tokenIds Manananggal eggs to hatch */ function hatch(uint256[] calldata tokenIds) external { for (uint256 i; i < tokenIds.length;) { uint256 tokenId = tokenIds[i]; if (tokenId < MAX_MINTABLE) revert AswangTribe_InvalidTokenId(); if (ownerOf(tokenId) != _msgSender()) revert AswangTribe_SenderNotTokenOwner(); if (tokenInfo[tokenId].hatched) revert AswangTribe_EggAlreadyHatched(); tokenInfo[tokenId].hatched = true; emit Hatch(tokenId); unchecked { ++i; } } } /** * @inheritdoc ERC721A * @dev Cannot transfer while token is !praying */ function transferFrom(address from, address to, uint256 tokenId) public override(IERC721A, ERC721A) { if (tokenInfo[tokenId].prayingStartedAt != 0) revert AswangTribe_TokenPraying(); ERC721A.transferFrom(from, to, tokenId); } /** * @inheritdoc ERC721A * @dev Cannot transfer while token is !praying */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(IERC721A, ERC721A) { if (tokenInfo[tokenId].prayingStartedAt != 0) revert AswangTribe_TokenPraying(); ERC721A.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IDugo is IERC20 { function burn(address, uint256) external; function claim(address, uint256) external; }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; error ERC721ABase_ExceedsMaxPerAddress(); error ERC721ABase_FunctionLocked(); error ERC721ABase_InvalidSignature(); error ERC721ABase_InsufficientSupply(); error ERC721ABase_InvalidValue(); error ERC721ABase_MetadataNotRevealed(); error ERC721ABase_ProvenanceHashNotSet(); error ERC721ABase_ProvenanceHashAlreadySet(); error ERC721ABase_TokenOffsetNotSet(); error ERC721ABase_TokenOffsetAlreadySet(); /** ..',,;;;;:::;;;,,'.. .';:ccccc:::;;,,,,,;;;:::ccccc:;'. .,:ccc:;'.. ..';:ccc:,. .':cc:,. .,ccc:'. .,clc,. .,clc,. 'clc' 'clc' .;ll,. .;ll;. .:ol. 'co:. ;oc. .co; 'oo' 'lo' .cd; ;dc. .ol. .,. .lo. ,dc. 'cxKWK; cd, ;d; .;oONWMMMMXc ;d; ;d; 'cxKWMMMMMMMMMXl. ;x; ,x: ;dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0NMMMMMMMMMMMMMMNd. :x, .dc .lXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNd. cd. ld. .oNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWXkl' .dl ,x; .xWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN0d:. ;x, oo. .kWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKxc'. .oo 'x: .kWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNOo;. :x' :x. .xWMMMMMMMMMMM0occcccccccccccccccccccccccccccccccccccc:' .x: lo. .oNMMMMMMMMMX; .ol .ol .lXMMMMMMMWd. ,dddddddddddddddo;. .:dddddddddddddo, lo. .dl cXMMMMMM0, 'OMMMMMMMMMMMMMMNd. .xWMMMMMMMMMMMMXo. ld. .dl ;KMMMMNl oWMMMMMMMMMMMMMXc. ,OWMMMMMMMMMMMMK: ld. oo ,OWMMO. ,KMMMMMMMMMMMMW0; .cKMMMMMMMMMMMMWO, oo cd. 'kWX: .xWMMMMMMMMMMMWx. .dKNMMMMMMMMMMMMNd. .dc ,x, .dd. ;KMMMMMMMMMMMXo. 'kWMMMMMMMMMMMMMXl. ,x; .dc . .,:loxOKNWMMK: ;0WMMMMMMMMMMMMW0; cd. :d. ... ..,:c' .lXMMMMMMMMMMMMMWk' .d: .dl :OKOxoc:,.. .xNMMMMMMMMMMMMMNo. cd. ;x, ;0MMMMWWXKOxoclOWMMMMMMMMMMMMMKc ,x; cd. ,OWMMMMMMMMMMMMMMMMMMMMMMMMWO, .dc .oo. .kWMMMMMMMMMMMMMMMMMMMMMMNx. .oo. .oo. .xWMMMMMMMMMMMMMMMMMMMMXl. .oo. .lo. .oNMMMMMMMMMMMMMMMMMW0; .ol. .cd, .lXMMMMMMMMMMMMMMMWk' ,dc. ;dc. :KMMMMMMMMMMMMNKo. .cd; .lo, ;0WWWWWWWWWWKc. 'ol. ,ol. .,,,,,,,,,,. .lo, .;oc. .co:. .;ol' 'lo;. ,ll:. .:ll, .:ll;. .;ll:. .:ll:,. .,:ll:. .,:ccc;'. .';ccc:,. .';cccc::;'... ...';:ccccc;'. .',;::cc::cc::::::::::::;,.. ........ * @title Base contract for standard ERC721A token drops * @author Augminted Labs, LLC * @notice Contract has been optimized for fairness and security */ contract ERC721ABase is ERC721AQueryable, Ownable, VRFConsumerBaseV2 { using Address for address; using ECDSA for bytes32; struct VrfRequestConfig { bytes32 keyHash; uint64 subId; uint32 callbackGasLimit; uint16 requestConfirmations; } struct MintConfig { uint256 price; uint256 maxPerAddress; address signer; } struct Metadata { string baseURI; string collectionURI; string placeholderURI; } VRFCoordinatorV2Interface internal immutable COORDINATOR; uint256 public immutable MAX_MINTABLE; VrfRequestConfig public vrfRequestConfig; MintConfig public mintConfig; Metadata public metadata; bool public revealed; mapping(bytes4 => bool) public functionLocked; string internal _provenanceHash; uint256 internal _tokenOffset; constructor( string memory name, string memory symbol, uint256 maxMintable, address vrfCoordinator ) ERC721A(name, symbol) VRFConsumerBaseV2(vrfCoordinator) { MAX_MINTABLE = maxMintable; COORDINATOR = VRFCoordinatorV2Interface(vrfCoordinator); } /** * @notice Modifier applied to functions that will be disabled when they're no longer needed */ modifier lockable() { if (functionLocked[msg.sig]) revert ERC721ABase_FunctionLocked(); _; } /** * @notice Return token metadata * @param tokenId To return metadata for * @return Token URI for the specified token */ function tokenURI(uint256 tokenId) public view virtual override(IERC721A, ERC721A) returns (string memory) { return revealed ? ERC721A.tokenURI(tokenId) : metadata.placeholderURI; } /** * @notice Override ERC721 _baseURI function to use base URI pattern */ function _baseURI() internal view virtual override returns (string memory) { return metadata.baseURI; } /** * @notice Token offset is added to the token ID (wrapped on overflow) to get metadata asset index */ function tokenOffset() public view returns (uint256) { if (_tokenOffset == 0) revert ERC721ABase_TokenOffsetNotSet(); return _tokenOffset; } /** * @notice Provenance hash is used as proof that token metadata has not been modified */ function provenanceHash() public view returns (string memory) { if (bytes(_provenanceHash).length == 0) revert ERC721ABase_ProvenanceHashNotSet(); return _provenanceHash; } /** * @notice Lock individual functions that are no longer needed. WARNING: THIS CANNOT BE UNDONE * @dev Only affects functions with the lockable modifier * @param id First 4 bytes of the calldata (i.e. function identifier) */ function lockFunction(bytes4 id) public onlyOwner { functionLocked[id] = true; } /** * @notice Set token offset using Chainlink VRF * @dev Provenance hash must already be set */ function setTokenOffset() public onlyOwner { if (bytes(_provenanceHash).length == 0) revert ERC721ABase_ProvenanceHashNotSet(); if (_tokenOffset != 0) revert ERC721ABase_TokenOffsetAlreadySet(); COORDINATOR.requestRandomWords( vrfRequestConfig.keyHash, vrfRequestConfig.subId, vrfRequestConfig.requestConfirmations, vrfRequestConfig.callbackGasLimit, 1 // number of random words ); } /** * @notice Callback function for Chainlink VRF request randomness call * @dev Maximum offset value is the maximum token ID (MAX_MINTABLE - 1) */ function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal override { _tokenOffset = randomWords[0] % MAX_MINTABLE; } /** * @notice Set provenance hash * @dev Can only be set before the token offset is generated * @param __provenanceHash Metadata proof string */ function setProvenanceHash(string memory __provenanceHash) public onlyOwner { if (_tokenOffset != 0) revert ERC721ABase_TokenOffsetAlreadySet(); _provenanceHash = __provenanceHash; } /** * @notice Set configuration for mint * @param _mintConfig Struct with updated configuration values */ function setMintConfig(MintConfig memory _mintConfig) public onlyOwner { mintConfig = _mintConfig; } /** * @notice Set configuration for Chainlink VRF * @param _vrfRequestConfig Struct with updated configuration values */ function setVrfRequestConfig(VrfRequestConfig memory _vrfRequestConfig) public onlyOwner { vrfRequestConfig = _vrfRequestConfig; } /** * @notice Set metadata information * @param _metadata Struct with updated metadata values */ function setMetadata(Metadata calldata _metadata) public lockable onlyOwner { metadata = _metadata; } /** * @notice Flip token metadata to revealed * @dev Can only be revealed after token offset has been set */ function flipRevealed() public virtual lockable onlyOwner { if (_tokenOffset == 0) revert ERC721ABase_TokenOffsetNotSet(); revealed = !revealed; } /** * @notice Mint a specified amount of tokens using a signature * @param amount Amount of tokens to mint * @param signature Ethereum signed message, created by `signer` */ function mint(uint256 amount, bytes memory signature) public virtual payable { if (msg.value != mintConfig.price * amount) revert ERC721ABase_InvalidValue(); if (_numberMinted(_msgSender()) + amount > mintConfig.maxPerAddress) revert ERC721ABase_ExceedsMaxPerAddress(); if (mintConfig.signer != ECDSA.recover( ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(_msgSender()))), signature )) revert ERC721ABase_InvalidSignature(); _mint(amount); } /** * @notice Internal function to mint a specified amount of tokens * @param amount Amount of tokens to mint */ function _mint(uint256 amount) internal virtual { if (_totalMinted() + amount > MAX_MINTABLE) revert ERC721ABase_InsufficientSupply(); _mint(_msgSender(), amount); } /** * @notice Permanently commit the state of the metadata information. WARNING: THIS CANNOT BE UNDONE * @dev Metadata should be migrated to a decentralized and, ideally, permanent storage solution */ function commitMetadata() external { if (!revealed) revert ERC721ABase_MetadataNotRevealed(); lockFunction(this.setMetadata.selector); lockFunction(this.flipRevealed.selector); } /** * @notice Withdraw all ETH transferred to the contract */ function withdraw() external onlyOwner { Address.sendValue(payable(_msgSender()), address(this).balance); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import '../ERC721A.sol'; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** **************************************************************************** * @notice Interface for contracts using VRF randomness * ***************************************************************************** * @dev PURPOSE * * @dev Reggie the Random Oracle (not his real job) wants to provide randomness * @dev to Vera the verifier in such a way that Vera can be sure he's not * @dev making his output up to suit himself. Reggie provides Vera a public key * @dev to which he knows the secret key. Each time Vera provides a seed to * @dev Reggie, he gives back a value which is computed completely * @dev deterministically from the seed and the secret key. * * @dev Reggie provides a proof by which Vera can verify that the output was * @dev correctly computed once Reggie tells it to her, but without that proof, * @dev the output is indistinguishable to her from a uniform random sample * @dev from the output space. * * @dev The purpose of this contract is to make it easy for unrelated contracts * @dev to talk to Vera the verifier about the work Reggie is doing, to provide * @dev simple access to a verifiable source of randomness. It ensures 2 things: * @dev 1. The fulfillment came from the VRFCoordinator * @dev 2. The consumer contract implements fulfillRandomWords. * ***************************************************************************** * @dev USAGE * * @dev Calling contracts must inherit from VRFConsumerBase, and can * @dev initialize VRFConsumerBase's attributes in their constructor as * @dev shown: * * @dev contract VRFConsumer { * @dev constructor(<other arguments>, address _vrfCoordinator, address _link) * @dev VRFConsumerBase(_vrfCoordinator) public { * @dev <initialization with other arguments goes here> * @dev } * @dev } * * @dev The oracle will have given you an ID for the VRF keypair they have * @dev committed to (let's call it keyHash). Create subscription, fund it * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface * @dev subscription management functions). * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations, * @dev callbackGasLimit, numWords), * @dev see (VRFCoordinatorInterface for a description of the arguments). * * @dev Once the VRFCoordinator has received and validated the oracle's response * @dev to your request, it will call your contract's fulfillRandomWords method. * * @dev The randomness argument to fulfillRandomWords is a set of random words * @dev generated from your requestId and the blockHash of the request. * * @dev If your contract could have concurrent requests open, you can use the * @dev requestId returned from requestRandomWords to track which response is associated * @dev with which randomness request. * @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind, * @dev if your contract could have multiple requests in flight simultaneously. * * @dev Colliding `requestId`s are cryptographically impossible as long as seeds * @dev differ. * * ***************************************************************************** * @dev SECURITY CONSIDERATIONS * * @dev A method with the ability to call your fulfillRandomness method directly * @dev could spoof a VRF response with any random value, so it's critical that * @dev it cannot be directly called by anything other than this base contract * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method). * * @dev For your users to trust that your contract's random behavior is free * @dev from malicious interference, it's best if you can write it so that all * @dev behaviors implied by a VRF response are executed *during* your * @dev fulfillRandomness method. If your contract must store the response (or * @dev anything derived from it) and use it later, you must ensure that any * @dev user-significant behavior which depends on that stored value cannot be * @dev manipulated by a subsequent VRF request. * * @dev Similarly, both miners and the VRF oracle itself have some influence * @dev over the order in which VRF responses appear on the blockchain, so if * @dev your contract could have multiple VRF requests in flight simultaneously, * @dev you must ensure that the order in which the VRF responses arrive cannot * @dev be used to manipulate your contract's user-significant behavior. * * @dev Since the block hash of the block which contains the requestRandomness * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful * @dev miner could, in principle, fork the blockchain to evict the block * @dev containing the request, forcing the request to be included in a * @dev different block with a different hash, and therefore a different input * @dev to the VRF. However, such an attack would incur a substantial economic * @dev cost. This cost scales with the number of blocks the VRF oracle waits * @dev until it calls responds to a request. It is for this reason that * @dev that you can signal to an oracle you'd like them to wait longer before * @dev responding to the request (however this is not enforced in the contract * @dev and so remains effective only in the case of unmodified oracle software). */ abstract contract VRFConsumerBaseV2 { error OnlyCoordinatorCanFulfill(address have, address want); address private immutable vrfCoordinator; /** * @param _vrfCoordinator address of VRFCoordinator contract */ constructor(address _vrfCoordinator) { vrfCoordinator = _vrfCoordinator; } /** * @notice fulfillRandomness handles the VRF response. Your contract must * @notice implement it. See "SECURITY CONSIDERATIONS" above for important * @notice principles to keep in mind when implementing your fulfillRandomness * @notice method. * * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this * @dev signature, and will call it once it has verified the proof * @dev associated with the randomness. (It is triggered via a call to * @dev rawFulfillRandomness, below.) * * @param requestId The Id initially returned by requestRandomness * @param randomWords the VRF output expanded to the requested number of words */ function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual; // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF // proof. rawFulfillRandomness then calls fulfillRandomness, after validating // the origin of the call function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external { if (msg.sender != vrfCoordinator) { revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator); } fulfillRandomWords(requestId, randomWords); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface VRFCoordinatorV2Interface { /** * @notice Get configuration relevant for making requests * @return minimumRequestConfirmations global min for request confirmations * @return maxGasLimit global max for request gas limit * @return s_provingKeyHashes list of registered key hashes */ function getRequestConfig() external view returns ( uint16, uint32, bytes32[] memory ); /** * @notice Request a set of random words. * @param keyHash - Corresponds to a particular oracle job which uses * that key for generating the VRF proof. Different keyHash's have different gas price * ceilings, so you can select a specific one to bound your maximum per request cost. * @param subId - The ID of the VRF subscription. Must be funded * with the minimum subscription balance required for the selected keyHash. * @param minimumRequestConfirmations - How many blocks you'd like the * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS * for why you may want to request more. The acceptable range is * [minimumRequestBlockConfirmations, 200]. * @param callbackGasLimit - How much gas you'd like to receive in your * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords * may be slightly less than this amount because of gas used calling the function * (argument decoding etc.), so you may need to request slightly more than you expect * to have inside fulfillRandomWords. The acceptable range is * [0, maxGasLimit] * @param numWords - The number of uint256 random values you'd like to receive * in your fulfillRandomWords callback. Note these numbers are expanded in a * secure way by the VRFCoordinator from a single random value supplied by the oracle. * @return requestId - A unique identifier of the request. Can be used to match * a request to a response in fulfillRandomWords. */ function requestRandomWords( bytes32 keyHash, uint64 subId, uint16 minimumRequestConfirmations, uint32 callbackGasLimit, uint32 numWords ) external returns (uint256 requestId); /** * @notice Create a VRF subscription. * @return subId - A unique subscription id. * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer. * @dev Note to fund the subscription, use transferAndCall. For example * @dev LINKTOKEN.transferAndCall( * @dev address(COORDINATOR), * @dev amount, * @dev abi.encode(subId)); */ function createSubscription() external returns (uint64 subId); /** * @notice Get a VRF subscription. * @param subId - ID of the subscription * @return balance - LINK balance of the subscription in juels. * @return reqCount - number of requests for this subscription, determines fee tier. * @return owner - owner of the subscription. * @return consumers - list of consumer address which are able to use this subscription. */ function getSubscription(uint64 subId) external view returns ( uint96 balance, uint64 reqCount, address owner, address[] memory consumers ); /** * @notice Request subscription owner transfer. * @param subId - ID of the subscription * @param newOwner - proposed new owner of the subscription */ function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external; /** * @notice Request subscription owner transfer. * @param subId - ID of the subscription * @dev will revert if original owner of subId has * not requested that msg.sender become the new owner. */ function acceptSubscriptionOwnerTransfer(uint64 subId) external; /** * @notice Add a consumer to a VRF subscription. * @param subId - ID of the subscription * @param consumer - New consumer which can use the subscription */ function addConsumer(uint64 subId, address consumer) external; /** * @notice Remove a consumer from a VRF subscription. * @param subId - ID of the subscription * @param consumer - Consumer to remove from the subscription */ function removeConsumer(uint64 subId, address consumer) external; /** * @notice Cancel a subscription * @param subId - ID of the subscription * @param to - Where to send the remaining LINK to */ function cancelSubscription(uint64 subId, address to) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); }
{ "optimizer": { "enabled": true, "runs": 3333 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"vrfCoordinator","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"uint64","name":"subId","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"AswangTribe_EggAlreadyHatched","type":"error"},{"inputs":[],"name":"AswangTribe_InvalidTokenId","type":"error"},{"inputs":[],"name":"AswangTribe_PrayingDisabled","type":"error"},{"inputs":[],"name":"AswangTribe_SenderNotTokenOwner","type":"error"},{"inputs":[],"name":"AswangTribe_TokenNotPraying","type":"error"},{"inputs":[],"name":"AswangTribe_TokenPraying","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ERC721ABase_ExceedsMaxPerAddress","type":"error"},{"inputs":[],"name":"ERC721ABase_FunctionLocked","type":"error"},{"inputs":[],"name":"ERC721ABase_InsufficientSupply","type":"error"},{"inputs":[],"name":"ERC721ABase_InvalidSignature","type":"error"},{"inputs":[],"name":"ERC721ABase_InvalidValue","type":"error"},{"inputs":[],"name":"ERC721ABase_MetadataNotRevealed","type":"error"},{"inputs":[],"name":"ERC721ABase_ProvenanceHashNotSet","type":"error"},{"inputs":[],"name":"ERC721ABase_TokenOffsetAlreadySet","type":"error"},{"inputs":[],"name":"ERC721ABase_TokenOffsetNotSet","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"have","type":"address"},{"internalType":"address","name":"want","type":"address"}],"name":"OnlyCoordinatorCanFulfill","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"tokenId","type":"uint256"}],"name":"Hatch","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":"uint256","name":"tokenId","type":"uint256"}],"name":"StartPraying","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"StopPraying","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Summon","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Dugo","outputs":[{"internalType":"contract IDugo","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"RANK_DURATIONS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUMMONING_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"commitMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrayingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"hatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"hatched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manananggalURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"collectionURI","type":"string"},{"internalType":"string","name":"placeholderURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintConfig","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxPerAddress","type":"uint256"},{"internalType":"address","name":"signer","type":"address"}],"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":"prayingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"prayingStartedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"rank","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"uint256[]","name":"randomWords","type":"uint256[]"}],"name":"rawFulfillRandomWords","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IDugo","name":"dugo","type":"address"}],"name":"setDugo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setGenesisURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setManananggalURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"collectionURI","type":"string"},{"internalType":"string","name":"placeholderURI","type":"string"}],"internalType":"struct ERC721ABase.Metadata","name":"_metadata","type":"tuple"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxPerAddress","type":"uint256"},{"internalType":"address","name":"signer","type":"address"}],"internalType":"struct ERC721ABase.MintConfig","name":"_mintConfig","type":"tuple"}],"name":"setMintConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTokenOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"uint64","name":"subId","type":"uint64"},{"internalType":"uint32","name":"callbackGasLimit","type":"uint32"},{"internalType":"uint16","name":"requestConfirmations","type":"uint16"}],"internalType":"struct ERC721ABase.VrfRequestConfig","name":"_vrfRequestConfig","type":"tuple"}],"name":"setVrfRequestConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"startPraying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stopPraying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"summon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenInfo","outputs":[{"internalType":"uint64","name":"prayingStartedAt","type":"uint64"},{"internalType":"uint64","name":"totalTimePraying","type":"uint64"},{"internalType":"bool","name":"hatched","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenOffset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":"uint256","name":"tokenId","type":"uint256"}],"name":"totalTimePraying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vrfRequestConfig","outputs":[{"internalType":"bytes32","name":"keyHash","type":"bytes32"},{"internalType":"uint64","name":"subId","type":"uint64"},{"internalType":"uint32","name":"callbackGasLimit","type":"uint32"},{"internalType":"uint16","name":"requestConfirmations","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200516038038062005160833981016040819052620000349162000443565b6040518060400160405280600b81526020016a417377616e67547269626560a81b81525060405180604001604052806006815260200165415357414e4760d01b815250610d058580848481600290805190602001906200009692919062000346565b508051620000ac90600390602084019062000346565b50506000805550620000be33620001bd565b6001600160a01b0390811660805260c092909252811660a0526040805160608101825267016345785d8a00008152600060208201529188169082015262000108925090506200020f565b604080516080810182528381526001600160401b038316602082015262030d409181019190915260036060820152620001419062000290565b6040805160e08101825262278d0081526276a700602082015262ed4e00918101919091526301e1338060608201526305a39a806080820152633e07a38060a0820152640271effd8060c08201526200019e906015906007620003d5565b5050601c805460ff60a01b1916600160a01b17905550620004e1915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200025e5760405162461bcd60e51b815260206004820181905260248201526000805160206200514083398151915260448201526064015b60405180910390fd5b8051600b556020810151600c5560400151600d80546001600160a01b0319166001600160a01b03909216919091179055565b6008546001600160a01b03163314620002db5760405162461bcd60e51b8152602060048201819052602482015260008051602062005140833981519152604482015260640162000255565b80516009556020810151600a8054604084015160609094015161ffff166c010000000000000000000000000261ffff60601b1963ffffffff90951668010000000000000000026001600160601b03199092166001600160401b03909416939093171792909216179055565b8280546200035490620004a5565b90600052602060002090601f016020900481019282620003785760008555620003c3565b82601f106200039357805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c3578251825591602001919060010190620003a6565b50620003d19291506200040f565b5090565b8260078101928215620003c3579160200282015b82811115620003c3578251829064ffffffffff16905591602001919060010190620003e9565b5b80821115620003d1576000815560010162000410565b80516001600160a01b03811681146200043e57600080fd5b919050565b600080600080608085870312156200045a57600080fd5b620004658562000426565b9350620004756020860162000426565b6040860151606087015191945092506001600160401b03811681146200049a57600080fd5b939692955090935050565b600181811c90821680620004ba57607f821691505b602082108103620004db57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051614c056200053b600039600081816105f9015281816121c0015281816129b501528181612b2c015281816130c701526131bd015260006112d801526000818161145701526114b20152614c056000f3fe6080604052600436106103ad5760003560e01c80638da5cb5b116101e7578063c23dc68f1161010d578063dc8c57b4116100a0578063e985e9c51161006f578063e985e9c514610bdb578063f292d6b414610c24578063f2fde38b14610c44578063fb9d154014610c6457600080fd5b8063dc8c57b414610b48578063e13c475b14610b5d578063e2cb4e3014610b7a578063e7cc724414610b8f57600080fd5b8063cc33c875116100dc578063cc33c87514610a6b578063cd197a4f14610af5578063d085c27214610b15578063db7fd40814610b3557600080fd5b8063c23dc68f146109e9578063c5a5949814610a16578063c6ab67a314610a36578063c87b56dd14610a4b57600080fd5b80639f5081b911610185578063b37c191b11610154578063b37c191b146108f3578063b72e9f3614610913578063b88d4fde14610999578063bbadfe76146109b957600080fd5b80639f5081b914610873578063a22cb46514610893578063aa4b7b3e146108b3578063ada3aa88146108d357600080fd5b806395d89b41116101c157806395d89b41146107fe57806396c385271461081357806399a2557a146108335780639bd3eb421461085357600080fd5b80638da5cb5b146107995780638eb2f8ed146107b75780639537beb5146107e957600080fd5b8063392f37e9116102d75780635db001eb1161026a578063715018a611610239578063715018a61461072257806381842d8f146107375780638462151c1461075757806389a656071461078457600080fd5b80635db001eb146106a25780636352211e146106c257806367243482146106e257806370a082311461070257600080fd5b806342842e0e116102a657806342842e0e1461061b5780634bd37ca31461063b578063518302271461065b5780635bbb21771461067557600080fd5b8063392f37e9146105995780633b2c3fb6146105bd5780633ccfd60b146105d25780633f879faf146105e757600080fd5b8063109695231161034f57806321af7e181161031e57806321af7e181461052e57806323b872dd1461054357806332cb6b0c14610563578063345318281461057957600080fd5b806310969523146104ab57806318160ddd146104cb5780631d8c9420146104ee5780631fe543e31461050e57600080fd5b8063081812fc1161038b578063081812fc1461042b57806308dc9f4214610463578063095ea7b3146104765780630f1876a21461049657600080fd5b806301ffc9a7146103b257806305654575146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004613e42565b610c84565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004613ebb565b610d21565b005b34801561041557600080fd5b5061041e610dbf565b6040516103de9190613f75565b34801561043757600080fd5b5061044b610446366004613f88565b610e51565b6040516001600160a01b0390911681526020016103de565b610407610471366004614019565b610eae565b34801561048257600080fd5b50610407610491366004614069565b611051565b3480156104a257600080fd5b5061040761117f565b3480156104b757600080fd5b506104076104c6366004614095565b611350565b3480156104d757600080fd5b50600154600054035b6040519081526020016103de565b3480156104fa57600080fd5b506104e0610509366004613f88565b6113fb565b34801561051a57600080fd5b5061040761052936600461415e565b61144c565b34801561053a57600080fd5b506104076114e9565b34801561054f57600080fd5b5061040761055e3660046141a5565b611579565b34801561056f57600080fd5b506104e0611a0a81565b34801561058557600080fd5b50610407610594366004613e42565b6115d4565b3480156105a557600080fd5b506105ae611653565b6040516103de939291906141e6565b3480156105c957600080fd5b50610407611801565b3480156105de57600080fd5b506104076118e6565b3480156105f357600080fd5b506104e07f000000000000000000000000000000000000000000000000000000000000000081565b34801561062757600080fd5b506104076106363660046141a5565b61194a565b34801561064757600080fd5b50601c5461044b906001600160a01b031681565b34801561066757600080fd5b506011546103d29060ff1681565b34801561068157600080fd5b50610695610690366004614229565b611965565b6040516103de919061425e565b3480156106ae57600080fd5b506104076106bd3660046142c9565b611a2c565b3480156106ce57600080fd5b5061044b6106dd366004613f88565b611ace565b3480156106ee57600080fd5b506104076106fd366004614349565b611ad9565b34801561070e57600080fd5b506104e061071d3660046143b5565b611bd0565b34801561072e57600080fd5b50610407611c38565b34801561074357600080fd5b506103d2610752366004613f88565b611c9c565b34801561076357600080fd5b506107776107723660046143b5565b611cee565b6040516103de91906143d2565b34801561079057600080fd5b50610407611de8565b3480156107a557600080fd5b506008546001600160a01b031661044b565b3480156107c357600080fd5b50601c546103d29074010000000000000000000000000000000000000000900460ff1681565b3480156107f557600080fd5b5061041e611eca565b34801561080a57600080fd5b5061041e611f58565b34801561081f57600080fd5b5061040761082e3660046143b5565b611f67565b34801561083f57600080fd5b5061077761084e36600461440a565b61202b565b34801561085f57600080fd5b5061040761086e36600461443f565b6121be565b34801561087f57600080fd5b5061040761088e366004614461565b6123c7565b34801561089f57600080fd5b506104076108ae3660046144d3565b612468565b3480156108bf57600080fd5b506104076108ce366004614511565b612516565b3480156108df57600080fd5b506104e06108ee366004613f88565b612692565b3480156108ff57600080fd5b506104e061090e366004613f88565b6126a9565b34801561091f57600080fd5b50600954600a54610961919067ffffffffffffffff81169068010000000000000000810463ffffffff16906c01000000000000000000000000900461ffff1684565b6040805194855267ffffffffffffffff909316602085015263ffffffff9091169183019190915261ffff1660608201526080016103de565b3480156109a557600080fd5b506104076109b4366004614553565b612766565b3480156109c557600080fd5b506103d26109d4366004613e42565b60126020526000908152604090205460ff1681565b3480156109f557600080fd5b50610a09610a04366004613f88565b6127c8565b6040516103de91906145bf565b348015610a2257600080fd5b50610407610a31366004614607565b612831565b348015610a4257600080fd5b5061041e612929565b348015610a5757600080fd5b5061041e610a66366004613f88565b612980565b348015610a7757600080fd5b50610acc610a86366004613f88565b601f6020526000908152604090205467ffffffffffffffff8082169168010000000000000000810490911690700100000000000000000000000000000000900460ff1683565b6040805167ffffffffffffffff94851681529390921660208401521515908201526060016103de565b348015610b0157600080fd5b506104e0610b10366004613f88565b612abd565b348015610b2157600080fd5b50610407610b30366004614511565b612b02565b610407610b43366004614694565b612c89565b348015610b5457600080fd5b506104e0612c94565b348015610b6957600080fd5b506104e06830ca024f987b90000081565b348015610b8657600080fd5b5061041e612cd9565b348015610b9b57600080fd5b50600b54600c54600d54610bb79291906001600160a01b031683565b6040805193845260208401929092526001600160a01b0316908201526060016103de565b348015610be757600080fd5b506103d2610bf63660046146d1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c3057600080fd5b50610407610c3f366004614511565b612ce6565b348015610c5057600080fd5b50610407610c5f3660046143b5565b612f02565b348015610c7057600080fd5b50610407610c7f366004614461565b612fe1565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610ce757507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610d1b57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b03163314610d805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051600b556020810151600c5560400151600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055565b606060028054610dce906146ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfa906146ff565b8015610e475780601f10610e1c57610100808354040283529160200191610e47565b820191906000526020600020905b815481529060010190602001808311610e2a57829003601f168201915b5050505050905090565b6000610e5c82613082565b610e92576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b54610ebc90849061474f565b3414610ef4576040517fbe38aab900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526005602052604090819020548391610f1e9186911c67ffffffffffffffff1661476e565b1115610f56576040517fa45d763c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260348101839052610ffc90610ff69060540160408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b826130a9565b600d546001600160a01b03908116911614611043576040517f14c2cea300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61104c836130c5565b505050565b600061105c8261313b565b9050806001600160a01b0316836001600160a01b0316036110a9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614611116576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16611116576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146111d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601380546111e6906146ff565b9050600003611221576040517f49d6d95600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6014541561125b576040517f7c21926900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954600a546040517f5d3b1d30000000000000000000000000000000000000000000000000000000008152600481019290925267ffffffffffffffff811660248301526c01000000000000000000000000810461ffff16604483015268010000000000000000900463ffffffff166064820152600160848201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690635d3b1d309060a4016020604051808303816000875af1158015611329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134d9190614786565b50565b6008546001600160a01b031633146113aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601454156113e4576040517f7c21926900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80516113f7906013906020840190613d1f565b5050565b600061140682613082565b61142357604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f602052604090205468010000000000000000900467ffffffffffffffff1690565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114df576040517f1cf993f40000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166024820152604401610d77565b6113f782826131bb565b60115460ff16611525576040517fb278254b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61154e7f5db001eb000000000000000000000000000000000000000000000000000000006115d4565b6115777f3b2c3fb6000000000000000000000000000000000000000000000000000000006115d4565b565b6000818152601f602052604090205467ffffffffffffffff16156115c9576040517fc1d796d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61104c838383613208565b6008546001600160a01b0316331461162e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6001600160e01b0319166000908152601260205260409020805460ff19166001179055565b600e80548190611662906146ff565b80601f016020809104026020016040519081016040528092919081815260200182805461168e906146ff565b80156116db5780601f106116b0576101008083540402835291602001916116db565b820191906000526020600020905b8154815290600101906020018083116116be57829003601f168201915b5050505050908060010180546116f0906146ff565b80601f016020809104026020016040519081016040528092919081815260200182805461171c906146ff565b80156117695780601f1061173e57610100808354040283529160200191611769565b820191906000526020600020905b81548152906001019060200180831161174c57829003601f168201915b50505050509080600201805461177e906146ff565b80601f01602080910402602001604051908101604052809291908181526020018280546117aa906146ff565b80156117f75780601f106117cc576101008083540402835291602001916117f7565b820191906000526020600020905b8154815290600101906020018083116117da57829003601f168201915b5050505050905083565b600080356001600160e01b03191681526012602052604090205460ff161561183c576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146118965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6014546000036118d2576040517f9bd7b6f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6011805460ff19811660ff90911615179055565b6008546001600160a01b031633146119405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6115773347613213565b61104c83838360405180602001604052806000815250612766565b805160609060008167ffffffffffffffff81111561198557611985613e5f565b6040519080825280602002602001820160405280156119d057816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816119a35790505b50905060005b828114611a24576119ff8582815181106119f2576119f261479f565b60200260200101516127c8565b828281518110611a1157611a1161479f565b60209081029190910101526001016119d6565b509392505050565b600080356001600160e01b03191681526012602052604090205460ff1615611a67576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611ac15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b80600e61104c8282614928565b6000610d1b8261313b565b600080356001600160e01b03191681526012602052604090205460ff1615611b14576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611b6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b60005b83811015611bc957611bc1858583818110611b8e57611b8e61479f565b9050602002016020810190611ba391906143b5565b848484818110611bb557611bb561479f565b9050602002013561332c565b600101611b71565b5050505050565b60006001600160a01b038216611c12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611c925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6115776000613440565b6000611ca782613082565b611cc457604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f6020526040902054700100000000000000000000000000000000900460ff1690565b60606000806000611cfe85611bd0565b905060008167ffffffffffffffff811115611d1b57611d1b613e5f565b604051908082528060200260200182016040528015611d44578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b838614611ddc57611d758161349f565b91508160400151611dd45781516001600160a01b031615611d9557815194505b876001600160a01b0316856001600160a01b031603611dd45780838780600101985081518110611dc757611dc761479f565b6020026020010181815250505b600101611d65565b50909695505050505050565b600080356001600160e01b03191681526012602052604090205460ff1615611e23576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611e7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601c80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b601e8054611ed7906146ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611f03906146ff565b8015611f505780601f10611f2557610100808354040283529160200191611f50565b820191906000526020600020905b815481529060010190602001808311611f3357829003601f168201915b505050505081565b606060038054610dce906146ff565b600080356001600160e01b03191681526012602052604090205460ff1615611fa2576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611ffc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6060818310612066576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061207260005490565b905080841115612080578093505b600061208b87611bd0565b9050848610156120aa57858503818110156120a4578091505b506120ae565b5060005b60008167ffffffffffffffff8111156120c9576120c9613e5f565b6040519080825280602002602001820160405280156120f2578160200160208202803683370190505b509050816000036121085793506121b792505050565b6000612113886127c8565b905060008160400151612124575080515b885b8881141580156121365750848714155b156121ab576121448161349f565b925082604001516121a35782516001600160a01b03161561216457825191505b8a6001600160a01b0316826001600160a01b0316036121a357808488806001019950815181106121965761219661479f565b6020026020010181815250505b600101612126565b50505092835250909150505b9392505050565b7f00000000000000000000000000000000000000000000000000000000000000008210612217576040517f987c726000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3361222183611ace565b6001600160a01b03161461224857604051631310933560e31b815260040160405180910390fd5b6000828152601f602052604081205467ffffffffffffffff169003612299576040517f9e13336b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a0a816122a660005490565b6122b0919061476e565b11156122e8576040517f130ebf3900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601c546001600160a01b0316639dc29fac3361230d846830ca024f987b90000061474f565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561235357600080fd5b505af1158015612367573d6000803e3d6000fd5b5050505060005b818110156123bb578061238060005490565b61238a919061476e565b6040517fec6fa41283bf7b2880d6b62a1b5d58715786782e21df1fbbff21174bbd818a1490600090a260010161236e565b506113f7335b8261332c565b600080356001600160e01b03191681526012602052604090205460ff1615612402576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b0316331461245c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b61104c601d8383613da3565b336001600160a01b038316036124aa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601c5474010000000000000000000000000000000000000000900460ff1661256a576040517f22f6034c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8181101561104c5760008383838181106125895761258961479f565b9050602002013590506125993390565b6001600160a01b03166125ab82611ace565b6001600160a01b0316146125d257604051631310933560e31b815260040160405180910390fd5b6000818152601f602052604090205467ffffffffffffffff1615612622576040517fc1d796d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152601f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000164267ffffffffffffffff161790555182917fd3f86ea4542edd7f92e6057d3da5d5b366670bc2c244e9eb9a878b55ee48f54391a25060010161256d565b601581600781106126a257600080fd5b0154905081565b60006126b482613082565b6126d157604051630a14c4b560e41b815260040160405180910390fd5b6000828152601f602052604081205467ffffffffffffffff1690036126f857506000919050565b6000828152601f602052604081205461271b9067ffffffffffffffff1642614a28565b905060005b600781101561275c57816015826007811061273d5761273d61479f565b0154111561274c579392505050565b61275581614a3f565b9050612720565b5060079392505050565b6000828152601f602052604090205467ffffffffffffffff16156127b6576040517fc1d796d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c28484848461350a565b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101839052909150600054831061280d5792915050565b6128168361349f565b90508060400151156128285792915050565b6121b783613567565b6008546001600160a01b0316331461288b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b80516009556020810151600a8054604084015160609094015161ffff166c01000000000000000000000000027fffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffff63ffffffff90951668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000000000000000000090921667ffffffffffffffff909416939093171792909216179055565b606060138054612938906146ff565b9050600003612973576040517f49d6d95600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60138054610dce906146ff565b606061298b82613082565b6129a857604051630a14c4b560e41b815260040160405180910390fd5b60115460ff1615612a26577f000000000000000000000000000000000000000000000000000000000000000082106129e157601e6129e4565b601d5b6129f56129f0846126a9565b6135cb565b6129fe846135cb565b604051602001612a1093929190614a59565b6040516020818303038152906040529050919050565b60108054612a33906146ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5f906146ff565b8015612aac5780601f10612a8157610100808354040283529160200191612aac565b820191906000526020600020905b815481529060010190602001808311612a8f57829003601f168201915b50505050509050919050565b919050565b6000612ac882613082565b612ae557604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f602052604090205467ffffffffffffffff1690565b60005b8181101561104c576000838383818110612b2157612b2161479f565b9050602002013590507f0000000000000000000000000000000000000000000000000000000000000000811015612b84576040517f987c726000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33612b8e82611ace565b6001600160a01b031614612bb557604051631310933560e31b815260040160405180910390fd5b6000818152601f6020526040902054700100000000000000000000000000000000900460ff1615612c12576040517fa24b7da400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152601f602052604080822080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff167001000000000000000000000000000000001790555182917f41f4827014e730c1462a154cf92d5fb47f524f5156cd1bdb55aba0aae00baab191a250600101612b05565b6113f7828383610eae565b6000601454600003612cd2576040517f9bd7b6f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060145490565b601d8054611ed7906146ff565b60005b8181101561104c576000838383818110612d0557612d0561479f565b905060200201359050612d153390565b6001600160a01b0316612d2782611ace565b6001600160a01b031614612d4e57604051631310933560e31b815260040160405180910390fd5b6000818152601f602052604081205467ffffffffffffffff169003612d9f576040517f9e13336b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601c546001600160a01b031615612e2357601c546001600160a01b031663aad3ec96336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b158015612e0a57600080fd5b505af1158015612e1e573d6000803e3d6000fd5b505050505b6000818152601f6020526040902054612e469067ffffffffffffffff1642614a28565b6000828152601f602052604090208054600890612e7a90849068010000000000000000900467ffffffffffffffff16614b1c565b825467ffffffffffffffff9182166101009390930a9283029190920219909116179055506000818152601f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001690555182917ff006f9bd525b94dad8e96110350b53cea534db4e7c720d78ad4fe17a9e02b81191a250600101612ce9565b6008546001600160a01b03163314612f5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6001600160a01b038116612fd85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d77565b61134d81613440565b600080356001600160e01b03191681526012602052604090205460ff161561301c576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146130765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b61104c601e8383613da3565b6000805482108015610d1b575050600090815260046020526040902054600160e01b161590565b60008060006130b8858561361a565b91509150611a2481613688565b7f0000000000000000000000000000000000000000000000000000000000000000816130f060005490565b6130fa919061476e565b1115613132576040517f130ebf3900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134d336123c1565b6000816000548110156131895760008181526004602052604081205490600160e01b82169003613187575b806000036121b7575060001901600081815260046020526040902054613166565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816000815181106131ef576131ef61479f565b60200260200101516132019190614b48565b6014555050565b61104c838383613874565b804710156132635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d77565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146132b0576040519150601f19603f3d011682016040523d82523d6000602084013e6132b5565b606091505b505090508061104c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d77565b6000546001600160a01b03831661336f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816000036133a9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106133f45750600055505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610d1b90604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b613515848484613874565b6001600160a01b0383163b156127c25761353184848484613aa9565b6127c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160608101825260008082526020820181905291810191909152610d1b6135908361313b565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604080516080810191829052607f0190826030600a8206018353600a90045b801561360857600183039250600a81066030018353600a90046135ea565b50819003601f19909101908152919050565b60008082516041036136505760208301516040840151606085015160001a61364487828585613be0565b94509450505050613681565b8251604003613679576020830151604084015161366e868383613ccd565b935093505050613681565b506000905060025b9250929050565b600081600481111561369c5761369c614b6a565b036136a45750565b60018160048111156136b8576136b8614b6a565b036137055760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d77565b600281600481111561371957613719614b6a565b036137665760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d77565b600381600481111561377a5761377a614b6a565b036137ed5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d77565b600481600481111561380157613801614b6a565b0361134d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d77565b600061387f8261313b565b9050836001600160a01b0316816001600160a01b0316146138cc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061390857506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b8061392357503361391884610e51565b6001600160a01b0316145b90508061395c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661399c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003613a6357600183016000818152600460205260408120549003613a61576000548114613a615760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bc9565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290613af7903390899088908890600401614b80565b6020604051808303816000875af1925050508015613b32575060408051601f3d908101601f19168201909252613b2f91810190614bb2565b60015b613ba9573d808015613b60576040519150601f19603f3d011682016040523d82523d6000602084013e613b65565b606091505b508051600003613ba1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613c175750600090506003613cc4565b8460ff16601b14158015613c2f57508460ff16601c14155b15613c405750600090506004613cc4565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613c94573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613cbd57600060019250925050613cc4565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613d0360ff86901c601b61476e565b9050613d1187828885613be0565b935093505050935093915050565b828054613d2b906146ff565b90600052602060002090601f016020900481019282613d4d5760008555613d93565b82601f10613d6657805160ff1916838001178555613d93565b82800160010185558215613d93579182015b82811115613d93578251825591602001919060010190613d78565b50613d9f929150613e17565b5090565b828054613daf906146ff565b90600052602060002090601f016020900481019282613dd15760008555613d93565b82601f10613dea5782800160ff19823516178555613d93565b82800160010185558215613d93579182015b82811115613d93578235825591602001919060010190613dfc565b5b80821115613d9f5760008155600101613e18565b6001600160e01b03198116811461134d57600080fd5b600060208284031215613e5457600080fd5b81356121b781613e2c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613e9e57613e9e613e5f565b604052919050565b6001600160a01b038116811461134d57600080fd5b600060608284031215613ecd57600080fd5b6040516060810181811067ffffffffffffffff82111715613ef057613ef0613e5f565b806040525082358152602083013560208201526040830135613f1181613ea6565b60408201529392505050565b60005b83811015613f38578181015183820152602001613f20565b838111156127c25750506000910152565b60008151808452613f61816020860160208601613f1d565b601f01601f19169290920160200192915050565b6020815260006121b76020830184613f49565b600060208284031215613f9a57600080fd5b5035919050565b600067ffffffffffffffff831115613fbb57613fbb613e5f565b613fce6020601f19601f86011601613e75565b9050828152838383011115613fe257600080fd5b828260208301376000602084830101529392505050565b600082601f83011261400a57600080fd5b6121b783833560208501613fa1565b60008060006060848603121561402e57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561405357600080fd5b61405f86828701613ff9565b9150509250925092565b6000806040838503121561407c57600080fd5b823561408781613ea6565b946020939093013593505050565b6000602082840312156140a757600080fd5b813567ffffffffffffffff8111156140be57600080fd5b8201601f810184136140cf57600080fd5b613bd884823560208401613fa1565b600082601f8301126140ef57600080fd5b8135602067ffffffffffffffff82111561410b5761410b613e5f565b8160051b61411a828201613e75565b928352848101820192828101908785111561413457600080fd5b83870192505b848310156141535782358252918301919083019061413a565b979650505050505050565b6000806040838503121561417157600080fd5b82359150602083013567ffffffffffffffff81111561418f57600080fd5b61419b858286016140de565b9150509250929050565b6000806000606084860312156141ba57600080fd5b83356141c581613ea6565b925060208401356141d581613ea6565b929592945050506040919091013590565b6060815260006141f96060830186613f49565b828103602084015261420b8186613f49565b9050828103604084015261421f8185613f49565b9695505050505050565b60006020828403121561423b57600080fd5b813567ffffffffffffffff81111561425257600080fd5b613bd8848285016140de565b6020808252825182820181905260009190848201906040850190845b81811015611ddc576142b683855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b928401926060929092019160010161427a565b6000602082840312156142db57600080fd5b813567ffffffffffffffff8111156142f257600080fd5b8201606081850312156121b757600080fd5b60008083601f84011261431657600080fd5b50813567ffffffffffffffff81111561432e57600080fd5b6020830191508360208260051b850101111561368157600080fd5b6000806000806040858703121561435f57600080fd5b843567ffffffffffffffff8082111561437757600080fd5b61438388838901614304565b9096509450602087013591508082111561439c57600080fd5b506143a987828801614304565b95989497509550505050565b6000602082840312156143c757600080fd5b81356121b781613ea6565b6020808252825182820181905260009190848201906040850190845b81811015611ddc578351835292840192918401916001016143ee565b60008060006060848603121561441f57600080fd5b833561442a81613ea6565b95602085013595506040909401359392505050565b6000806040838503121561445257600080fd5b50508035926020909101359150565b6000806020838503121561447457600080fd5b823567ffffffffffffffff8082111561448c57600080fd5b818501915085601f8301126144a057600080fd5b8135818111156144af57600080fd5b8660208285010111156144c157600080fd5b60209290920196919550909350505050565b600080604083850312156144e657600080fd5b82356144f181613ea6565b91506020830135801515811461450657600080fd5b809150509250929050565b6000806020838503121561452457600080fd5b823567ffffffffffffffff81111561453b57600080fd5b61454785828601614304565b90969095509350505050565b6000806000806080858703121561456957600080fd5b843561457481613ea6565b9350602085013561458481613ea6565b925060408501359150606085013567ffffffffffffffff8111156145a757600080fd5b6145b387828801613ff9565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608101610d1b565b803561ffff81168114612ab857600080fd5b60006080828403121561461957600080fd5b6040516080810167ffffffffffffffff828210818311171561463d5761463d613e5f565b816040528435835260208501359150808216821461465a57600080fd5b506020820152604083013563ffffffff8116811461467757600080fd5b6040820152614688606084016145f5565b60608201529392505050565b600080604083850312156146a757600080fd5b82359150602083013567ffffffffffffffff8111156146c557600080fd5b61419b85828601613ff9565b600080604083850312156146e457600080fd5b82356146ef81613ea6565b9150602083013561450681613ea6565b600181811c9082168061471357607f821691505b60208210810361473357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561476957614769614739565b500290565b6000821982111561478157614781614739565b500190565b60006020828403121561479857600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126147ea57600080fd5b83018035915067ffffffffffffffff82111561480557600080fd5b60200191503681900382131561368157600080fd5b601f82111561104c57600081815260208120601f850160051c810160208610156148415750805b601f850160051c820191505b818110156148605782815560010161484d565b505050505050565b67ffffffffffffffff83111561488057614880613e5f565b6148948361488e83546146ff565b8361481a565b6000601f8411600181146148c857600085156148b05750838201355b600019600387901b1c1916600186901b178355611bc9565b600083815260209020601f19861690835b828110156148f957868501358255602094850194600190920191016148d9565b50868210156149165760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b61493282836147b5565b67ffffffffffffffff81111561494a5761494a613e5f565b61495e8161495885546146ff565b8561481a565b6000601f821160018114614992576000831561497a5750838201355b600019600385901b1c1916600184901b1785556149ec565b600085815260209020601f19841690835b828110156149c357868501358255602094850194600190920191016149a3565b50848210156149e05760001960f88660031b161c19848701351681555b505060018360011b0185555b505050506149fd60208301836147b5565b614a0b818360018601614868565b5050614a1a60408301836147b5565b6127c2818360028601614868565b600082821015614a3a57614a3a614739565b500390565b60006000198203614a5257614a52614739565b5060010190565b6000808554614a67816146ff565b60018281168015614a7f5760018114614a9057614abf565b60ff19841687528287019450614abf565b8960005260208060002060005b85811015614ab65781548a820152908401908201614a9d565b50505082870194505b5087519250614ad2838560208b01613f1d565b7f2f0000000000000000000000000000000000000000000000000000000000000093909201928352855191614b0d8382860160208a01613f1d565b91909201019695505050505050565b600067ffffffffffffffff808316818516808303821115614b3f57614b3f614739565b01949350505050565b600082614b6557634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b0380871683528086166020840152508360408301526080606083015261421f6080830184613f49565b600060208284031215614bc457600080fd5b81516121b781613e2c56fea26469706673582212203e7f7dd74ef22dd3527b982046638684d036d63c108fe672accbbe94b51c26c664736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000b9e0b4496faa96bc024fceec858f776b9b78fc7a000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699098af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef000000000000000000000000000000000000000000000000000000000000002f
Deployed Bytecode
0x6080604052600436106103ad5760003560e01c80638da5cb5b116101e7578063c23dc68f1161010d578063dc8c57b4116100a0578063e985e9c51161006f578063e985e9c514610bdb578063f292d6b414610c24578063f2fde38b14610c44578063fb9d154014610c6457600080fd5b8063dc8c57b414610b48578063e13c475b14610b5d578063e2cb4e3014610b7a578063e7cc724414610b8f57600080fd5b8063cc33c875116100dc578063cc33c87514610a6b578063cd197a4f14610af5578063d085c27214610b15578063db7fd40814610b3557600080fd5b8063c23dc68f146109e9578063c5a5949814610a16578063c6ab67a314610a36578063c87b56dd14610a4b57600080fd5b80639f5081b911610185578063b37c191b11610154578063b37c191b146108f3578063b72e9f3614610913578063b88d4fde14610999578063bbadfe76146109b957600080fd5b80639f5081b914610873578063a22cb46514610893578063aa4b7b3e146108b3578063ada3aa88146108d357600080fd5b806395d89b41116101c157806395d89b41146107fe57806396c385271461081357806399a2557a146108335780639bd3eb421461085357600080fd5b80638da5cb5b146107995780638eb2f8ed146107b75780639537beb5146107e957600080fd5b8063392f37e9116102d75780635db001eb1161026a578063715018a611610239578063715018a61461072257806381842d8f146107375780638462151c1461075757806389a656071461078457600080fd5b80635db001eb146106a25780636352211e146106c257806367243482146106e257806370a082311461070257600080fd5b806342842e0e116102a657806342842e0e1461061b5780634bd37ca31461063b578063518302271461065b5780635bbb21771461067557600080fd5b8063392f37e9146105995780633b2c3fb6146105bd5780633ccfd60b146105d25780633f879faf146105e757600080fd5b8063109695231161034f57806321af7e181161031e57806321af7e181461052e57806323b872dd1461054357806332cb6b0c14610563578063345318281461057957600080fd5b806310969523146104ab57806318160ddd146104cb5780631d8c9420146104ee5780631fe543e31461050e57600080fd5b8063081812fc1161038b578063081812fc1461042b57806308dc9f4214610463578063095ea7b3146104765780630f1876a21461049657600080fd5b806301ffc9a7146103b257806305654575146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004613e42565b610c84565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004613ebb565b610d21565b005b34801561041557600080fd5b5061041e610dbf565b6040516103de9190613f75565b34801561043757600080fd5b5061044b610446366004613f88565b610e51565b6040516001600160a01b0390911681526020016103de565b610407610471366004614019565b610eae565b34801561048257600080fd5b50610407610491366004614069565b611051565b3480156104a257600080fd5b5061040761117f565b3480156104b757600080fd5b506104076104c6366004614095565b611350565b3480156104d757600080fd5b50600154600054035b6040519081526020016103de565b3480156104fa57600080fd5b506104e0610509366004613f88565b6113fb565b34801561051a57600080fd5b5061040761052936600461415e565b61144c565b34801561053a57600080fd5b506104076114e9565b34801561054f57600080fd5b5061040761055e3660046141a5565b611579565b34801561056f57600080fd5b506104e0611a0a81565b34801561058557600080fd5b50610407610594366004613e42565b6115d4565b3480156105a557600080fd5b506105ae611653565b6040516103de939291906141e6565b3480156105c957600080fd5b50610407611801565b3480156105de57600080fd5b506104076118e6565b3480156105f357600080fd5b506104e07f0000000000000000000000000000000000000000000000000000000000000d0581565b34801561062757600080fd5b506104076106363660046141a5565b61194a565b34801561064757600080fd5b50601c5461044b906001600160a01b031681565b34801561066757600080fd5b506011546103d29060ff1681565b34801561068157600080fd5b50610695610690366004614229565b611965565b6040516103de919061425e565b3480156106ae57600080fd5b506104076106bd3660046142c9565b611a2c565b3480156106ce57600080fd5b5061044b6106dd366004613f88565b611ace565b3480156106ee57600080fd5b506104076106fd366004614349565b611ad9565b34801561070e57600080fd5b506104e061071d3660046143b5565b611bd0565b34801561072e57600080fd5b50610407611c38565b34801561074357600080fd5b506103d2610752366004613f88565b611c9c565b34801561076357600080fd5b506107776107723660046143b5565b611cee565b6040516103de91906143d2565b34801561079057600080fd5b50610407611de8565b3480156107a557600080fd5b506008546001600160a01b031661044b565b3480156107c357600080fd5b50601c546103d29074010000000000000000000000000000000000000000900460ff1681565b3480156107f557600080fd5b5061041e611eca565b34801561080a57600080fd5b5061041e611f58565b34801561081f57600080fd5b5061040761082e3660046143b5565b611f67565b34801561083f57600080fd5b5061077761084e36600461440a565b61202b565b34801561085f57600080fd5b5061040761086e36600461443f565b6121be565b34801561087f57600080fd5b5061040761088e366004614461565b6123c7565b34801561089f57600080fd5b506104076108ae3660046144d3565b612468565b3480156108bf57600080fd5b506104076108ce366004614511565b612516565b3480156108df57600080fd5b506104e06108ee366004613f88565b612692565b3480156108ff57600080fd5b506104e061090e366004613f88565b6126a9565b34801561091f57600080fd5b50600954600a54610961919067ffffffffffffffff81169068010000000000000000810463ffffffff16906c01000000000000000000000000900461ffff1684565b6040805194855267ffffffffffffffff909316602085015263ffffffff9091169183019190915261ffff1660608201526080016103de565b3480156109a557600080fd5b506104076109b4366004614553565b612766565b3480156109c557600080fd5b506103d26109d4366004613e42565b60126020526000908152604090205460ff1681565b3480156109f557600080fd5b50610a09610a04366004613f88565b6127c8565b6040516103de91906145bf565b348015610a2257600080fd5b50610407610a31366004614607565b612831565b348015610a4257600080fd5b5061041e612929565b348015610a5757600080fd5b5061041e610a66366004613f88565b612980565b348015610a7757600080fd5b50610acc610a86366004613f88565b601f6020526000908152604090205467ffffffffffffffff8082169168010000000000000000810490911690700100000000000000000000000000000000900460ff1683565b6040805167ffffffffffffffff94851681529390921660208401521515908201526060016103de565b348015610b0157600080fd5b506104e0610b10366004613f88565b612abd565b348015610b2157600080fd5b50610407610b30366004614511565b612b02565b610407610b43366004614694565b612c89565b348015610b5457600080fd5b506104e0612c94565b348015610b6957600080fd5b506104e06830ca024f987b90000081565b348015610b8657600080fd5b5061041e612cd9565b348015610b9b57600080fd5b50600b54600c54600d54610bb79291906001600160a01b031683565b6040805193845260208401929092526001600160a01b0316908201526060016103de565b348015610be757600080fd5b506103d2610bf63660046146d1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c3057600080fd5b50610407610c3f366004614511565b612ce6565b348015610c5057600080fd5b50610407610c5f3660046143b5565b612f02565b348015610c7057600080fd5b50610407610c7f366004614461565b612fe1565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610ce757507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610d1b57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b03163314610d805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051600b556020810151600c5560400151600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055565b606060028054610dce906146ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfa906146ff565b8015610e475780601f10610e1c57610100808354040283529160200191610e47565b820191906000526020600020905b815481529060010190602001808311610e2a57829003601f168201915b5050505050905090565b6000610e5c82613082565b610e92576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b54610ebc90849061474f565b3414610ef4576040517fbe38aab900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526005602052604090819020548391610f1e9186911c67ffffffffffffffff1661476e565b1115610f56576040517fa45d763c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260348101839052610ffc90610ff69060540160408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b826130a9565b600d546001600160a01b03908116911614611043576040517f14c2cea300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61104c836130c5565b505050565b600061105c8261313b565b9050806001600160a01b0316836001600160a01b0316036110a9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614611116576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16611116576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146111d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601380546111e6906146ff565b9050600003611221576040517f49d6d95600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6014541561125b576040517f7c21926900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954600a546040517f5d3b1d30000000000000000000000000000000000000000000000000000000008152600481019290925267ffffffffffffffff811660248301526c01000000000000000000000000810461ffff16604483015268010000000000000000900463ffffffff166064820152600160848201527f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699096001600160a01b031690635d3b1d309060a4016020604051808303816000875af1158015611329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134d9190614786565b50565b6008546001600160a01b031633146113aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601454156113e4576040517f7c21926900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80516113f7906013906020840190613d1f565b5050565b600061140682613082565b61142357604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f602052604090205468010000000000000000900467ffffffffffffffff1690565b336001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e6990916146114df576040517f1cf993f40000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b037f000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e69909166024820152604401610d77565b6113f782826131bb565b60115460ff16611525576040517fb278254b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61154e7f5db001eb000000000000000000000000000000000000000000000000000000006115d4565b6115777f3b2c3fb6000000000000000000000000000000000000000000000000000000006115d4565b565b6000818152601f602052604090205467ffffffffffffffff16156115c9576040517fc1d796d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61104c838383613208565b6008546001600160a01b0316331461162e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6001600160e01b0319166000908152601260205260409020805460ff19166001179055565b600e80548190611662906146ff565b80601f016020809104026020016040519081016040528092919081815260200182805461168e906146ff565b80156116db5780601f106116b0576101008083540402835291602001916116db565b820191906000526020600020905b8154815290600101906020018083116116be57829003601f168201915b5050505050908060010180546116f0906146ff565b80601f016020809104026020016040519081016040528092919081815260200182805461171c906146ff565b80156117695780601f1061173e57610100808354040283529160200191611769565b820191906000526020600020905b81548152906001019060200180831161174c57829003601f168201915b50505050509080600201805461177e906146ff565b80601f01602080910402602001604051908101604052809291908181526020018280546117aa906146ff565b80156117f75780601f106117cc576101008083540402835291602001916117f7565b820191906000526020600020905b8154815290600101906020018083116117da57829003601f168201915b5050505050905083565b600080356001600160e01b03191681526012602052604090205460ff161561183c576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146118965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6014546000036118d2576040517f9bd7b6f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6011805460ff19811660ff90911615179055565b6008546001600160a01b031633146119405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6115773347613213565b61104c83838360405180602001604052806000815250612766565b805160609060008167ffffffffffffffff81111561198557611985613e5f565b6040519080825280602002602001820160405280156119d057816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816119a35790505b50905060005b828114611a24576119ff8582815181106119f2576119f261479f565b60200260200101516127c8565b828281518110611a1157611a1161479f565b60209081029190910101526001016119d6565b509392505050565b600080356001600160e01b03191681526012602052604090205460ff1615611a67576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611ac15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b80600e61104c8282614928565b6000610d1b8261313b565b600080356001600160e01b03191681526012602052604090205460ff1615611b14576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611b6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b60005b83811015611bc957611bc1858583818110611b8e57611b8e61479f565b9050602002016020810190611ba391906143b5565b848484818110611bb557611bb561479f565b9050602002013561332c565b600101611b71565b5050505050565b60006001600160a01b038216611c12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611c925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6115776000613440565b6000611ca782613082565b611cc457604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f6020526040902054700100000000000000000000000000000000900460ff1690565b60606000806000611cfe85611bd0565b905060008167ffffffffffffffff811115611d1b57611d1b613e5f565b604051908082528060200260200182016040528015611d44578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b838614611ddc57611d758161349f565b91508160400151611dd45781516001600160a01b031615611d9557815194505b876001600160a01b0316856001600160a01b031603611dd45780838780600101985081518110611dc757611dc761479f565b6020026020010181815250505b600101611d65565b50909695505050505050565b600080356001600160e01b03191681526012602052604090205460ff1615611e23576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611e7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601c80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b601e8054611ed7906146ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611f03906146ff565b8015611f505780601f10611f2557610100808354040283529160200191611f50565b820191906000526020600020905b815481529060010190602001808311611f3357829003601f168201915b505050505081565b606060038054610dce906146ff565b600080356001600160e01b03191681526012602052604090205460ff1615611fa2576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611ffc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b601c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6060818310612066576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061207260005490565b905080841115612080578093505b600061208b87611bd0565b9050848610156120aa57858503818110156120a4578091505b506120ae565b5060005b60008167ffffffffffffffff8111156120c9576120c9613e5f565b6040519080825280602002602001820160405280156120f2578160200160208202803683370190505b509050816000036121085793506121b792505050565b6000612113886127c8565b905060008160400151612124575080515b885b8881141580156121365750848714155b156121ab576121448161349f565b925082604001516121a35782516001600160a01b03161561216457825191505b8a6001600160a01b0316826001600160a01b0316036121a357808488806001019950815181106121965761219661479f565b6020026020010181815250505b600101612126565b50505092835250909150505b9392505050565b7f0000000000000000000000000000000000000000000000000000000000000d058210612217576040517f987c726000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3361222183611ace565b6001600160a01b03161461224857604051631310933560e31b815260040160405180910390fd5b6000828152601f602052604081205467ffffffffffffffff169003612299576040517f9e13336b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a0a816122a660005490565b6122b0919061476e565b11156122e8576040517f130ebf3900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601c546001600160a01b0316639dc29fac3361230d846830ca024f987b90000061474f565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561235357600080fd5b505af1158015612367573d6000803e3d6000fd5b5050505060005b818110156123bb578061238060005490565b61238a919061476e565b6040517fec6fa41283bf7b2880d6b62a1b5d58715786782e21df1fbbff21174bbd818a1490600090a260010161236e565b506113f7335b8261332c565b600080356001600160e01b03191681526012602052604090205460ff1615612402576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b0316331461245c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b61104c601d8383613da3565b336001600160a01b038316036124aa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601c5474010000000000000000000000000000000000000000900460ff1661256a576040517f22f6034c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8181101561104c5760008383838181106125895761258961479f565b9050602002013590506125993390565b6001600160a01b03166125ab82611ace565b6001600160a01b0316146125d257604051631310933560e31b815260040160405180910390fd5b6000818152601f602052604090205467ffffffffffffffff1615612622576040517fc1d796d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152601f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000164267ffffffffffffffff161790555182917fd3f86ea4542edd7f92e6057d3da5d5b366670bc2c244e9eb9a878b55ee48f54391a25060010161256d565b601581600781106126a257600080fd5b0154905081565b60006126b482613082565b6126d157604051630a14c4b560e41b815260040160405180910390fd5b6000828152601f602052604081205467ffffffffffffffff1690036126f857506000919050565b6000828152601f602052604081205461271b9067ffffffffffffffff1642614a28565b905060005b600781101561275c57816015826007811061273d5761273d61479f565b0154111561274c579392505050565b61275581614a3f565b9050612720565b5060079392505050565b6000828152601f602052604090205467ffffffffffffffff16156127b6576040517fc1d796d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c28484848461350a565b50505050565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101839052909150600054831061280d5792915050565b6128168361349f565b90508060400151156128285792915050565b6121b783613567565b6008546001600160a01b0316331461288b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b80516009556020810151600a8054604084015160609094015161ffff166c01000000000000000000000000027fffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffff63ffffffff90951668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000000000000000000090921667ffffffffffffffff909416939093171792909216179055565b606060138054612938906146ff565b9050600003612973576040517f49d6d95600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60138054610dce906146ff565b606061298b82613082565b6129a857604051630a14c4b560e41b815260040160405180910390fd5b60115460ff1615612a26577f0000000000000000000000000000000000000000000000000000000000000d0582106129e157601e6129e4565b601d5b6129f56129f0846126a9565b6135cb565b6129fe846135cb565b604051602001612a1093929190614a59565b6040516020818303038152906040529050919050565b60108054612a33906146ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612a5f906146ff565b8015612aac5780601f10612a8157610100808354040283529160200191612aac565b820191906000526020600020905b815481529060010190602001808311612a8f57829003601f168201915b50505050509050919050565b919050565b6000612ac882613082565b612ae557604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f602052604090205467ffffffffffffffff1690565b60005b8181101561104c576000838383818110612b2157612b2161479f565b9050602002013590507f0000000000000000000000000000000000000000000000000000000000000d05811015612b84576040517f987c726000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33612b8e82611ace565b6001600160a01b031614612bb557604051631310933560e31b815260040160405180910390fd5b6000818152601f6020526040902054700100000000000000000000000000000000900460ff1615612c12576040517fa24b7da400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152601f602052604080822080547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff167001000000000000000000000000000000001790555182917f41f4827014e730c1462a154cf92d5fb47f524f5156cd1bdb55aba0aae00baab191a250600101612b05565b6113f7828383610eae565b6000601454600003612cd2576040517f9bd7b6f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060145490565b601d8054611ed7906146ff565b60005b8181101561104c576000838383818110612d0557612d0561479f565b905060200201359050612d153390565b6001600160a01b0316612d2782611ace565b6001600160a01b031614612d4e57604051631310933560e31b815260040160405180910390fd5b6000818152601f602052604081205467ffffffffffffffff169003612d9f576040517f9e13336b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601c546001600160a01b031615612e2357601c546001600160a01b031663aad3ec96336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b158015612e0a57600080fd5b505af1158015612e1e573d6000803e3d6000fd5b505050505b6000818152601f6020526040902054612e469067ffffffffffffffff1642614a28565b6000828152601f602052604090208054600890612e7a90849068010000000000000000900467ffffffffffffffff16614b1c565b825467ffffffffffffffff9182166101009390930a9283029190920219909116179055506000818152601f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001690555182917ff006f9bd525b94dad8e96110350b53cea534db4e7c720d78ad4fe17a9e02b81191a250600101612ce9565b6008546001600160a01b03163314612f5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b6001600160a01b038116612fd85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d77565b61134d81613440565b600080356001600160e01b03191681526012602052604090205460ff161561301c576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146130765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d77565b61104c601e8383613da3565b6000805482108015610d1b575050600090815260046020526040902054600160e01b161590565b60008060006130b8858561361a565b91509150611a2481613688565b7f0000000000000000000000000000000000000000000000000000000000000d05816130f060005490565b6130fa919061476e565b1115613132576040517f130ebf3900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134d336123c1565b6000816000548110156131895760008181526004602052604081205490600160e01b82169003613187575b806000036121b7575060001901600081815260046020526040902054613166565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d05816000815181106131ef576131ef61479f565b60200260200101516132019190614b48565b6014555050565b61104c838383613874565b804710156132635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d77565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146132b0576040519150601f19603f3d011682016040523d82523d6000602084013e6132b5565b606091505b505090508061104c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d77565b6000546001600160a01b03831661336f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816000036133a9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106133f45750600055505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610d1b90604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b613515848484613874565b6001600160a01b0383163b156127c25761353184848484613aa9565b6127c2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160608101825260008082526020820181905291810191909152610d1b6135908361313b565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604080516080810191829052607f0190826030600a8206018353600a90045b801561360857600183039250600a81066030018353600a90046135ea565b50819003601f19909101908152919050565b60008082516041036136505760208301516040840151606085015160001a61364487828585613be0565b94509450505050613681565b8251604003613679576020830151604084015161366e868383613ccd565b935093505050613681565b506000905060025b9250929050565b600081600481111561369c5761369c614b6a565b036136a45750565b60018160048111156136b8576136b8614b6a565b036137055760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d77565b600281600481111561371957613719614b6a565b036137665760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d77565b600381600481111561377a5761377a614b6a565b036137ed5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d77565b600481600481111561380157613801614b6a565b0361134d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d77565b600061387f8261313b565b9050836001600160a01b0316816001600160a01b0316146138cc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061390857506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b8061392357503361391884610e51565b6001600160a01b0316145b90508061395c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661399c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003613a6357600183016000818152600460205260408120549003613a61576000548114613a615760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bc9565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290613af7903390899088908890600401614b80565b6020604051808303816000875af1925050508015613b32575060408051601f3d908101601f19168201909252613b2f91810190614bb2565b60015b613ba9573d808015613b60576040519150601f19603f3d011682016040523d82523d6000602084013e613b65565b606091505b508051600003613ba1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613c175750600090506003613cc4565b8460ff16601b14158015613c2f57508460ff16601c14155b15613c405750600090506004613cc4565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613c94573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613cbd57600060019250925050613cc4565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613d0360ff86901c601b61476e565b9050613d1187828885613be0565b935093505050935093915050565b828054613d2b906146ff565b90600052602060002090601f016020900481019282613d4d5760008555613d93565b82601f10613d6657805160ff1916838001178555613d93565b82800160010185558215613d93579182015b82811115613d93578251825591602001919060010190613d78565b50613d9f929150613e17565b5090565b828054613daf906146ff565b90600052602060002090601f016020900481019282613dd15760008555613d93565b82601f10613dea5782800160ff19823516178555613d93565b82800160010185558215613d93579182015b82811115613d93578235825591602001919060010190613dfc565b5b80821115613d9f5760008155600101613e18565b6001600160e01b03198116811461134d57600080fd5b600060208284031215613e5457600080fd5b81356121b781613e2c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613e9e57613e9e613e5f565b604052919050565b6001600160a01b038116811461134d57600080fd5b600060608284031215613ecd57600080fd5b6040516060810181811067ffffffffffffffff82111715613ef057613ef0613e5f565b806040525082358152602083013560208201526040830135613f1181613ea6565b60408201529392505050565b60005b83811015613f38578181015183820152602001613f20565b838111156127c25750506000910152565b60008151808452613f61816020860160208601613f1d565b601f01601f19169290920160200192915050565b6020815260006121b76020830184613f49565b600060208284031215613f9a57600080fd5b5035919050565b600067ffffffffffffffff831115613fbb57613fbb613e5f565b613fce6020601f19601f86011601613e75565b9050828152838383011115613fe257600080fd5b828260208301376000602084830101529392505050565b600082601f83011261400a57600080fd5b6121b783833560208501613fa1565b60008060006060848603121561402e57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561405357600080fd5b61405f86828701613ff9565b9150509250925092565b6000806040838503121561407c57600080fd5b823561408781613ea6565b946020939093013593505050565b6000602082840312156140a757600080fd5b813567ffffffffffffffff8111156140be57600080fd5b8201601f810184136140cf57600080fd5b613bd884823560208401613fa1565b600082601f8301126140ef57600080fd5b8135602067ffffffffffffffff82111561410b5761410b613e5f565b8160051b61411a828201613e75565b928352848101820192828101908785111561413457600080fd5b83870192505b848310156141535782358252918301919083019061413a565b979650505050505050565b6000806040838503121561417157600080fd5b82359150602083013567ffffffffffffffff81111561418f57600080fd5b61419b858286016140de565b9150509250929050565b6000806000606084860312156141ba57600080fd5b83356141c581613ea6565b925060208401356141d581613ea6565b929592945050506040919091013590565b6060815260006141f96060830186613f49565b828103602084015261420b8186613f49565b9050828103604084015261421f8185613f49565b9695505050505050565b60006020828403121561423b57600080fd5b813567ffffffffffffffff81111561425257600080fd5b613bd8848285016140de565b6020808252825182820181905260009190848201906040850190845b81811015611ddc576142b683855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b928401926060929092019160010161427a565b6000602082840312156142db57600080fd5b813567ffffffffffffffff8111156142f257600080fd5b8201606081850312156121b757600080fd5b60008083601f84011261431657600080fd5b50813567ffffffffffffffff81111561432e57600080fd5b6020830191508360208260051b850101111561368157600080fd5b6000806000806040858703121561435f57600080fd5b843567ffffffffffffffff8082111561437757600080fd5b61438388838901614304565b9096509450602087013591508082111561439c57600080fd5b506143a987828801614304565b95989497509550505050565b6000602082840312156143c757600080fd5b81356121b781613ea6565b6020808252825182820181905260009190848201906040850190845b81811015611ddc578351835292840192918401916001016143ee565b60008060006060848603121561441f57600080fd5b833561442a81613ea6565b95602085013595506040909401359392505050565b6000806040838503121561445257600080fd5b50508035926020909101359150565b6000806020838503121561447457600080fd5b823567ffffffffffffffff8082111561448c57600080fd5b818501915085601f8301126144a057600080fd5b8135818111156144af57600080fd5b8660208285010111156144c157600080fd5b60209290920196919550909350505050565b600080604083850312156144e657600080fd5b82356144f181613ea6565b91506020830135801515811461450657600080fd5b809150509250929050565b6000806020838503121561452457600080fd5b823567ffffffffffffffff81111561453b57600080fd5b61454785828601614304565b90969095509350505050565b6000806000806080858703121561456957600080fd5b843561457481613ea6565b9350602085013561458481613ea6565b925060408501359150606085013567ffffffffffffffff8111156145a757600080fd5b6145b387828801613ff9565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608101610d1b565b803561ffff81168114612ab857600080fd5b60006080828403121561461957600080fd5b6040516080810167ffffffffffffffff828210818311171561463d5761463d613e5f565b816040528435835260208501359150808216821461465a57600080fd5b506020820152604083013563ffffffff8116811461467757600080fd5b6040820152614688606084016145f5565b60608201529392505050565b600080604083850312156146a757600080fd5b82359150602083013567ffffffffffffffff8111156146c557600080fd5b61419b85828601613ff9565b600080604083850312156146e457600080fd5b82356146ef81613ea6565b9150602083013561450681613ea6565b600181811c9082168061471357607f821691505b60208210810361473357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561476957614769614739565b500290565b6000821982111561478157614781614739565b500190565b60006020828403121561479857600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126147ea57600080fd5b83018035915067ffffffffffffffff82111561480557600080fd5b60200191503681900382131561368157600080fd5b601f82111561104c57600081815260208120601f850160051c810160208610156148415750805b601f850160051c820191505b818110156148605782815560010161484d565b505050505050565b67ffffffffffffffff83111561488057614880613e5f565b6148948361488e83546146ff565b8361481a565b6000601f8411600181146148c857600085156148b05750838201355b600019600387901b1c1916600186901b178355611bc9565b600083815260209020601f19861690835b828110156148f957868501358255602094850194600190920191016148d9565b50868210156149165760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b61493282836147b5565b67ffffffffffffffff81111561494a5761494a613e5f565b61495e8161495885546146ff565b8561481a565b6000601f821160018114614992576000831561497a5750838201355b600019600385901b1c1916600184901b1785556149ec565b600085815260209020601f19841690835b828110156149c357868501358255602094850194600190920191016149a3565b50848210156149e05760001960f88660031b161c19848701351681555b505060018360011b0185555b505050506149fd60208301836147b5565b614a0b818360018601614868565b5050614a1a60408301836147b5565b6127c2818360028601614868565b600082821015614a3a57614a3a614739565b500390565b60006000198203614a5257614a52614739565b5060010190565b6000808554614a67816146ff565b60018281168015614a7f5760018114614a9057614abf565b60ff19841687528287019450614abf565b8960005260208060002060005b85811015614ab65781548a820152908401908201614a9d565b50505082870194505b5087519250614ad2838560208b01613f1d565b7f2f0000000000000000000000000000000000000000000000000000000000000093909201928352855191614b0d8382860160208a01613f1d565b91909201019695505050505050565b600067ffffffffffffffff808316818516808303821115614b3f57614b3f614739565b01949350505050565b600082614b6557634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b0380871683528086166020840152508360408301526080606083015261421f6080830184613f49565b600060208284031215614bc457600080fd5b81516121b781613e2c56fea26469706673582212203e7f7dd74ef22dd3527b982046638684d036d63c108fe672accbbe94b51c26c664736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b9e0b4496faa96bc024fceec858f776b9b78fc7a000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e699098af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef000000000000000000000000000000000000000000000000000000000000002f
-----Decoded View---------------
Arg [0] : signer (address): 0xB9E0b4496FAA96bC024fcEec858F776b9B78fc7A
Arg [1] : vrfCoordinator (address): 0x271682DEB8C4E0901D1a1550aD2e64D568E69909
Arg [2] : keyHash (bytes32): 0x8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
Arg [3] : subId (uint64): 47
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b9e0b4496faa96bc024fceec858f776b9b78fc7a
Arg [1] : 000000000000000000000000271682deb8c4e0901d1a1550ad2e64d568e69909
Arg [2] : 8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.