ERC-721
Overview
Max Total Supply
4,096 pksl
Holders
689
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
8 pkslLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IndelibleERC721A
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./SSTORE2.sol"; import "./DynamicBuffer.sol"; import "./HelperLib.sol"; interface IOnChainKevin { function balanceOf(address owner) external view returns (uint256); } contract IndelibleERC721A is ERC721A, ReentrancyGuard, Ownable { using HelperLib for uint256; using DynamicBuffer for bytes; struct TraitDTO { string name; string mimetype; bytes data; } struct Trait { string name; string mimetype; } struct ContractData { string name; string description; string image; string banner; string website; uint256 royalties; string royaltiesRecipient; } mapping(uint256 => address[]) internal _traitDataPointers; mapping(uint256 => mapping(uint256 => Trait)) internal _traitDetails; mapping(uint256 => bool) internal _renderTokenOffChain; uint256 private constant NUM_LAYERS = 5; uint256 private constant MAX_BATCH_MINT = 20; uint256[][NUM_LAYERS] private TIERS; string[] private LAYER_NAMES = [unicode"Texture", unicode"Face", unicode"Head", unicode"Background", unicode"Luck"]; bool private shouldWrapSVG = true; string private backgroundColor = "transparent"; bool public isContractSealed; uint256 public constant maxSupply = 4096; uint256 public maxPerAddress = 8; uint256 public publicMintPrice = 0.000 ether; string public baseURI = ""; bool public isPublicMintActive; bytes32 private merkleRoot; uint256 public allowListPrice = 0.0 ether; uint256 public maxPerAllowList = 32; bool public isAllowListActive; address public ockAddress = 0x17B19C70bfcA098da3f2eFeF6e7FA3a1C42F5429; ContractData public contractData = ContractData(unicode"pksl", unicode"brutally pixelated, irregularly animated, randomly combined, visually surprising. clean, cute, scary, overwhelming and brimming with life. pksl is a new on-chain strain of the bktrio microbe.", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/8ce16aaf-caab-4d09-8054-17f75bd1e13a", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/8ce16aaf-caab-4d09-8054-17f75bd1e13a", "https://pksl.bktr.io", 1000, "0x62F099a34F01d57c67A100851184bEA0D48b45F6"); constructor() ERC721A(unicode"pksl", unicode"pksl") { TIERS[0] = [2,4,8,21,38,42,43,43,46,50,50,55,65,65,75,77,87,93,99,99,108,118,119,137,138,142,2272]; TIERS[1] = [4,5,18,23,23,25,25,27,28,28,29,30,30,30,30,30,30,30,30,30,30,30,30,30,31,31,31,32,32,32,32,32,32,32,33,33,33,33,33,34,34,35,35,35,35,35,36,36,37,37,38,39,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,42,42,42,42,42,42,43,43,43,43,43,43,43,44,44,44,44,45,47,49,49,49,50,51,52,52,52,53,53,54,54,54,55]; TIERS[2] = [1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,5,5,5,5,5,5,5,5,6,6,6,6,6,6,7,7,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,11,11,11,11,11,12,12,12,12,13,13,13,13,13,13,13,14,14,14,14,15,15,16,16,16,16,16,17,17,17,17,17,17,18,18,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,22,22,22,24,24,24,24,24,25,25,25,25,25,26,26,27,27,27,28,28,29,30,30,31,32,32,32,32,33,34,34,35,37,37,38,40,40,40,41,41,42,42,43,43,43,43,46,47,48,49,50,52,52,55,55,57,57,58,58,62,62,65,65,65,66,67,67,68,68]; TIERS[3] = [16,20,24,25,26,27,28,29,29,29,29,29,30,31,31,35,37,46,50,50,50,50,52,52,54,56,58,60,60,60,60,60,61,61,62,63,67,68,69,69,69,69,69,69,69,69,71,73,78,78,80,81,83,83,135,135,135,136,137,137,138,138,151]; TIERS[4] = [1,1,2,4,8,16,32,64,128,256,512,1024,2048]; } modifier whenMintActive() { require(isMintActive(), "Minting is not active"); _; } modifier whenUnsealed() { require(!isContractSealed, "Contract is sealed"); _; } function rarityGen(uint256 _randinput, uint256 _rarityTier) internal view returns (uint256) { uint256 currentLowerBound = 0; for (uint256 i = 0; i < TIERS[_rarityTier].length; i++) { uint256 thisPercentage = TIERS[_rarityTier][i]; if ( _randinput >= currentLowerBound && _randinput < currentLowerBound + thisPercentage ) return i; currentLowerBound = currentLowerBound + thisPercentage; } revert(); } function entropyForExtraData() internal view returns (uint24) { uint256 randomNumber = uint256( keccak256( abi.encodePacked( tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), msg.sender ) ) ); return uint24(randomNumber); } function stringCompare(string memory a, string memory b) internal pure returns (bool) { return keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)); } function tokensAreDuplicates(uint tokenId1, uint tokenId2) public view returns (bool) { return stringCompare( tokenIdToHash(tokenId1), tokenIdToHash(tokenId2) ); } function reRollDuplicates( uint[] memory groupA, uint[] memory groupB ) public whenUnsealed { for (uint i; i < groupA.length; ++i) { uint tokenId1 = groupA[i]; uint tokenId2 = groupB[i]; require(tokensAreDuplicates(tokenId1, tokenId2), "All tokens must be duplicates"); uint largerTokenId = tokenId1 > tokenId2 ? tokenId1 : tokenId2; _initializeOwnershipAt(largerTokenId); if (_exists(largerTokenId + 1)) { _initializeOwnershipAt(largerTokenId + 1); } _setExtraDataAt(largerTokenId, entropyForExtraData()); } } function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual override returns (uint24) { return from == address(0) ? entropyForExtraData() : previousExtraData; } function getTokenSeed(uint256 _tokenId) internal view returns (uint24) { return _ownershipOf(_tokenId).extraData; } function tokenIdToHash( uint256 _tokenId ) public view returns (string memory) { require(_exists(_tokenId), "Invalid token"); // This will generate a NUM_LAYERS * 3 character string. bytes memory hashBytes = DynamicBuffer.allocate(NUM_LAYERS * 4); for (uint256 i = 0; i < NUM_LAYERS; i++) { uint256 _randinput = uint256( uint256( keccak256( abi.encodePacked( getTokenSeed(_tokenId), _tokenId, _tokenId + i ) ) ) % maxSupply ); uint256 rarity = rarityGen(_randinput, i); if (rarity < 10) { hashBytes.appendSafe("00"); } else if (rarity < 100) { hashBytes.appendSafe("0"); } if (rarity > 999) { hashBytes.appendSafe("999"); } else { hashBytes.appendSafe(bytes(_toString(rarity))); } } return string(hashBytes); } function mint(uint64 _count, bytes32[] calldata merkleProof) external payable nonReentrant whenMintActive returns (uint256) { uint256 totalMinted = _totalMinted(); require(_count > 0, "Invalid token count"); require(totalMinted + _count <= maxSupply, "All tokens are gone"); if (isPublicMintActive) { require(_count * publicMintPrice == msg.value, "Incorrect amount of ether sent"); require(_numberMinted(msg.sender) + _count <= maxPerAddress, "Exceeded max mints allowed"); } else { require(_count * allowListPrice == msg.value, "Incorrect amount of ether sent"); IOnChainKevin ockContract = IOnChainKevin(ockAddress); require(onAllowList(msg.sender, merkleProof) || ockContract.balanceOf(msg.sender) > 0, "Not on allow list"); require(_numberMinted(msg.sender) + _count <= maxPerAllowList, "Exceeded max mints allowed"); } uint256 batchCount = _count / MAX_BATCH_MINT; uint256 remainder = _count % MAX_BATCH_MINT; for (uint256 i = 0; i < batchCount; i++) { _mint(msg.sender, MAX_BATCH_MINT); } if (remainder > 0) { _mint(msg.sender, remainder); } return totalMinted; } function isMintActive() public view returns (bool) { return _totalMinted() < maxSupply && (isPublicMintActive || isAllowListActive); } function hashToSVG(string memory _hash) public view returns (string memory) { uint256 thisTraitIndex; bytes memory svgBytes = DynamicBuffer.allocate(1024 * 128); svgBytes.appendSafe('<svg width="1200" height="1200" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg" style="background-color:'); svgBytes.appendSafe( abi.encodePacked( backgroundColor, ";background-image:url(" ) ); for (uint256 i = 0; i < NUM_LAYERS - 1; i++) { thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (i * 3), (i * 3) + 3) ); svgBytes.appendSafe( abi.encodePacked( "data:", _traitDetails[i][thisTraitIndex].mimetype, ";base64,", Base64.encode(SSTORE2.read(_traitDataPointers[i][thisTraitIndex])), "),url(" ) ); } thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (NUM_LAYERS * 3) - 3, NUM_LAYERS * 3) ); svgBytes.appendSafe( abi.encodePacked( "data:", _traitDetails[NUM_LAYERS - 1][thisTraitIndex].mimetype, ";base64,", Base64.encode(SSTORE2.read(_traitDataPointers[NUM_LAYERS - 1][thisTraitIndex])), ');background-repeat:no-repeat;background-size:contain;background-position:center;image-rendering:-webkit-optimize-contrast;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated;"></svg>' ) ); return string( abi.encodePacked( "data:image/svg+xml;base64,", Base64.encode(svgBytes) ) ); } function hashToMetadata(string memory _hash) public view returns (string memory) { bytes memory metadataBytes = DynamicBuffer.allocate(1024 * 128); metadataBytes.appendSafe("["); for (uint256 i = 0; i < NUM_LAYERS; i++) { uint256 thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (i * 3), (i * 3) + 3) ); metadataBytes.appendSafe( abi.encodePacked( '{"trait_type":"', LAYER_NAMES[i], '","value":"', _traitDetails[i][thisTraitIndex].name, '"}' ) ); if (i == NUM_LAYERS - 1) { metadataBytes.appendSafe("]"); } else { metadataBytes.appendSafe(","); } } return string(metadataBytes); } function onAllowList(address addr, bytes32[] calldata merkleProof) public view returns (bool) { return MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(addr))); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Invalid token"); require(_traitDataPointers[0].length > 0, "Traits have not been added"); string memory tokenHash = tokenIdToHash(_tokenId); bytes memory jsonBytes = DynamicBuffer.allocate(1024 * 128); jsonBytes.appendSafe(unicode"{\"name\":\"pksl #"); jsonBytes.appendSafe( abi.encodePacked( _toString(_tokenId), "\",\"description\":\"", contractData.description, "\"," ) ); if (bytes(baseURI).length > 0 && _renderTokenOffChain[_tokenId]) { jsonBytes.appendSafe( abi.encodePacked( '"image":"', baseURI, _toString(_tokenId), "?dna=", tokenHash, '&network=mainnet",' ) ); } else { string memory svgCode = ""; if (shouldWrapSVG) { string memory svgString = hashToSVG(tokenHash); svgCode = string( abi.encodePacked( "data:image/svg+xml;base64,", Base64.encode( abi.encodePacked( '<svg width="100%" height="100%" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg"><image width="1200" height="1200" href="', svgString, '"></image></svg>' ) ) ) ); jsonBytes.appendSafe( abi.encodePacked( '"svg_image_data":"', svgString, '",' ) ); } else { svgCode = hashToSVG(tokenHash); } jsonBytes.appendSafe( abi.encodePacked( '"image_data":"', svgCode, '",' ) ); } jsonBytes.appendSafe( abi.encodePacked( '"attributes":', hashToMetadata(tokenHash), "}" ) ); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode(jsonBytes) ) ); } function contractURI() public view returns (string memory) { return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( abi.encodePacked( '{"name":"', contractData.name, '","description":"', contractData.description, '","image":"', contractData.image, '","banner":"', contractData.banner, '","external_link":"', contractData.website, '","seller_fee_basis_points":', _toString(contractData.royalties), ',"fee_recipient":"', contractData.royaltiesRecipient, '"}' ) ) ) ); } function tokenIdToSVG(uint256 _tokenId) public view returns (string memory) { return hashToSVG(tokenIdToHash(_tokenId)); } function traitDetails(uint256 _layerIndex, uint256 _traitIndex) public view returns (Trait memory) { return _traitDetails[_layerIndex][_traitIndex]; } function traitData(uint256 _layerIndex, uint256 _traitIndex) public view returns (string memory) { return string(SSTORE2.read(_traitDataPointers[_layerIndex][_traitIndex])); } function addLayer(uint256 _layerIndex, TraitDTO[] memory traits) public onlyOwner whenUnsealed { require(TIERS[_layerIndex].length == traits.length, "Traits size does not match tiers for this index"); address[] memory dataPointers = new address[](traits.length); for (uint256 i = 0; i < traits.length; i++) { dataPointers[i] = SSTORE2.write(traits[i].data); _traitDetails[_layerIndex][i] = Trait(traits[i].name, traits[i].mimetype); } _traitDataPointers[_layerIndex] = dataPointers; return; } function addTrait(uint256 _layerIndex, uint256 _traitIndex, TraitDTO memory trait) public onlyOwner whenUnsealed { _traitDetails[_layerIndex][_traitIndex] = Trait(trait.name, trait.mimetype); address[] memory dataPointers = _traitDataPointers[_layerIndex]; dataPointers[_traitIndex] = SSTORE2.write(trait.data); _traitDataPointers[_layerIndex] = dataPointers; return; } function setContractData(ContractData memory _contractData) external onlyOwner whenUnsealed { contractData = _contractData; } function setMaxPerAddress(uint256 _maxPerAddress) external onlyOwner { maxPerAddress = _maxPerAddress; } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setBackgroundColor(string memory _backgroundColor) external onlyOwner whenUnsealed { backgroundColor = _backgroundColor; } function setRenderOfTokenId(uint256 _tokenId, bool _renderOffChain) external { require(msg.sender == ownerOf(_tokenId), "Only the token owner can set the render method"); _renderTokenOffChain[_tokenId] = _renderOffChain; } function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner { merkleRoot = newMerkleRoot; } function setMaxPerAllowList(uint256 _maxPerAllowList) external onlyOwner { maxPerAllowList = _maxPerAllowList; } function toggleAllowListMint() external onlyOwner { isAllowListActive = !isAllowListActive; } function toggleWrapSVG() external onlyOwner { shouldWrapSVG = !shouldWrapSVG; } function togglePublicMint() external onlyOwner { isPublicMintActive = !isPublicMintActive; } function sealContract() external whenUnsealed onlyOwner { isContractSealed = true; } function withdraw() external onlyOwner nonReentrant { (bool success,) = msg.sender.call{value : address(this).balance}(""); require(success, "Withdrawal failed"); } }
// SPDX-License-Identifier: MIT // Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier) pragma solidity >=0.8.0; /// @title DynamicBuffer /// @author David Huber (@cxkoda) and Simon Fremaux (@dievardump). See also /// https://raw.githubusercontent.com/dievardump/solidity-dynamic-buffer /// @notice This library is used to allocate a big amount of container memory // which will be subsequently filled without needing to reallocate /// memory. /// @dev First, allocate memory. /// Then use `buffer.appendUnchecked(theBytes)` or `appendSafe()` if /// bounds checking is required. library DynamicBuffer { /// @notice Allocates container space for the DynamicBuffer /// @param capacity The intended max amount of bytes in the buffer /// @return buffer The memory location of the buffer /// @dev Allocates `capacity + 0x60` bytes of space /// The buffer array starts at the first container data position, /// (i.e. `buffer = container + 0x20`) function allocate(uint256 capacity) internal pure returns (bytes memory buffer) { assembly { // Get next-free memory address let container := mload(0x40) // Allocate memory by setting a new next-free address { // Add 2 x 32 bytes in size for the two length fields // Add 32 bytes safety space for 32B chunked copy let size := add(capacity, 0x60) let newNextFree := add(container, size) mstore(0x40, newNextFree) } // Set the correct container length { let length := add(capacity, 0x40) mstore(container, length) } // The buffer starts at idx 1 in the container (0 is length) buffer := add(container, 0x20) // Init content with length 0 mstore(buffer, 0) } return buffer; } /// @notice Appends data to buffer, and update buffer length /// @param buffer the buffer to append the data to /// @param data the data to append /// @dev Does not perform out-of-bound checks (container capacity) /// for efficiency. function appendUnchecked(bytes memory buffer, bytes memory data) internal pure { assembly { let length := mload(data) for { data := add(data, 0x20) let dataEnd := add(data, length) let copyTo := add(buffer, add(mload(buffer), 0x20)) } lt(data, dataEnd) { data := add(data, 0x20) copyTo := add(copyTo, 0x20) } { // Copy 32B chunks from data to buffer. // This may read over data array boundaries and copy invalid // bytes, which doesn't matter in the end since we will // later set the correct buffer length, and have allocated an // additional word to avoid buffer overflow. mstore(copyTo, mload(data)) } // Update buffer length mstore(buffer, add(mload(buffer), length)) } } /// @notice Appends data to buffer, and update buffer length /// @param buffer the buffer to append the data to /// @param data the data to append /// @dev Performs out-of-bound checks and calls `appendUnchecked`. function appendSafe(bytes memory buffer, bytes memory data) internal pure { uint256 capacity; uint256 length; assembly { capacity := sub(mload(sub(buffer, 0x20)), 0x40) length := mload(buffer) } require( length + data.length <= capacity, "DynamicBuffer: Appending out of bounds." ); appendUnchecked(buffer, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; library HelperLib { function parseInt(string memory _a) internal pure returns (uint8 _parsedInt) { bytes memory bresult = bytes(_a); uint8 mint = 0; for (uint8 i = 0; i < bresult.length; i++) { if ( (uint8(uint8(bresult[i])) >= 48) && (uint8(uint8(bresult[i])) <= 57) ) { mint *= 10; mint += uint8(bresult[i]) - 48; } } return mint; } function _substring( string memory str, uint256 startIndex, uint256 endIndex ) internal pure returns (string memory) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex - startIndex); for (uint256 i = startIndex; i < endIndex; i++) { result[i - startIndex] = strBytes[i]; } return string(result); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./utils/Bytecode.sol"; /** @title A key-value storage with auto-generated keys for storing chunks of data with a lower write & read cost. @author Agustin Aguilar <[email protected]> Readme: https://github.com/0xsequence/sstore2#readme */ library SSTORE2 { error WriteError(); /** @notice Stores `_data` and returns `pointer` as key for later retrieval @dev The pointer is a contract address with `_data` as code @param _data to be written @return pointer Pointer to the written `_data` */ function write(bytes memory _data) internal returns (address pointer) { // Append 00 to _data so contract can't be called // Build init code bytes memory code = Bytecode.creationCodeFor( abi.encodePacked( hex'00', _data ) ); // Deploy contract using create assembly { pointer := create(0, add(code, 32), mload(code)) } // Address MUST be non-zero if (pointer == address(0)) revert WriteError(); } /** @notice Reads the contents of the `_pointer` code as data, skips the first byte @dev The function is intended for reading pointers generated by `write` @param _pointer to be read @return data read from `_pointer` contract */ function read(address _pointer) internal view returns (bytes memory) { return Bytecode.codeAt(_pointer, 1, type(uint256).max); } /** @notice Reads the contents of the `_pointer` code as data, skips the first byte @dev The function is intended for reading pointers generated by `write` @param _pointer to be read @param _start number of bytes to skip @return data read from `_pointer` contract */ function read(address _pointer, uint256 _start) internal view returns (bytes memory) { return Bytecode.codeAt(_pointer, _start + 1, type(uint256).max); } /** @notice Reads the contents of the `_pointer` code as data, skips the first byte @dev The function is intended for reading pointers generated by `write` @param _pointer to be read @param _start number of bytes to skip @param _end index before which to end extraction @return data read from `_pointer` contract */ function read(address _pointer, uint256 _start, uint256 _end) internal view returns (bytes memory) { return Bytecode.codeAt(_pointer, _start + 1, _end + 1); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library Bytecode { error InvalidCodeAtRange(uint256 _size, uint256 _start, uint256 _end); /** @notice Generate a creation code that results on a contract with `_code` as bytecode @param _code The returning value of the resulting `creationCode` @return creationCode (constructor) for new contract */ function creationCodeFor(bytes memory _code) internal pure returns (bytes memory) { /* 0x00 0x63 0x63XXXXXX PUSH4 _code.length size 0x01 0x80 0x80 DUP1 size size 0x02 0x60 0x600e PUSH1 14 14 size size 0x03 0x60 0x6000 PUSH1 00 0 14 size size 0x04 0x39 0x39 CODECOPY size 0x05 0x60 0x6000 PUSH1 00 0 size 0x06 0xf3 0xf3 RETURN <CODE> */ return abi.encodePacked( hex"63", uint32(_code.length), hex"80_60_0E_60_00_39_60_00_F3", _code ); } /** @notice Returns the size of the code on a given address @param _addr Address that may or may not contain code @return size of the code on the given `_addr` */ function codeSize(address _addr) internal view returns (uint256 size) { assembly { size := extcodesize(_addr) } } /** @notice Returns the code of a given address @dev It will fail if `_end < _start` @param _addr Address that may or may not contain code @param _start number of bytes of code to skip on read @param _end index before which to end extraction @return oCode read from `_addr` deployed bytecode Forked from: https://gist.github.com/KardanovIR/fe98661df9338c842b4a30306d507fbd */ function codeAt(address _addr, uint256 _start, uint256 _end) internal view returns (bytes memory oCode) { uint256 csize = codeSize(_addr); if (csize == 0) return bytes(""); if (_start > csize) return bytes(""); if (_end < _start) revert InvalidCodeAtRange(csize, _start, _end); unchecked { uint256 reqSize = _end - _start; uint256 maxSize = csize - _start; uint256 size = maxSize < reqSize ? maxSize : reqSize; assembly { // allocate output byte array - this could also be done without assembly // by using o_code = new bytes(size) oCode := mload(0x40) // new "memory end" including padding mstore(0x40, add(oCode, and(add(add(size, 0x20), 0x1f), not(0x1f)))) // store length in memory mstore(oCode, size) // actually retrieve the code, this needs assembly extcodecopy(_addr, add(oCode, 0x20), _start, size) } } } }
// 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 v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// 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 (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The 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` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev 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.1.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(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WriteError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct IndelibleERC721A.TraitDTO[]","name":"traits","type":"tuple[]"}],"name":"addLayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"internalType":"uint256","name":"_traitIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct IndelibleERC721A.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","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":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","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":[],"name":"isContractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_count","type":"uint64"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ockAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"groupA","type":"uint256[]"},{"internalType":"uint256[]","name":"groupB","type":"uint256[]"}],"name":"reRollDuplicates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_backgroundColor","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"internalType":"struct IndelibleERC721A.ContractData","name":"_contractData","type":"tuple"}],"name":"setContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAddress","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAllowList","type":"uint256"}],"name":"setMaxPerAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_renderOffChain","type":"bool"}],"name":"setRenderOfTokenId","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":[],"name":"toggleAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWrapSVG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenIdToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"tokensAreDuplicates","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"internalType":"uint256","name":"_traitIndex","type":"uint256"}],"name":"traitData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"internalType":"uint256","name":"_traitIndex","type":"uint256"}],"name":"traitDetails","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"}],"internalType":"struct IndelibleERC721A.Trait","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6007610120908152665465787475726560c81b6101405260809081526004610160818152634661636560e01b6101805260a0526101a0818152631219585960e21b6101c05260c052600a6101e090815269109858dad9dc9bdd5b9960b21b6102005260e052610260604052610220908152634c75636b60e01b61024052610100526200009090601290600562001139565b506013805460ff1916600117905560408051808201909152600b8082526a1d1c985b9cdc185c995b9d60aa1b6020909201918252620000d2916014916200119d565b50600860165560006017819055604080516020810191829052829052620000fd91601891906200119d565b506000601b556020601c819055601d8054610100600160a81b0319167417b19c70bfca098da3f2efef6e7fa3a1c42f5429001790556040805161012081018252600460e0808301918252631c1adcdb60e21b610100840152908252825190810190925260bf8083529092838101929190620060419083013981526020016040518060a001604052806062815260200162005fdf6062913981526020016040518060a00160405280606181526020016200612a6061913981526020016040518060400160405280601481526020017f68747470733a2f2f706b736c2e626b74722e696f00000000000000000000000081525081526020016103e881526020016040518060600160405280602a815260200162006100602a9139905280518051601e916200022f918391602001906200119d565b5060208281015180516200024a92600185019201906200119d565b5060408201518051620002689160028401916020909101906200119d565b5060608201518051620002869160038401916020909101906200119d565b5060808201518051620002a49160048401916020909101906200119d565b5060a0820151600582015560c08201518051620002cc9160068401916020909101906200119d565b505050348015620002dc57600080fd5b506040805180820182526004808252631c1adcdb60e21b6020808401828152855180870190965292855284015281519192916200031c916002916200119d565b508051620003329060039060208401906200119d565b5060008055505060016008556200034933620010e7565b604080516103608101825260028152600460208201526008918101919091526015606082015260266080820152602a60a0820152602b60c0820181905260e0820152602e610100820152603261012082018190526101408201526037610160820152604161018082018190526101a0820152604b6101c0820152604d6101e08201526057610200820152605d61022082015260636102408201819052610260820152606c61028082015260766102a082015260776102c082015260896102e0820152608a610300820152608e6103208201526108e06103408201526200043490600d90601b62001228565b5060408051610da0810182526004815260056020808301919091526012928201929092526017606082018190526080820152601960a0820181905260c0820152601b60e0820152601c6101008201819052610120820152601d610140820152601e610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e0820152601f61030082018190526103208201819052610340820152610360810182905261038081018290526103a081018290526103c081018290526103e08101829052610400810182905261042081019190915260216104408201819052610460820181905261048082018190526104a082018190526104c082015260226104e08201819052610500820152602361052082018190526105408201819052610560820181905261058082018190526105a082015260246105c082018190526105e08201526025610600820181905261062082015260266106408201526027610660820152602861068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082015260296107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e08201819052610900820181905261092082018190526109408201819052610960820152602a61098082018190526109a082018190526109c082018190526109e08201819052610a008201819052610a20820152602b610a408201819052610a608201819052610a808201819052610aa08201819052610ac08201819052610ae08201819052610b00820152602c610b208201819052610b408201819052610b608201819052610b80820152602d610ba0820152602f610bc08201526031610be08201819052610c008201819052610c208201526032610c408201526033610c608201526034610c808201819052610ca08201819052610cc08201526035610ce08201819052610d008201526036610d208201819052610d408201819052610d608201526037610d80820152620007b490600e90606d6200126c565b5060408051611a20810182526001815260026020808301829052928201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201526003610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820152600461058082018190526105a082018190526105c082018190526105e08201819052610600820152600561062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820152600661072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082015260076107e08201819052610800820152600861082082018190526108408201819052610860820181905261088082015260096108a082018190526108c082018190526108e08201819052610900820181905261092082018190526109408201819052610960820181905261098082018190526109a082018190526109c082018190526109e08201819052610a00820152600a610a208201819052610a408201819052610a608201819052610a80820152600b610aa08201819052610ac08201819052610ae08201819052610b008201819052610b20820152600c610b408201819052610b608201819052610b808201819052610ba0820152600d610bc08201819052610be08201819052610c008201819052610c208201819052610c408201819052610c608201819052610c80820152600e610ca08201819052610cc08201819052610ce08201819052610d00820152600f610d208201819052610d4082018190526010610d608301819052610d808301819052610da08301819052610dc08301819052610de08301526011610e008301819052610e208301819052610e408301819052610e608301819052610e808301819052610ea08301526012610ec08301819052610ee08301819052610f008301819052610f208301819052610f408301819052610f608301526013610f808301819052610fa08301819052610fc08301819052610fe08301526014611000830181905261102083018190526110408301819052611060830152601561108083018190526110a083018190526110c083018190526110e08301526016611100830181905261112083018190526111408301819052611160830181905261118083018190526111a083018190526111c083015260186111e08301819052611200830181905261122083018190526112408301819052611260830152601961128083018190526112a083018190526112c083018190526112e08301819052611300830152601a6113208301819052611340830152601b611360830181905261138083018190526113a0830152601c6113c083018190526113e0830152601d611400830152601e6114208301819052611440830152601f61146083015261148082018390526114a082018390526114c082018390526114e08201929092526021611500820152602261152082018190526115408201526023611560820152602561158082018190526115a082015260266115c082015260286115e08201819052611600820181905261162082015260296116408201819052611660820152602a61168082018190526116a0820152602b6116c082018190526116e082018190526117008201819052611720820152602e611740820152602f611760820152603061178082015260316117a082015260326117c082015260346117e082018190526118008201526037611820820181905261184082015260396118608201819052611880820152603a6118a082018190526118c0820152603e6118e08201819052611900820152604161192082018190526119408201819052611960820152604261198082015260436119a082018190526119c082015260446119e08201819052611a0082015262000e4e919060d16200126c565b50604080516107e08101825260108082526014602083015260189282019290925260196060820152601a6080820152601b60a0820152601c60c0820152601d60e08201819052610100820181905261012082018190526101408201819052610160820152601e610180820152601f6101a082018190526101c082015260236101e08201526025610200820152602e61022082015260326102408201819052610260820181905261028082018190526102a082015260346102c082018190526102e082015260366103008201526038610320820152603a610340820152603c610360820181905261038082018190526103a082018190526103c082018190526103e0820152603d6104008201819052610420820152603e610440820152603f6104608201819052604361048083015260446104a083015260456104c083018190526104e08301819052610500830181905261052083018190526105408301819052610560830181905261058083018190526105a083015260476105c083015260496105e0830152604e610600830181905261062083015260506106408301526051610660830152605361068083018190526106a083015260876106c083018190526106e08301819052610700830152608861072083015260896107408301819052610760830152608a61078083018190526107a083015260976107c0830152620010599291906200126c565b50604080516101a0810182526001808252602080830191909152600282840152600460608301526008608080840191909152601060a084015260c083019190915260e082019290925261010080820192909252610120810191909152610200610140820152610400610160820152610800610180820152620010e090601190600d62001228565b5062001365565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200118b579160200282015b828111156200118b57825180516200117a9184916020909101906200119d565b50916020019190600101906200115a565b5062001199929150620012af565b5090565b828054620011ab9062001329565b90600052602060002090601f016020900481019282620011cf57600085556200121a565b82601f10620011ea57805160ff19168380011785556200121a565b828001600101855582156200121a579182015b828111156200121a578251825591602001919060010190620011fd565b5062001199929150620012d0565b8280548282559060005260206000209081019282156200121a579160200282015b828111156200121a578251829061ffff1690559160200191906001019062001249565b8280548282559060005260206000209081019282156200121a579160200282015b828111156200121a578251829060ff169055916020019190600101906200128d565b8082111562001199576000620012c68282620012e7565b50600101620012af565b5b80821115620011995760008155600101620012d1565b508054620012f59062001329565b6000825580601f1062001306575050565b601f016020900490600052602060002090810190620013269190620012d0565b50565b600181811c908216806200133e57607f821691505b6020821081036200135f57634e487b7160e01b600052602260045260246000fd5b50919050565b614c6a80620013756000396000f3fe6080604052600436106103355760003560e01c806368bd580e116101ab578063a22cb465116100f7578063d5abeb0111610095578063e8a3d4851161006f578063e8a3d48514610905578063e985e9c51461091a578063ea84b59b14610963578063f2fde38b1461099057600080fd5b8063d5abeb01146108b9578063dbe9875f146108cf578063dc53fd92146108ef57600080fd5b8063b88d4fde116100d1578063b88d4fde14610839578063c11feac114610859578063c5c627fb14610879578063c87b56dd1461089957600080fd5b8063a22cb465146107e3578063a24e515314610803578063b32c56801461081957600080fd5b80637bddd65b116101645780638da5cb5b1161013e5780638da5cb5b146107885780638fb4e8a9146107a657806395d89b41146107bb578063a2026e3d146107d057600080fd5b80637bddd65b146107285780637cb647591461074857806389ce30741461076857600080fd5b806368bd580e146106895780636c0360eb1461069e5780636cced73a146106b357806370a08231146106d3578063715018a6146106f3578063716e43d71461070857600080fd5b80633cca24201161028557806355f804b311610223578063621a1f74116101fd578063621a1f74146106135780636352211e14610633578063639814e01461065357806366e338701461066957600080fd5b806355f804b3146105be5780635b92ac0d146105de5780636190e1da146105f357600080fd5b806342842e0e1161025f57806342842e0e1461054f5780634920154b1461056f5780634ca1a0f214610584578063542d5041146105a457600080fd5b80633cca2420146104fd5780633ccfd60b146105255780634047638d1461053a57600080fd5b80630f3debbe116102f257806323b872dd116102cc57806323b872dd1461049357806329fc6bae146104b35780632d6b6224146104cd57806336cd2edd146104e757600080fd5b80630f3debbe1461042b57806318160ddd1461044b5780631fdacf541461046e57600080fd5b806301ffc9a71461033a5780630245283e1461036f57806306fdde0314610391578063081812fc146103b3578063095ea7b3146103eb57806309dbabca1461040b575b600080fd5b34801561034657600080fd5b5061035a610355366004613872565b6109b0565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b5061038f61038a36600461398b565b610a02565b005b34801561039d57600080fd5b506103a6610b3d565b6040516103669190613a46565b3480156103bf57600080fd5b506103d36103ce366004613a59565b610bcf565b6040516001600160a01b039091168152602001610366565b3480156103f757600080fd5b5061038f610406366004613a8e565b610c13565b34801561041757600080fd5b506103a6610426366004613ab8565b610cb3565b34801561043757600080fd5b5061038f610446366004613b49565b610cfb565b34801561045757600080fd5b50600154600054035b604051908152602001610366565b34801561047a57600080fd5b50601d546103d39061010090046001600160a01b031681565b34801561049f57600080fd5b5061038f6104ae366004613c73565b610dfb565b3480156104bf57600080fd5b50601d5461035a9060ff1681565b3480156104d957600080fd5b5060195461035a9060ff1681565b3480156104f357600080fd5b50610460601c5481565b34801561050957600080fd5b50610512610faf565b6040516103669796959493929190613caf565b34801561053157600080fd5b5061038f61130d565b34801561054657600080fd5b5061038f611422565b34801561055b57600080fd5b5061038f61056a366004613c73565b611460565b34801561057b57600080fd5b5061038f61147b565b34801561059057600080fd5b5061038f61059f366004613a59565b6114b9565b3480156105b057600080fd5b5060155461035a9060ff1681565b3480156105ca57600080fd5b5061038f6105d9366004613d38565b6114e8565b3480156105ea57600080fd5b5061035a611529565b3480156105ff57600080fd5b5061038f61060e366004613d38565b611557565b34801561061f57600080fd5b506103a661062e366004613a59565b6115b7565b34801561063f57600080fd5b506103d361064e366004613a59565b61176f565b34801561065f57600080fd5b5061046060165481565b34801561067557600080fd5b506103a6610684366004613d38565b61177a565b34801561069557600080fd5b5061038f6118cf565b3480156106aa57600080fd5b506103a661192b565b3480156106bf57600080fd5b5061035a6106ce366004613ab8565b6119b9565b3480156106df57600080fd5b506104606106ee366004613d6c565b6119d5565b3480156106ff57600080fd5b5061038f611a23565b34801561071457600080fd5b5061038f610723366004613e35565b611a59565b34801561073457600080fd5b5061038f610743366004613a59565b611c99565b34801561075457600080fd5b5061038f610763366004613a59565b611cc8565b34801561077457600080fd5b506103a6610783366004613d38565b611cf7565b34801561079457600080fd5b506009546001600160a01b03166103d3565b3480156107b257600080fd5b5061038f611f10565b3480156107c757600080fd5b506103a6611f4e565b6104606107de366004613f3c565b611f5d565b3480156107ef57600080fd5b5061038f6107fe366004613fa9565b6123f0565b34801561080f57600080fd5b50610460601b5481565b34801561082557600080fd5b5061035a610834366004613fdc565b612485565b34801561084557600080fd5b5061038f610854366004614021565b612505565b34801561086557600080fd5b506103a6610874366004613a59565b612549565b34801561088557600080fd5b5061038f610894366004614088565b612557565b3480156108a557600080fd5b506103a66108b4366004613a59565b6126c0565b3480156108c557600080fd5b5061046061100081565b3480156108db57600080fd5b5061038f6108ea3660046140d7565b612930565b3480156108fb57600080fd5b5061046060175481565b34801561091157600080fd5b506103a66129d0565b34801561092657600080fd5b5061035a6109353660046140fa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096f57600080fd5b5061098361097e366004613ab8565b612a2e565b6040516103669190614124565b34801561099c57600080fd5b5061038f6109ab366004613d6c565b612b90565b60006301ffc9a760e01b6001600160e01b0319831614806109e157506380ac58cd60e01b6001600160e01b03198316145b806109fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60155460ff1615610a2e5760405162461bcd60e51b8152600401610a2590614166565b60405180910390fd5b60005b8251811015610b38576000838281518110610a4e57610a4e614192565b602002602001015190506000838381518110610a6c57610a6c614192565b60200260200101519050610a8082826119b9565b610acc5760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c6963617465730000006044820152606401610a25565b6000818311610adb5781610add565b825b9050610ae881612c2b565b610afb610af68260016141be565b612c5b565b15610b1357610b13610b0e8260016141be565b612c2b565b610b2481610b1f612c82565b612cf3565b50505080610b31906141d6565b9050610a31565b505050565b606060028054610b4c906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b78906141ef565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b6000610bda82612c5b565b610bf7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c1e8261176f565b9050336001600160a01b03821614610c5757610c3a8133610935565b610c57576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610cf49184908110610cda57610cda614192565b6000918252602090912001546001600160a01b0316612d48565b9392505050565b6009546001600160a01b03163314610d255760405162461bcd60e51b8152600401610a2590614223565b60155460ff1615610d485760405162461bcd60e51b8152600401610a2590614166565b805180518291601e91610d6291839160209091019061376e565b506020828101518051610d7b926001850192019061376e565b5060408201518051610d9791600284019160209091019061376e565b5060608201518051610db391600384019160209091019061376e565b5060808201518051610dcf91600484019160209091019061376e565b5060a0820151600582015560c08201518051610df591600684019160209091019061376e565b50505050565b6000610e0682612d58565b9050836001600160a01b0316816001600160a01b031614610e395760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610e8657610e698633610935565b610e8657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ead57604051633a954ecd60e21b815260040160405180910390fd5b8015610eb857600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681522080546001019055610f1185610ef6888287612dbf565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003610f6657600184016000818152600460205260408120549003610f64576000548114610f645760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601e80548190610fbe906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea906141ef565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b50505050509080600101805461104c906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611078906141ef565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b5050505050908060020180546110da906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611106906141ef565b80156111535780601f1061112857610100808354040283529160200191611153565b820191906000526020600020905b81548152906001019060200180831161113657829003601f168201915b505050505090806003018054611168906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611194906141ef565b80156111e15780601f106111b6576101008083540402835291602001916111e1565b820191906000526020600020905b8154815290600101906020018083116111c457829003601f168201915b5050505050908060040180546111f6906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611222906141ef565b801561126f5780601f106112445761010080835404028352916020019161126f565b820191906000526020600020905b81548152906001019060200180831161125257829003601f168201915b50505050509080600501549080600601805461128a906141ef565b80601f01602080910402602001604051908101604052809291908181526020018280546112b6906141ef565b80156113035780601f106112d857610100808354040283529160200191611303565b820191906000526020600020905b8154815290600101906020018083116112e657829003601f168201915b5050505050905087565b6009546001600160a01b031633146113375760405162461bcd60e51b8152600401610a2590614223565b6002600854036113895760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a25565b6002600855604051600090339047908381818185875af1925050503d80600081146113d0576040519150601f19603f3d011682016040523d82523d6000602084013e6113d5565b606091505b505090508061141a5760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610a25565b506001600855565b6009546001600160a01b0316331461144c5760405162461bcd60e51b8152600401610a2590614223565b6019805460ff19811660ff90911615179055565b610b3883838360405180602001604052806000815250612505565b6009546001600160a01b031633146114a55760405162461bcd60e51b8152600401610a2590614223565b6013805460ff19811660ff90911615179055565b6009546001600160a01b031633146114e35760405162461bcd60e51b8152600401610a2590614223565b601c55565b6009546001600160a01b031633146115125760405162461bcd60e51b8152600401610a2590614223565b805161152590601890602084019061376e565b5050565b600061100061153760005490565b108015611552575060195460ff16806115525750601d5460ff165b905090565b6009546001600160a01b031633146115815760405162461bcd60e51b8152600401610a2590614223565b60155460ff16156115a45760405162461bcd60e51b8152600401610a2590614166565b805161152590601490602084019061376e565b60606115c282612c5b565b6115fe5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a25565b600061162c61160f60056004614258565b604080518281016060018252910181526000602090910190815290565b905060005b600581101561176857600061100061164886612de2565b8661165385826141be565b60405160e89390931b6001600160e81b0319166020840152602383019190915260438201526063016040516020818303038152906040528051906020012060001c61169e919061428d565b905060006116ac8284612df7565b9050600a8110156116e057604080518082019091526002815261030360f41b60208201526116db908590612e93565b61170c565b606481101561170c576040805180820190915260018152600360fc1b602082015261170c908590612e93565b6103e78111156117405760408051808201909152600381526239393960e81b602082015261173b908590612e93565b611753565b61175361174c82612f18565b8590612e93565b50508080611760906141d6565b915050611631565b5092915050565b60006109fc82612d58565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b918301919091526060916117bc908290612e93565b60005b60058110156117685760006117fc6117f7866117dc856003614258565b6117e7866003614258565b6117f29060036141be565b612f67565b613033565b60ff16905061185f6012838154811061181757611817614192565b60009182526020808320868452600b825260408085208786528352938490209351611848949390910192910161433a565b60408051601f198184030181529190528490612e93565b61186b60016005614390565b8203611899576040805180820190915260018152605d60f81b6020820152611894908490612e93565b6118bc565b6040805180820190915260018152600b60fa1b60208201526118bc908490612e93565b50806118c7816141d6565b9150506117bf565b60155460ff16156118f25760405162461bcd60e51b8152600401610a2590614166565b6009546001600160a01b0316331461191c5760405162461bcd60e51b8152600401610a2590614223565b6015805460ff19166001179055565b60188054611938906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611964906141ef565b80156119b15780601f10611986576101008083540402835291602001916119b1565b820191906000526020600020905b81548152906001019060200180831161199457829003601f168201915b505050505081565b6000610cf46119c7846115b7565b6119d0846115b7565b6130f1565b60006001600160a01b0382166119fe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610a2590614223565b611a57600061314a565b565b6009546001600160a01b03163314611a835760405162461bcd60e51b8152600401610a2590614223565b60155460ff1615611aa65760405162461bcd60e51b8152600401610a2590614166565b8051600d8360058110611abb57611abb614192565b015414611b225760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b6064820152608401610a25565b600081516001600160401b03811115611b3d57611b3d61388f565b604051908082528060200260200182016040528015611b66578160200160208202803683370190505b50905060005b8251811015611c7957611b9b838281518110611b8a57611b8a614192565b60200260200101516040015161319c565b828281518110611bad57611bad614192565b60200260200101906001600160a01b031690816001600160a01b0316815250506040518060400160405280848381518110611bea57611bea614192565b6020026020010151600001518152602001848381518110611c0d57611c0d614192565b6020908102919091018101518101519091526000868152600b8252604080822085835283529020825180519192611c499284929091019061376e565b506020828101518051611c62926001850192019061376e565b509050508080611c71906141d6565b915050611b6c565b506000838152600a602090815260409091208251610df5928401906137f2565b6009546001600160a01b03163314611cc35760405162461bcd60e51b8152600401610a2590614223565b601655565b6009546001600160a01b03163314611cf25760405162461bcd60e51b8152600401610a2590614223565b601a55565b604080516202006081019091526202004081526000602090910181815260609190611d3b6040518060c0016040528060818152602001614b74608191398290612e93565b611d676014604051602001611d5091906143a7565b60408051601f198184030181529190528290612e93565b60005b611d7660016005614390565b811015611e3257611d9a6117f786611d8f846003614258565b6117e7856003614258565b60ff169250611e20600b60008381526020019081526020016000206000858152602001908152602001600020600101611df8611df3600a60008681526020019081526020016000208781548110610cda57610cda614192565b613201565b604051602001611e099291906143d9565b60408051601f198184030181529190528390612e93565b80611e2a816141d6565b915050611d6a565b50611e5d6117f7856003611e47600582614258565b611e519190614390565b6117f260056003614258565b60ff169150611edf600b6000611e7560016005614390565b81526020019081526020016000206000848152602001908152602001600020600101611ece611df3600a600060016005611eaf9190614390565b81526020019081526020016000208681548110610cda57610cda614192565b604051602001611d50929190614433565b611ee881613201565b604051602001611ef89190614597565b60405160208183030381529060405292505050919050565b6009546001600160a01b03163314611f3a5760405162461bcd60e51b8152600401610a2590614223565b601d805460ff19811660ff90911615179055565b606060038054610b4c906141ef565b6000600260085403611fb15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a25565b6002600855611fbe611529565b6120025760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610a25565b6000546001600160401b0385166120515760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610a25565b6110006120676001600160401b038716836141be565b11156120ab5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610a25565b60195460ff16156121b15734601754866001600160401b03166120ce9190614258565b1461211b5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a25565b601654856001600160401b0316612154336001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61215e91906141be565b11156121ac5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610a25565b612378565b34601b54866001600160401b03166121c99190614258565b146122165760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a25565b601d5461010090046001600160a01b0316612232338686612485565b806122a557506040516370a0823160e01b81523360048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561227f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a391906145dc565b115b6122e55760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b6044820152606401610a25565b601c54866001600160401b031661231e336001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61232891906141be565b11156123765760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610a25565b505b600061238e60146001600160401b0388166145f5565b905060006123a660146001600160401b03891661428d565b905060005b828110156123d0576123be336014613353565b806123c8816141d6565b9150506123ab565b5080156123e1576123e13382613353565b50506001600855949350505050565b336001600160a01b038316036124195760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006124fd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613454565b949350505050565b612510848484610dfb565b6001600160a01b0383163b15610df55761252c8484848461346a565b610df5576040516368d2bf6b60e11b815260040160405180910390fd5b60606109fc610783836115b7565b6009546001600160a01b031633146125815760405162461bcd60e51b8152600401610a2590614223565b60155460ff16156125a45760405162461bcd60e51b8152600401610a2590614166565b60408051808201825282518152602080840151818301526000868152600b825283812086825282529290922081518051929391926125e5928492019061376e565b5060208281015180516125fe926001850192019061376e565b5050506000838152600a602090815260408083208054825181850281018501909352808352919290919083018282801561266157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612643575b50505050509050612675826040015161319c565b81848151811061268757612687614192565b6001600160a01b039092166020928302919091018201526000858152600a82526040902082516126b9928401906137f2565b5050505050565b60606126cb82612c5b565b6127075760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a25565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e35461277e5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e2061646465640000000000006044820152606401610a25565b6000612789836115b7565b604080516202006081018252620200408152600060209182019081528251808401909352600f83526e7b226e616d65223a22706b736c202360881b918301919091529192506127d9908290612e93565b6127f86127e585612f18565b604051611d509190601f90602001614609565b600060188054612807906141ef565b905011801561282457506000848152600c602052604090205460ff165b1561284f5761284a601861283786612f18565b84604051602001611d5093929190614657565b6128fb565b60408051602081019091526000815260135460ff16156128d957600061287484611cf7565b905061289e8160405160200161288a91906146d2565b604051602081830303815290604052613201565b6040516020016128ae9190614597565b60405160208183030381529060405291506128d38160405160200161184891906147bd565b506128e5565b6128e283611cf7565b90505b6128f981604051602001611e099190614804565b505b6129176129078361177a565b604051602001611d509190614847565b61292081613201565b604051602001611ef89190614888565b6129398261176f565b6001600160a01b0316336001600160a01b0316146129b05760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b6064820152608401610a25565b6000918252600c6020526040909120805460ff1916911515919091179055565b602354606090612a0a90601e90601f906020906021906022906129f290612f18565b60405161288a969594939291906024906020016148cd565b604051602001612a1a9190614888565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600b60209081526040808320858452909152908190208151808301909252805482908290612a74906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa0906141ef565b8015612aed5780601f10612ac257610100808354040283529160200191612aed565b820191906000526020600020905b815481529060010190602001808311612ad057829003601f168201915b50505050508152602001600182018054612b06906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612b32906141ef565b8015612b7f5780601f10612b5457610100808354040283529160200191612b7f565b820191906000526020600020905b815481529060010190602001808311612b6257829003601f168201915b505050505081525050905092915050565b6009546001600160a01b03163314612bba5760405162461bcd60e51b8152600401610a2590614223565b6001600160a01b038116612c1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a25565b612c288161314a565b50565b6000818152600460205260408120549003612c2857612c4981612d58565b60008281526004602052604090205550565b60008054821080156109fc575050600090815260046020526040902054600160e01b161590565b6000803a434244612c94600184614390565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b60008281526004602052604081205490819003612d225760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b60606109fc826001600019613555565b600081600054811015612da65760008181526004602052604081205490600160e01b82169003612da4575b80600003610cf4575060001901600081815260046020526040902054612d83565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c90612dd286868461360a565b62ffffff16901b95945050505050565b6000612ded82613629565b6060015192915050565b600080805b600d8460058110612e0f57612e0f614192565b0154811015610335576000600d8560058110612e2d57612e2d614192565b018281548110612e3f57612e3f614192565b90600052602060002001549050828610158015612e645750612e6181846141be565b86105b15612e73575091506109fc9050565b612e7d81846141be565b9250508080612e8b906141d6565b915050612dfc565b601f1982015182518251603f19909201918290612eb090836141be565b1115612f0e5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610a25565b610df584846136a0565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612f5557600183039250600a81066030018353600a9004612f37565b50819003601f19909101908152919050565b6060836000612f768585614390565b6001600160401b03811115612f8d57612f8d61388f565b6040519080825280601f01601f191660200182016040528015612fb7576020820181803683370190505b509050845b8481101561302957828181518110612fd657612fd6614192565b01602001516001600160f81b03191682612ff08884614390565b8151811061300057613000614192565b60200101906001600160f81b031916908160001a90535080613021816141d6565b915050612fbc565b5095945050505050565b60008181805b82518160ff1610156130e9576030838260ff168151811061305c5761305c614192565b016020015160f81c1080159061308f57506039838260ff168151811061308457613084614192565b016020015160f81c11155b156130d75761309f600a836149f6565b91506030838260ff16815181106130b8576130b8614192565b01602001516130ca919060f81c614a1f565b6130d49083614a42565b91505b806130e181614a67565b915050613039565b509392505050565b6000816040516020016131049190614a86565b604051602081830303815290604052805190602001208360405160200161312b9190614a86565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806131c7836040516020016131b39190614aa2565b6040516020818303038152906040526136d6565b90508051602082016000f091506001600160a01b0382166131fb5760405163046a55db60e11b815260040160405180910390fd5b50919050565b6060815160000361322057505060408051602081019091526000815290565b6000604051806060016040528060408152602001614bf5604091399050600060038451600261324f91906141be565b61325991906145f5565b613264906004614258565b6001600160401b0381111561327b5761327b61388f565b6040519080825280601f01601f1916602001820160405280156132a5576020820181803683370190505b509050600182016020820185865187015b80821015613311576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506132b6565b505060038651066001811461332d576002811461334057613348565b603d6001830353603d6002830353613348565b603d60018303535b509195945050505050565b6000546001600160a01b03831661337c57604051622e076360e81b815260040160405180910390fd5b8160000361339d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556133f49084906133d7908281612dbf565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106134085760005550505050565b6000826134618584613702565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061349f903390899088908890600401614ac8565b6020604051808303816000875af19250505080156134da575060408051601f3d908101601f191682019092526134d791810190614b05565b60015b613538573d808015613508576040519150601f19603f3d011682016040523d82523d6000602084013e61350d565b606091505b508051600003613530576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060833b6000819003613578575050604080516020810190915260008152610cf4565b80841115613596575050604080516020810190915260008152610cf4565b838310156135c85760405163162544fd60e11b8152600481018290526024810185905260448101849052606401610a25565b83830384820360008282106135dd57826135df565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b60006001600160a01b0384161561362157816124fd565b6124fd612c82565b6040805160808101825260008082526020820181905291810182905260608101919091526109fc61365983612d58565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b818410156136cb5783518152602093840193016136b3565b505082510190915250565b60608151826040516020016136ec929190614b22565b6040516020818303038152906040529050919050565b600081815b84518110156130e957600085828151811061372457613724614192565b6020026020010151905080831161374a576000838152602082905260409020925061375b565b600081815260208490526040902092505b5080613766816141d6565b915050613707565b82805461377a906141ef565b90600052602060002090601f01602090048101928261379c57600085556137e2565b82601f106137b557805160ff19168380011785556137e2565b828001600101855582156137e2579182015b828111156137e25782518255916020019190600101906137c7565b506137ee929150613847565b5090565b8280548282559060005260206000209081019282156137e2579160200282015b828111156137e257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613812565b5b808211156137ee5760008155600101613848565b6001600160e01b031981168114612c2857600080fd5b60006020828403121561388457600080fd5b8135610cf48161385c565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156138c7576138c761388f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156138f5576138f561388f565b604052919050565b60006001600160401b038211156139165761391661388f565b5060051b60200190565b600082601f83011261393157600080fd5b81356020613946613941836138fd565b6138cd565b82815260059290921b8401810191818101908684111561396557600080fd5b8286015b848110156139805780358352918301918301613969565b509695505050505050565b6000806040838503121561399e57600080fd5b82356001600160401b03808211156139b557600080fd5b6139c186838701613920565b935060208501359150808211156139d757600080fd5b506139e485828601613920565b9150509250929050565b60005b83811015613a095781810151838201526020016139f1565b83811115610df55750506000910152565b60008151808452613a328160208601602086016139ee565b601f01601f19169290920160200192915050565b602081526000610cf46020830184613a1a565b600060208284031215613a6b57600080fd5b5035919050565b80356001600160a01b0381168114613a8957600080fd5b919050565b60008060408385031215613aa157600080fd5b613aaa83613a72565b946020939093013593505050565b60008060408385031215613acb57600080fd5b50508035926020909101359150565b600082601f830112613aeb57600080fd5b81356001600160401b03811115613b0457613b0461388f565b613b17601f8201601f19166020016138cd565b818152846020838601011115613b2c57600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215613b5b57600080fd5b81356001600160401b0380821115613b7257600080fd5b9083019060e08286031215613b8657600080fd5b613b8e6138a5565b823582811115613b9d57600080fd5b613ba987828601613ada565b825250602083013582811115613bbe57600080fd5b613bca87828601613ada565b602083015250604083013582811115613be257600080fd5b613bee87828601613ada565b604083015250606083013582811115613c0657600080fd5b613c1287828601613ada565b606083015250608083013582811115613c2a57600080fd5b613c3687828601613ada565b60808301525060a083013560a082015260c083013582811115613c5857600080fd5b613c6487828601613ada565b60c08301525095945050505050565b600080600060608486031215613c8857600080fd5b613c9184613a72565b9250613c9f60208501613a72565b9150604084013590509250925092565b60e081526000613cc260e083018a613a1a565b8281036020840152613cd4818a613a1a565b90508281036040840152613ce88189613a1a565b90508281036060840152613cfc8188613a1a565b90508281036080840152613d108187613a1a565b90508460a084015282810360c0840152613d2a8185613a1a565b9a9950505050505050505050565b600060208284031215613d4a57600080fd5b81356001600160401b03811115613d6057600080fd5b6124fd84828501613ada565b600060208284031215613d7e57600080fd5b610cf482613a72565b600060608284031215613d9957600080fd5b604051606081016001600160401b038282108183111715613dbc57613dbc61388f565b816040528293508435915080821115613dd457600080fd5b613de086838701613ada565b83526020850135915080821115613df657600080fd5b613e0286838701613ada565b60208401526040850135915080821115613e1b57600080fd5b50613e2885828601613ada565b6040830152505092915050565b60008060408385031215613e4857600080fd5b823591506020808401356001600160401b0380821115613e6757600080fd5b818601915086601f830112613e7b57600080fd5b8135613e89613941826138fd565b81815260059190911b83018401908481019089831115613ea857600080fd5b8585015b83811015613ee057803585811115613ec45760008081fd5b613ed28c89838a0101613d87565b845250918601918601613eac565b508096505050505050509250929050565b60008083601f840112613f0357600080fd5b5081356001600160401b03811115613f1a57600080fd5b6020830191508360208260051b8501011115613f3557600080fd5b9250929050565b600080600060408486031215613f5157600080fd5b83356001600160401b038082168214613f6957600080fd5b90935060208501359080821115613f7f57600080fd5b50613f8c86828701613ef1565b9497909650939450505050565b80358015158114613a8957600080fd5b60008060408385031215613fbc57600080fd5b613fc583613a72565b9150613fd360208401613f99565b90509250929050565b600080600060408486031215613ff157600080fd5b613ffa84613a72565b925060208401356001600160401b0381111561401557600080fd5b613f8c86828701613ef1565b6000806000806080858703121561403757600080fd5b61404085613a72565b935061404e60208601613a72565b92506040850135915060608501356001600160401b0381111561407057600080fd5b61407c87828801613ada565b91505092959194509250565b60008060006060848603121561409d57600080fd5b833592506020840135915060408401356001600160401b038111156140c157600080fd5b6140cd86828701613d87565b9150509250925092565b600080604083850312156140ea57600080fd5b82359150613fd360208401613f99565b6000806040838503121561410d57600080fd5b61411683613a72565b9150613fd360208401613a72565b6020815260008251604060208401526141406060840182613a1a565b90506020840151601f1984830301604085015261415d8282613a1a565b95945050505050565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156141d1576141d16141a8565b500190565b6000600182016141e8576141e86141a8565b5060010190565b600181811c9082168061420357607f821691505b6020821081036131fb57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615614272576142726141a8565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261429c5761429c614277565b500690565b8054600090600181811c90808316806142bb57607f831692505b602080841082036142dc57634e487b7160e01b600052602260045260246000fd5b8180156142f057600181146143015761432e565b60ff1986168952848901965061432e565b60008881526020902060005b868110156143265781548b82015290850190830161430d565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b8152600061435e600f8301856142a1565b6a1116113b30b63ab2911d1160a91b815261437c600b8201856142a1565b61227d60f01b815260020195945050505050565b6000828210156143a2576143a26141a8565b500390565b60006143b382846142a1565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b815260006143f360058301856142a1565b670ed8985cd94d8d0b60c21b815283516144148160088401602088016139ee565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b8152600061444d60058301856142a1565b670ed8985cd94d8d0b60c21b8152835161446e8160088401602088016139ee565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516145cf81601a8501602087016139ee565b91909101601a0192915050565b6000602082840312156145ee57600080fd5b5051919050565b60008261460457614604614277565b500490565b6000835161461b8184602088016139ee565b701116113232b9b1b934b83a34b7b7111d1160791b90830190815261464360118201856142a1565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b8152600061467560098301866142a1565b84516146858183602089016139ee565b643f646e613d60d81b910190815283516146a68160058401602088016139ee565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b6080820152600082516147968160918501602087016139ee565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b815281516000906147eb8160128501602087016139ee565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b8152815160009061482e81600e8501602087016139ee565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061487081600d8501602087016139ee565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516148c081601d8501602087016139ee565b91909101601d0192915050565b683d913730b6b2911d1160b91b815260006148eb600983018a6142a1565b701116113232b9b1b934b83a34b7b7111d1160791b815261490f601182018a6142a1565b6a11161134b6b0b3b2911d1160a91b8152905061492f600b8201896142a1565b6b1116113130b73732b9111d1160a11b81529050614950600c8201886142a1565b7211161132bc3a32b93730b62fb634b735911d1160691b8152905061497860138201876142a1565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a00000000815284516149b081601c8401602089016139ee565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c92909101918201526149dd602e8201856142a1565b61227d60f01b81526002019a9950505050505050505050565b600060ff821660ff84168160ff0481118215151615614a1757614a176141a8565b029392505050565b600060ff821660ff841680821015614a3957614a396141a8565b90039392505050565b600060ff821660ff84168060ff03821115614a5f57614a5f6141a8565b019392505050565b600060ff821660ff8103614a7d57614a7d6141a8565b60010192915050565b60008251614a988184602087016139ee565b9190910192915050565b6000815260008251614abb8160018501602087016139ee565b9190910160010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614afb90830184613a1a565b9695505050505050565b600060208284031215614b1757600080fd5b8151610cf48161385c565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b60058201528151600090614b6581600e8501602087016139ee565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c3d87f28477b7598116892e68521b7c2462aefab5ca65751f734a0982aaed8d864736f6c634300080e003368747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f38636531366161662d636161622d346430392d383035342d31376637356264316531336162727574616c6c7920706978656c617465642c206972726567756c61726c7920616e696d617465642c2072616e646f6d6c7920636f6d62696e65642c2076697375616c6c792073757270726973696e672e20636c65616e2c20637574652c2073636172792c206f7665727768656c6d696e6720616e64206272696d6d696e672077697468206c6966652e20706b736c2069732061206e6577206f6e2d636861696e2073747261696e206f662074686520626b7472696f206d6963726f62652e30783632463039396133344630316435376336374131303038353131383462454130443438623435463668747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f38636531366161662d636161622d346430392d383035342d313766373562643165313361
Deployed Bytecode
0x6080604052600436106103355760003560e01c806368bd580e116101ab578063a22cb465116100f7578063d5abeb0111610095578063e8a3d4851161006f578063e8a3d48514610905578063e985e9c51461091a578063ea84b59b14610963578063f2fde38b1461099057600080fd5b8063d5abeb01146108b9578063dbe9875f146108cf578063dc53fd92146108ef57600080fd5b8063b88d4fde116100d1578063b88d4fde14610839578063c11feac114610859578063c5c627fb14610879578063c87b56dd1461089957600080fd5b8063a22cb465146107e3578063a24e515314610803578063b32c56801461081957600080fd5b80637bddd65b116101645780638da5cb5b1161013e5780638da5cb5b146107885780638fb4e8a9146107a657806395d89b41146107bb578063a2026e3d146107d057600080fd5b80637bddd65b146107285780637cb647591461074857806389ce30741461076857600080fd5b806368bd580e146106895780636c0360eb1461069e5780636cced73a146106b357806370a08231146106d3578063715018a6146106f3578063716e43d71461070857600080fd5b80633cca24201161028557806355f804b311610223578063621a1f74116101fd578063621a1f74146106135780636352211e14610633578063639814e01461065357806366e338701461066957600080fd5b806355f804b3146105be5780635b92ac0d146105de5780636190e1da146105f357600080fd5b806342842e0e1161025f57806342842e0e1461054f5780634920154b1461056f5780634ca1a0f214610584578063542d5041146105a457600080fd5b80633cca2420146104fd5780633ccfd60b146105255780634047638d1461053a57600080fd5b80630f3debbe116102f257806323b872dd116102cc57806323b872dd1461049357806329fc6bae146104b35780632d6b6224146104cd57806336cd2edd146104e757600080fd5b80630f3debbe1461042b57806318160ddd1461044b5780631fdacf541461046e57600080fd5b806301ffc9a71461033a5780630245283e1461036f57806306fdde0314610391578063081812fc146103b3578063095ea7b3146103eb57806309dbabca1461040b575b600080fd5b34801561034657600080fd5b5061035a610355366004613872565b6109b0565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b5061038f61038a36600461398b565b610a02565b005b34801561039d57600080fd5b506103a6610b3d565b6040516103669190613a46565b3480156103bf57600080fd5b506103d36103ce366004613a59565b610bcf565b6040516001600160a01b039091168152602001610366565b3480156103f757600080fd5b5061038f610406366004613a8e565b610c13565b34801561041757600080fd5b506103a6610426366004613ab8565b610cb3565b34801561043757600080fd5b5061038f610446366004613b49565b610cfb565b34801561045757600080fd5b50600154600054035b604051908152602001610366565b34801561047a57600080fd5b50601d546103d39061010090046001600160a01b031681565b34801561049f57600080fd5b5061038f6104ae366004613c73565b610dfb565b3480156104bf57600080fd5b50601d5461035a9060ff1681565b3480156104d957600080fd5b5060195461035a9060ff1681565b3480156104f357600080fd5b50610460601c5481565b34801561050957600080fd5b50610512610faf565b6040516103669796959493929190613caf565b34801561053157600080fd5b5061038f61130d565b34801561054657600080fd5b5061038f611422565b34801561055b57600080fd5b5061038f61056a366004613c73565b611460565b34801561057b57600080fd5b5061038f61147b565b34801561059057600080fd5b5061038f61059f366004613a59565b6114b9565b3480156105b057600080fd5b5060155461035a9060ff1681565b3480156105ca57600080fd5b5061038f6105d9366004613d38565b6114e8565b3480156105ea57600080fd5b5061035a611529565b3480156105ff57600080fd5b5061038f61060e366004613d38565b611557565b34801561061f57600080fd5b506103a661062e366004613a59565b6115b7565b34801561063f57600080fd5b506103d361064e366004613a59565b61176f565b34801561065f57600080fd5b5061046060165481565b34801561067557600080fd5b506103a6610684366004613d38565b61177a565b34801561069557600080fd5b5061038f6118cf565b3480156106aa57600080fd5b506103a661192b565b3480156106bf57600080fd5b5061035a6106ce366004613ab8565b6119b9565b3480156106df57600080fd5b506104606106ee366004613d6c565b6119d5565b3480156106ff57600080fd5b5061038f611a23565b34801561071457600080fd5b5061038f610723366004613e35565b611a59565b34801561073457600080fd5b5061038f610743366004613a59565b611c99565b34801561075457600080fd5b5061038f610763366004613a59565b611cc8565b34801561077457600080fd5b506103a6610783366004613d38565b611cf7565b34801561079457600080fd5b506009546001600160a01b03166103d3565b3480156107b257600080fd5b5061038f611f10565b3480156107c757600080fd5b506103a6611f4e565b6104606107de366004613f3c565b611f5d565b3480156107ef57600080fd5b5061038f6107fe366004613fa9565b6123f0565b34801561080f57600080fd5b50610460601b5481565b34801561082557600080fd5b5061035a610834366004613fdc565b612485565b34801561084557600080fd5b5061038f610854366004614021565b612505565b34801561086557600080fd5b506103a6610874366004613a59565b612549565b34801561088557600080fd5b5061038f610894366004614088565b612557565b3480156108a557600080fd5b506103a66108b4366004613a59565b6126c0565b3480156108c557600080fd5b5061046061100081565b3480156108db57600080fd5b5061038f6108ea3660046140d7565b612930565b3480156108fb57600080fd5b5061046060175481565b34801561091157600080fd5b506103a66129d0565b34801561092657600080fd5b5061035a6109353660046140fa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096f57600080fd5b5061098361097e366004613ab8565b612a2e565b6040516103669190614124565b34801561099c57600080fd5b5061038f6109ab366004613d6c565b612b90565b60006301ffc9a760e01b6001600160e01b0319831614806109e157506380ac58cd60e01b6001600160e01b03198316145b806109fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60155460ff1615610a2e5760405162461bcd60e51b8152600401610a2590614166565b60405180910390fd5b60005b8251811015610b38576000838281518110610a4e57610a4e614192565b602002602001015190506000838381518110610a6c57610a6c614192565b60200260200101519050610a8082826119b9565b610acc5760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c6963617465730000006044820152606401610a25565b6000818311610adb5781610add565b825b9050610ae881612c2b565b610afb610af68260016141be565b612c5b565b15610b1357610b13610b0e8260016141be565b612c2b565b610b2481610b1f612c82565b612cf3565b50505080610b31906141d6565b9050610a31565b505050565b606060028054610b4c906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b78906141ef565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b6000610bda82612c5b565b610bf7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c1e8261176f565b9050336001600160a01b03821614610c5757610c3a8133610935565b610c57576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610cf49184908110610cda57610cda614192565b6000918252602090912001546001600160a01b0316612d48565b9392505050565b6009546001600160a01b03163314610d255760405162461bcd60e51b8152600401610a2590614223565b60155460ff1615610d485760405162461bcd60e51b8152600401610a2590614166565b805180518291601e91610d6291839160209091019061376e565b506020828101518051610d7b926001850192019061376e565b5060408201518051610d9791600284019160209091019061376e565b5060608201518051610db391600384019160209091019061376e565b5060808201518051610dcf91600484019160209091019061376e565b5060a0820151600582015560c08201518051610df591600684019160209091019061376e565b50505050565b6000610e0682612d58565b9050836001600160a01b0316816001600160a01b031614610e395760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610e8657610e698633610935565b610e8657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ead57604051633a954ecd60e21b815260040160405180910390fd5b8015610eb857600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681522080546001019055610f1185610ef6888287612dbf565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003610f6657600184016000818152600460205260408120549003610f64576000548114610f645760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601e80548190610fbe906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea906141ef565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b50505050509080600101805461104c906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611078906141ef565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b5050505050908060020180546110da906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611106906141ef565b80156111535780601f1061112857610100808354040283529160200191611153565b820191906000526020600020905b81548152906001019060200180831161113657829003601f168201915b505050505090806003018054611168906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611194906141ef565b80156111e15780601f106111b6576101008083540402835291602001916111e1565b820191906000526020600020905b8154815290600101906020018083116111c457829003601f168201915b5050505050908060040180546111f6906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611222906141ef565b801561126f5780601f106112445761010080835404028352916020019161126f565b820191906000526020600020905b81548152906001019060200180831161125257829003601f168201915b50505050509080600501549080600601805461128a906141ef565b80601f01602080910402602001604051908101604052809291908181526020018280546112b6906141ef565b80156113035780601f106112d857610100808354040283529160200191611303565b820191906000526020600020905b8154815290600101906020018083116112e657829003601f168201915b5050505050905087565b6009546001600160a01b031633146113375760405162461bcd60e51b8152600401610a2590614223565b6002600854036113895760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a25565b6002600855604051600090339047908381818185875af1925050503d80600081146113d0576040519150601f19603f3d011682016040523d82523d6000602084013e6113d5565b606091505b505090508061141a5760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610a25565b506001600855565b6009546001600160a01b0316331461144c5760405162461bcd60e51b8152600401610a2590614223565b6019805460ff19811660ff90911615179055565b610b3883838360405180602001604052806000815250612505565b6009546001600160a01b031633146114a55760405162461bcd60e51b8152600401610a2590614223565b6013805460ff19811660ff90911615179055565b6009546001600160a01b031633146114e35760405162461bcd60e51b8152600401610a2590614223565b601c55565b6009546001600160a01b031633146115125760405162461bcd60e51b8152600401610a2590614223565b805161152590601890602084019061376e565b5050565b600061100061153760005490565b108015611552575060195460ff16806115525750601d5460ff165b905090565b6009546001600160a01b031633146115815760405162461bcd60e51b8152600401610a2590614223565b60155460ff16156115a45760405162461bcd60e51b8152600401610a2590614166565b805161152590601490602084019061376e565b60606115c282612c5b565b6115fe5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a25565b600061162c61160f60056004614258565b604080518281016060018252910181526000602090910190815290565b905060005b600581101561176857600061100061164886612de2565b8661165385826141be565b60405160e89390931b6001600160e81b0319166020840152602383019190915260438201526063016040516020818303038152906040528051906020012060001c61169e919061428d565b905060006116ac8284612df7565b9050600a8110156116e057604080518082019091526002815261030360f41b60208201526116db908590612e93565b61170c565b606481101561170c576040805180820190915260018152600360fc1b602082015261170c908590612e93565b6103e78111156117405760408051808201909152600381526239393960e81b602082015261173b908590612e93565b611753565b61175361174c82612f18565b8590612e93565b50508080611760906141d6565b915050611631565b5092915050565b60006109fc82612d58565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b918301919091526060916117bc908290612e93565b60005b60058110156117685760006117fc6117f7866117dc856003614258565b6117e7866003614258565b6117f29060036141be565b612f67565b613033565b60ff16905061185f6012838154811061181757611817614192565b60009182526020808320868452600b825260408085208786528352938490209351611848949390910192910161433a565b60408051601f198184030181529190528490612e93565b61186b60016005614390565b8203611899576040805180820190915260018152605d60f81b6020820152611894908490612e93565b6118bc565b6040805180820190915260018152600b60fa1b60208201526118bc908490612e93565b50806118c7816141d6565b9150506117bf565b60155460ff16156118f25760405162461bcd60e51b8152600401610a2590614166565b6009546001600160a01b0316331461191c5760405162461bcd60e51b8152600401610a2590614223565b6015805460ff19166001179055565b60188054611938906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611964906141ef565b80156119b15780601f10611986576101008083540402835291602001916119b1565b820191906000526020600020905b81548152906001019060200180831161199457829003601f168201915b505050505081565b6000610cf46119c7846115b7565b6119d0846115b7565b6130f1565b60006001600160a01b0382166119fe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314611a4d5760405162461bcd60e51b8152600401610a2590614223565b611a57600061314a565b565b6009546001600160a01b03163314611a835760405162461bcd60e51b8152600401610a2590614223565b60155460ff1615611aa65760405162461bcd60e51b8152600401610a2590614166565b8051600d8360058110611abb57611abb614192565b015414611b225760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b6064820152608401610a25565b600081516001600160401b03811115611b3d57611b3d61388f565b604051908082528060200260200182016040528015611b66578160200160208202803683370190505b50905060005b8251811015611c7957611b9b838281518110611b8a57611b8a614192565b60200260200101516040015161319c565b828281518110611bad57611bad614192565b60200260200101906001600160a01b031690816001600160a01b0316815250506040518060400160405280848381518110611bea57611bea614192565b6020026020010151600001518152602001848381518110611c0d57611c0d614192565b6020908102919091018101518101519091526000868152600b8252604080822085835283529020825180519192611c499284929091019061376e565b506020828101518051611c62926001850192019061376e565b509050508080611c71906141d6565b915050611b6c565b506000838152600a602090815260409091208251610df5928401906137f2565b6009546001600160a01b03163314611cc35760405162461bcd60e51b8152600401610a2590614223565b601655565b6009546001600160a01b03163314611cf25760405162461bcd60e51b8152600401610a2590614223565b601a55565b604080516202006081019091526202004081526000602090910181815260609190611d3b6040518060c0016040528060818152602001614b74608191398290612e93565b611d676014604051602001611d5091906143a7565b60408051601f198184030181529190528290612e93565b60005b611d7660016005614390565b811015611e3257611d9a6117f786611d8f846003614258565b6117e7856003614258565b60ff169250611e20600b60008381526020019081526020016000206000858152602001908152602001600020600101611df8611df3600a60008681526020019081526020016000208781548110610cda57610cda614192565b613201565b604051602001611e099291906143d9565b60408051601f198184030181529190528390612e93565b80611e2a816141d6565b915050611d6a565b50611e5d6117f7856003611e47600582614258565b611e519190614390565b6117f260056003614258565b60ff169150611edf600b6000611e7560016005614390565b81526020019081526020016000206000848152602001908152602001600020600101611ece611df3600a600060016005611eaf9190614390565b81526020019081526020016000208681548110610cda57610cda614192565b604051602001611d50929190614433565b611ee881613201565b604051602001611ef89190614597565b60405160208183030381529060405292505050919050565b6009546001600160a01b03163314611f3a5760405162461bcd60e51b8152600401610a2590614223565b601d805460ff19811660ff90911615179055565b606060038054610b4c906141ef565b6000600260085403611fb15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a25565b6002600855611fbe611529565b6120025760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610a25565b6000546001600160401b0385166120515760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610a25565b6110006120676001600160401b038716836141be565b11156120ab5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610a25565b60195460ff16156121b15734601754866001600160401b03166120ce9190614258565b1461211b5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a25565b601654856001600160401b0316612154336001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61215e91906141be565b11156121ac5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610a25565b612378565b34601b54866001600160401b03166121c99190614258565b146122165760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a25565b601d5461010090046001600160a01b0316612232338686612485565b806122a557506040516370a0823160e01b81523360048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561227f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a391906145dc565b115b6122e55760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b6044820152606401610a25565b601c54866001600160401b031661231e336001600160a01b03166000908152600560205260409081902054901c6001600160401b031690565b61232891906141be565b11156123765760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610a25565b505b600061238e60146001600160401b0388166145f5565b905060006123a660146001600160401b03891661428d565b905060005b828110156123d0576123be336014613353565b806123c8816141d6565b9150506123ab565b5080156123e1576123e13382613353565b50506001600855949350505050565b336001600160a01b038316036124195760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006124fd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613454565b949350505050565b612510848484610dfb565b6001600160a01b0383163b15610df55761252c8484848461346a565b610df5576040516368d2bf6b60e11b815260040160405180910390fd5b60606109fc610783836115b7565b6009546001600160a01b031633146125815760405162461bcd60e51b8152600401610a2590614223565b60155460ff16156125a45760405162461bcd60e51b8152600401610a2590614166565b60408051808201825282518152602080840151818301526000868152600b825283812086825282529290922081518051929391926125e5928492019061376e565b5060208281015180516125fe926001850192019061376e565b5050506000838152600a602090815260408083208054825181850281018501909352808352919290919083018282801561266157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612643575b50505050509050612675826040015161319c565b81848151811061268757612687614192565b6001600160a01b039092166020928302919091018201526000858152600a82526040902082516126b9928401906137f2565b5050505050565b60606126cb82612c5b565b6127075760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a25565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e35461277e5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e2061646465640000000000006044820152606401610a25565b6000612789836115b7565b604080516202006081018252620200408152600060209182019081528251808401909352600f83526e7b226e616d65223a22706b736c202360881b918301919091529192506127d9908290612e93565b6127f86127e585612f18565b604051611d509190601f90602001614609565b600060188054612807906141ef565b905011801561282457506000848152600c602052604090205460ff165b1561284f5761284a601861283786612f18565b84604051602001611d5093929190614657565b6128fb565b60408051602081019091526000815260135460ff16156128d957600061287484611cf7565b905061289e8160405160200161288a91906146d2565b604051602081830303815290604052613201565b6040516020016128ae9190614597565b60405160208183030381529060405291506128d38160405160200161184891906147bd565b506128e5565b6128e283611cf7565b90505b6128f981604051602001611e099190614804565b505b6129176129078361177a565b604051602001611d509190614847565b61292081613201565b604051602001611ef89190614888565b6129398261176f565b6001600160a01b0316336001600160a01b0316146129b05760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b6064820152608401610a25565b6000918252600c6020526040909120805460ff1916911515919091179055565b602354606090612a0a90601e90601f906020906021906022906129f290612f18565b60405161288a969594939291906024906020016148cd565b604051602001612a1a9190614888565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600b60209081526040808320858452909152908190208151808301909252805482908290612a74906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa0906141ef565b8015612aed5780601f10612ac257610100808354040283529160200191612aed565b820191906000526020600020905b815481529060010190602001808311612ad057829003601f168201915b50505050508152602001600182018054612b06906141ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612b32906141ef565b8015612b7f5780601f10612b5457610100808354040283529160200191612b7f565b820191906000526020600020905b815481529060010190602001808311612b6257829003601f168201915b505050505081525050905092915050565b6009546001600160a01b03163314612bba5760405162461bcd60e51b8152600401610a2590614223565b6001600160a01b038116612c1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a25565b612c288161314a565b50565b6000818152600460205260408120549003612c2857612c4981612d58565b60008281526004602052604090205550565b60008054821080156109fc575050600090815260046020526040902054600160e01b161590565b6000803a434244612c94600184614390565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b60008281526004602052604081205490819003612d225760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b60606109fc826001600019613555565b600081600054811015612da65760008181526004602052604081205490600160e01b82169003612da4575b80600003610cf4575060001901600081815260046020526040902054612d83565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c90612dd286868461360a565b62ffffff16901b95945050505050565b6000612ded82613629565b6060015192915050565b600080805b600d8460058110612e0f57612e0f614192565b0154811015610335576000600d8560058110612e2d57612e2d614192565b018281548110612e3f57612e3f614192565b90600052602060002001549050828610158015612e645750612e6181846141be565b86105b15612e73575091506109fc9050565b612e7d81846141be565b9250508080612e8b906141d6565b915050612dfc565b601f1982015182518251603f19909201918290612eb090836141be565b1115612f0e5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610a25565b610df584846136a0565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612f5557600183039250600a81066030018353600a9004612f37565b50819003601f19909101908152919050565b6060836000612f768585614390565b6001600160401b03811115612f8d57612f8d61388f565b6040519080825280601f01601f191660200182016040528015612fb7576020820181803683370190505b509050845b8481101561302957828181518110612fd657612fd6614192565b01602001516001600160f81b03191682612ff08884614390565b8151811061300057613000614192565b60200101906001600160f81b031916908160001a90535080613021816141d6565b915050612fbc565b5095945050505050565b60008181805b82518160ff1610156130e9576030838260ff168151811061305c5761305c614192565b016020015160f81c1080159061308f57506039838260ff168151811061308457613084614192565b016020015160f81c11155b156130d75761309f600a836149f6565b91506030838260ff16815181106130b8576130b8614192565b01602001516130ca919060f81c614a1f565b6130d49083614a42565b91505b806130e181614a67565b915050613039565b509392505050565b6000816040516020016131049190614a86565b604051602081830303815290604052805190602001208360405160200161312b9190614a86565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806131c7836040516020016131b39190614aa2565b6040516020818303038152906040526136d6565b90508051602082016000f091506001600160a01b0382166131fb5760405163046a55db60e11b815260040160405180910390fd5b50919050565b6060815160000361322057505060408051602081019091526000815290565b6000604051806060016040528060408152602001614bf5604091399050600060038451600261324f91906141be565b61325991906145f5565b613264906004614258565b6001600160401b0381111561327b5761327b61388f565b6040519080825280601f01601f1916602001820160405280156132a5576020820181803683370190505b509050600182016020820185865187015b80821015613311576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506132b6565b505060038651066001811461332d576002811461334057613348565b603d6001830353603d6002830353613348565b603d60018303535b509195945050505050565b6000546001600160a01b03831661337c57604051622e076360e81b815260040160405180910390fd5b8160000361339d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040812080546801000000000000000185020190556133f49084906133d7908281612dbf565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106134085760005550505050565b6000826134618584613702565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061349f903390899088908890600401614ac8565b6020604051808303816000875af19250505080156134da575060408051601f3d908101601f191682019092526134d791810190614b05565b60015b613538573d808015613508576040519150601f19603f3d011682016040523d82523d6000602084013e61350d565b606091505b508051600003613530576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060833b6000819003613578575050604080516020810190915260008152610cf4565b80841115613596575050604080516020810190915260008152610cf4565b838310156135c85760405163162544fd60e11b8152600481018290526024810185905260448101849052606401610a25565b83830384820360008282106135dd57826135df565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b60006001600160a01b0384161561362157816124fd565b6124fd612c82565b6040805160808101825260008082526020820181905291810182905260608101919091526109fc61365983612d58565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b818410156136cb5783518152602093840193016136b3565b505082510190915250565b60608151826040516020016136ec929190614b22565b6040516020818303038152906040529050919050565b600081815b84518110156130e957600085828151811061372457613724614192565b6020026020010151905080831161374a576000838152602082905260409020925061375b565b600081815260208490526040902092505b5080613766816141d6565b915050613707565b82805461377a906141ef565b90600052602060002090601f01602090048101928261379c57600085556137e2565b82601f106137b557805160ff19168380011785556137e2565b828001600101855582156137e2579182015b828111156137e25782518255916020019190600101906137c7565b506137ee929150613847565b5090565b8280548282559060005260206000209081019282156137e2579160200282015b828111156137e257825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613812565b5b808211156137ee5760008155600101613848565b6001600160e01b031981168114612c2857600080fd5b60006020828403121561388457600080fd5b8135610cf48161385c565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156138c7576138c761388f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156138f5576138f561388f565b604052919050565b60006001600160401b038211156139165761391661388f565b5060051b60200190565b600082601f83011261393157600080fd5b81356020613946613941836138fd565b6138cd565b82815260059290921b8401810191818101908684111561396557600080fd5b8286015b848110156139805780358352918301918301613969565b509695505050505050565b6000806040838503121561399e57600080fd5b82356001600160401b03808211156139b557600080fd5b6139c186838701613920565b935060208501359150808211156139d757600080fd5b506139e485828601613920565b9150509250929050565b60005b83811015613a095781810151838201526020016139f1565b83811115610df55750506000910152565b60008151808452613a328160208601602086016139ee565b601f01601f19169290920160200192915050565b602081526000610cf46020830184613a1a565b600060208284031215613a6b57600080fd5b5035919050565b80356001600160a01b0381168114613a8957600080fd5b919050565b60008060408385031215613aa157600080fd5b613aaa83613a72565b946020939093013593505050565b60008060408385031215613acb57600080fd5b50508035926020909101359150565b600082601f830112613aeb57600080fd5b81356001600160401b03811115613b0457613b0461388f565b613b17601f8201601f19166020016138cd565b818152846020838601011115613b2c57600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215613b5b57600080fd5b81356001600160401b0380821115613b7257600080fd5b9083019060e08286031215613b8657600080fd5b613b8e6138a5565b823582811115613b9d57600080fd5b613ba987828601613ada565b825250602083013582811115613bbe57600080fd5b613bca87828601613ada565b602083015250604083013582811115613be257600080fd5b613bee87828601613ada565b604083015250606083013582811115613c0657600080fd5b613c1287828601613ada565b606083015250608083013582811115613c2a57600080fd5b613c3687828601613ada565b60808301525060a083013560a082015260c083013582811115613c5857600080fd5b613c6487828601613ada565b60c08301525095945050505050565b600080600060608486031215613c8857600080fd5b613c9184613a72565b9250613c9f60208501613a72565b9150604084013590509250925092565b60e081526000613cc260e083018a613a1a565b8281036020840152613cd4818a613a1a565b90508281036040840152613ce88189613a1a565b90508281036060840152613cfc8188613a1a565b90508281036080840152613d108187613a1a565b90508460a084015282810360c0840152613d2a8185613a1a565b9a9950505050505050505050565b600060208284031215613d4a57600080fd5b81356001600160401b03811115613d6057600080fd5b6124fd84828501613ada565b600060208284031215613d7e57600080fd5b610cf482613a72565b600060608284031215613d9957600080fd5b604051606081016001600160401b038282108183111715613dbc57613dbc61388f565b816040528293508435915080821115613dd457600080fd5b613de086838701613ada565b83526020850135915080821115613df657600080fd5b613e0286838701613ada565b60208401526040850135915080821115613e1b57600080fd5b50613e2885828601613ada565b6040830152505092915050565b60008060408385031215613e4857600080fd5b823591506020808401356001600160401b0380821115613e6757600080fd5b818601915086601f830112613e7b57600080fd5b8135613e89613941826138fd565b81815260059190911b83018401908481019089831115613ea857600080fd5b8585015b83811015613ee057803585811115613ec45760008081fd5b613ed28c89838a0101613d87565b845250918601918601613eac565b508096505050505050509250929050565b60008083601f840112613f0357600080fd5b5081356001600160401b03811115613f1a57600080fd5b6020830191508360208260051b8501011115613f3557600080fd5b9250929050565b600080600060408486031215613f5157600080fd5b83356001600160401b038082168214613f6957600080fd5b90935060208501359080821115613f7f57600080fd5b50613f8c86828701613ef1565b9497909650939450505050565b80358015158114613a8957600080fd5b60008060408385031215613fbc57600080fd5b613fc583613a72565b9150613fd360208401613f99565b90509250929050565b600080600060408486031215613ff157600080fd5b613ffa84613a72565b925060208401356001600160401b0381111561401557600080fd5b613f8c86828701613ef1565b6000806000806080858703121561403757600080fd5b61404085613a72565b935061404e60208601613a72565b92506040850135915060608501356001600160401b0381111561407057600080fd5b61407c87828801613ada565b91505092959194509250565b60008060006060848603121561409d57600080fd5b833592506020840135915060408401356001600160401b038111156140c157600080fd5b6140cd86828701613d87565b9150509250925092565b600080604083850312156140ea57600080fd5b82359150613fd360208401613f99565b6000806040838503121561410d57600080fd5b61411683613a72565b9150613fd360208401613a72565b6020815260008251604060208401526141406060840182613a1a565b90506020840151601f1984830301604085015261415d8282613a1a565b95945050505050565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156141d1576141d16141a8565b500190565b6000600182016141e8576141e86141a8565b5060010190565b600181811c9082168061420357607f821691505b6020821081036131fb57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615614272576142726141a8565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261429c5761429c614277565b500690565b8054600090600181811c90808316806142bb57607f831692505b602080841082036142dc57634e487b7160e01b600052602260045260246000fd5b8180156142f057600181146143015761432e565b60ff1986168952848901965061432e565b60008881526020902060005b868110156143265781548b82015290850190830161430d565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b8152600061435e600f8301856142a1565b6a1116113b30b63ab2911d1160a91b815261437c600b8201856142a1565b61227d60f01b815260020195945050505050565b6000828210156143a2576143a26141a8565b500390565b60006143b382846142a1565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b815260006143f360058301856142a1565b670ed8985cd94d8d0b60c21b815283516144148160088401602088016139ee565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b8152600061444d60058301856142a1565b670ed8985cd94d8d0b60c21b8152835161446e8160088401602088016139ee565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516145cf81601a8501602087016139ee565b91909101601a0192915050565b6000602082840312156145ee57600080fd5b5051919050565b60008261460457614604614277565b500490565b6000835161461b8184602088016139ee565b701116113232b9b1b934b83a34b7b7111d1160791b90830190815261464360118201856142a1565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b8152600061467560098301866142a1565b84516146858183602089016139ee565b643f646e613d60d81b910190815283516146a68160058401602088016139ee565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b6080820152600082516147968160918501602087016139ee565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b815281516000906147eb8160128501602087016139ee565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b8152815160009061482e81600e8501602087016139ee565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061487081600d8501602087016139ee565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516148c081601d8501602087016139ee565b91909101601d0192915050565b683d913730b6b2911d1160b91b815260006148eb600983018a6142a1565b701116113232b9b1b934b83a34b7b7111d1160791b815261490f601182018a6142a1565b6a11161134b6b0b3b2911d1160a91b8152905061492f600b8201896142a1565b6b1116113130b73732b9111d1160a11b81529050614950600c8201886142a1565b7211161132bc3a32b93730b62fb634b735911d1160691b8152905061497860138201876142a1565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a00000000815284516149b081601c8401602089016139ee565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c92909101918201526149dd602e8201856142a1565b61227d60f01b81526002019a9950505050505050505050565b600060ff821660ff84168160ff0481118215151615614a1757614a176141a8565b029392505050565b600060ff821660ff841680821015614a3957614a396141a8565b90039392505050565b600060ff821660ff84168060ff03821115614a5f57614a5f6141a8565b019392505050565b600060ff821660ff8103614a7d57614a7d6141a8565b60010192915050565b60008251614a988184602087016139ee565b9190910192915050565b6000815260008251614abb8160018501602087016139ee565b9190910160010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614afb90830184613a1a565b9695505050505050565b600060208284031215614b1757600080fd5b8151610cf48161385c565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b60058201528151600090614b6581600e8501602087016139ee565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c3d87f28477b7598116892e68521b7c2462aefab5ca65751f734a0982aaed8d864736f6c634300080e0033
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.