ERC-721
NFT
Overview
Max Total Supply
6,666 ASWANG
Holders
1,349
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 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 200 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_EggNotHatched(); error AswangTribe_InvalidTokenId(); error AswangTribe_PrayingDisabled(); error AswangTribe_SenderNotTokenOwner(); error AswangTribe_TokenAlreadyPraying(); error AswangTribe_TokenNotPraying(); interface IAswang { function tokenOffset() external view returns (uint256); function provenanceHash() external view returns (string memory); } /** .,,,,. ,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; } IAswang public immutable ASWANG_V0; 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 aswangV0, string memory _genesisUri, string memory _manananggalURI ) ERC721ABase( "AswangTribe", "ASWANG", 3333, address(0) ) { ASWANG_V0 = IAswang(aswangV0); RANK_DURATIONS = [30 days, 90 days, 180 days, 365 days, 1095 days, 12045 days, 121545 days]; genesisURI = _genesisUri; manananggalURI = _manananggalURI; prayingEnabled = true; revealed = 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( isGenesis(tokenId) ? genesisURI : manananggalURI, _toString(rank(tokenId)), "/", _toString(tokenId)) ); } else { return metadata.placeholderURI; } } /** * @inheritdoc ERC721ABase * @dev Relays value from V0 contract */ function tokenOffset() public view override returns (uint256) { return ASWANG_V0.tokenOffset(); } /** * @inheritdoc ERC721ABase * @dev Relays value from V0 contract */ function provenanceHash() public view override returns (string memory) { return ASWANG_V0.provenanceHash(); } /** * @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 TODO * @param tokenId TODO * @return bool TODO */ function isGenesis(uint256 tokenId) public view returns (bool) { return tokenId < MAX_MINTABLE; } /** * @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_TokenAlreadyPraying(); if (!isGenesis(tokenId) && !tokenInfo[tokenId].hatched) revert AswangTribe_EggNotHatched(); 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(); _stopPraying(tokenId, _msgSender()); unchecked { ++i; } } } /** * @notice Internal function to stop !praying * @param tokenId Token to stop !praying * @param dugoReceiver Address to receive the earned $DUGO */ function _stopPraying(uint256 tokenId, address dugoReceiver) internal { if (address(Dugo) != address(0)) Dugo.claim(dugoReceiver, tokenId); tokenInfo[tokenId].totalTimePraying += uint64(block.timestamp - tokenInfo[tokenId].prayingStartedAt); tokenInfo[tokenId].prayingStartedAt = 0; emit StopPraying(tokenId); } /** * @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 (!isGenesis(tokenId)) 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 (isGenesis(tokenId)) 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 Stop !praying and claim tokens to transfer receiver */ function transferFrom(address from, address to, uint256 tokenId) public override(IERC721A, ERC721A) { if (tokenInfo[tokenId].prayingStartedAt > 0) _stopPraying(tokenId, to); ERC721A.transferFrom(from, to, tokenId); } /** * @inheritdoc ERC721A * @dev Stop !praying and claim tokens to transfer receiver */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(IERC721A, ERC721A) { if (tokenInfo[tokenId].prayingStartedAt > 0) _stopPraying(tokenId, to); ERC721A.safeTransferFrom(from, to, tokenId, data); } }
// 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 virtual 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 virtual 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: 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: 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 pragma solidity ^0.8.0; /** **************************************************************************** * @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 // 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 // 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 (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 // 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 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 // 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 // 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 // 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; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"aswangV0","type":"address"},{"internalType":"string","name":"_genesisUri","type":"string"},{"internalType":"string","name":"_manananggalURI","type":"string"}],"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_EggNotHatched","type":"error"},{"inputs":[],"name":"AswangTribe_InvalidTokenId","type":"error"},{"inputs":[],"name":"AswangTribe_PrayingDisabled","type":"error"},{"inputs":[],"name":"AswangTribe_SenderNotTokenOwner","type":"error"},{"inputs":[],"name":"AswangTribe_TokenAlreadyPraying","type":"error"},{"inputs":[],"name":"AswangTribe_TokenNotPraying","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":"ASWANG_V0","outputs":[{"internalType":"contract IAswang","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"uint256","name":"tokenId","type":"uint256"}],"name":"isGenesis","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
6101006040523480156200001257600080fd5b506040516200494738038062004947833981016040819052620000359162000398565b6040518060400160405280600b81526020016a417377616e67547269626560a81b81525060405180604001604052806006815260200165415357414e4760d01b815250610d056000808484816002908051906020019062000098929190620001eb565b508051620000ae906003906020840190620001eb565b50506000805550620000c03362000199565b6001600160a01b03908116608090815260c093845291811660a090815290881660e090815260408051918201815262278d0082526276a700602083015262ed4e00908201526301e1338060608201526305a39a8092810192909252633e07a38090820152640271effd80918101919091526200014392506015915060076200027a565b5081516200015990601d906020850190620001eb565b5080516200016f90601e906020840190620001eb565b5050601c805460ff60a01b1916600160a01b17905550506011805460ff191660011790556200045e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001f99062000422565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b5062000276929150620002b4565b5090565b826007810192821562000268579160200282015b8281111562000268578251829064ffffffffff169055916020019190600101906200028e565b5b80821115620002765760008155600101620002b5565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002f357600080fd5b81516001600160401b0380821115620003105762000310620002cb565b604051601f8301601f19908116603f011681019082821181831017156200033b576200033b620002cb565b816040528381526020925086838588010111156200035857600080fd5b600091505b838210156200037c57858201830151818301840152908201906200035d565b838211156200038e5760008385830101525b9695505050505050565b600080600060608486031215620003ae57600080fd5b83516001600160a01b0381168114620003c657600080fd5b60208501519093506001600160401b0380821115620003e457600080fd5b620003f287838801620002e1565b935060408601519150808211156200040957600080fd5b506200041886828701620002e1565b9150509250925092565b600181811c908216806200043757607f821691505b6020821081036200045857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051614469620004de6000396000818161070a0152818161237601526126bb01526000818161060f01528181610c2d01528181611d25015281816120b601528181612438015281816125b4015281816129760152612a3a01526000611122015260008181611252015261129401526144696000f3fe6080604052600436106103c35760003560e01c80638da5cb5b116101f2578063c5a594981161010d578063e13c475b116100a0578063f1e25ea81161006f578063f1e25ea814610c10578063f292d6b414610c50578063f2fde38b14610c70578063fb9d154014610c9057600080fd5b8063e13c475b14610b72578063e2cb4e3014610b8f578063e7cc724414610ba4578063e985e9c514610bf057600080fd5b8063cd197a4f116100dc578063cd197a4f14610b0a578063d085c27214610b2a578063db7fd40814610b4a578063dc8c57b414610b5d57600080fd5b8063c5a5949814610a3f578063c6ab67a314610a5f578063c87b56dd14610a74578063cc33c87514610a9457600080fd5b8063a22cb46511610185578063b72e9f3611610154578063b72e9f361461094c578063b88d4fde146109c2578063bbadfe76146109e2578063c23dc68f14610a1257600080fd5b8063a22cb465146108cc578063aa4b7b3e146108ec578063ada3aa881461090c578063b37c191b1461092c57600080fd5b806396c38527116101c157806396c385271461084c57806399a2557a1461086c5780639bd3eb421461088c5780639f5081b9146108ac57600080fd5b80638da5cb5b146107e35780638eb2f8ed146108015780639537beb51461082257806395d89b411461083757600080fd5b80633b2c3fb6116102e25780636352211e11610275578063715018a611610244578063715018a61461076c57806381842d8f146107815780638462151c146107a157806389a65607146107ce57600080fd5b80636352211e146106d857806364c8513b146106f8578063672434821461072c57806370a082311461074c57600080fd5b80634bd37ca3116102b15780634bd37ca31461065157806351830227146106715780635bbb21771461068b5780635db001eb146106b857600080fd5b80633b2c3fb6146105d35780633ccfd60b146105e85780633f879faf146105fd57806342842e0e1461063157600080fd5b806318160ddd1161035a57806323b872dd1161032957806323b872dd1461055957806332cb6b0c14610579578063345318281461058f578063392f37e9146105af57600080fd5b806318160ddd146104e15780631d8c9420146105045780631fe543e31461052457806321af7e181461054457600080fd5b806308dc9f421161039657806308dc9f4214610479578063095ea7b31461048c5780630f1876a2146104ac57806310969523146104c157600080fd5b806301ffc9a7146103c857806305654575146103fd57806306fdde031461041f578063081812fc14610441575b600080fd5b3480156103d457600080fd5b506103e86103e336600461363d565b610cb0565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b5061041d6104183660046136b5565b610d02565b005b34801561042b57600080fd5b50610434610d67565b6040516103f4919061376e565b34801561044d57600080fd5b5061046161045c366004613781565b610df9565b6040516001600160a01b0390911681526020016103f4565b61041d61048736600461381f565b610e3d565b34801561049857600080fd5b5061041d6104a736600461386e565b610f81565b3480156104b857600080fd5b5061041d611053565b3480156104cd57600080fd5b5061041d6104dc36600461389a565b61119a565b3480156104ed57600080fd5b50600154600054035b6040519081526020016103f4565b34801561051057600080fd5b506104f661051f366004613781565b6111fc565b34801561053057600080fd5b5061041d61053f366004613961565b611247565b34801561055057600080fd5b5061041d6112cb565b34801561056557600080fd5b5061041d6105743660046139a7565b611310565b34801561058557600080fd5b506104f6611a0a81565b34801561059b57600080fd5b5061041d6105aa36600461363d565b611342565b3480156105bb57600080fd5b506105c4611391565b6040516103f4939291906139e8565b3480156105df57600080fd5b5061041d61153f565b3480156105f457600080fd5b5061041d6115db565b34801561060957600080fd5b506104f67f000000000000000000000000000000000000000000000000000000000000000081565b34801561063d57600080fd5b5061041d61064c3660046139a7565b61160f565b34801561065d57600080fd5b50601c54610461906001600160a01b031681565b34801561067d57600080fd5b506011546103e89060ff1681565b34801561069757600080fd5b506106ab6106a6366004613a2b565b61162a565b6040516103f49190613a5f565b3480156106c457600080fd5b5061041d6106d3366004613ac9565b6116f0565b3480156106e457600080fd5b506104616106f3366004613781565b611762565b34801561070457600080fd5b506104617f000000000000000000000000000000000000000000000000000000000000000081565b34801561073857600080fd5b5061041d610747366004613b47565b61176d565b34801561075857600080fd5b506104f6610767366004613bb2565b611834565b34801561077857600080fd5b5061041d611882565b34801561078d57600080fd5b506103e861079c366004613781565b6118b6565b3480156107ad57600080fd5b506107c16107bc366004613bb2565b6118fb565b6040516103f49190613bcf565b3480156107da57600080fd5b5061041d6119fc565b3480156107ef57600080fd5b506008546001600160a01b0316610461565b34801561080d57600080fd5b50601c546103e890600160a01b900460ff1681565b34801561082e57600080fd5b50610434611a82565b34801561084357600080fd5b50610434611b10565b34801561085857600080fd5b5061041d610867366004613bb2565b611b1f565b34801561087857600080fd5b506107c1610887366004613c07565b611ba6565b34801561089857600080fd5b5061041d6108a7366004613c3c565b611d1f565b3480156108b857600080fd5b5061041d6108c7366004613c5e565b611ee2565b3480156108d857600080fd5b5061041d6108e7366004613ccf565b611f53565b3480156108f857600080fd5b5061041d610907366004613d0d565b611fe8565b34801561091857600080fd5b506104f6610927366004613781565b612172565b34801561093857600080fd5b506104f6610947366004613781565b612189565b34801561095857600080fd5b50600954600a5461098b91906001600160401b03811690600160401b810463ffffffff1690600160601b900461ffff1684565b604080519485526001600160401b03909316602085015263ffffffff9091169183019190915261ffff1660608201526080016103f4565b3480156109ce57600080fd5b5061041d6109dd366004613d4e565b612244565b3480156109ee57600080fd5b506103e86109fd36600461363d565b60126020526000908152604090205460ff1681565b348015610a1e57600080fd5b50610a32610a2d366004613781565b61227d565b6040516103f49190613db9565b348015610a4b57600080fd5b5061041d610a5a366004613e00565b6122e6565b348015610a6b57600080fd5b50610434612372565b348015610a8057600080fd5b50610434610a8f366004613781565b6123ff565b348015610aa057600080fd5b50610ae2610aaf366004613781565b601f602052600090815260409020546001600160401b0380821691600160401b810490911690600160801b900460ff1683565b604080516001600160401b0394851681529390921660208401521515908201526060016103f4565b348015610b1657600080fd5b506104f6610b25366004613781565b612542565b348015610b3657600080fd5b5061041d610b45366004613d0d565b612586565b61041d610b58366004613e8c565b6126ac565b348015610b6957600080fd5b506104f66126b7565b348015610b7e57600080fd5b506104f66830ca024f987b90000081565b348015610b9b57600080fd5b5061043461273b565b348015610bb057600080fd5b50600b54600c54600d54610bcc9291906001600160a01b031683565b6040805193845260208401929092526001600160a01b0316908201526060016103f4565b348015610bfc57600080fd5b506103e8610c0b366004613ec8565b612748565b348015610c1c57600080fd5b506103e8610c2b366004613781565b7f00000000000000000000000000000000000000000000000000000000000000001190565b348015610c5c57600080fd5b5061041d610c6b366004613d0d565b612776565b348015610c7c57600080fd5b5061041d610c8b366004613bb2565b612828565b348015610c9c57600080fd5b5061041d610cab366004613c5e565b6128c0565b60006301ffc9a760e01b6001600160e01b031983161480610ce157506380ac58cd60e01b6001600160e01b03198316145b80610cfc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610d355760405162461bcd60e51b8152600401610d2c90613ef6565b60405180910390fd5b8051600b556020810151600c5560400151600d80546001600160a01b0319166001600160a01b03909216919091179055565b606060028054610d7690613f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613f2b565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000610e0482612931565b610e21576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b54610e4b908490613f7b565b3414610e6a5760405163be38aab960e01b815260040160405180910390fd5b3360009081526005602052604090819020548391610e939186911c6001600160401b0316613f9a565b1115610eb2576040516329175d8f60e21b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260348101839052610f4590610f3f9060540160408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b82612958565b600d546001600160a01b03908116911614610f73576040516314c2cea360e01b815260040160405180910390fd5b610f7c83612974565b505050565b6000610f8c826129d1565b9050806001600160a01b0316836001600160a01b031603610fc05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610ff757610fda8133612748565b610ff7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461107d5760405162461bcd60e51b8152600401610d2c90613ef6565b6013805461108a90613f2b565b90506000036110ac576040516324eb6cab60e11b815260040160405180910390fd5b601454156110cd57604051637c21926960e01b815260040160405180910390fd5b600954600a546040516305d3b1d360e41b815260048101929092526001600160401b0381166024830152600160601b810461ffff166044830152600160401b900463ffffffff166064820152600160848201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690635d3b1d309060a4016020604051808303816000875af1158015611173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111979190613fb2565b50565b6008546001600160a01b031633146111c45760405162461bcd60e51b8152600401610d2c90613ef6565b601454156111e557604051637c21926960e01b815260040160405180910390fd5b80516111f890601390602084019061351a565b5050565b600061120782612931565b61122457604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f6020526040902054600160401b90046001600160401b031690565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146112c15760405163073e64fd60e21b81523360048201526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166024820152604401610d2c565b6111f88282612a38565b60115460ff166112ee5760405163b278254b60e01b815260040160405180910390fd5b6112fe635db001eb60e01b611342565b61130e631d961fdb60e11b611342565b565b6000818152601f60205260409020546001600160401b031615611337576113378183612a85565b610f7c838383612bb8565b6008546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610d2c90613ef6565b6001600160e01b0319166000908152601260205260409020805460ff19166001179055565b600e805481906113a090613f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546113cc90613f2b565b80156114195780601f106113ee57610100808354040283529160200191611419565b820191906000526020600020905b8154815290600101906020018083116113fc57829003601f168201915b50505050509080600101805461142e90613f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461145a90613f2b565b80156114a75780601f1061147c576101008083540402835291602001916114a7565b820191906000526020600020905b81548152906001019060200180831161148a57829003601f168201915b5050505050908060020180546114bc90613f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546114e890613f2b565b80156115355780601f1061150a57610100808354040283529160200191611535565b820191906000526020600020905b81548152906001019060200180831161151857829003601f168201915b5050505050905083565b600080356001600160e01b03191681526012602052604090205460ff161561157a576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146115a45760405162461bcd60e51b8152600401610d2c90613ef6565b6014546000036115c757604051639bd7b6f360e01b815260040160405180910390fd5b6011805460ff19811660ff90911615179055565b6008546001600160a01b031633146116055760405162461bcd60e51b8152600401610d2c90613ef6565b61130e3347612bc3565b610f7c83838360405180602001604052806000815250612244565b80516060906000816001600160401b038111156116495761164961365a565b60405190808252806020026020018201604052801561169457816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816116675790505b50905060005b8281146116e8576116c38582815181106116b6576116b6613fcb565b602002602001015161227d565b8282815181106116d5576116d5613fcb565b602090810291909101015260010161169a565b509392505050565b600080356001600160e01b03191681526012602052604090205460ff161561172b576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146117555760405162461bcd60e51b8152600401610d2c90613ef6565b80600e610f7c8282614134565b6000610cfc826129d1565b600080356001600160e01b03191681526012602052604090205460ff16156117a8576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146117d25760405162461bcd60e51b8152600401610d2c90613ef6565b60005b8381101561182d576118258585838181106117f2576117f2613fcb565b90506020020160208101906118079190613bb2565b84848481811061181957611819613fcb565b90506020020135612cdc565b6001016117d5565b5050505050565b60006001600160a01b03821661185d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146118ac5760405162461bcd60e51b8152600401610d2c90613ef6565b61130e6000612dbd565b60006118c182612931565b6118de57604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f6020526040902054600160801b900460ff1690565b6060600080600061190b85611834565b90506000816001600160401b038111156119275761192761365a565b604051908082528060200260200182016040528015611950578160200160208202803683370190505b509050611976604080516060810182526000808252602082018190529181019190915290565b60005b8386146119f05761198981612e0f565b915081604001516119e85781516001600160a01b0316156119a957815194505b876001600160a01b0316856001600160a01b0316036119e857808387806001019850815181106119db576119db613fcb565b6020026020010181815250505b600101611979565b50909695505050505050565b600080356001600160e01b03191681526012602052604090205460ff1615611a37576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611a615760405162461bcd60e51b8152600401610d2c90613ef6565b601c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b601e8054611a8f90613f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054611abb90613f2b565b8015611b085780601f10611add57610100808354040283529160200191611b08565b820191906000526020600020905b815481529060010190602001808311611aeb57829003601f168201915b505050505081565b606060038054610d7690613f2b565b600080356001600160e01b03191681526012602052604090205460ff1615611b5a576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611b845760405162461bcd60e51b8152600401610d2c90613ef6565b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060818310611bc857604051631960ccad60e11b815260040160405180910390fd5b600080611bd460005490565b905080841115611be2578093505b6000611bed87611834565b905084861015611c0c5785850381811015611c06578091505b50611c10565b5060005b6000816001600160401b03811115611c2a57611c2a61365a565b604051908082528060200260200182016040528015611c53578160200160208202803683370190505b50905081600003611c69579350611d1892505050565b6000611c748861227d565b905060008160400151611c85575080515b885b888114158015611c975750848714155b15611d0c57611ca581612e0f565b92508260400151611d045782516001600160a01b031615611cc557825191505b8a6001600160a01b0316826001600160a01b031603611d045780848880600101995081518110611cf757611cf7613fcb565b6020026020010181815250505b600101611c87565b50505092835250909150505b9392505050565b611d48827f00000000000000000000000000000000000000000000000000000000000000001190565b611d65576040516304c3e39360e51b815260040160405180910390fd5b33611d6f83611762565b6001600160a01b031614611d9657604051631310933560e31b815260040160405180910390fd5b6000828152601f60205260408120546001600160401b03169003611dcd57604051639e13336b60e01b815260040160405180910390fd5b611a0a81611dda60005490565b611de49190613f9a565b1115611e035760405163130ebf3960e01b815260040160405180910390fd5b601c546001600160a01b0316639dc29fac33611e28846830ca024f987b900000613f7b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611e6e57600080fd5b505af1158015611e82573d6000803e3d6000fd5b5050505060005b81811015611ed65780611e9b60005490565b611ea59190613f9a565b6040517fec6fa41283bf7b2880d6b62a1b5d58715786782e21df1fbbff21174bbd818a1490600090a2600101611e89565b506111f8335b82612cdc565b600080356001600160e01b03191681526012602052604090205460ff1615611f1d576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611f475760405162461bcd60e51b8152600401610d2c90613ef6565b610f7c601d838361359e565b336001600160a01b03831603611f7c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601c54600160a01b900460ff16612012576040516308bd80d360e21b815260040160405180910390fd5b60005b81811015610f7c57600083838381811061203157612031613fcb565b9050602002013590506120413390565b6001600160a01b031661205382611762565b6001600160a01b03161461207a57604051631310933560e31b815260040160405180910390fd5b6000818152601f60205260409020546001600160401b0316156120b05760405163549c2db360e11b815260040160405180910390fd5b6120d9817f00000000000000000000000000000000000000000000000000000000000000001190565b1580156120fc57506000818152601f6020526040902054600160801b900460ff16155b1561211a5760405163074f16d560e01b815260040160405180910390fd5b6000818152601f6020526040808220805467ffffffffffffffff1916426001600160401b03161790555182917fd3f86ea4542edd7f92e6057d3da5d5b366670bc2c244e9eb9a878b55ee48f54391a250600101612015565b6015816007811061218257600080fd5b0154905081565b600061219482612931565b6121b157604051630a14c4b560e41b815260040160405180910390fd5b6000828152601f60205260408120546001600160401b031690036121d757506000919050565b6000828152601f60205260408120546121f9906001600160401b031642614233565b905060005b600781101561223a57816015826007811061221b5761221b613fcb565b0154111561222a579392505050565b6122338161424a565b90506121fe565b5060079392505050565b6000828152601f60205260409020546001600160401b03161561226b5761226b8284612a85565b61227784848484612e44565b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106122c25792915050565b6122cb83612e0f565b90508060400151156122dd5792915050565b611d1883612e88565b6008546001600160a01b031633146123105760405162461bcd60e51b8152600401610d2c90613ef6565b80516009556020810151600a8054604084015160609094015161ffff16600160601b0261ffff60601b1963ffffffff909516600160401b026bffffffffffffffffffffffff199092166001600160401b03909416939093171792909216179055565b60607f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c6ab67a36040518163ffffffff1660e01b8152600401600060405180830381865afa1580156123d2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123fa9190810190614263565b905090565b606061240a82612931565b61242757604051630a14c4b560e41b815260040160405180910390fd5b60115460ff16156124ab5761245b827f00000000000000000000000000000000000000000000000000000000000000001190565b61246657601e612469565b601d5b61247a61247584612189565b612eb6565b61248384612eb6565b604051602001612495939291906142d9565b6040516020818303038152906040529050919050565b601080546124b890613f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546124e490613f2b565b80156125315780601f1061250657610100808354040283529160200191612531565b820191906000526020600020905b81548152906001019060200180831161251457829003601f168201915b50505050509050919050565b919050565b600061254d82612931565b61256a57604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f60205260409020546001600160401b031690565b60005b81811015610f7c5760008383838181106125a5576125a5613fcb565b9050602002013590506125d7817f00000000000000000000000000000000000000000000000000000000000000001190565b156125f5576040516304c3e39360e51b815260040160405180910390fd5b336125ff82611762565b6001600160a01b03161461262657604051631310933560e31b815260040160405180910390fd5b6000818152601f6020526040902054600160801b900460ff161561265d57604051632892df6960e21b815260040160405180910390fd5b6000818152601f6020526040808220805460ff60801b1916600160801b1790555182917f41f4827014e730c1462a154cf92d5fb47f524f5156cd1bdb55aba0aae00baab191a250600101612589565b6111f8828383610e3d565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663dc8c57b46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612717573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fa9190613fb2565b601d8054611a8f90613f2b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b60005b81811015610f7c57600083838381811061279557612795613fcb565b9050602002013590506127a53390565b6001600160a01b03166127b782611762565b6001600160a01b0316146127de57604051631310933560e31b815260040160405180910390fd5b6000818152601f60205260408120546001600160401b0316900361281557604051639e13336b60e01b815260040160405180910390fd5b61281f8133612a85565b50600101612779565b6008546001600160a01b031633146128525760405162461bcd60e51b8152600401610d2c90613ef6565b6001600160a01b0381166128b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d2c565b61119781612dbd565b600080356001600160e01b03191681526012602052604090205460ff16156128fb576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146129255760405162461bcd60e51b8152600401610d2c90613ef6565b610f7c601e838361359e565b6000805482108015610cfc575050600090815260046020526040902054600160e01b161590565b60008060006129678585612f05565b915091506116e881612f73565b7f00000000000000000000000000000000000000000000000000000000000000008161299f60005490565b6129a99190613f9a565b11156129c85760405163130ebf3960e01b815260040160405180910390fd5b61119733611edc565b600081600054811015612a1f5760008181526004602052604081205490600160e01b82169003612a1d575b80600003611d185750600019016000818152600460205260409020546129fc565b505b604051636f96cda160e11b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600081518110612a6c57612a6c613fcb565b6020026020010151612a7e9190614380565b6014555050565b601c546001600160a01b031615612afd57601c54604051635569f64b60e11b81526001600160a01b038381166004830152602482018590529091169063aad3ec9690604401600060405180830381600087803b158015612ae457600080fd5b505af1158015612af8573d6000803e3d6000fd5b505050505b6000828152601f6020526040902054612b1f906001600160401b031642614233565b6000838152601f602052604090208054600890612b4d908490600160401b90046001600160401b03166143a2565b82546001600160401b039182166101009390930a9283029190920219909116179055506000828152601f6020526040808220805467ffffffffffffffff191690555183917ff006f9bd525b94dad8e96110350b53cea534db4e7c720d78ad4fe17a9e02b81191a25050565b610f7c838383613129565b80471015612c135760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d2c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612c60576040519150601f19603f3d011682016040523d82523d6000602084013e612c65565b606091505b5050905080610f7c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d2c565b6000546001600160a01b038316612d0557604051622e076360e81b815260040160405180910390fd5b81600003612d265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612d715750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610cfc906132ce565b612e4f848484613129565b6001600160a01b0383163b1561227757612e6b84848484613308565b612277576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160608101825260008082526020820181905291810191909152610cfc612eb1836129d1565b6132ce565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612ef357600183039250600a81066030018353600a9004612ed5565b50819003601f19909101908152919050565b6000808251604103612f3b5760208301516040840151606085015160001a612f2f878285856133f4565b94509450505050612f6c565b8251604003612f645760208301516040840151612f598683836134e1565b935093505050612f6c565b506000905060025b9250929050565b6000816004811115612f8757612f876143cd565b03612f8f5750565b6001816004811115612fa357612fa36143cd565b03612ff05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d2c565b6002816004811115613004576130046143cd565b036130515760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d2c565b6003816004811115613065576130656143cd565b036130bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610d2c565b60048160048111156130d1576130d16143cd565b036111975760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610d2c565b6000613134826129d1565b9050836001600160a01b0316816001600160a01b0316146131675760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061318557506131858533612748565b806131a057503361319584610df9565b6001600160a01b0316145b9050806131c057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166131e757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003613288576001830160008181526004602052604081205490036132865760005481146132865760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182d565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061333d9033908990889088906004016143e3565b6020604051808303816000875af1925050508015613378575060408051601f3d908101601f1916820190925261337591810190614416565b60015b6133d6573d8080156133a6576040519150601f19603f3d011682016040523d82523d6000602084013e6133ab565b606091505b5080516000036133ce576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561342b57506000905060036134d8565b8460ff16601b1415801561344357508460ff16601c14155b1561345457506000905060046134d8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156134a8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166134d1576000600192509250506134d8565b9150600090505b94509492505050565b6000806001600160ff1b038316816134fe60ff86901c601b613f9a565b905061350c878288856133f4565b935093505050935093915050565b82805461352690613f2b565b90600052602060002090601f016020900481019282613548576000855561358e565b82601f1061356157805160ff191683800117855561358e565b8280016001018555821561358e579182015b8281111561358e578251825591602001919060010190613573565b5061359a929150613612565b5090565b8280546135aa90613f2b565b90600052602060002090601f0160209004810192826135cc576000855561358e565b82601f106135e55782800160ff1982351617855561358e565b8280016001018555821561358e579182015b8281111561358e5782358255916020019190600101906135f7565b5b8082111561359a5760008155600101613613565b6001600160e01b03198116811461119757600080fd5b60006020828403121561364f57600080fd5b8135611d1881613627565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156136985761369861365a565b604052919050565b6001600160a01b038116811461119757600080fd5b6000606082840312156136c757600080fd5b604051606081018181106001600160401b03821117156136e9576136e961365a565b80604052508235815260208301356020820152604083013561370a816136a0565b60408201529392505050565b60005b83811015613731578181015183820152602001613719565b838111156122775750506000910152565b6000815180845261375a816020860160208601613716565b601f01601f19169290920160200192915050565b602081526000611d186020830184613742565b60006020828403121561379357600080fd5b5035919050565b60006001600160401b038211156137b3576137b361365a565b50601f01601f191660200190565b60006137d46137cf8461379a565b613670565b90508281528383830111156137e857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261381057600080fd5b611d18838335602085016137c1565b60008060006060848603121561383457600080fd5b833592506020840135915060408401356001600160401b0381111561385857600080fd5b613864868287016137ff565b9150509250925092565b6000806040838503121561388157600080fd5b823561388c816136a0565b946020939093013593505050565b6000602082840312156138ac57600080fd5b81356001600160401b038111156138c257600080fd5b8201601f810184136138d357600080fd5b6133ec848235602084016137c1565b600082601f8301126138f357600080fd5b813560206001600160401b0382111561390e5761390e61365a565b8160051b61391d828201613670565b928352848101820192828101908785111561393757600080fd5b83870192505b848310156139565782358252918301919083019061393d565b979650505050505050565b6000806040838503121561397457600080fd5b8235915060208301356001600160401b0381111561399157600080fd5b61399d858286016138e2565b9150509250929050565b6000806000606084860312156139bc57600080fd5b83356139c7816136a0565b925060208401356139d7816136a0565b929592945050506040919091013590565b6060815260006139fb6060830186613742565b8281036020840152613a0d8186613742565b90508281036040840152613a218185613742565b9695505050505050565b600060208284031215613a3d57600080fd5b81356001600160401b03811115613a5357600080fd5b6133ec848285016138e2565b6020808252825182820181905260009190848201906040850190845b818110156119f057613ab683855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101613a7b565b600060208284031215613adb57600080fd5b81356001600160401b03811115613af157600080fd5b820160608185031215611d1857600080fd5b60008083601f840112613b1557600080fd5b5081356001600160401b03811115613b2c57600080fd5b6020830191508360208260051b8501011115612f6c57600080fd5b60008060008060408587031215613b5d57600080fd5b84356001600160401b0380821115613b7457600080fd5b613b8088838901613b03565b90965094506020870135915080821115613b9957600080fd5b50613ba687828801613b03565b95989497509550505050565b600060208284031215613bc457600080fd5b8135611d18816136a0565b6020808252825182820181905260009190848201906040850190845b818110156119f057835183529284019291840191600101613beb565b600080600060608486031215613c1c57600080fd5b8335613c27816136a0565b95602085013595506040909401359392505050565b60008060408385031215613c4f57600080fd5b50508035926020909101359150565b60008060208385031215613c7157600080fd5b82356001600160401b0380821115613c8857600080fd5b818501915085601f830112613c9c57600080fd5b813581811115613cab57600080fd5b866020828501011115613cbd57600080fd5b60209290920196919550909350505050565b60008060408385031215613ce257600080fd5b8235613ced816136a0565b915060208301358015158114613d0257600080fd5b809150509250929050565b60008060208385031215613d2057600080fd5b82356001600160401b03811115613d3657600080fd5b613d4285828601613b03565b90969095509350505050565b60008060008060808587031215613d6457600080fd5b8435613d6f816136a0565b93506020850135613d7f816136a0565b92506040850135915060608501356001600160401b03811115613da157600080fd5b613dad878288016137ff565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610cfc565b803561ffff8116811461253d57600080fd5b600060808284031215613e1257600080fd5b604051608081016001600160401b038282108183111715613e3557613e3561365a565b8160405284358352602085013591508082168214613e5257600080fd5b506020820152604083013563ffffffff81168114613e6f57600080fd5b6040820152613e8060608401613dee565b60608201529392505050565b60008060408385031215613e9f57600080fd5b8235915060208301356001600160401b03811115613ebc57600080fd5b61399d858286016137ff565b60008060408385031215613edb57600080fd5b8235613ee6816136a0565b91506020830135613d02816136a0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680613f3f57607f821691505b602082108103613f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613f9557613f95613f65565b500290565b60008219821115613fad57613fad613f65565b500190565b600060208284031215613fc457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112613ff857600080fd5b8301803591506001600160401b0382111561401257600080fd5b602001915036819003821315612f6c57600080fd5b601f821115610f7c57600081815260208120601f850160051c8101602086101561404e5750805b601f850160051c820191505b8181101561406d5782815560010161405a565b505050505050565b6001600160401b0383111561408c5761408c61365a565b6140a08361409a8354613f2b565b83614027565b6000601f8411600181146140d457600085156140bc5750838201355b600019600387901b1c1916600186901b17835561182d565b600083815260209020601f19861690835b8281101561410557868501358255602094850194600190920191016140e5565b50868210156141225760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b61413e8283613fe1565b6001600160401b038111156141555761415561365a565b614169816141638554613f2b565b85614027565b6000601f82116001811461419d57600083156141855750838201355b600019600385901b1c1916600184901b1785556141f7565b600085815260209020601f19841690835b828110156141ce57868501358255602094850194600190920191016141ae565b50848210156141eb5760001960f88660031b161c19848701351681555b505060018360011b0185555b505050506142086020830183613fe1565b614216818360018601614075565b50506142256040830183613fe1565b612277818360028601614075565b60008282101561424557614245613f65565b500390565b60006001820161425c5761425c613f65565b5060010190565b60006020828403121561427557600080fd5b81516001600160401b0381111561428b57600080fd5b8201601f8101841361429c57600080fd5b80516142aa6137cf8261379a565b8181528560208385010111156142bf57600080fd5b6142d0826020830160208601613716565b95945050505050565b60008085546142e781613f2b565b600182811680156142ff57600181146143105761433f565b60ff1984168752828701945061433f565b8960005260208060002060005b858110156143365781548a82015290840190820161431d565b50505082870194505b5087519250614352838560208b01613716565b602f60f81b939092019283528551916143718382860160208a01613716565b91909201019695505050505050565b60008261439d57634e487b7160e01b600052601260045260246000fd5b500690565b60006001600160401b038083168185168083038211156143c4576143c4613f65565b01949350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a2190830184613742565b60006020828403121561442857600080fd5b8151611d188161362756fea26469706673582212206db655fde37b2bdce24bc4ff967b3a0deb38b9572740d00173b1d94a751f05b564736f6c634300080e0033000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f617377616e672d6170692e6865726f6b756170702e636f6d2f417377616e6754726962652f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f617377616e672d6170692e6865726f6b756170702e636f6d2f417377616e6754726962652f00000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103c35760003560e01c80638da5cb5b116101f2578063c5a594981161010d578063e13c475b116100a0578063f1e25ea81161006f578063f1e25ea814610c10578063f292d6b414610c50578063f2fde38b14610c70578063fb9d154014610c9057600080fd5b8063e13c475b14610b72578063e2cb4e3014610b8f578063e7cc724414610ba4578063e985e9c514610bf057600080fd5b8063cd197a4f116100dc578063cd197a4f14610b0a578063d085c27214610b2a578063db7fd40814610b4a578063dc8c57b414610b5d57600080fd5b8063c5a5949814610a3f578063c6ab67a314610a5f578063c87b56dd14610a74578063cc33c87514610a9457600080fd5b8063a22cb46511610185578063b72e9f3611610154578063b72e9f361461094c578063b88d4fde146109c2578063bbadfe76146109e2578063c23dc68f14610a1257600080fd5b8063a22cb465146108cc578063aa4b7b3e146108ec578063ada3aa881461090c578063b37c191b1461092c57600080fd5b806396c38527116101c157806396c385271461084c57806399a2557a1461086c5780639bd3eb421461088c5780639f5081b9146108ac57600080fd5b80638da5cb5b146107e35780638eb2f8ed146108015780639537beb51461082257806395d89b411461083757600080fd5b80633b2c3fb6116102e25780636352211e11610275578063715018a611610244578063715018a61461076c57806381842d8f146107815780638462151c146107a157806389a65607146107ce57600080fd5b80636352211e146106d857806364c8513b146106f8578063672434821461072c57806370a082311461074c57600080fd5b80634bd37ca3116102b15780634bd37ca31461065157806351830227146106715780635bbb21771461068b5780635db001eb146106b857600080fd5b80633b2c3fb6146105d35780633ccfd60b146105e85780633f879faf146105fd57806342842e0e1461063157600080fd5b806318160ddd1161035a57806323b872dd1161032957806323b872dd1461055957806332cb6b0c14610579578063345318281461058f578063392f37e9146105af57600080fd5b806318160ddd146104e15780631d8c9420146105045780631fe543e31461052457806321af7e181461054457600080fd5b806308dc9f421161039657806308dc9f4214610479578063095ea7b31461048c5780630f1876a2146104ac57806310969523146104c157600080fd5b806301ffc9a7146103c857806305654575146103fd57806306fdde031461041f578063081812fc14610441575b600080fd5b3480156103d457600080fd5b506103e86103e336600461363d565b610cb0565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b5061041d6104183660046136b5565b610d02565b005b34801561042b57600080fd5b50610434610d67565b6040516103f4919061376e565b34801561044d57600080fd5b5061046161045c366004613781565b610df9565b6040516001600160a01b0390911681526020016103f4565b61041d61048736600461381f565b610e3d565b34801561049857600080fd5b5061041d6104a736600461386e565b610f81565b3480156104b857600080fd5b5061041d611053565b3480156104cd57600080fd5b5061041d6104dc36600461389a565b61119a565b3480156104ed57600080fd5b50600154600054035b6040519081526020016103f4565b34801561051057600080fd5b506104f661051f366004613781565b6111fc565b34801561053057600080fd5b5061041d61053f366004613961565b611247565b34801561055057600080fd5b5061041d6112cb565b34801561056557600080fd5b5061041d6105743660046139a7565b611310565b34801561058557600080fd5b506104f6611a0a81565b34801561059b57600080fd5b5061041d6105aa36600461363d565b611342565b3480156105bb57600080fd5b506105c4611391565b6040516103f4939291906139e8565b3480156105df57600080fd5b5061041d61153f565b3480156105f457600080fd5b5061041d6115db565b34801561060957600080fd5b506104f67f0000000000000000000000000000000000000000000000000000000000000d0581565b34801561063d57600080fd5b5061041d61064c3660046139a7565b61160f565b34801561065d57600080fd5b50601c54610461906001600160a01b031681565b34801561067d57600080fd5b506011546103e89060ff1681565b34801561069757600080fd5b506106ab6106a6366004613a2b565b61162a565b6040516103f49190613a5f565b3480156106c457600080fd5b5061041d6106d3366004613ac9565b6116f0565b3480156106e457600080fd5b506104616106f3366004613781565b611762565b34801561070457600080fd5b506104617f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b81565b34801561073857600080fd5b5061041d610747366004613b47565b61176d565b34801561075857600080fd5b506104f6610767366004613bb2565b611834565b34801561077857600080fd5b5061041d611882565b34801561078d57600080fd5b506103e861079c366004613781565b6118b6565b3480156107ad57600080fd5b506107c16107bc366004613bb2565b6118fb565b6040516103f49190613bcf565b3480156107da57600080fd5b5061041d6119fc565b3480156107ef57600080fd5b506008546001600160a01b0316610461565b34801561080d57600080fd5b50601c546103e890600160a01b900460ff1681565b34801561082e57600080fd5b50610434611a82565b34801561084357600080fd5b50610434611b10565b34801561085857600080fd5b5061041d610867366004613bb2565b611b1f565b34801561087857600080fd5b506107c1610887366004613c07565b611ba6565b34801561089857600080fd5b5061041d6108a7366004613c3c565b611d1f565b3480156108b857600080fd5b5061041d6108c7366004613c5e565b611ee2565b3480156108d857600080fd5b5061041d6108e7366004613ccf565b611f53565b3480156108f857600080fd5b5061041d610907366004613d0d565b611fe8565b34801561091857600080fd5b506104f6610927366004613781565b612172565b34801561093857600080fd5b506104f6610947366004613781565b612189565b34801561095857600080fd5b50600954600a5461098b91906001600160401b03811690600160401b810463ffffffff1690600160601b900461ffff1684565b604080519485526001600160401b03909316602085015263ffffffff9091169183019190915261ffff1660608201526080016103f4565b3480156109ce57600080fd5b5061041d6109dd366004613d4e565b612244565b3480156109ee57600080fd5b506103e86109fd36600461363d565b60126020526000908152604090205460ff1681565b348015610a1e57600080fd5b50610a32610a2d366004613781565b61227d565b6040516103f49190613db9565b348015610a4b57600080fd5b5061041d610a5a366004613e00565b6122e6565b348015610a6b57600080fd5b50610434612372565b348015610a8057600080fd5b50610434610a8f366004613781565b6123ff565b348015610aa057600080fd5b50610ae2610aaf366004613781565b601f602052600090815260409020546001600160401b0380821691600160401b810490911690600160801b900460ff1683565b604080516001600160401b0394851681529390921660208401521515908201526060016103f4565b348015610b1657600080fd5b506104f6610b25366004613781565b612542565b348015610b3657600080fd5b5061041d610b45366004613d0d565b612586565b61041d610b58366004613e8c565b6126ac565b348015610b6957600080fd5b506104f66126b7565b348015610b7e57600080fd5b506104f66830ca024f987b90000081565b348015610b9b57600080fd5b5061043461273b565b348015610bb057600080fd5b50600b54600c54600d54610bcc9291906001600160a01b031683565b6040805193845260208401929092526001600160a01b0316908201526060016103f4565b348015610bfc57600080fd5b506103e8610c0b366004613ec8565b612748565b348015610c1c57600080fd5b506103e8610c2b366004613781565b7f0000000000000000000000000000000000000000000000000000000000000d051190565b348015610c5c57600080fd5b5061041d610c6b366004613d0d565b612776565b348015610c7c57600080fd5b5061041d610c8b366004613bb2565b612828565b348015610c9c57600080fd5b5061041d610cab366004613c5e565b6128c0565b60006301ffc9a760e01b6001600160e01b031983161480610ce157506380ac58cd60e01b6001600160e01b03198316145b80610cfc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610d355760405162461bcd60e51b8152600401610d2c90613ef6565b60405180910390fd5b8051600b556020810151600c5560400151600d80546001600160a01b0319166001600160a01b03909216919091179055565b606060028054610d7690613f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290613f2b565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000610e0482612931565b610e21576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b54610e4b908490613f7b565b3414610e6a5760405163be38aab960e01b815260040160405180910390fd5b3360009081526005602052604090819020548391610e939186911c6001600160401b0316613f9a565b1115610eb2576040516329175d8f60e21b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260348101839052610f4590610f3f9060540160408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b82612958565b600d546001600160a01b03908116911614610f73576040516314c2cea360e01b815260040160405180910390fd5b610f7c83612974565b505050565b6000610f8c826129d1565b9050806001600160a01b0316836001600160a01b031603610fc05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610ff757610fda8133612748565b610ff7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461107d5760405162461bcd60e51b8152600401610d2c90613ef6565b6013805461108a90613f2b565b90506000036110ac576040516324eb6cab60e11b815260040160405180910390fd5b601454156110cd57604051637c21926960e01b815260040160405180910390fd5b600954600a546040516305d3b1d360e41b815260048101929092526001600160401b0381166024830152600160601b810461ffff166044830152600160401b900463ffffffff166064820152600160848201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690635d3b1d309060a4016020604051808303816000875af1158015611173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111979190613fb2565b50565b6008546001600160a01b031633146111c45760405162461bcd60e51b8152600401610d2c90613ef6565b601454156111e557604051637c21926960e01b815260040160405180910390fd5b80516111f890601390602084019061351a565b5050565b600061120782612931565b61122457604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f6020526040902054600160401b90046001600160401b031690565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146112c15760405163073e64fd60e21b81523360048201526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166024820152604401610d2c565b6111f88282612a38565b60115460ff166112ee5760405163b278254b60e01b815260040160405180910390fd5b6112fe635db001eb60e01b611342565b61130e631d961fdb60e11b611342565b565b6000818152601f60205260409020546001600160401b031615611337576113378183612a85565b610f7c838383612bb8565b6008546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610d2c90613ef6565b6001600160e01b0319166000908152601260205260409020805460ff19166001179055565b600e805481906113a090613f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546113cc90613f2b565b80156114195780601f106113ee57610100808354040283529160200191611419565b820191906000526020600020905b8154815290600101906020018083116113fc57829003601f168201915b50505050509080600101805461142e90613f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461145a90613f2b565b80156114a75780601f1061147c576101008083540402835291602001916114a7565b820191906000526020600020905b81548152906001019060200180831161148a57829003601f168201915b5050505050908060020180546114bc90613f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546114e890613f2b565b80156115355780601f1061150a57610100808354040283529160200191611535565b820191906000526020600020905b81548152906001019060200180831161151857829003601f168201915b5050505050905083565b600080356001600160e01b03191681526012602052604090205460ff161561157a576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146115a45760405162461bcd60e51b8152600401610d2c90613ef6565b6014546000036115c757604051639bd7b6f360e01b815260040160405180910390fd5b6011805460ff19811660ff90911615179055565b6008546001600160a01b031633146116055760405162461bcd60e51b8152600401610d2c90613ef6565b61130e3347612bc3565b610f7c83838360405180602001604052806000815250612244565b80516060906000816001600160401b038111156116495761164961365a565b60405190808252806020026020018201604052801561169457816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816116675790505b50905060005b8281146116e8576116c38582815181106116b6576116b6613fcb565b602002602001015161227d565b8282815181106116d5576116d5613fcb565b602090810291909101015260010161169a565b509392505050565b600080356001600160e01b03191681526012602052604090205460ff161561172b576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146117555760405162461bcd60e51b8152600401610d2c90613ef6565b80600e610f7c8282614134565b6000610cfc826129d1565b600080356001600160e01b03191681526012602052604090205460ff16156117a8576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146117d25760405162461bcd60e51b8152600401610d2c90613ef6565b60005b8381101561182d576118258585838181106117f2576117f2613fcb565b90506020020160208101906118079190613bb2565b84848481811061181957611819613fcb565b90506020020135612cdc565b6001016117d5565b5050505050565b60006001600160a01b03821661185d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146118ac5760405162461bcd60e51b8152600401610d2c90613ef6565b61130e6000612dbd565b60006118c182612931565b6118de57604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f6020526040902054600160801b900460ff1690565b6060600080600061190b85611834565b90506000816001600160401b038111156119275761192761365a565b604051908082528060200260200182016040528015611950578160200160208202803683370190505b509050611976604080516060810182526000808252602082018190529181019190915290565b60005b8386146119f05761198981612e0f565b915081604001516119e85781516001600160a01b0316156119a957815194505b876001600160a01b0316856001600160a01b0316036119e857808387806001019850815181106119db576119db613fcb565b6020026020010181815250505b600101611979565b50909695505050505050565b600080356001600160e01b03191681526012602052604090205460ff1615611a37576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611a615760405162461bcd60e51b8152600401610d2c90613ef6565b601c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b601e8054611a8f90613f2b565b80601f0160208091040260200160405190810160405280929190818152602001828054611abb90613f2b565b8015611b085780601f10611add57610100808354040283529160200191611b08565b820191906000526020600020905b815481529060010190602001808311611aeb57829003601f168201915b505050505081565b606060038054610d7690613f2b565b600080356001600160e01b03191681526012602052604090205460ff1615611b5a576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611b845760405162461bcd60e51b8152600401610d2c90613ef6565b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060818310611bc857604051631960ccad60e11b815260040160405180910390fd5b600080611bd460005490565b905080841115611be2578093505b6000611bed87611834565b905084861015611c0c5785850381811015611c06578091505b50611c10565b5060005b6000816001600160401b03811115611c2a57611c2a61365a565b604051908082528060200260200182016040528015611c53578160200160208202803683370190505b50905081600003611c69579350611d1892505050565b6000611c748861227d565b905060008160400151611c85575080515b885b888114158015611c975750848714155b15611d0c57611ca581612e0f565b92508260400151611d045782516001600160a01b031615611cc557825191505b8a6001600160a01b0316826001600160a01b031603611d045780848880600101995081518110611cf757611cf7613fcb565b6020026020010181815250505b600101611c87565b50505092835250909150505b9392505050565b611d48827f0000000000000000000000000000000000000000000000000000000000000d051190565b611d65576040516304c3e39360e51b815260040160405180910390fd5b33611d6f83611762565b6001600160a01b031614611d9657604051631310933560e31b815260040160405180910390fd5b6000828152601f60205260408120546001600160401b03169003611dcd57604051639e13336b60e01b815260040160405180910390fd5b611a0a81611dda60005490565b611de49190613f9a565b1115611e035760405163130ebf3960e01b815260040160405180910390fd5b601c546001600160a01b0316639dc29fac33611e28846830ca024f987b900000613f7b565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611e6e57600080fd5b505af1158015611e82573d6000803e3d6000fd5b5050505060005b81811015611ed65780611e9b60005490565b611ea59190613f9a565b6040517fec6fa41283bf7b2880d6b62a1b5d58715786782e21df1fbbff21174bbd818a1490600090a2600101611e89565b506111f8335b82612cdc565b600080356001600160e01b03191681526012602052604090205460ff1615611f1d576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b03163314611f475760405162461bcd60e51b8152600401610d2c90613ef6565b610f7c601d838361359e565b336001600160a01b03831603611f7c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601c54600160a01b900460ff16612012576040516308bd80d360e21b815260040160405180910390fd5b60005b81811015610f7c57600083838381811061203157612031613fcb565b9050602002013590506120413390565b6001600160a01b031661205382611762565b6001600160a01b03161461207a57604051631310933560e31b815260040160405180910390fd5b6000818152601f60205260409020546001600160401b0316156120b05760405163549c2db360e11b815260040160405180910390fd5b6120d9817f0000000000000000000000000000000000000000000000000000000000000d051190565b1580156120fc57506000818152601f6020526040902054600160801b900460ff16155b1561211a5760405163074f16d560e01b815260040160405180910390fd5b6000818152601f6020526040808220805467ffffffffffffffff1916426001600160401b03161790555182917fd3f86ea4542edd7f92e6057d3da5d5b366670bc2c244e9eb9a878b55ee48f54391a250600101612015565b6015816007811061218257600080fd5b0154905081565b600061219482612931565b6121b157604051630a14c4b560e41b815260040160405180910390fd5b6000828152601f60205260408120546001600160401b031690036121d757506000919050565b6000828152601f60205260408120546121f9906001600160401b031642614233565b905060005b600781101561223a57816015826007811061221b5761221b613fcb565b0154111561222a579392505050565b6122338161424a565b90506121fe565b5060079392505050565b6000828152601f60205260409020546001600160401b03161561226b5761226b8284612a85565b61227784848484612e44565b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106122c25792915050565b6122cb83612e0f565b90508060400151156122dd5792915050565b611d1883612e88565b6008546001600160a01b031633146123105760405162461bcd60e51b8152600401610d2c90613ef6565b80516009556020810151600a8054604084015160609094015161ffff16600160601b0261ffff60601b1963ffffffff909516600160401b026bffffffffffffffffffffffff199092166001600160401b03909416939093171792909216179055565b60607f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b6001600160a01b031663c6ab67a36040518163ffffffff1660e01b8152600401600060405180830381865afa1580156123d2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123fa9190810190614263565b905090565b606061240a82612931565b61242757604051630a14c4b560e41b815260040160405180910390fd5b60115460ff16156124ab5761245b827f0000000000000000000000000000000000000000000000000000000000000d051190565b61246657601e612469565b601d5b61247a61247584612189565b612eb6565b61248384612eb6565b604051602001612495939291906142d9565b6040516020818303038152906040529050919050565b601080546124b890613f2b565b80601f01602080910402602001604051908101604052809291908181526020018280546124e490613f2b565b80156125315780601f1061250657610100808354040283529160200191612531565b820191906000526020600020905b81548152906001019060200180831161251457829003601f168201915b50505050509050919050565b919050565b600061254d82612931565b61256a57604051630a14c4b560e41b815260040160405180910390fd5b506000908152601f60205260409020546001600160401b031690565b60005b81811015610f7c5760008383838181106125a5576125a5613fcb565b9050602002013590506125d7817f0000000000000000000000000000000000000000000000000000000000000d051190565b156125f5576040516304c3e39360e51b815260040160405180910390fd5b336125ff82611762565b6001600160a01b03161461262657604051631310933560e31b815260040160405180910390fd5b6000818152601f6020526040902054600160801b900460ff161561265d57604051632892df6960e21b815260040160405180910390fd5b6000818152601f6020526040808220805460ff60801b1916600160801b1790555182917f41f4827014e730c1462a154cf92d5fb47f524f5156cd1bdb55aba0aae00baab191a250600101612589565b6111f8828383610e3d565b60007f000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b6001600160a01b031663dc8c57b46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612717573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fa9190613fb2565b601d8054611a8f90613f2b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b60005b81811015610f7c57600083838381811061279557612795613fcb565b9050602002013590506127a53390565b6001600160a01b03166127b782611762565b6001600160a01b0316146127de57604051631310933560e31b815260040160405180910390fd5b6000818152601f60205260408120546001600160401b0316900361281557604051639e13336b60e01b815260040160405180910390fd5b61281f8133612a85565b50600101612779565b6008546001600160a01b031633146128525760405162461bcd60e51b8152600401610d2c90613ef6565b6001600160a01b0381166128b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d2c565b61119781612dbd565b600080356001600160e01b03191681526012602052604090205460ff16156128fb576040516302d813a960e41b815260040160405180910390fd5b6008546001600160a01b031633146129255760405162461bcd60e51b8152600401610d2c90613ef6565b610f7c601e838361359e565b6000805482108015610cfc575050600090815260046020526040902054600160e01b161590565b60008060006129678585612f05565b915091506116e881612f73565b7f0000000000000000000000000000000000000000000000000000000000000d058161299f60005490565b6129a99190613f9a565b11156129c85760405163130ebf3960e01b815260040160405180910390fd5b61119733611edc565b600081600054811015612a1f5760008181526004602052604081205490600160e01b82169003612a1d575b80600003611d185750600019016000818152600460205260409020546129fc565b505b604051636f96cda160e11b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d0581600081518110612a6c57612a6c613fcb565b6020026020010151612a7e9190614380565b6014555050565b601c546001600160a01b031615612afd57601c54604051635569f64b60e11b81526001600160a01b038381166004830152602482018590529091169063aad3ec9690604401600060405180830381600087803b158015612ae457600080fd5b505af1158015612af8573d6000803e3d6000fd5b505050505b6000828152601f6020526040902054612b1f906001600160401b031642614233565b6000838152601f602052604090208054600890612b4d908490600160401b90046001600160401b03166143a2565b82546001600160401b039182166101009390930a9283029190920219909116179055506000828152601f6020526040808220805467ffffffffffffffff191690555183917ff006f9bd525b94dad8e96110350b53cea534db4e7c720d78ad4fe17a9e02b81191a25050565b610f7c838383613129565b80471015612c135760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d2c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612c60576040519150601f19603f3d011682016040523d82523d6000602084013e612c65565b606091505b5050905080610f7c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d2c565b6000546001600160a01b038316612d0557604051622e076360e81b815260040160405180910390fd5b81600003612d265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612d715750600055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160608101825260008082526020820181905291810191909152600082815260046020526040902054610cfc906132ce565b612e4f848484613129565b6001600160a01b0383163b1561227757612e6b84848484613308565b612277576040516368d2bf6b60e11b815260040160405180910390fd5b6040805160608101825260008082526020820181905291810191909152610cfc612eb1836129d1565b6132ce565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612ef357600183039250600a81066030018353600a9004612ed5565b50819003601f19909101908152919050565b6000808251604103612f3b5760208301516040840151606085015160001a612f2f878285856133f4565b94509450505050612f6c565b8251604003612f645760208301516040840151612f598683836134e1565b935093505050612f6c565b506000905060025b9250929050565b6000816004811115612f8757612f876143cd565b03612f8f5750565b6001816004811115612fa357612fa36143cd565b03612ff05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d2c565b6002816004811115613004576130046143cd565b036130515760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d2c565b6003816004811115613065576130656143cd565b036130bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610d2c565b60048160048111156130d1576130d16143cd565b036111975760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610d2c565b6000613134826129d1565b9050836001600160a01b0316816001600160a01b0316146131675760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061318557506131858533612748565b806131a057503361319584610df9565b6001600160a01b0316145b9050806131c057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166131e757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003613288576001830160008181526004602052604081205490036132865760005481146132865760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182d565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061333d9033908990889088906004016143e3565b6020604051808303816000875af1925050508015613378575060408051601f3d908101601f1916820190925261337591810190614416565b60015b6133d6573d8080156133a6576040519150601f19603f3d011682016040523d82523d6000602084013e6133ab565b606091505b5080516000036133ce576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561342b57506000905060036134d8565b8460ff16601b1415801561344357508460ff16601c14155b1561345457506000905060046134d8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156134a8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166134d1576000600192509250506134d8565b9150600090505b94509492505050565b6000806001600160ff1b038316816134fe60ff86901c601b613f9a565b905061350c878288856133f4565b935093505050935093915050565b82805461352690613f2b565b90600052602060002090601f016020900481019282613548576000855561358e565b82601f1061356157805160ff191683800117855561358e565b8280016001018555821561358e579182015b8281111561358e578251825591602001919060010190613573565b5061359a929150613612565b5090565b8280546135aa90613f2b565b90600052602060002090601f0160209004810192826135cc576000855561358e565b82601f106135e55782800160ff1982351617855561358e565b8280016001018555821561358e579182015b8281111561358e5782358255916020019190600101906135f7565b5b8082111561359a5760008155600101613613565b6001600160e01b03198116811461119757600080fd5b60006020828403121561364f57600080fd5b8135611d1881613627565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156136985761369861365a565b604052919050565b6001600160a01b038116811461119757600080fd5b6000606082840312156136c757600080fd5b604051606081018181106001600160401b03821117156136e9576136e961365a565b80604052508235815260208301356020820152604083013561370a816136a0565b60408201529392505050565b60005b83811015613731578181015183820152602001613719565b838111156122775750506000910152565b6000815180845261375a816020860160208601613716565b601f01601f19169290920160200192915050565b602081526000611d186020830184613742565b60006020828403121561379357600080fd5b5035919050565b60006001600160401b038211156137b3576137b361365a565b50601f01601f191660200190565b60006137d46137cf8461379a565b613670565b90508281528383830111156137e857600080fd5b828260208301376000602084830101529392505050565b600082601f83011261381057600080fd5b611d18838335602085016137c1565b60008060006060848603121561383457600080fd5b833592506020840135915060408401356001600160401b0381111561385857600080fd5b613864868287016137ff565b9150509250925092565b6000806040838503121561388157600080fd5b823561388c816136a0565b946020939093013593505050565b6000602082840312156138ac57600080fd5b81356001600160401b038111156138c257600080fd5b8201601f810184136138d357600080fd5b6133ec848235602084016137c1565b600082601f8301126138f357600080fd5b813560206001600160401b0382111561390e5761390e61365a565b8160051b61391d828201613670565b928352848101820192828101908785111561393757600080fd5b83870192505b848310156139565782358252918301919083019061393d565b979650505050505050565b6000806040838503121561397457600080fd5b8235915060208301356001600160401b0381111561399157600080fd5b61399d858286016138e2565b9150509250929050565b6000806000606084860312156139bc57600080fd5b83356139c7816136a0565b925060208401356139d7816136a0565b929592945050506040919091013590565b6060815260006139fb6060830186613742565b8281036020840152613a0d8186613742565b90508281036040840152613a218185613742565b9695505050505050565b600060208284031215613a3d57600080fd5b81356001600160401b03811115613a5357600080fd5b6133ec848285016138e2565b6020808252825182820181905260009190848201906040850190845b818110156119f057613ab683855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101613a7b565b600060208284031215613adb57600080fd5b81356001600160401b03811115613af157600080fd5b820160608185031215611d1857600080fd5b60008083601f840112613b1557600080fd5b5081356001600160401b03811115613b2c57600080fd5b6020830191508360208260051b8501011115612f6c57600080fd5b60008060008060408587031215613b5d57600080fd5b84356001600160401b0380821115613b7457600080fd5b613b8088838901613b03565b90965094506020870135915080821115613b9957600080fd5b50613ba687828801613b03565b95989497509550505050565b600060208284031215613bc457600080fd5b8135611d18816136a0565b6020808252825182820181905260009190848201906040850190845b818110156119f057835183529284019291840191600101613beb565b600080600060608486031215613c1c57600080fd5b8335613c27816136a0565b95602085013595506040909401359392505050565b60008060408385031215613c4f57600080fd5b50508035926020909101359150565b60008060208385031215613c7157600080fd5b82356001600160401b0380821115613c8857600080fd5b818501915085601f830112613c9c57600080fd5b813581811115613cab57600080fd5b866020828501011115613cbd57600080fd5b60209290920196919550909350505050565b60008060408385031215613ce257600080fd5b8235613ced816136a0565b915060208301358015158114613d0257600080fd5b809150509250929050565b60008060208385031215613d2057600080fd5b82356001600160401b03811115613d3657600080fd5b613d4285828601613b03565b90969095509350505050565b60008060008060808587031215613d6457600080fd5b8435613d6f816136a0565b93506020850135613d7f816136a0565b92506040850135915060608501356001600160401b03811115613da157600080fd5b613dad878288016137ff565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610cfc565b803561ffff8116811461253d57600080fd5b600060808284031215613e1257600080fd5b604051608081016001600160401b038282108183111715613e3557613e3561365a565b8160405284358352602085013591508082168214613e5257600080fd5b506020820152604083013563ffffffff81168114613e6f57600080fd5b6040820152613e8060608401613dee565b60608201529392505050565b60008060408385031215613e9f57600080fd5b8235915060208301356001600160401b03811115613ebc57600080fd5b61399d858286016137ff565b60008060408385031215613edb57600080fd5b8235613ee6816136a0565b91506020830135613d02816136a0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680613f3f57607f821691505b602082108103613f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613f9557613f95613f65565b500290565b60008219821115613fad57613fad613f65565b500190565b600060208284031215613fc457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112613ff857600080fd5b8301803591506001600160401b0382111561401257600080fd5b602001915036819003821315612f6c57600080fd5b601f821115610f7c57600081815260208120601f850160051c8101602086101561404e5750805b601f850160051c820191505b8181101561406d5782815560010161405a565b505050505050565b6001600160401b0383111561408c5761408c61365a565b6140a08361409a8354613f2b565b83614027565b6000601f8411600181146140d457600085156140bc5750838201355b600019600387901b1c1916600186901b17835561182d565b600083815260209020601f19861690835b8281101561410557868501358255602094850194600190920191016140e5565b50868210156141225760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b61413e8283613fe1565b6001600160401b038111156141555761415561365a565b614169816141638554613f2b565b85614027565b6000601f82116001811461419d57600083156141855750838201355b600019600385901b1c1916600184901b1785556141f7565b600085815260209020601f19841690835b828110156141ce57868501358255602094850194600190920191016141ae565b50848210156141eb5760001960f88660031b161c19848701351681555b505060018360011b0185555b505050506142086020830183613fe1565b614216818360018601614075565b50506142256040830183613fe1565b612277818360028601614075565b60008282101561424557614245613f65565b500390565b60006001820161425c5761425c613f65565b5060010190565b60006020828403121561427557600080fd5b81516001600160401b0381111561428b57600080fd5b8201601f8101841361429c57600080fd5b80516142aa6137cf8261379a565b8181528560208385010111156142bf57600080fd5b6142d0826020830160208601613716565b95945050505050565b60008085546142e781613f2b565b600182811680156142ff57600181146143105761433f565b60ff1984168752828701945061433f565b8960005260208060002060005b858110156143365781548a82015290840190820161431d565b50505082870194505b5087519250614352838560208b01613716565b602f60f81b939092019283528551916143718382860160208a01613716565b91909201019695505050505050565b60008261439d57634e487b7160e01b600052601260045260246000fd5b500690565b60006001600160401b038083168185168083038211156143c4576143c4613f65565b01949350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a2190830184613742565b60006020828403121561442857600080fd5b8151611d188161362756fea26469706673582212206db655fde37b2bdce24bc4ff967b3a0deb38b9572740d00173b1d94a751f05b564736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f617377616e672d6170692e6865726f6b756170702e636f6d2f417377616e6754726962652f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f617377616e672d6170692e6865726f6b756170702e636f6d2f417377616e6754726962652f00000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : aswangV0 (address): 0xa462127735352B1F03dA8Ab92a87803d05cc6a7B
Arg [1] : _genesisUri (string): https://aswang-api.herokuapp.com/AswangTribe/
Arg [2] : _manananggalURI (string): https://aswang-api.herokuapp.com/AswangTribe/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000a462127735352b1f03da8ab92a87803d05cc6a7b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [4] : 68747470733a2f2f617377616e672d6170692e6865726f6b756170702e636f6d
Arg [5] : 2f417377616e6754726962652f00000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [7] : 68747470733a2f2f617377616e672d6170692e6865726f6b756170702e636f6d
Arg [8] : 2f417377616e6754726962652f00000000000000000000000000000000000000
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.