ERC-721
Overview
Max Total Supply
5,555 HOM
Holders
1,625
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 HOMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Indelible
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "../extensions/ERC721AX.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "solady/src/utils/LibPRNG.sol"; import "solady/src/utils/Base64.sol"; import "solady/src/utils/SSTORE2.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "./lib/DynamicBuffer.sol"; import "./lib/HelperLib.sol"; contract Indelible is ERC721AX, DefaultOperatorFilterer, ReentrancyGuard, Ownable { using HelperLib for uint; using DynamicBuffer for bytes; using LibPRNG for *; struct LinkedTraitDTO { uint[] traitA; uint[] traitB; } struct TraitDTO { string name; string mimetype; bytes data; bool hide; bool useExistingData; uint existingDataIndex; } struct Trait { string name; string mimetype; bool hide; } struct ContractData { string name; string description; string image; string banner; string website; uint royalties; string royaltiesRecipient; } struct WithdrawRecipient { string name; string imageUrl; address recipientAddress; uint percentage; } mapping(uint => address[]) private _traitDataPointers; mapping(uint => mapping(uint => Trait)) private _traitDetails; mapping(uint => bool) private _renderTokenOffChain; mapping(uint => mapping(uint => uint[])) private _linkedTraits; uint private constant DEVELOPER_FEE = 1000; // of 10,000 = 10% uint private constant MAX_BATCH_MINT = 20; bytes32 private constant TIER_2_MERKLE_ROOT = 0xfd72b67878e6b6579e716168f2e7f70f88a4b777065f203c71f26ce1f8773a1f; uint[] private primeNumbers = [ 135419986466399101724740108903015610477591324758987986294397, 935919214672529529254699379456068172547564622727740728385203, 432534654635437988648695007417836862217547977730730769366091, 121937390920146269387636233026547222240097190277750874729107, 931147417701026196725981216508189527323460133287836248716671, 489283222294688268987820540542047890674696745383853025932409 ]; uint[][6] private tiers; string[] private layerNames = [unicode"Role", unicode"Role (Hidden)", unicode"Wear", unicode"Skin", unicode"Class", unicode"Background"]; bool private shouldWrapSVG = true; string private backgroundColor = "transparent"; uint private randomSeed; bytes32 private merkleRoot = 0xfd72b67878e6b6579e716168f2e7f70f88a4b777065f203c71f26ce1f8773a1f; string private networkId = "1"; bool public isContractSealed; uint public maxSupply = 5555; uint public maxPerAddress = 5; uint public publicMintPrice = 0.0088 ether; string public baseURI; bool public isPublicMintActive; uint public allowListPrice = 0 ether; uint public maxPerAllowList = 0; bool public isAllowListActive; ContractData public contractData = ContractData(unicode"OnChain Human Of Metaverse", unicode"OnChain HOM is the 1st 3D-looking Pixel Art On-Chain. Fully hand drawn on 24x24 Artboard with diverse race and a full CC0.", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/1b276899-eb45-4126-8c6b-f91f8b1a98d5", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/1b276899-eb45-4126-8c6b-f91f8b1a98d5", "https://twitter.com/OnchainHOM", 500, "0x9c4f52cf0f6537031d64B0C8BA7ea1729f0d1087"); WithdrawRecipient[] public withdrawRecipients; constructor() ERC721A(unicode"OnChain Human Of Metaverse", unicode"HOM") { tiers[0] = [273,128,119,115,110,104,96,95,95,95,95,92,91,90,90,89,89,88,88,87,86,86,86,85,85,85,85,85,83,82,82,81,78,78,78,77,77,76,76,75,75,74,74,73,71,71,70,69,68,66,65,65,65,65,64,63,55,55,53,52,51,45,35,35,33,29,26,25,23,21,18,15,15,15,12,8,8,7,7,6,6,6,6,6,5,5,5,5,3,1,1,1,1,1,1]; tiers[1] = [5555,0,0,0,0,0,0]; tiers[2] = [355,133,132,132,132,131,130,125,125,122,122,122,122,121,121,120,120,116,115,115,112,112,112,110,110,110,99,98,96,96,96,95,92,88,87,86,86,86,85,85,83,83,82,80,78,78,77,77,76,72,55,55,7]; tiers[3] = [211,202,202,200,200,200,200,200,188,188,180,174,174,174,150,146,146,146,146,146,146,146,146,146,146,146,146,146,124,100,60,31,31,30,30,30,30,23,22,22,21,21,21,21,20,20,20,20,20,20,20,20,19,18]; tiers[4] = [3117,1900,248,158,132,0]; tiers[5] = [430,396,389,382,376,369,360,359,358,345,344,328,303,187,184,158,149,138,0]; randomSeed = uint( keccak256( abi.encodePacked( tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), msg.sender ) ) ); } modifier whenMintActive() { require(isMintActive(), "Minting is not active"); _; } modifier whenUnsealed() { require(!isContractSealed, "Contract is sealed"); _; } receive() external payable { require(isPublicMintActive, "Public minting is not active"); handleMint(msg.value / publicMintPrice, msg.sender); } function rarityGen(uint randinput, uint rarityTier) internal view returns (uint) { uint currentLowerBound = 0; for (uint i = 0; i < tiers[rarityTier].length; i++) { uint thisPercentage = tiers[rarityTier][i]; if ( randinput >= currentLowerBound && randinput < currentLowerBound + thisPercentage ) return i; currentLowerBound = currentLowerBound + thisPercentage; } revert(); } function getTokenDataId(uint tokenId) internal view returns (uint) { uint[] memory indices = new uint[](maxSupply); unchecked { for (uint i; i < maxSupply; i += 1) { indices[i] = i; } } LibPRNG.PRNG memory prng; prng.seed(randomSeed); prng.shuffle(indices); return indices[tokenId]; } function tokenIdToHash( uint tokenId ) public view returns (string memory) { require(_exists(tokenId), "Invalid token"); bytes memory hashBytes = DynamicBuffer.allocate(tiers.length * 4); uint tokenDataId = getTokenDataId(tokenId); uint[] memory hash = new uint[](tiers.length); bool[] memory modifiedLayers = new bool[](tiers.length); uint traitSeed = randomSeed % maxSupply; for (uint i = 0; i < tiers.length; i++) { uint traitIndex = hash[i]; if (modifiedLayers[i] == false) { uint traitRangePosition = ((tokenDataId + i + traitSeed) * primeNumbers[i]) % maxSupply; traitIndex = rarityGen(traitRangePosition, i); hash[i] = traitIndex; } if (_linkedTraits[i][traitIndex].length > 0) { hash[_linkedTraits[i][traitIndex][0]] = _linkedTraits[i][traitIndex][1]; modifiedLayers[_linkedTraits[i][traitIndex][0]] = true; } } for (uint i = 0; i < hash.length; i++) { if (hash[i] < 10) { hashBytes.appendSafe("00"); } else if (hash[i] < 100) { hashBytes.appendSafe("0"); } if (hash[i] > 999) { hashBytes.appendSafe("999"); } else { hashBytes.appendSafe(bytes(_toString(hash[i]))); } } return string(hashBytes); } function handleMint(uint count, address recipient) internal whenMintActive returns (uint) { uint totalMinted = _totalMinted(); require(count > 0, "Invalid token count"); require(totalMinted + count <= maxSupply, "All tokens are gone"); if (isPublicMintActive) { if (msg.sender != owner()) { require(_numberMinted(msg.sender) + count <= maxPerAddress, "Exceeded max mints allowed"); require(count * publicMintPrice == msg.value, "Incorrect amount of ether sent"); } require(msg.sender == tx.origin, "EOAs only"); } uint batchCount = count / MAX_BATCH_MINT; uint remainder = count % MAX_BATCH_MINT; for (uint i = 0; i < batchCount; i++) { _mint(recipient, MAX_BATCH_MINT); } if (remainder > 0) { _mint(recipient, remainder); } return totalMinted; } function mint(uint count, bytes32[] calldata merkleProof) external payable nonReentrant whenMintActive returns (uint) { if (!isPublicMintActive && msg.sender != owner()) { require(onAllowList(msg.sender, merkleProof), "Not on allow list"); require(_numberMinted(msg.sender) + count <= maxPerAllowList, "Exceeded max mints allowed"); require(count * allowListPrice == msg.value, "Incorrect amount of ether sent"); } return handleMint(count, msg.sender); } function airdrop(uint count, address recipient) external payable nonReentrant whenMintActive returns (uint) { require(isPublicMintActive || msg.sender == owner(), "Public minting is not active"); return handleMint(count, recipient); } function isMintActive() public view returns (bool) { return _totalMinted() < maxSupply && (isPublicMintActive || isAllowListActive || msg.sender == owner()); } function hashToSVG(string memory _hash) public view returns (string memory) { uint 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 (uint i = 0; i < tiers.length - 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, (tiers.length * 3) - 3, tiers.length * 3) ); svgBytes.appendSafe( abi.encodePacked( "data:", _traitDetails[tiers.length - 1][thisTraitIndex].mimetype, ";base64,", Base64.encode(SSTORE2.read(_traitDataPointers[tiers.length - 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("["); bool afterFirstTrait; for (uint i = 0; i < tiers.length; i++) { uint thisTraitIndex = HelperLib.parseInt( HelperLib._substring(_hash, (i * 3), (i * 3) + 3) ); if (_traitDetails[i][thisTraitIndex].hide == false) { if (afterFirstTrait) { metadataBytes.appendSafe(","); } metadataBytes.appendSafe( abi.encodePacked( '{"trait_type":"', layerNames[i], '","value":"', _traitDetails[i][thisTraitIndex].name, '"}' ) ); if (afterFirstTrait == false) { afterFirstTrait = true; } } if (i == tiers.length - 1) { 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))) || MerkleProof.verify(merkleProof, TIER_2_MERKLE_ROOT, keccak256(abi.encodePacked(addr))); } function tokenURI(uint 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( abi.encodePacked( '{"name":"', contractData.name, " #", _toString(tokenId), '","description":"', contractData.description, '",' ) ); if (bytes(baseURI).length > 0 && _renderTokenOffChain[tokenId]) { jsonBytes.appendSafe( abi.encodePacked( '"image":"', baseURI, _toString(tokenId), "?dna=", tokenHash, '&networkId=', networkId, '",' ) ); } 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>' ) ) ) ); } 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(uint tokenId) public view returns (string memory) { return hashToSVG(tokenIdToHash(tokenId)); } function traitDetails(uint layerIndex, uint traitIndex) public view returns (Trait memory) { return _traitDetails[layerIndex][traitIndex]; } function traitData(uint layerIndex, uint traitIndex) public view returns (bytes memory) { return SSTORE2.read(_traitDataPointers[layerIndex][traitIndex]); } function getLinkedTraits(uint layerIndex, uint traitIndex) public view returns (uint[] memory) { return _linkedTraits[layerIndex][traitIndex]; } function addLayer(uint layerIndex, TraitDTO[] memory traits) public onlyOwner whenUnsealed { require(tiers[layerIndex].length == traits.length, "Traits length is incorrect"); address[] memory dataPointers = new address[](traits.length); for (uint i = 0; i < traits.length; i++) { if (traits[i].useExistingData) { dataPointers[i] = dataPointers[traits[i].existingDataIndex]; } else { dataPointers[i] = SSTORE2.write(traits[i].data); } _traitDetails[layerIndex][i] = Trait(traits[i].name, traits[i].mimetype, traits[i].hide); } _traitDataPointers[layerIndex] = dataPointers; return; } function addTrait(uint layerIndex, uint traitIndex, TraitDTO memory trait) public onlyOwner whenUnsealed { _traitDetails[layerIndex][traitIndex] = Trait(trait.name, trait.mimetype, trait.hide); address[] memory dataPointers = _traitDataPointers[layerIndex]; if (trait.useExistingData) { dataPointers[traitIndex] = dataPointers[trait.existingDataIndex]; } else { dataPointers[traitIndex] = SSTORE2.write(trait.data); } _traitDataPointers[layerIndex] = dataPointers; return; } function setLinkedTraits(LinkedTraitDTO[] memory linkedTraits) public onlyOwner whenUnsealed { for (uint i = 0; i < linkedTraits.length; i++) { _linkedTraits[linkedTraits[i].traitA[0]][linkedTraits[i].traitA[1]] = [linkedTraits[i].traitB[0],linkedTraits[i].traitB[1]]; } } function setContractData(ContractData memory data) external onlyOwner whenUnsealed { contractData = data; } function setMaxPerAddress(uint max) external onlyOwner { maxPerAddress = max; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function setBackgroundColor(string memory color) external onlyOwner whenUnsealed { backgroundColor = color; } function setRenderOfTokenId(uint tokenId, bool renderOffChain) external { require(msg.sender == ownerOf(tokenId), "Not token owner"); _renderTokenOffChain[tokenId] = renderOffChain; } function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner { merkleRoot = newMerkleRoot; } function setMaxPerAllowList(uint max) external onlyOwner { maxPerAllowList = max; } function setAllowListPrice(uint price) external onlyOwner { allowListPrice = price; } function setPublicMintPrice(uint price) external onlyOwner { publicMintPrice = price; } 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 { uint balance = address(this).balance; uint amount = (balance * (10000 - DEVELOPER_FEE)) / 10000; uint distAmount = 0; uint totalDistributionPercentage = 0; address payable receiver = payable(owner()); address payable dev = payable(0x29FbB84b835F892EBa2D331Af9278b74C595EDf1); Address.sendValue(dev, balance - amount); if (withdrawRecipients.length > 0) { for (uint i = 0; i < withdrawRecipients.length; i++) { totalDistributionPercentage = totalDistributionPercentage + withdrawRecipients[i].percentage; address payable currRecepient = payable(withdrawRecipients[i].recipientAddress); distAmount = (amount * (10000 - withdrawRecipients[i].percentage)) / 10000; Address.sendValue(currRecepient, amount - distAmount); } } balance = address(this).balance; Address.sendValue(receiver, balance); } function transferFrom(address from, address to, uint tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } }
// 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.13; 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 // Indelible Labs LLC pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; /** * @dev This implements an optional extension of {ERC721} that automatically * expires approvals for operators to transfer your tokens after 30 days or * the set approval lifespan. */ abstract contract ERC721AX is ERC721A { // Mapping from owner to operator approvals mapping(address => mapping(address => uint)) private _operatorApprovals; mapping(address => uint128) public approvalLifespans; // Approval lifespan uint128 constant public DEFAULT_APPROVAL_LIFESPAN = 30 days; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override(ERC721A) { require(_msgSenderERC721A() != operator, "ERC721: approve to caller"); uint128 approvalLifespan = approvalLifespans[_msgSenderERC721A()] > 0 ? approvalLifespans[_msgSenderERC721A()] : DEFAULT_APPROVAL_LIFESPAN; _operatorApprovals[_msgSenderERC721A()][operator] = approved ? block.timestamp + approvalLifespan : 0; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override(ERC721A) returns (bool) { return _operatorApprovals[owner][operator] > block.timestamp; } /** * @dev Set the lifespan of an approval in days. */ function setApprovalLifespanDays(uint128 lifespanDays) public { approvalLifespans[msg.sender] = lifespanDays * 1 days; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Library to encode strings in Base64. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/Base64.sol) /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Base64.sol) /// @author Modified from (https://github.com/Brechtpd/base64/blob/main/base64.sol) by Brecht Devos - <[email protected]>. library Base64 { /// @dev Encodes `data` using the base64 encoding described in RFC 4648. /// See: https://datatracker.ietf.org/doc/html/rfc4648 /// @param fileSafe Whether to replace '+' with '-' and '/' with '_'. /// @param noPadding Whether to strip away the padding. function encode(bytes memory data, bool fileSafe, bool noPadding) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let dataLength := mload(data) if dataLength { // Multiply by 4/3 rounded up. // The `shl(2, ...)` is equivalent to multiplying by 4. let encodedLength := shl(2, div(add(dataLength, 2), 3)) // Set `result` to point to the start of the free memory. result := mload(0x40) // Store the table into the scratch space. // Offsetted by -1 byte so that the `mload` will load the character. // We will rewrite the free memory pointer at `0x40` later with // the allocated size. // The magic constant 0x0230 will translate "-_" + "+/". mstore(0x1f, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef") mstore(0x3f, sub("ghijklmnopqrstuvwxyz0123456789-_", mul(iszero(fileSafe), 0x0230))) // Skip the first slot, which stores the length. let ptr := add(result, 0x20) let end := add(ptr, encodedLength) // Run over the input, 3 bytes at a time. for {} 1 {} { data := add(data, 3) // Advance 3 bytes. let input := mload(data) // Write 4 bytes. Optimized for fewer stack operations. mstore8(0, mload(and(shr(18, input), 0x3F))) mstore8(1, mload(and(shr(12, input), 0x3F))) mstore8(2, mload(and(shr(6, input), 0x3F))) mstore8(3, mload(and(input, 0x3F))) mstore(ptr, mload(0x00)) ptr := add(ptr, 4) // Advance 4 bytes. if iszero(lt(ptr, end)) { break } } // Allocate the memory for the string. // Add 31 and mask with `not(31)` to round the // free memory pointer up the next multiple of 32. mstore(0x40, and(add(end, 31), not(31))) // Equivalent to `o = [0, 2, 1][dataLength % 3]`. let o := div(2, mod(dataLength, 3)) // Offset `ptr` and pad with '='. We can simply write over the end. mstore(sub(ptr, o), shl(240, 0x3d3d)) // Set `o` to zero if there is padding. o := mul(iszero(iszero(noPadding)), o) // Zeroize the slot after the string. mstore(sub(ptr, o), 0) // Write the length of the string. mstore(result, sub(encodedLength, o)) } } } /// @dev Encodes `data` using the base64 encoding described in RFC 4648. /// Equivalent to `encode(data, false, false)`. function encode(bytes memory data) internal pure returns (string memory result) { result = encode(data, false, false); } /// @dev Encodes `data` using the base64 encoding described in RFC 4648. /// Equivalent to `encode(data, fileSafe, false)`. function encode(bytes memory data, bool fileSafe) internal pure returns (string memory result) { result = encode(data, fileSafe, false); } /// @dev Encodes base64 encoded `data`. /// /// Supports: /// - RFC 4648 (both standard and file-safe mode). /// - RFC 3501 (63: ','). /// /// Does not support: /// - Line breaks. /// /// Note: For performance reasons, /// this function will NOT revert on invalid `data` inputs. /// Outputs for invalid inputs will simply be undefined behaviour. /// It is the user's responsibility to ensure that the `data` /// is a valid base64 encoded string. function decode(string memory data) internal pure returns (bytes memory result) { /// @solidity memory-safe-assembly assembly { let dataLength := mload(data) if dataLength { let decodedLength := mul(shr(2, dataLength), 3) for {} 1 {} { // If padded. if iszero(and(dataLength, 3)) { let t := xor(mload(add(data, dataLength)), 0x3d3d) // forgefmt: disable-next-item decodedLength := sub( decodedLength, add(iszero(byte(30, t)), iszero(byte(31, t))) ) break } // If non-padded. decodedLength := add(decodedLength, sub(and(dataLength, 3), 1)) break } result := mload(0x40) // Write the length of the bytes. mstore(result, decodedLength) // Skip the first slot, which stores the length. let ptr := add(result, 0x20) let end := add(ptr, decodedLength) // Load the table into the scratch space. // Constants are optimized for smaller bytecode with zero gas overhead. // `m` also doubles as the mask of the upper 6 bits. let m := 0xfc000000fc00686c7074787c8084888c9094989ca0a4a8acb0b4b8bcc0c4c8cc mstore(0x5b, m) mstore(0x3b, 0x04080c1014181c2024282c3034383c4044484c5054585c6064) mstore(0x1a, 0xf8fcf800fcd0d4d8dce0e4e8ecf0f4) for {} 1 {} { // Read 4 bytes. data := add(data, 4) let input := mload(data) // Write 3 bytes. // forgefmt: disable-next-item mstore(ptr, or( and(m, mload(byte(28, input))), shr(6, or( and(m, mload(byte(29, input))), shr(6, or( and(m, mload(byte(30, input))), shr(6, mload(byte(31, input))) )) )) )) ptr := add(ptr, 3) if iszero(lt(ptr, end)) { break } } // Allocate the memory for the string. // Add 31 and mask with `not(31)` to round the // free memory pointer up the next multiple of 32. mstore(0x40, and(add(end, 31), not(31))) // Zeroize the slot after the bytes. mstore(end, 0) // Restore the zero slot. mstore(0x60, 0) } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Library for generating psuedorandom numbers. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibPRNG.sol) library LibPRNG { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* STRUCTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev A psuedorandom number state in memory. struct PRNG { uint256 state; } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Seeds the `prng` with `state`. function seed(PRNG memory prng, uint256 state) internal pure { /// @solidity memory-safe-assembly assembly { mstore(prng, state) } } /// @dev Returns the next psuedorandom uint256. /// All bits of the returned uint256 pass the NIST Statistical Test Suite. function next(PRNG memory prng) internal pure returns (uint256 result) { // We simply use `keccak256` for a great balance between // runtime gas costs, bytecode size, and statistical properties. // // A high-quality LCG with a 32-byte state // is only about 30% more gas efficient during runtime, // but requires a 32-byte multiplier, which can cause bytecode bloat // when this function is inlined. // // Using this method is about 2x more efficient than // `nextRandomness = uint256(keccak256(abi.encode(randomness)))`. /// @solidity memory-safe-assembly assembly { result := keccak256(prng, 0x20) mstore(prng, result) } } /// @dev Returns a psuedorandom uint256, uniformly distributed /// between 0 (inclusive) and `upper` (exclusive). /// If your modulus is big, this method is recommended /// for uniform sampling to avoid modulo bias. /// For uniform sampling across all uint256 values, /// or for small enough moduli such that the bias is neligible, /// use {next} instead. function uniform(PRNG memory prng, uint256 upper) internal pure returns (uint256 result) { /// @solidity memory-safe-assembly assembly { for {} 1 {} { result := keccak256(prng, 0x20) mstore(prng, result) if iszero(lt(result, mod(sub(0, upper), upper))) { break } } result := mod(result, upper) } } /// @dev Shuffles the array in-place with Fisher-Yates shuffle. function shuffle(PRNG memory prng, uint256[] memory a) internal pure { /// @solidity memory-safe-assembly assembly { let n := mload(a) let w := not(0) let mask := shr(128, w) if n { for { a := add(a, 0x20) } 1 {} { // We can just directly use `keccak256`, cuz // the other approaches don't save much. let r := keccak256(prng, 0x20) mstore(prng, r) // Note that there will be a very tiny modulo bias // if the length of the array is not a power of 2. // For all practical purposes, it is negligible // and will not be a fairness or security concern. { let j := add(a, shl(5, mod(shr(128, r), n))) n := add(n, w) // `sub(n, 1)`. if iszero(n) { break } let i := add(a, shl(5, n)) let t := mload(i) mstore(i, mload(j)) mstore(j, t) } { let j := add(a, shl(5, mod(and(r, mask), n))) n := add(n, w) // `sub(n, 1)`. if iszero(n) { break } let i := add(a, shl(5, n)) let t := mload(i) mstore(i, mload(j)) mstore(j, t) } } } } } /// @dev Shuffles the bytes in-place with Fisher-Yates shuffle. function shuffle(PRNG memory prng, bytes memory a) internal pure { /// @solidity memory-safe-assembly assembly { let n := mload(a) let w := not(0) let mask := shr(128, w) if n { let b := add(a, 0x01) for { a := add(a, 0x20) } 1 {} { // We can just directly use `keccak256`, cuz // the other approaches don't save much. let r := keccak256(prng, 0x20) mstore(prng, r) // Note that there will be a very tiny modulo bias // if the length of the array is not a power of 2. // For all practical purposes, it is negligible // and will not be a fairness or security concern. { let o := mod(shr(128, r), n) n := add(n, w) // `sub(n, 1)`. if iszero(n) { break } let t := mload(add(b, n)) mstore8(add(a, n), mload(add(b, o))) mstore8(add(a, o), t) } { let o := mod(and(r, mask), n) n := add(n, w) // `sub(n, 1)`. if iszero(n) { break } let t := mload(add(b, n)) mstore8(add(a, n), mload(add(b, o))) mstore8(add(a, o), t) } } } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Read and write to persistent storage at a fraction of the cost. /// @author Solady (https://github.com/vectorized/solmady/blob/main/src/utils/SSTORE2.sol) /// @author Saw-mon-and-Natalie (https://github.com/Saw-mon-and-Natalie) /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SSTORE2.sol) /// @author Modified from 0xSequence (https://github.com/0xSequence/sstore2/blob/master/contracts/SSTORE2.sol) library SSTORE2 { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CONSTANTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev We skip the first byte as it's a STOP opcode, /// which ensures the contract can't be called. uint256 internal constant DATA_OFFSET = 1; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CUSTOM ERRORS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Unable to deploy the storage contract. error DeploymentFailed(); /// @dev The storage contract address is invalid. error InvalidPointer(); /// @dev Attempt to read outside of the storage contract's bytecode bounds. error ReadOutOfBounds(); /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* WRITE LOGIC */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Writes `data` into the bytecode of a storage contract and returns its address. function write(bytes memory data) internal returns (address pointer) { // Note: The assembly block below does not expand the memory. /// @solidity memory-safe-assembly assembly { let originalDataLength := mload(data) // Add 1 to data size since we are prefixing it with a STOP opcode. let dataSize := add(originalDataLength, DATA_OFFSET) /** * ------------------------------------------------------------------------------+ * Opcode | Mnemonic | Stack | Memory | * ------------------------------------------------------------------------------| * 61 codeSize | PUSH2 codeSize | codeSize | | * 80 | DUP1 | codeSize codeSize | | * 60 0xa | PUSH1 0xa | 0xa codeSize codeSize | | * 3D | RETURNDATASIZE | 0 0xa codeSize codeSize | | * 39 | CODECOPY | codeSize | [0..codeSize): code | * 3D | RETURNDATASZIE | 0 codeSize | [0..codeSize): code | * F3 | RETURN | | [0..codeSize): code | * 00 | STOP | | | * ------------------------------------------------------------------------------+ * @dev Prefix the bytecode with a STOP opcode to ensure it cannot be called. * Also PUSH2 is used since max contract size cap is 24,576 bytes which is less than 2 ** 16. */ mstore( data, or( 0x61000080600a3d393df300, // Left shift `dataSize` by 64 so that it lines up with the 0000 after PUSH2. shl(0x40, dataSize) ) ) // Deploy a new contract with the generated creation code. pointer := create(0, add(data, 0x15), add(dataSize, 0xa)) // If `pointer` is zero, revert. if iszero(pointer) { // Store the function selector of `DeploymentFailed()`. mstore(0x00, 0x30116425) // Revert with (offset, size). revert(0x1c, 0x04) } // Restore original length of the variable size `data`. mstore(data, originalDataLength) } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* READ LOGIC */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns all the `data` from the bytecode of the storage contract at `pointer`. function read(address pointer) internal view returns (bytes memory data) { /// @solidity memory-safe-assembly assembly { let pointerCodesize := extcodesize(pointer) if iszero(pointerCodesize) { // Store the function selector of `InvalidPointer()`. mstore(0x00, 0x11052bb4) // Revert with (offset, size). revert(0x1c, 0x04) } // Offset all indices by 1 to skip the STOP opcode. let size := sub(pointerCodesize, DATA_OFFSET) // Get the pointer to the free memory and allocate // enough 32-byte words for the data and the length of the data, // then copy the code to the allocated memory. // Masking with 0xffe0 will suffice, since contract size is less than 16 bits. data := mload(0x40) mstore(0x40, add(data, and(add(size, 0x3f), 0xffe0))) mstore(data, size) mstore(add(add(data, 0x20), size), 0) // Zeroize the last slot. extcodecopy(pointer, add(data, 0x20), DATA_OFFSET, size) } } /// @dev Returns the `data` from the bytecode of the storage contract at `pointer`, /// from the byte at `start`, to the end of the data stored. function read(address pointer, uint256 start) internal view returns (bytes memory data) { /// @solidity memory-safe-assembly assembly { let pointerCodesize := extcodesize(pointer) if iszero(pointerCodesize) { // Store the function selector of `InvalidPointer()`. mstore(0x00, 0x11052bb4) // Revert with (offset, size). revert(0x1c, 0x04) } // If `!(pointer.code.size > start)`, reverts. // This also handles the case where `start + DATA_OFFSET` overflows. if iszero(gt(pointerCodesize, start)) { // Store the function selector of `ReadOutOfBounds()`. mstore(0x00, 0x84eb0dd1) // Revert with (offset, size). revert(0x1c, 0x04) } let size := sub(pointerCodesize, add(start, DATA_OFFSET)) // Get the pointer to the free memory and allocate // enough 32-byte words for the data and the length of the data, // then copy the code to the allocated memory. // Masking with 0xffe0 will suffice, since contract size is less than 16 bits. data := mload(0x40) mstore(0x40, add(data, and(add(size, 0x3f), 0xffe0))) mstore(data, size) mstore(add(add(data, 0x20), size), 0) // Zeroize the last slot. extcodecopy(pointer, add(data, 0x20), add(start, DATA_OFFSET), size) } } /// @dev Returns the `data` from the bytecode of the storage contract at `pointer`, /// from the byte at `start`, to the byte at `end` (exclusive) of the data stored. function read(address pointer, uint256 start, uint256 end) internal view returns (bytes memory data) { /// @solidity memory-safe-assembly assembly { let pointerCodesize := extcodesize(pointer) if iszero(pointerCodesize) { // Store the function selector of `InvalidPointer()`. mstore(0x00, 0x11052bb4) // Revert with (offset, size). revert(0x1c, 0x04) } // If `!(pointer.code.size > end) || (start > end)`, revert. // This also handles the cases where // `end + DATA_OFFSET` or `start + DATA_OFFSET` overflows. if iszero( and( gt(pointerCodesize, end), // Within bounds. iszero(gt(start, end)) // Valid range. ) ) { // Store the function selector of `ReadOutOfBounds()`. mstore(0x00, 0x84eb0dd1) // Revert with (offset, size). revert(0x1c, 0x04) } let size := sub(end, start) // Get the pointer to the free memory and allocate // enough 32-byte words for the data and the length of the data, // then copy the code to the allocated memory. // Masking with 0xffe0 will suffice, since contract size is less than 16 bits. data := mload(0x40) mstore(0x40, add(data, and(add(size, 0x3f), 0xffe0))) mstore(data, size) mstore(add(add(data, 0x20), size), 0) // Zeroize the last slot. extcodecopy(pointer, add(data, 0x20), add(start, DATA_OFFSET), size) } } }
{ "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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_APPROVAL_LIFESPAN","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"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":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.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":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvalLifespans","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"getLinkedTraits","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uint256","name":"count","type":"uint256"},{"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":[{"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":[],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setAllowListPrice","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":"uint128","name":"lifespanDays","type":"uint128"}],"name":"setApprovalLifespanDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"color","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","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 Indelible.ContractData","name":"data","type":"tuple"}],"name":"setContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"traitA","type":"uint256[]"},{"internalType":"uint256[]","name":"traitB","type":"uint256[]"}],"internalType":"struct Indelible.LinkedTraitDTO[]","name":"linkedTraits","type":"tuple[]"}],"name":"setLinkedTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","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":"price","type":"uint256"}],"name":"setPublicMintPrice","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":[],"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":"bytes","name":"","type":"bytes"}],"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":"bool","name":"hide","type":"bool"}],"internalType":"struct Indelible.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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawRecipients","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"},{"internalType":"address","name":"recipientAddress","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610140604052781592daa0de59924f83ce768ec050b7de56d8d2888e6e85d67d6080908152789519bc8879540dc4c679a9c2abf111db31a4a669c1f6159eb360a0527844e82080cd300bf00b7e6c7e59183fbb9b4de7f6d5bbc9bc4b60c05278136cfdc34ac5fb85f6b3e26f35e64ebaaa3c9ca5882e706a9360e05278945720a5ecbe5feb9db37c42b290a3560dc9addc4a170c357f61010052784df28331ca1898a2473088c433e4f3445c0398c929500c347961012052620000c790601090600662000e73565b506040805161010081018252600460c0820181815263526f6c6560e01b60e0840152825282518084018452600d81526c526f6c65202848696464656e2960981b6020828101919091528084019190915283518085018552828152632bb2b0b960e11b8183015283850152835180850185529182526329b5b4b760e11b828201526060830191909152825180840184526005815264436c61737360d81b8183015260808301528251808401909352600a835269109858dad9dc9bdd5b9960b21b9083015260a0810191909152620001a290601790600662000ece565b506018805460ff1916600117905560408051808201909152600b81526a1d1c985b9cdc185c995b9d60aa1b6020820152601990620001e19082620010cd565b507ffd72b67878e6b6579e716168f2e7f70f88a4b777065f203c71f26ce1f8773a1f601b556040805180820190915260018152603160f81b6020820152601c906200022d9082620010cd565b506115b3601e556005601f55661f438daa060000602055600060235560006024556040518060e001604052806040518060400160405280601a81526020017f4f6e436861696e2048756d616e204f66204d657461766572736500000000000081525081526020016040518060a00160405280607a815260200162006a17607a913981526020016040518060a001604052806062815260200162006b1c6062913981526020016040518060a001604052806061815260200162006a916061913981526020016040518060400160405280601e81526020017f68747470733a2f2f747769747465722e636f6d2f4f6e636861696e484f4d000081525081526020016101f481526020016040518060600160405280602a815260200162006af2602a9139905280516026908190620003639082620010cd565b50602082015160018201906200037a9082620010cd565b5060408201516002820190620003919082620010cd565b5060608201516003820190620003a89082620010cd565b5060808201516004820190620003bf9082620010cd565b5060a0820151600582015560c08201516006820190620003e09082620010cd565b505050348015620003f057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601a81526020017f4f6e436861696e2048756d616e204f66204d657461766572736500000000000081525060405180604001604052806003815260200162484f4d60e81b81525081600290816200046b9190620010cd565b5060036200047a8282620010cd565b506000805550506daaeb6d7670e522a718067333cd4e3b15620005c65780156200051457604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620004f557600080fd5b505af11580156200050a573d6000803e3d6000fd5b50505050620005c6565b6001600160a01b03821615620005655760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620004da565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620005ac57600080fd5b505af1158015620005c1573d6000803e3d6000fd5b505050505b50506001600a55620005d83362000e21565b60408051610be08101825261011181526080602082018190526077828401526073606080840191909152606e91830191909152606860a083015260c0820152605f60e08201819052610100820181905261012082018190526101408201819052605c610160830152605b610180830152605a6101a083018190526101c083015260596101e08301819052610200830152605861022083018190526102408301526057610260830152605661028083018190526102a083018190526102c083015260556102e08301819052610300830181905261032083018190526103408301819052610360830152605361038083015260526103a083018190526103c083015260516103e0830152604e61040083018190526104208301819052610440830152604d6104608301819052610480830152604c6104a083018190526104c0830152604b6104e08301819052610500830152604a61052083018190526105408301526049610560830152604761058083018190526105a083015260466105c083015260456105e08301526044610600830152604261062083015260416106408301819052610660830181905261068083018190526106a08301526106c0820192909252603f6106e082015260376107008201819052610720820152603561074082015260346107608201526033610780820152602d6107a082015260236107c082018190526107e08201526021610800820152601d610820820152601a6108408201526019610860820152601761088082015260156108a082015260126108c0820152600f6108e082018190526109008201819052610920820152600c6109408201526008610960820181905261098082015260076109a082018190526109c082015260066109e08201819052610a008201819052610a208201819052610a408201819052610a608201526005610a808201819052610aa08201819052610ac08201819052610ae08201526003610b008201526001610b208201819052610b408201819052610b608201819052610b808201819052610ba08201819052610bc0820152620008e8916011919062000f27565b506040805160e0810182526115b38152600060208201819052918101829052606081018290526080810182905260a0810182905260c08101919091526200093490601290600762000f27565b50604080516106a081018252610163815260856020820152608491810182905260608082018390526080820192909252608360a0820152608260c0820152607d60e08201819052610100820152607a61012082018190526101408201819052610160820181905261018082015260796101a082018190526101c082015260786101e08201819052610200820152607461022082015260736102408201819052610260820152607061028082018190526102a082018190526102c0820152606e6102e0820181905261030082018190526103208201526063610340820152606261036082015261038081018290526103a081018290526103c0810191909152605f6103e0820152605c610400820152605861042082015260576104408201526056610460820181905261048082018190526104a082015260556104c082018190526104e08201526053610500820181905261052082015260526105408201526050610560820152604e61058082018190526105a0820152604d6105c082018190526105e0820152604c610600820152604861062082015260376106408201819052610660820152600761068082015262000af290601390603562000f27565b50604080516106c08101825260d3815260ca602082018190529181019190915260c8606082018190526080820181905260a0820181905260c0820181905260e082015260bc610100820181905261012082015260b461014082015260ae610160820181905261018082018190526101a082015260966101c082015260926101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820152607c61038082015260646103a0820152603c6103c0820152601f6103e08201819052610400820152601e61042082018190526104408201819052610460820181905261048082015260176104a082015260166104c082018190526104e08201526015610500820181905261052082018190526105408201819052610560820152601461058082018190526105a082018190526105c082018190526105e082018190526106008201819052610620820181905261064082018190526106608201819052601361068083015260126106a083015262000cb491603662000f6b565b506040805160c081018252610c2d815261076c602082015260f891810191909152609e606082015260846080820152600060a082015262000cfa90601590600662000f27565b5060408051610260810182526101ae815261018c60208201526101859181019190915261017e6060820152610178608082015261017160a082015261016860c082015261016760e082015261016661010082015261015961012082015261015861014082015261014861016082015261012f61018082015260bb6101a082015260b86101c0820152609e6101e08201526095610200820152608a610220820152600061024082015262000db290601690601362000f27565b503a43424462000dc460018462001199565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f198184030181529190528051602090910120601a55620011c1565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000ebc579160200282015b8281111562000ebc57825182906001600160c81b031690559160200191906001019062000e94565b5062000eca92915062000fae565b5090565b82805482825590600052602060002090810192821562000f19579160200282015b8281111562000f19578251829062000f089082620010cd565b509160200191906001019062000eef565b5062000eca92915062000fc5565b82805482825590600052602060002090810192821562000ebc579160200282015b8281111562000ebc578251829061ffff1690559160200191906001019062000f48565b82805482825590600052602060002090810192821562000ebc579160200282015b8281111562000ebc578251829060ff1690559160200191906001019062000f8c565b5b8082111562000eca576000815560010162000faf565b8082111562000eca57600062000fdc828262000fe6565b5060010162000fc5565b50805462000ff4906200103e565b6000825580601f1062001005575050565b601f01602090049060005260206000209081019062001025919062000fae565b50565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200105357607f821691505b6020821081036200107457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620010c857600081815260208120601f850160051c81016020861015620010a35750805b601f850160051c820191505b81811015620010c457828155600101620010af565b5050505b505050565b81516001600160401b03811115620010e957620010e962001028565b6200110181620010fa84546200103e565b846200107a565b602080601f831160018114620011395760008415620011205750858301515b600019600386901b1c1916600185901b178555620010c4565b600085815260208120601f198616915b828110156200116a5788860151825594840194600190910190840162001149565b5085821015620011895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115620011bb57634e487b7160e01b600052601160045260246000fd5b92915050565b61584680620011d16000396000f3fe60806040526004361061039b5760003560e01c80636c0360eb116101dc578063b32c568011610102578063d5abeb01116100a0578063e8a3d4851161006f578063e8a3d48514610a9a578063e985e9c514610aaf578063ea84b59b14610af7578063f2fde38b14610b2457600080fd5b8063d5abeb0114610a21578063dbe9875f14610a37578063dc53fd9214610a57578063dc9867ce14610a6d57600080fd5b8063ba41b0c6116100dc578063ba41b0c6146109bb578063bc63f02e146109ce578063c11feac1146109e1578063c87b56dd14610a0157600080fd5b8063b32c568014610968578063b456806614610988578063b88d4fde146109a857600080fd5b8063876171dc1161017a57806395d89b411161014957806395d89b41146108fd57806397d194d714610912578063a22cb46514610932578063a24e51531461095257600080fd5b8063876171dc1461087a57806389ce3074146108aa5780638da5cb5b146108ca5780638fb4e8a9146108e857600080fd5b8063715018a6116101b6578063715018a6146107ef5780637bddd65b146108045780637cb6475914610824578063831fb10d1461084457600080fd5b80636c0360eb1461079a5780636df9fa88146107af57806370a08231146107cf57600080fd5b80634047638d116102c15780635b92ac0d1161025f5780636352211e1161022e5780636352211e1461072f578063639814e01461074f57806366e338701461076557806368bd580e1461078557600080fd5b80635b92ac0d146106ba5780635d82cf6e146106cf5780636190e1da146106ef578063621a1f741461070f57600080fd5b80634ca1a0f21161029b5780634ca1a0f214610631578063542d50411461065157806355f804b31461066b5780635b5a482c1461068b57600080fd5b80634047638d146105f457806342842e0e146106095780634920154b1461061c57600080fd5b806318160ddd1161033957806336cd2edd1161030857806336cd2edd14610581578063394f22cb146105975780633cca2420146105b75780633ccfd60b146105df57600080fd5b806318160ddd1461051757806323b872dd1461053a57806329fc6bae1461054d5780632d6b62241461056757600080fd5b8063095ea7b311610375578063095ea7b3146104a457806309dbabca146104b75780630f3debbe146104d7578063180c2cc0146104f757600080fd5b806301ffc9a71461041557806306fdde031461044a578063081812fc1461046c57600080fd5b366104105760225460ff166103f75760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b61040e602054346104089190614290565b33610b44565b005b600080fd5b34801561042157600080fd5b506104356104303660046142ba565b610d91565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610ddf565b6040516104419190614327565b34801561047857600080fd5b5061048c61048736600461433a565b610e71565b6040516001600160a01b039091168152602001610441565b61040e6104b236600461436f565b610eb5565b3480156104c357600080fd5b5061045f6104d2366004614399565b610f55565b3480156104e357600080fd5b5061040e6104f23660046144dc565b610f9d565b34801561050357600080fd5b5061040e6105123660046146de565b611054565b34801561052357600080fd5b50600154600054035b604051908152602001610441565b61040e61054836600461472d565b611222565b34801561055957600080fd5b506025546104359060ff1681565b34801561057357600080fd5b506022546104359060ff1681565b34801561058d57600080fd5b5061052c60245481565b3480156105a357600080fd5b5061040e6105b2366004614769565b611378565b3480156105c357600080fd5b506105cc6113be565b6040516104419796959493929190614792565b3480156105eb57600080fd5b5061040e61171c565b34801561060057600080fd5b5061040e6118a5565b61040e61061736600461472d565b6118c1565b34801561062857600080fd5b5061040e611a12565b34801561063d57600080fd5b5061040e61064c36600461433a565b611a2e565b34801561065d57600080fd5b50601d546104359060ff1681565b34801561067757600080fd5b5061040e61068636600461481b565b611a3b565b34801561069757600080fd5b506106a262278d0081565b6040516001600160801b039091168152602001610441565b3480156106c657600080fd5b50610435611a53565b3480156106db57600080fd5b5061040e6106ea36600461433a565b611a96565b3480156106fb57600080fd5b5061040e61070a36600461481b565b611aa3565b34801561071b57600080fd5b5061045f61072a36600461433a565b611ada565b34801561073b57600080fd5b5061048c61074a36600461433a565b611ecf565b34801561075b57600080fd5b5061052c601f5481565b34801561077157600080fd5b5061045f61078036600461481b565b611eda565b34801561079157600080fd5b5061040e612073565b3480156107a657600080fd5b5061045f6120ad565b3480156107bb57600080fd5b5061040e6107ca36600461433a565b61213b565b3480156107db57600080fd5b5061052c6107ea36600461484f565b612148565b3480156107fb57600080fd5b5061040e612196565b34801561081057600080fd5b5061040e61081f36600461433a565b6121a8565b34801561083057600080fd5b5061040e61083f36600461433a565b6121b5565b34801561085057600080fd5b506106a261085f36600461484f565b6009602052600090815260409020546001600160801b031681565b34801561088657600080fd5b5061089a61089536600461433a565b6121c2565b604051610441949392919061486a565b3480156108b657600080fd5b5061045f6108c536600461481b565b61231c565b3480156108d657600080fd5b50600b546001600160a01b031661048c565b3480156108f457600080fd5b5061040e612535565b34801561090957600080fd5b5061045f612551565b34801561091e57600080fd5b5061040e61092d3660046148cf565b612560565b34801561093e57600080fd5b5061040e61094d366004614990565b61282a565b34801561095e57600080fd5b5061052c60235481565b34801561097457600080fd5b50610435610983366004614a12565b612946565b34801561099457600080fd5b5061040e6109a3366004614aca565b612a4a565b61040e6109b6366004614bd5565b612bb7565b61052c6109c9366004614c3c565b612d0f565b61052c6109dc366004614c6e565b612e96565b3480156109ed57600080fd5b5061045f6109fc36600461433a565b612f41565b348015610a0d57600080fd5b5061045f610a1c36600461433a565b612f4f565b348015610a2d57600080fd5b5061052c601e5481565b348015610a4357600080fd5b5061040e610a52366004614c9a565b613181565b348015610a6357600080fd5b5061052c60205481565b348015610a7957600080fd5b50610a8d610a88366004614399565b6131fc565b6040516104419190614cbf565b348015610aa657600080fd5b5061045f613267565b348015610abb57600080fd5b50610435610aca366004614d03565b6001600160a01b039182166000908152600860209081526040808320939094168252919091522054421090565b348015610b0357600080fd5b50610b17610b12366004614399565b6132c5565b6040516104419190614d2d565b348015610b3057600080fd5b5061040e610b3f36600461484f565b613440565b6000610b4e611a53565b610b6a5760405162461bcd60e51b81526004016103ee90614d7f565b60005483610bb05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103ee565b601e54610bbd8583614dae565b1115610c015760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103ee565b60225460ff1615610d2e57600b546001600160a01b03163314610cf357601f5433600090815260056020526040908190205486911c6001600160401b0316610c499190614dae565b1115610c975760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b3460205485610ca69190614dc1565b14610cf35760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b333214610d2e5760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103ee565b6000610d3b601486614290565b90506000610d4a601487614dd8565b905060005b82811015610d7457610d628660146134b9565b80610d6c81614dec565b915050610d4f565b508015610d8557610d8585826134b9565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610dc257506380ac58cd60e01b6001600160e01b03198316145b80610d8b5750506001600160e01b031916635b5e139f60e01b1490565b606060028054610dee90614e05565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1a90614e05565b8015610e675780601f10610e3c57610100808354040283529160200191610e67565b820191906000526020600020905b815481529060010190602001808311610e4a57829003601f168201915b5050505050905090565b6000610e7c826135b7565b610e99576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ec082611ecf565b9050336001600160a01b03821614610ef957610edc8133610aca565b610ef9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600c602052604090208054606091610f969184908110610f7c57610f7c614e3f565b6000918252602090912001546001600160a01b03166135de565b9392505050565b610fa5613628565b601d5460ff1615610fc85760405162461bcd60e51b81526004016103ee90614e55565b805181906026908190610fdb9082614ec7565b5060208201516001820190610ff09082614ec7565b50604082015160028201906110059082614ec7565b506060820151600382019061101a9082614ec7565b506080820151600482019061102f9082614ec7565b5060a0820151600582015560c0820151600682019061104e9082614ec7565b50505050565b61105c613628565b601d5460ff161561107f5760405162461bcd60e51b81526004016103ee90614e55565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600d825283812086825290915291909120815181906110c69082614ec7565b50602082015160018201906110db9082614ec7565b50604091820151600291909101805460ff19169115159190911790556000848152600c60209081528282208054845181840281018401909552808552929392909183018282801561115557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611137575b505050505090508160800151156111bb57808260a001518151811061117c5761117c614e3f565b602002602001015181848151811061119657611196614e3f565b60200260200101906001600160a01b031690816001600160a01b0316815250506111fb565b6111c88260400151613682565b8184815181106111da576111da614e3f565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600c60209081526040909120825161121a928401906141af565b50505b505050565b826daaeb6d7670e522a718067333cd4e3b1561136d57336001600160a01b03821603611258576112538484846136c4565b61104e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb9190614f86565b801561134e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e9190614f86565b61136d57604051633b79c77360e21b81523360048201526024016103ee565b61104e8484846136c4565b6113858162015180614fa3565b33600090815260096020526040902080546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905550565b6026805481906113cd90614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546113f990614e05565b80156114465780601f1061141b57610100808354040283529160200191611446565b820191906000526020600020905b81548152906001019060200180831161142957829003601f168201915b50505050509080600101805461145b90614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461148790614e05565b80156114d45780601f106114a9576101008083540402835291602001916114d4565b820191906000526020600020905b8154815290600101906020018083116114b757829003601f168201915b5050505050908060020180546114e990614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461151590614e05565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b50505050509080600301805461157790614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546115a390614e05565b80156115f05780601f106115c5576101008083540402835291602001916115f0565b820191906000526020600020905b8154815290600101906020018083116115d357829003601f168201915b50505050509080600401805461160590614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461163190614e05565b801561167e5780601f106116535761010080835404028352916020019161167e565b820191906000526020600020905b81548152906001019060200180831161166157829003601f168201915b50505050509080600501549080600601805461169990614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546116c590614e05565b80156117125780601f106116e757610100808354040283529160200191611712565b820191906000526020600020905b8154815290600101906020018083116116f557829003601f168201915b5050505050905087565b611724613628565b61172c61385d565b47600061271061173e6103e882614fce565b6117489084614dc1565b6117529190614290565b9050600080600061176b600b546001600160a01b031690565b90507329fbb84b835f892eba2d331af9278b74c595edf1611795816117908789614fce565b6138b6565b602d54156118865760005b602d5481101561188457602d81815481106117bd576117bd614e3f565b906000526020600020906004020160030154846117da9190614dae565b93506000602d82815481106117f1576117f1614e3f565b906000526020600020906004020160020160009054906101000a90046001600160a01b03169050612710602d838154811061182e5761182e614e3f565b90600052602060002090600402016003015461271061184d9190614fce565b6118579089614dc1565b6118619190614290565b955061187181611790888a614fce565b508061187c81614dec565b9150506117a0565b505b47955061189382876138b6565b5050505050506118a36001600a55565b565b6118ad613628565b6022805460ff19811660ff90911615179055565b826daaeb6d7670e522a718067333cd4e3b15611a0757336001600160a01b038216036118f2576112538484846139cf565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611941573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119659190614f86565b80156119e85750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e89190614f86565b611a0757604051633b79c77360e21b81523360048201526024016103ee565b61104e8484846139cf565b611a1a613628565b6018805460ff19811660ff90911615179055565b611a36613628565b602455565b611a43613628565b6021611a4f8282614ec7565b5050565b6000601e54611a6160005490565b108015611a91575060225460ff1680611a7c575060255460ff165b80611a915750600b546001600160a01b031633145b905090565b611a9e613628565b602055565b611aab613628565b601d5460ff1615611ace5760405162461bcd60e51b81526004016103ee90614e55565b6019611a4f8282614ec7565b6060611ae5826135b7565b611b215760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b6000611b4f611b3260066004614dc1565b604080518281016060018252910181526000602090910190815290565b90506000611b5c846139ea565b60408051600680825260e08201909252919250600091906020820160c080368337505060408051600680825260e0820190925292935060009291506020820160c0803683370190505090506000601e54601a54611bb99190614dd8565b905060005b6006811015611d9b576000848281518110611bdb57611bdb614e3f565b60200260200101519050838281518110611bf757611bf7614e3f565b602002602001015115156000151503611c87576000601e5460108481548110611c2257611c22614e3f565b906000526020600020015485858a611c3a9190614dae565b611c449190614dae565b611c4e9190614dc1565b611c589190614dd8565b9050611c648184613aa4565b915081868481518110611c7957611c79614e3f565b602002602001018181525050505b6000828152600f6020908152604080832084845290915290205415611d88576000828152600f60209081526040808320848452909152902080546001908110611cd257611cd2614e3f565b6000918252602080832090910154848352600f82526040808420858552909252908220805491928892611d0757611d07614e3f565b906000526020600020015481518110611d2257611d22614e3f565b6020908102919091018101919091526000838152600f825260408082208483529092529081208054600192879291611d5c57611d5c614e3f565b906000526020600020015481518110611d7757611d77614e3f565b911515602092830291909101909101525b5080611d9381614dec565b915050611bbe565b5060005b8351811015611ec357600a848281518110611dbc57611dbc614e3f565b60200260200101511015611df357604080518082019091526002815261030360f41b6020820152611dee908790613b40565b611e38565b6064848281518110611e0757611e07614e3f565b60200260200101511015611e38576040805180820190915260018152600360fc1b6020820152611e38908790613b40565b6103e7848281518110611e4d57611e4d614e3f565b60200260200101511115611e855760408051808201909152600381526239393960e81b6020820152611e80908790613b40565b611eb1565b611eb1611eaa858381518110611e9d57611e9d614e3f565b6020026020010151613bc5565b8790613b40565b80611ebb81614dec565b915050611d9f565b50939695505050505050565b6000610d8b82613c09565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611f1c908290613b40565b6000805b600681101561206a576000611f5d611f5887611f3d856003614dc1565b611f48866003614dc1565b611f53906003614dae565b613c70565b613d3c565b6000838152600d6020908152604080832060ff948516808552925282206002015490935090911615159003612022578215611fb5576040805180820190915260018152600b60fa1b6020820152611fb5908590613b40565b61201360178381548110611fcb57611fcb614e3f565b60009182526020808320868452600d825260408085208786528352938490209351611ffc9493909101929101615054565b60408051601f198184030181529190528590613b40565b82151560000361202257600192505b61202e60016006614fce565b8203612057576040805180820190915260018152605d60f81b6020820152612057908590613b40565b508061206281614dec565b915050611f20565b50909392505050565b601d5460ff16156120965760405162461bcd60e51b81526004016103ee90614e55565b61209e613628565b601d805460ff19166001179055565b602180546120ba90614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546120e690614e05565b80156121335780601f1061210857610100808354040283529160200191612133565b820191906000526020600020905b81548152906001019060200180831161211657829003601f168201915b505050505081565b612143613628565b602355565b60006001600160a01b038216612171576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61219e613628565b6118a36000613dfa565b6121b0613628565b601f55565b6121bd613628565b601b55565b602d81815481106121d257600080fd5b90600052602060002090600402016000915090508060000180546121f590614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461222190614e05565b801561226e5780601f106122435761010080835404028352916020019161226e565b820191906000526020600020905b81548152906001019060200180831161225157829003601f168201915b50505050509080600101805461228390614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546122af90614e05565b80156122fc5780601f106122d1576101008083540402835291602001916122fc565b820191906000526020600020905b8154815290600101906020018083116122df57829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906123606040518060c0016040528060818152602001615790608191398290613b40565b61238c601960405160200161237591906150aa565b60408051601f198184030181529190528290613b40565b60005b61239b60016006614fce565b811015612457576123bf611f58866123b4846003614dc1565b611f48856003614dc1565b60ff169250612445600d6000838152602001908152602001600020600085815260200190815260200160002060010161241d612418600c60008681526020019081526020016000208781548110610f7c57610f7c614e3f565b613e4c565b60405160200161242e9291906150dc565b60408051601f198184030181529190528390613b40565b8061244f81614dec565b91505061238f565b50612482611f5885600361246c600682614dc1565b6124769190614fce565b611f5360066003614dc1565b60ff169150612504600d600061249a60016006614fce565b815260200190815260200160002060008481526020019081526020016000206001016124f3612418600c6000600160066124d49190614fce565b81526020019081526020016000208681548110610f7c57610f7c614e3f565b604051602001612375929190615136565b61250d81613e4c565b60405160200161251d919061529a565b60405160208183030381529060405292505050919050565b61253d613628565b6025805460ff19811660ff90911615179055565b606060038054610dee90614e05565b612568613628565b601d5460ff161561258b5760405162461bcd60e51b81526004016103ee90614e55565b8051601183600681106125a0576125a0614e3f565b0154146125ef5760405162461bcd60e51b815260206004820152601a60248201527f547261697473206c656e67746820697320696e636f727265637400000000000060448201526064016103ee565b600081516001600160401b0381111561260a5761260a6143bb565b604051908082528060200260200182016040528015612633578160200160208202803683370190505b50905060005b825181101561280a5782818151811061265457612654614e3f565b602002602001015160800151156126d3578183828151811061267857612678614e3f565b602002602001015160a001518151811061269457612694614e3f565b60200260200101518282815181106126ae576126ae614e3f565b60200260200101906001600160a01b031690816001600160a01b03168152505061272c565b6126f98382815181106126e8576126e8614e3f565b602002602001015160400151613682565b82828151811061270b5761270b614e3f565b60200260200101906001600160a01b031690816001600160a01b0316815250505b604051806060016040528084838151811061274957612749614e3f565b602002602001015160000151815260200184838151811061276c5761276c614e3f565b602002602001015160200151815260200184838151811061278f5761278f614e3f565b6020908102919091018101516060015115159091526000868152600d8252604080822085835290925220815181906127c79082614ec7565b50602082015160018201906127dc9082614ec7565b50604091909101516002909101805460ff19169115159190911790558061280281614dec565b915050612639565b506000838152600c60209081526040909120825161104e928401906141af565b6001600160a01b03821633036128825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103ee565b336000908152600960205260408120546001600160801b03166128a85762278d006128c2565b336000908152600960205260409020546001600160801b03165b9050816128d05760006128e3565b6128e36001600160801b03821642614dae565b3360008181526008602090815260408083206001600160a01b03891680855290835292819020949094559251851515815290927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006129bf83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b546040516bffffffffffffffffffffffff1960608b901b16602082015290925060340190505b60405160208183030381529060405280519060200120613e5a565b80612a425750612a42838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff1960608a901b1660208201527ffd72b67878e6b6579e716168f2e7f70f88a4b777065f203c71f26ce1f8773a1f925060340190506129a4565b949350505050565b612a52613628565b601d5460ff1615612a755760405162461bcd60e51b81526004016103ee90614e55565b60005b8151811015611a4f576040518060400160405280838381518110612a9e57612a9e614e3f565b602002602001015160200151600081518110612abc57612abc614e3f565b60200260200101518152602001838381518110612adb57612adb614e3f565b602002602001015160200151600181518110612af957612af9614e3f565b6020026020010151815250600f6000848481518110612b1a57612b1a614e3f565b602002602001015160000151600081518110612b3857612b38614e3f565b602002602001015181526020019081526020016000206000848481518110612b6257612b62614e3f565b602002602001015160000151600181518110612b8057612b80614e3f565b60200260200101518152602001908152602001600020906002612ba4929190614214565b5080612baf81614dec565b915050612a78565b836daaeb6d7670e522a718067333cd4e3b15612d0357336001600160a01b03821603612bee57612be985858585613e70565b61121a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612c3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c619190614f86565b8015612ce45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce49190614f86565b612d0357604051633b79c77360e21b81523360048201526024016103ee565b61121a85858585613e70565b6000612d1961385d565b612d21611a53565b612d3d5760405162461bcd60e51b81526004016103ee90614d7f565b60225460ff16158015612d5b5750600b546001600160a01b03163314155b15612e8057612d6b338484612946565b612dab5760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103ee565b60245433600090815260056020526040908190205486911c6001600160401b0316612dd69190614dae565b1115612e245760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b3460235485612e339190614dc1565b14612e805760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b612e8a8433610b44565b9050610f966001600a55565b6000612ea061385d565b612ea8611a53565b612ec45760405162461bcd60e51b81526004016103ee90614d7f565b60225460ff1680612edf5750600b546001600160a01b031633145b612f2b5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103ee565b612f358383610b44565b9050610d8b6001600a55565b6060610d8b6108c583611ada565b6060612f5a826135b7565b612f965760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b60008052600c6020527f13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e85461300d5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103ee565b600061301883611ada565b604080516202006081019091526202004081526000602090910190815290915061305a602661304686613bc5565b6040516123759291906027906020016152df565b60006021805461306990614e05565b905011801561308657506000848152600e602052604090205460ff165b156130b4576130af602161309986613bc5565b84601c6040516020016123759493929190615359565b61314c565b60408051602081019091526000815260185460ff161561312a5760006130d98461231c565b9050613103816040516020016130ef91906153e4565b604051602081830303815290604052613e4c565b604051602001613113919061529a565b604051602081830303815290604052915050613136565b6131338361231c565b90505b61314a8160405160200161242e91906154cf565b505b61316861315883611eda565b6040516020016123759190615512565b61317181613e4c565b60405160200161251d9190615553565b61318a82611ecf565b6001600160a01b0316336001600160a01b0316146131dc5760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016103ee565b6000918252600e6020526040909120805460ff1916911515919091179055565b6000828152600f6020908152604080832084845282529182902080548351818402810184019094528084526060939283018282801561325a57602002820191906000526020600020905b815481526020019060010190808311613246575b5050505050905092915050565b602b546060906132a190602690602790602890602990602a9061328990613bc5565b6040516130ef96959493929190602c90602001615598565b6040516020016132b19190615553565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600d602090815260408083208584529091529081902081516060810190925280548290829061331490614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461334090614e05565b801561338d5780601f106133625761010080835404028352916020019161338d565b820191906000526020600020905b81548152906001019060200180831161337057829003601f168201915b505050505081526020016001820180546133a690614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546133d290614e05565b801561341f5780601f106133f45761010080835404028352916020019161341f565b820191906000526020600020905b81548152906001019060200180831161340257829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b613448613628565b6001600160a01b0381166134ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ee565b6134b681613dfa565b50565b60008054908290036134de5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461358d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613555565b50816000036135ae57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000805482108015610d8b575050600090815260046020526040902054600160e01b161590565b6060813b806135f5576311052bb46000526004601cfd5b600181039050604051915061ffe0603f820116820160405280825260008160208401015280600160208401853c50919050565b600b546001600160a01b031633146118a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ee565b60008151600181018060401b6a61000080600a3d393df300178452600a8101601585016000f0925050816136be5763301164256000526004601cfd5b90915290565b60006136cf82613c09565b9050836001600160a01b0316816001600160a01b0316146137025760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761374f576137328633610aca565b61374f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661377657604051633a954ecd60e21b815260040160405180910390fd5b801561378157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003613813576001840160008181526004602052604081205490036138115760005481146138115760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600a54036138af5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103ee565b6002600a55565b804710156139065760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103ee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613953576040519150601f19603f3d011682016040523d82523d6000602084013e613958565b606091505b505090508061121d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103ee565b61121d83838360405180602001604052806000815250612bb7565b600080601e546001600160401b03811115613a0757613a076143bb565b604051908082528060200260200182016040528015613a30578160200160208202803683370190505b50905060005b601e54811015613a665780828281518110613a5357613a53614e3f565b6020908102919091010152600101613a36565b506040805160208101909152601a548152613a818183613eb4565b818481518110613a9357613a93614e3f565b602002602001015192505050919050565b600080805b60118460068110613abc57613abc614e3f565b015481101561041057600060118560068110613ada57613ada614e3f565b018281548110613aec57613aec614e3f565b90600052602060002001549050828610158015613b115750613b0e8184614dae565b86105b15613b2057509150610d8b9050565b613b2a8184614dae565b9250508080613b3890614dec565b915050613aa9565b601f1982015182518251603f19909201918290613b5d9083614dae565b1115613bbb5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103ee565b61104e8484613f2f565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480613bdf5750819003601f19909101908152919050565b600081600054811015613c575760008181526004602052604081205490600160e01b82169003613c55575b80600003610f96575060001901600081815260046020526040902054613c34565b505b604051636f96cda160e11b815260040160405180910390fd5b6060836000613c7f8585614fce565b6001600160401b03811115613c9657613c966143bb565b6040519080825280601f01601f191660200182016040528015613cc0576020820181803683370190505b509050845b84811015613d3257828181518110613cdf57613cdf614e3f565b01602001516001600160f81b03191682613cf98884614fce565b81518110613d0957613d09614e3f565b60200101906001600160f81b031916908160001a90535080613d2a81614dec565b915050613cc5565b5095945050505050565b60008181805b82518160ff161015613df2576030838260ff1681518110613d6557613d65614e3f565b016020015160f81c10801590613d9857506039838260ff1681518110613d8d57613d8d614e3f565b016020015160f81c11155b15613de057613da8600a836156c1565b91506030838260ff1681518110613dc157613dc1614e3f565b0160200151613dd3919060f81c6156e4565b613ddd90836156fd565b91505b80613dea81615716565b915050613d42565b509392505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060610d8b82600080613f65565b600082613e678584614050565b14949350505050565b613e7b848484611222565b6001600160a01b0383163b1561104e57613e9784848484614095565b61104e576040516368d2bf6b60e11b815260040160405180910390fd5b80516000196001600160801b03821561121a576020840193505b6020852080865282840193608082901c0660051b850184613ef057505061121a565b600585811b8701805183519091529091528385019482841606901b850184613f1957505061121a565b600585901b860180518251909152905250613ece565b8051602082019150808201602084510184015b81841015613f5a578351815260209384019301613f42565b505082510190915250565b606083518015613df2576003600282010460021b60405192507f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f526102308515027f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392d5f03603f52602083018181015b6003880197508751603f8160121c1651600053603f81600c1c1651600153603f8160061c1651600253603f811651600353506000518252600482019150808210613fd557601f01601f1916604052613d3d60f01b60038406600204808303919091526000861515909102918290035290038252509392505050565b600081815b8451811015613df2576140818286838151811061407457614074614e3f565b6020026020010151614180565b91508061408d81614dec565b915050614055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906140ca903390899088908890600401615735565b6020604051808303816000875af1925050508015614105575060408051601f3d908101601f1916820190925261410291810190615772565b60015b614163573d808015614133576040519150601f19603f3d011682016040523d82523d6000602084013e614138565b606091505b50805160000361415b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081831061419c576000828152602084905260409020610f96565b6000838152602083905260409020610f96565b828054828255906000526020600020908101928215614204579160200282015b8281111561420457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906141cf565b5061421092915061424f565b5090565b828054828255906000526020600020908101928215614204579160200282015b82811115614204578251825591602001919060010190614234565b5b808211156142105760008155600101614250565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261429f5761429f614264565b500490565b6001600160e01b0319811681146134b657600080fd5b6000602082840312156142cc57600080fd5b8135610f96816142a4565b60005b838110156142f25781810151838201526020016142da565b50506000910152565b600081518084526143138160208601602086016142d7565b601f01601f19169290920160200192915050565b602081526000610f9660208301846142fb565b60006020828403121561434c57600080fd5b5035919050565b80356001600160a01b038116811461436a57600080fd5b919050565b6000806040838503121561438257600080fd5b61438b83614353565b946020939093013593505050565b600080604083850312156143ac57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156143f3576143f36143bb565b60405290565b60405160c081016001600160401b03811182821017156143f3576143f36143bb565b604080519081016001600160401b03811182821017156143f3576143f36143bb565b604051601f8201601f191681016001600160401b0381118282101715614465576144656143bb565b604052919050565b600082601f83011261447e57600080fd5b81356001600160401b03811115614497576144976143bb565b6144aa601f8201601f191660200161443d565b8181528460208386010111156144bf57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156144ee57600080fd5b81356001600160401b038082111561450557600080fd5b9083019060e0828603121561451957600080fd5b6145216143d1565b82358281111561453057600080fd5b61453c8782860161446d565b82525060208301358281111561455157600080fd5b61455d8782860161446d565b60208301525060408301358281111561457557600080fd5b6145818782860161446d565b60408301525060608301358281111561459957600080fd5b6145a58782860161446d565b6060830152506080830135828111156145bd57600080fd5b6145c98782860161446d565b60808301525060a083013560a082015260c0830135828111156145eb57600080fd5b6145f78782860161446d565b60c08301525095945050505050565b80151581146134b657600080fd5b803561436a81614606565b600060c0828403121561463157600080fd5b6146396143f9565b905081356001600160401b038082111561465257600080fd5b61465e8583860161446d565b8352602084013591508082111561467457600080fd5b6146808583860161446d565b6020840152604084013591508082111561469957600080fd5b506146a68482850161446d565b6040830152506146b860608301614614565b60608201526146c960808301614614565b608082015260a082013560a082015292915050565b6000806000606084860312156146f357600080fd5b833592506020840135915060408401356001600160401b0381111561471757600080fd5b6147238682870161461f565b9150509250925092565b60008060006060848603121561474257600080fd5b61474b84614353565b925061475960208501614353565b9150604084013590509250925092565b60006020828403121561477b57600080fd5b81356001600160801b0381168114610f9657600080fd5b60e0815260006147a560e083018a6142fb565b82810360208401526147b7818a6142fb565b905082810360408401526147cb81896142fb565b905082810360608401526147df81886142fb565b905082810360808401526147f381876142fb565b90508460a084015282810360c084015261480d81856142fb565b9a9950505050505050505050565b60006020828403121561482d57600080fd5b81356001600160401b0381111561484357600080fd5b612a428482850161446d565b60006020828403121561486157600080fd5b610f9682614353565b60808152600061487d60808301876142fb565b828103602084015261488f81876142fb565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b038211156148c5576148c56143bb565b5060051b60200190565b600080604083850312156148e257600080fd5b823591506020808401356001600160401b038082111561490157600080fd5b818601915086601f83011261491557600080fd5b8135614928614923826148ac565b61443d565b81815260059190911b8301840190848101908983111561494757600080fd5b8585015b8381101561497f578035858111156149635760008081fd5b6149718c89838a010161461f565b84525091860191860161494b565b508096505050505050509250929050565b600080604083850312156149a357600080fd5b6149ac83614353565b915060208301356149bc81614606565b809150509250929050565b60008083601f8401126149d957600080fd5b5081356001600160401b038111156149f057600080fd5b6020830191508360208260051b8501011115614a0b57600080fd5b9250929050565b600080600060408486031215614a2757600080fd5b614a3084614353565b925060208401356001600160401b03811115614a4b57600080fd5b614a57868287016149c7565b9497909650939450505050565b600082601f830112614a7557600080fd5b81356020614a85614923836148ac565b82815260059290921b84018101918181019086841115614aa457600080fd5b8286015b84811015614abf5780358352918301918301614aa8565b509695505050505050565b60006020808385031215614add57600080fd5b82356001600160401b0380821115614af457600080fd5b818501915085601f830112614b0857600080fd5b8135614b16614923826148ac565b81815260059190911b83018401908481019088831115614b3557600080fd5b8585015b83811015614bc857803585811115614b515760008081fd5b86016040818c03601f1901811315614b695760008081fd5b614b7161441b565b8983013588811115614b835760008081fd5b614b918e8c83870101614a64565b825250908201359087821115614ba75760008081fd5b614bb58d8b84860101614a64565b818b015285525050918601918601614b39565b5098975050505050505050565b60008060008060808587031215614beb57600080fd5b614bf485614353565b9350614c0260208601614353565b92506040850135915060608501356001600160401b03811115614c2457600080fd5b614c308782880161446d565b91505092959194509250565b600080600060408486031215614c5157600080fd5b8335925060208401356001600160401b03811115614a4b57600080fd5b60008060408385031215614c8157600080fd5b82359150614c9160208401614353565b90509250929050565b60008060408385031215614cad57600080fd5b8235915060208301356149bc81614606565b6020808252825182820181905260009190848201906040850190845b81811015614cf757835183529284019291840191600101614cdb565b50909695505050505050565b60008060408385031215614d1657600080fd5b614d1f83614353565b9150614c9160208401614353565b602081526000825160606020840152614d4960808401826142fb565b90506020840151601f19848303016040850152614d6682826142fb565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b80820180821115610d8b57610d8b61427a565b8082028115828204841417610d8b57610d8b61427a565b600082614de757614de7614264565b500690565b600060018201614dfe57614dfe61427a565b5060010190565b600181811c90821680614e1957607f821691505b602082108103614e3957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b601f82111561121d57600081815260208120601f850160051c81016020861015614ea85750805b601f850160051c820191505b8181101561385557828155600101614eb4565b81516001600160401b03811115614ee057614ee06143bb565b614ef481614eee8454614e05565b84614e81565b602080601f831160018114614f295760008415614f115750858301515b600019600386901b1c1916600185901b178555613855565b600085815260208120601f198616915b82811015614f5857888601518255948401946001909101908401614f39565b5085821015614f765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215614f9857600080fd5b8151610f9681614606565b6001600160801b03818116838216028082169190828114614fc657614fc661427a565b505092915050565b81810381811115610d8b57610d8b61427a565b60008154614fee81614e05565b60018281168015615006576001811461501b5761504a565b60ff198416875282151583028701945061504a565b8560005260208060002060005b858110156150415781548a820152908401908201615028565b50505082870194505b5050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000615078600f830185614fe1565b6a1116113b30b63ab2911d1160a91b8152615096600b820185614fe1565b61227d60f01b815260020195945050505050565b60006150b68284614fe1565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b815260006150f66005830185614fe1565b670ed8985cd94d8d0b60c21b815283516151178160088401602088016142d7565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006151506005830185614fe1565b670ed8985cd94d8d0b60c21b815283516151718160088401602088016142d7565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516152d281601a8501602087016142d7565b91909101601a0192915050565b683d913730b6b2911d1160b91b815260006152fd6009830186614fe1565b61202360f01b815284516153188160028401602089016142d7565b701116113232b9b1b934b83a34b7b7111d1160791b600292909101918201526153446013820185614fe1565b61088b60f21b81526002019695505050505050565b681134b6b0b3b2911d1160b91b815260006153776009830187614fe1565b8551615387818360208a016142d7565b643f646e613d60d81b910190815284516153a88160058401602089016142d7565b6a266e6574776f726b49643d60a81b600592909101918201526153ce6010820185614fe1565b61088b60f21b8152600201979650505050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b6080820152600082516154a88160918501602087016142d7565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b6d1134b6b0b3b2afb230ba30911d1160911b815281516000906154f981600e8501602087016142d7565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061553b81600d8501602087016142d7565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161558b81601d8501602087016142d7565b91909101601d0192915050565b683d913730b6b2911d1160b91b815260006155b6600983018a614fe1565b701116113232b9b1b934b83a34b7b7111d1160791b81526155da601182018a614fe1565b6a11161134b6b0b3b2911d1160a91b815290506155fa600b820189614fe1565b6b1116113130b73732b9111d1160a11b8152905061561b600c820188614fe1565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506156436013820187614fe1565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161567b81601c8401602089016142d7565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c92909101918201526156a8602e820185614fe1565b61227d60f01b81526002019a9950505050505050505050565b60ff81811683821602908116908181146156dd576156dd61427a565b5092915050565b60ff8281168282160390811115610d8b57610d8b61427a565b60ff8181168382160190811115610d8b57610d8b61427a565b600060ff821660ff810361572c5761572c61427a565b60010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615768908301846142fb565b9695505050505050565b60006020828403121561578457600080fd5b8151610f96816142a456fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723aa264697066735822122004022ec15c89e41c872d7bdf323d1efcc2bd92bc6c25dda9319f0b638aeaf78264736f6c634300081100334f6e436861696e20484f4d20697320746865203173742033442d6c6f6f6b696e6720506978656c20417274204f6e2d436861696e2e2046756c6c792068616e6420647261776e206f6e20323478323420417274626f61726420776974682064697665727365207261636520616e6420612066756c6c204343302e68747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f31623237363839392d656234352d343132362d386336622d66393166386231613938643530783963346635326366306636353337303331643634423043384241376561313732396630643130383768747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f31623237363839392d656234352d343132362d386336622d663931663862316139386435
Deployed Bytecode
0x60806040526004361061039b5760003560e01c80636c0360eb116101dc578063b32c568011610102578063d5abeb01116100a0578063e8a3d4851161006f578063e8a3d48514610a9a578063e985e9c514610aaf578063ea84b59b14610af7578063f2fde38b14610b2457600080fd5b8063d5abeb0114610a21578063dbe9875f14610a37578063dc53fd9214610a57578063dc9867ce14610a6d57600080fd5b8063ba41b0c6116100dc578063ba41b0c6146109bb578063bc63f02e146109ce578063c11feac1146109e1578063c87b56dd14610a0157600080fd5b8063b32c568014610968578063b456806614610988578063b88d4fde146109a857600080fd5b8063876171dc1161017a57806395d89b411161014957806395d89b41146108fd57806397d194d714610912578063a22cb46514610932578063a24e51531461095257600080fd5b8063876171dc1461087a57806389ce3074146108aa5780638da5cb5b146108ca5780638fb4e8a9146108e857600080fd5b8063715018a6116101b6578063715018a6146107ef5780637bddd65b146108045780637cb6475914610824578063831fb10d1461084457600080fd5b80636c0360eb1461079a5780636df9fa88146107af57806370a08231146107cf57600080fd5b80634047638d116102c15780635b92ac0d1161025f5780636352211e1161022e5780636352211e1461072f578063639814e01461074f57806366e338701461076557806368bd580e1461078557600080fd5b80635b92ac0d146106ba5780635d82cf6e146106cf5780636190e1da146106ef578063621a1f741461070f57600080fd5b80634ca1a0f21161029b5780634ca1a0f214610631578063542d50411461065157806355f804b31461066b5780635b5a482c1461068b57600080fd5b80634047638d146105f457806342842e0e146106095780634920154b1461061c57600080fd5b806318160ddd1161033957806336cd2edd1161030857806336cd2edd14610581578063394f22cb146105975780633cca2420146105b75780633ccfd60b146105df57600080fd5b806318160ddd1461051757806323b872dd1461053a57806329fc6bae1461054d5780632d6b62241461056757600080fd5b8063095ea7b311610375578063095ea7b3146104a457806309dbabca146104b75780630f3debbe146104d7578063180c2cc0146104f757600080fd5b806301ffc9a71461041557806306fdde031461044a578063081812fc1461046c57600080fd5b366104105760225460ff166103f75760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b61040e602054346104089190614290565b33610b44565b005b600080fd5b34801561042157600080fd5b506104356104303660046142ba565b610d91565b60405190151581526020015b60405180910390f35b34801561045657600080fd5b5061045f610ddf565b6040516104419190614327565b34801561047857600080fd5b5061048c61048736600461433a565b610e71565b6040516001600160a01b039091168152602001610441565b61040e6104b236600461436f565b610eb5565b3480156104c357600080fd5b5061045f6104d2366004614399565b610f55565b3480156104e357600080fd5b5061040e6104f23660046144dc565b610f9d565b34801561050357600080fd5b5061040e6105123660046146de565b611054565b34801561052357600080fd5b50600154600054035b604051908152602001610441565b61040e61054836600461472d565b611222565b34801561055957600080fd5b506025546104359060ff1681565b34801561057357600080fd5b506022546104359060ff1681565b34801561058d57600080fd5b5061052c60245481565b3480156105a357600080fd5b5061040e6105b2366004614769565b611378565b3480156105c357600080fd5b506105cc6113be565b6040516104419796959493929190614792565b3480156105eb57600080fd5b5061040e61171c565b34801561060057600080fd5b5061040e6118a5565b61040e61061736600461472d565b6118c1565b34801561062857600080fd5b5061040e611a12565b34801561063d57600080fd5b5061040e61064c36600461433a565b611a2e565b34801561065d57600080fd5b50601d546104359060ff1681565b34801561067757600080fd5b5061040e61068636600461481b565b611a3b565b34801561069757600080fd5b506106a262278d0081565b6040516001600160801b039091168152602001610441565b3480156106c657600080fd5b50610435611a53565b3480156106db57600080fd5b5061040e6106ea36600461433a565b611a96565b3480156106fb57600080fd5b5061040e61070a36600461481b565b611aa3565b34801561071b57600080fd5b5061045f61072a36600461433a565b611ada565b34801561073b57600080fd5b5061048c61074a36600461433a565b611ecf565b34801561075b57600080fd5b5061052c601f5481565b34801561077157600080fd5b5061045f61078036600461481b565b611eda565b34801561079157600080fd5b5061040e612073565b3480156107a657600080fd5b5061045f6120ad565b3480156107bb57600080fd5b5061040e6107ca36600461433a565b61213b565b3480156107db57600080fd5b5061052c6107ea36600461484f565b612148565b3480156107fb57600080fd5b5061040e612196565b34801561081057600080fd5b5061040e61081f36600461433a565b6121a8565b34801561083057600080fd5b5061040e61083f36600461433a565b6121b5565b34801561085057600080fd5b506106a261085f36600461484f565b6009602052600090815260409020546001600160801b031681565b34801561088657600080fd5b5061089a61089536600461433a565b6121c2565b604051610441949392919061486a565b3480156108b657600080fd5b5061045f6108c536600461481b565b61231c565b3480156108d657600080fd5b50600b546001600160a01b031661048c565b3480156108f457600080fd5b5061040e612535565b34801561090957600080fd5b5061045f612551565b34801561091e57600080fd5b5061040e61092d3660046148cf565b612560565b34801561093e57600080fd5b5061040e61094d366004614990565b61282a565b34801561095e57600080fd5b5061052c60235481565b34801561097457600080fd5b50610435610983366004614a12565b612946565b34801561099457600080fd5b5061040e6109a3366004614aca565b612a4a565b61040e6109b6366004614bd5565b612bb7565b61052c6109c9366004614c3c565b612d0f565b61052c6109dc366004614c6e565b612e96565b3480156109ed57600080fd5b5061045f6109fc36600461433a565b612f41565b348015610a0d57600080fd5b5061045f610a1c36600461433a565b612f4f565b348015610a2d57600080fd5b5061052c601e5481565b348015610a4357600080fd5b5061040e610a52366004614c9a565b613181565b348015610a6357600080fd5b5061052c60205481565b348015610a7957600080fd5b50610a8d610a88366004614399565b6131fc565b6040516104419190614cbf565b348015610aa657600080fd5b5061045f613267565b348015610abb57600080fd5b50610435610aca366004614d03565b6001600160a01b039182166000908152600860209081526040808320939094168252919091522054421090565b348015610b0357600080fd5b50610b17610b12366004614399565b6132c5565b6040516104419190614d2d565b348015610b3057600080fd5b5061040e610b3f36600461484f565b613440565b6000610b4e611a53565b610b6a5760405162461bcd60e51b81526004016103ee90614d7f565b60005483610bb05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103ee565b601e54610bbd8583614dae565b1115610c015760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103ee565b60225460ff1615610d2e57600b546001600160a01b03163314610cf357601f5433600090815260056020526040908190205486911c6001600160401b0316610c499190614dae565b1115610c975760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b3460205485610ca69190614dc1565b14610cf35760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b333214610d2e5760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103ee565b6000610d3b601486614290565b90506000610d4a601487614dd8565b905060005b82811015610d7457610d628660146134b9565b80610d6c81614dec565b915050610d4f565b508015610d8557610d8585826134b9565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610dc257506380ac58cd60e01b6001600160e01b03198316145b80610d8b5750506001600160e01b031916635b5e139f60e01b1490565b606060028054610dee90614e05565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1a90614e05565b8015610e675780601f10610e3c57610100808354040283529160200191610e67565b820191906000526020600020905b815481529060010190602001808311610e4a57829003601f168201915b5050505050905090565b6000610e7c826135b7565b610e99576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ec082611ecf565b9050336001600160a01b03821614610ef957610edc8133610aca565b610ef9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600c602052604090208054606091610f969184908110610f7c57610f7c614e3f565b6000918252602090912001546001600160a01b03166135de565b9392505050565b610fa5613628565b601d5460ff1615610fc85760405162461bcd60e51b81526004016103ee90614e55565b805181906026908190610fdb9082614ec7565b5060208201516001820190610ff09082614ec7565b50604082015160028201906110059082614ec7565b506060820151600382019061101a9082614ec7565b506080820151600482019061102f9082614ec7565b5060a0820151600582015560c0820151600682019061104e9082614ec7565b50505050565b61105c613628565b601d5460ff161561107f5760405162461bcd60e51b81526004016103ee90614e55565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600d825283812086825290915291909120815181906110c69082614ec7565b50602082015160018201906110db9082614ec7565b50604091820151600291909101805460ff19169115159190911790556000848152600c60209081528282208054845181840281018401909552808552929392909183018282801561115557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611137575b505050505090508160800151156111bb57808260a001518151811061117c5761117c614e3f565b602002602001015181848151811061119657611196614e3f565b60200260200101906001600160a01b031690816001600160a01b0316815250506111fb565b6111c88260400151613682565b8184815181106111da576111da614e3f565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600c60209081526040909120825161121a928401906141af565b50505b505050565b826daaeb6d7670e522a718067333cd4e3b1561136d57336001600160a01b03821603611258576112538484846136c4565b61104e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cb9190614f86565b801561134e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561132a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134e9190614f86565b61136d57604051633b79c77360e21b81523360048201526024016103ee565b61104e8484846136c4565b6113858162015180614fa3565b33600090815260096020526040902080546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905550565b6026805481906113cd90614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546113f990614e05565b80156114465780601f1061141b57610100808354040283529160200191611446565b820191906000526020600020905b81548152906001019060200180831161142957829003601f168201915b50505050509080600101805461145b90614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461148790614e05565b80156114d45780601f106114a9576101008083540402835291602001916114d4565b820191906000526020600020905b8154815290600101906020018083116114b757829003601f168201915b5050505050908060020180546114e990614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461151590614e05565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b50505050509080600301805461157790614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546115a390614e05565b80156115f05780601f106115c5576101008083540402835291602001916115f0565b820191906000526020600020905b8154815290600101906020018083116115d357829003601f168201915b50505050509080600401805461160590614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461163190614e05565b801561167e5780601f106116535761010080835404028352916020019161167e565b820191906000526020600020905b81548152906001019060200180831161166157829003601f168201915b50505050509080600501549080600601805461169990614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546116c590614e05565b80156117125780601f106116e757610100808354040283529160200191611712565b820191906000526020600020905b8154815290600101906020018083116116f557829003601f168201915b5050505050905087565b611724613628565b61172c61385d565b47600061271061173e6103e882614fce565b6117489084614dc1565b6117529190614290565b9050600080600061176b600b546001600160a01b031690565b90507329fbb84b835f892eba2d331af9278b74c595edf1611795816117908789614fce565b6138b6565b602d54156118865760005b602d5481101561188457602d81815481106117bd576117bd614e3f565b906000526020600020906004020160030154846117da9190614dae565b93506000602d82815481106117f1576117f1614e3f565b906000526020600020906004020160020160009054906101000a90046001600160a01b03169050612710602d838154811061182e5761182e614e3f565b90600052602060002090600402016003015461271061184d9190614fce565b6118579089614dc1565b6118619190614290565b955061187181611790888a614fce565b508061187c81614dec565b9150506117a0565b505b47955061189382876138b6565b5050505050506118a36001600a55565b565b6118ad613628565b6022805460ff19811660ff90911615179055565b826daaeb6d7670e522a718067333cd4e3b15611a0757336001600160a01b038216036118f2576112538484846139cf565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611941573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119659190614f86565b80156119e85750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e89190614f86565b611a0757604051633b79c77360e21b81523360048201526024016103ee565b61104e8484846139cf565b611a1a613628565b6018805460ff19811660ff90911615179055565b611a36613628565b602455565b611a43613628565b6021611a4f8282614ec7565b5050565b6000601e54611a6160005490565b108015611a91575060225460ff1680611a7c575060255460ff165b80611a915750600b546001600160a01b031633145b905090565b611a9e613628565b602055565b611aab613628565b601d5460ff1615611ace5760405162461bcd60e51b81526004016103ee90614e55565b6019611a4f8282614ec7565b6060611ae5826135b7565b611b215760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b6000611b4f611b3260066004614dc1565b604080518281016060018252910181526000602090910190815290565b90506000611b5c846139ea565b60408051600680825260e08201909252919250600091906020820160c080368337505060408051600680825260e0820190925292935060009291506020820160c0803683370190505090506000601e54601a54611bb99190614dd8565b905060005b6006811015611d9b576000848281518110611bdb57611bdb614e3f565b60200260200101519050838281518110611bf757611bf7614e3f565b602002602001015115156000151503611c87576000601e5460108481548110611c2257611c22614e3f565b906000526020600020015485858a611c3a9190614dae565b611c449190614dae565b611c4e9190614dc1565b611c589190614dd8565b9050611c648184613aa4565b915081868481518110611c7957611c79614e3f565b602002602001018181525050505b6000828152600f6020908152604080832084845290915290205415611d88576000828152600f60209081526040808320848452909152902080546001908110611cd257611cd2614e3f565b6000918252602080832090910154848352600f82526040808420858552909252908220805491928892611d0757611d07614e3f565b906000526020600020015481518110611d2257611d22614e3f565b6020908102919091018101919091526000838152600f825260408082208483529092529081208054600192879291611d5c57611d5c614e3f565b906000526020600020015481518110611d7757611d77614e3f565b911515602092830291909101909101525b5080611d9381614dec565b915050611bbe565b5060005b8351811015611ec357600a848281518110611dbc57611dbc614e3f565b60200260200101511015611df357604080518082019091526002815261030360f41b6020820152611dee908790613b40565b611e38565b6064848281518110611e0757611e07614e3f565b60200260200101511015611e38576040805180820190915260018152600360fc1b6020820152611e38908790613b40565b6103e7848281518110611e4d57611e4d614e3f565b60200260200101511115611e855760408051808201909152600381526239393960e81b6020820152611e80908790613b40565b611eb1565b611eb1611eaa858381518110611e9d57611e9d614e3f565b6020026020010151613bc5565b8790613b40565b80611ebb81614dec565b915050611d9f565b50939695505050505050565b6000610d8b82613c09565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611f1c908290613b40565b6000805b600681101561206a576000611f5d611f5887611f3d856003614dc1565b611f48866003614dc1565b611f53906003614dae565b613c70565b613d3c565b6000838152600d6020908152604080832060ff948516808552925282206002015490935090911615159003612022578215611fb5576040805180820190915260018152600b60fa1b6020820152611fb5908590613b40565b61201360178381548110611fcb57611fcb614e3f565b60009182526020808320868452600d825260408085208786528352938490209351611ffc9493909101929101615054565b60408051601f198184030181529190528590613b40565b82151560000361202257600192505b61202e60016006614fce565b8203612057576040805180820190915260018152605d60f81b6020820152612057908590613b40565b508061206281614dec565b915050611f20565b50909392505050565b601d5460ff16156120965760405162461bcd60e51b81526004016103ee90614e55565b61209e613628565b601d805460ff19166001179055565b602180546120ba90614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546120e690614e05565b80156121335780601f1061210857610100808354040283529160200191612133565b820191906000526020600020905b81548152906001019060200180831161211657829003601f168201915b505050505081565b612143613628565b602355565b60006001600160a01b038216612171576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61219e613628565b6118a36000613dfa565b6121b0613628565b601f55565b6121bd613628565b601b55565b602d81815481106121d257600080fd5b90600052602060002090600402016000915090508060000180546121f590614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461222190614e05565b801561226e5780601f106122435761010080835404028352916020019161226e565b820191906000526020600020905b81548152906001019060200180831161225157829003601f168201915b50505050509080600101805461228390614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546122af90614e05565b80156122fc5780601f106122d1576101008083540402835291602001916122fc565b820191906000526020600020905b8154815290600101906020018083116122df57829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906123606040518060c0016040528060818152602001615790608191398290613b40565b61238c601960405160200161237591906150aa565b60408051601f198184030181529190528290613b40565b60005b61239b60016006614fce565b811015612457576123bf611f58866123b4846003614dc1565b611f48856003614dc1565b60ff169250612445600d6000838152602001908152602001600020600085815260200190815260200160002060010161241d612418600c60008681526020019081526020016000208781548110610f7c57610f7c614e3f565b613e4c565b60405160200161242e9291906150dc565b60408051601f198184030181529190528390613b40565b8061244f81614dec565b91505061238f565b50612482611f5885600361246c600682614dc1565b6124769190614fce565b611f5360066003614dc1565b60ff169150612504600d600061249a60016006614fce565b815260200190815260200160002060008481526020019081526020016000206001016124f3612418600c6000600160066124d49190614fce565b81526020019081526020016000208681548110610f7c57610f7c614e3f565b604051602001612375929190615136565b61250d81613e4c565b60405160200161251d919061529a565b60405160208183030381529060405292505050919050565b61253d613628565b6025805460ff19811660ff90911615179055565b606060038054610dee90614e05565b612568613628565b601d5460ff161561258b5760405162461bcd60e51b81526004016103ee90614e55565b8051601183600681106125a0576125a0614e3f565b0154146125ef5760405162461bcd60e51b815260206004820152601a60248201527f547261697473206c656e67746820697320696e636f727265637400000000000060448201526064016103ee565b600081516001600160401b0381111561260a5761260a6143bb565b604051908082528060200260200182016040528015612633578160200160208202803683370190505b50905060005b825181101561280a5782818151811061265457612654614e3f565b602002602001015160800151156126d3578183828151811061267857612678614e3f565b602002602001015160a001518151811061269457612694614e3f565b60200260200101518282815181106126ae576126ae614e3f565b60200260200101906001600160a01b031690816001600160a01b03168152505061272c565b6126f98382815181106126e8576126e8614e3f565b602002602001015160400151613682565b82828151811061270b5761270b614e3f565b60200260200101906001600160a01b031690816001600160a01b0316815250505b604051806060016040528084838151811061274957612749614e3f565b602002602001015160000151815260200184838151811061276c5761276c614e3f565b602002602001015160200151815260200184838151811061278f5761278f614e3f565b6020908102919091018101516060015115159091526000868152600d8252604080822085835290925220815181906127c79082614ec7565b50602082015160018201906127dc9082614ec7565b50604091909101516002909101805460ff19169115159190911790558061280281614dec565b915050612639565b506000838152600c60209081526040909120825161104e928401906141af565b6001600160a01b03821633036128825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103ee565b336000908152600960205260408120546001600160801b03166128a85762278d006128c2565b336000908152600960205260409020546001600160801b03165b9050816128d05760006128e3565b6128e36001600160801b03821642614dae565b3360008181526008602090815260408083206001600160a01b03891680855290835292819020949094559251851515815290927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006129bf83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601b546040516bffffffffffffffffffffffff1960608b901b16602082015290925060340190505b60405160208183030381529060405280519060200120613e5a565b80612a425750612a42838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff1960608a901b1660208201527ffd72b67878e6b6579e716168f2e7f70f88a4b777065f203c71f26ce1f8773a1f925060340190506129a4565b949350505050565b612a52613628565b601d5460ff1615612a755760405162461bcd60e51b81526004016103ee90614e55565b60005b8151811015611a4f576040518060400160405280838381518110612a9e57612a9e614e3f565b602002602001015160200151600081518110612abc57612abc614e3f565b60200260200101518152602001838381518110612adb57612adb614e3f565b602002602001015160200151600181518110612af957612af9614e3f565b6020026020010151815250600f6000848481518110612b1a57612b1a614e3f565b602002602001015160000151600081518110612b3857612b38614e3f565b602002602001015181526020019081526020016000206000848481518110612b6257612b62614e3f565b602002602001015160000151600181518110612b8057612b80614e3f565b60200260200101518152602001908152602001600020906002612ba4929190614214565b5080612baf81614dec565b915050612a78565b836daaeb6d7670e522a718067333cd4e3b15612d0357336001600160a01b03821603612bee57612be985858585613e70565b61121a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612c3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c619190614f86565b8015612ce45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce49190614f86565b612d0357604051633b79c77360e21b81523360048201526024016103ee565b61121a85858585613e70565b6000612d1961385d565b612d21611a53565b612d3d5760405162461bcd60e51b81526004016103ee90614d7f565b60225460ff16158015612d5b5750600b546001600160a01b03163314155b15612e8057612d6b338484612946565b612dab5760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103ee565b60245433600090815260056020526040908190205486911c6001600160401b0316612dd69190614dae565b1115612e245760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103ee565b3460235485612e339190614dc1565b14612e805760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103ee565b612e8a8433610b44565b9050610f966001600a55565b6000612ea061385d565b612ea8611a53565b612ec45760405162461bcd60e51b81526004016103ee90614d7f565b60225460ff1680612edf5750600b546001600160a01b031633145b612f2b5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103ee565b612f358383610b44565b9050610d8b6001600a55565b6060610d8b6108c583611ada565b6060612f5a826135b7565b612f965760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103ee565b60008052600c6020527f13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e85461300d5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103ee565b600061301883611ada565b604080516202006081019091526202004081526000602090910190815290915061305a602661304686613bc5565b6040516123759291906027906020016152df565b60006021805461306990614e05565b905011801561308657506000848152600e602052604090205460ff165b156130b4576130af602161309986613bc5565b84601c6040516020016123759493929190615359565b61314c565b60408051602081019091526000815260185460ff161561312a5760006130d98461231c565b9050613103816040516020016130ef91906153e4565b604051602081830303815290604052613e4c565b604051602001613113919061529a565b604051602081830303815290604052915050613136565b6131338361231c565b90505b61314a8160405160200161242e91906154cf565b505b61316861315883611eda565b6040516020016123759190615512565b61317181613e4c565b60405160200161251d9190615553565b61318a82611ecf565b6001600160a01b0316336001600160a01b0316146131dc5760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016103ee565b6000918252600e6020526040909120805460ff1916911515919091179055565b6000828152600f6020908152604080832084845282529182902080548351818402810184019094528084526060939283018282801561325a57602002820191906000526020600020905b815481526020019060010190808311613246575b5050505050905092915050565b602b546060906132a190602690602790602890602990602a9061328990613bc5565b6040516130ef96959493929190602c90602001615598565b6040516020016132b19190615553565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600d602090815260408083208584529091529081902081516060810190925280548290829061331490614e05565b80601f016020809104026020016040519081016040528092919081815260200182805461334090614e05565b801561338d5780601f106133625761010080835404028352916020019161338d565b820191906000526020600020905b81548152906001019060200180831161337057829003601f168201915b505050505081526020016001820180546133a690614e05565b80601f01602080910402602001604051908101604052809291908181526020018280546133d290614e05565b801561341f5780601f106133f45761010080835404028352916020019161341f565b820191906000526020600020905b81548152906001019060200180831161340257829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b613448613628565b6001600160a01b0381166134ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ee565b6134b681613dfa565b50565b60008054908290036134de5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461358d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613555565b50816000036135ae57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000805482108015610d8b575050600090815260046020526040902054600160e01b161590565b6060813b806135f5576311052bb46000526004601cfd5b600181039050604051915061ffe0603f820116820160405280825260008160208401015280600160208401853c50919050565b600b546001600160a01b031633146118a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ee565b60008151600181018060401b6a61000080600a3d393df300178452600a8101601585016000f0925050816136be5763301164256000526004601cfd5b90915290565b60006136cf82613c09565b9050836001600160a01b0316816001600160a01b0316146137025760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761374f576137328633610aca565b61374f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661377657604051633a954ecd60e21b815260040160405180910390fd5b801561378157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003613813576001840160008181526004602052604081205490036138115760005481146138115760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600a54036138af5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103ee565b6002600a55565b804710156139065760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103ee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613953576040519150601f19603f3d011682016040523d82523d6000602084013e613958565b606091505b505090508061121d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103ee565b61121d83838360405180602001604052806000815250612bb7565b600080601e546001600160401b03811115613a0757613a076143bb565b604051908082528060200260200182016040528015613a30578160200160208202803683370190505b50905060005b601e54811015613a665780828281518110613a5357613a53614e3f565b6020908102919091010152600101613a36565b506040805160208101909152601a548152613a818183613eb4565b818481518110613a9357613a93614e3f565b602002602001015192505050919050565b600080805b60118460068110613abc57613abc614e3f565b015481101561041057600060118560068110613ada57613ada614e3f565b018281548110613aec57613aec614e3f565b90600052602060002001549050828610158015613b115750613b0e8184614dae565b86105b15613b2057509150610d8b9050565b613b2a8184614dae565b9250508080613b3890614dec565b915050613aa9565b601f1982015182518251603f19909201918290613b5d9083614dae565b1115613bbb5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103ee565b61104e8484613f2f565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480613bdf5750819003601f19909101908152919050565b600081600054811015613c575760008181526004602052604081205490600160e01b82169003613c55575b80600003610f96575060001901600081815260046020526040902054613c34565b505b604051636f96cda160e11b815260040160405180910390fd5b6060836000613c7f8585614fce565b6001600160401b03811115613c9657613c966143bb565b6040519080825280601f01601f191660200182016040528015613cc0576020820181803683370190505b509050845b84811015613d3257828181518110613cdf57613cdf614e3f565b01602001516001600160f81b03191682613cf98884614fce565b81518110613d0957613d09614e3f565b60200101906001600160f81b031916908160001a90535080613d2a81614dec565b915050613cc5565b5095945050505050565b60008181805b82518160ff161015613df2576030838260ff1681518110613d6557613d65614e3f565b016020015160f81c10801590613d9857506039838260ff1681518110613d8d57613d8d614e3f565b016020015160f81c11155b15613de057613da8600a836156c1565b91506030838260ff1681518110613dc157613dc1614e3f565b0160200151613dd3919060f81c6156e4565b613ddd90836156fd565b91505b80613dea81615716565b915050613d42565b509392505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060610d8b82600080613f65565b600082613e678584614050565b14949350505050565b613e7b848484611222565b6001600160a01b0383163b1561104e57613e9784848484614095565b61104e576040516368d2bf6b60e11b815260040160405180910390fd5b80516000196001600160801b03821561121a576020840193505b6020852080865282840193608082901c0660051b850184613ef057505061121a565b600585811b8701805183519091529091528385019482841606901b850184613f1957505061121a565b600585901b860180518251909152905250613ece565b8051602082019150808201602084510184015b81841015613f5a578351815260209384019301613f42565b505082510190915250565b606083518015613df2576003600282010460021b60405192507f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f526102308515027f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392d5f03603f52602083018181015b6003880197508751603f8160121c1651600053603f81600c1c1651600153603f8160061c1651600253603f811651600353506000518252600482019150808210613fd557601f01601f1916604052613d3d60f01b60038406600204808303919091526000861515909102918290035290038252509392505050565b600081815b8451811015613df2576140818286838151811061407457614074614e3f565b6020026020010151614180565b91508061408d81614dec565b915050614055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906140ca903390899088908890600401615735565b6020604051808303816000875af1925050508015614105575060408051601f3d908101601f1916820190925261410291810190615772565b60015b614163573d808015614133576040519150601f19603f3d011682016040523d82523d6000602084013e614138565b606091505b50805160000361415b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081831061419c576000828152602084905260409020610f96565b6000838152602083905260409020610f96565b828054828255906000526020600020908101928215614204579160200282015b8281111561420457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906141cf565b5061421092915061424f565b5090565b828054828255906000526020600020908101928215614204579160200282015b82811115614204578251825591602001919060010190614234565b5b808211156142105760008155600101614250565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261429f5761429f614264565b500490565b6001600160e01b0319811681146134b657600080fd5b6000602082840312156142cc57600080fd5b8135610f96816142a4565b60005b838110156142f25781810151838201526020016142da565b50506000910152565b600081518084526143138160208601602086016142d7565b601f01601f19169290920160200192915050565b602081526000610f9660208301846142fb565b60006020828403121561434c57600080fd5b5035919050565b80356001600160a01b038116811461436a57600080fd5b919050565b6000806040838503121561438257600080fd5b61438b83614353565b946020939093013593505050565b600080604083850312156143ac57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156143f3576143f36143bb565b60405290565b60405160c081016001600160401b03811182821017156143f3576143f36143bb565b604080519081016001600160401b03811182821017156143f3576143f36143bb565b604051601f8201601f191681016001600160401b0381118282101715614465576144656143bb565b604052919050565b600082601f83011261447e57600080fd5b81356001600160401b03811115614497576144976143bb565b6144aa601f8201601f191660200161443d565b8181528460208386010111156144bf57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156144ee57600080fd5b81356001600160401b038082111561450557600080fd5b9083019060e0828603121561451957600080fd5b6145216143d1565b82358281111561453057600080fd5b61453c8782860161446d565b82525060208301358281111561455157600080fd5b61455d8782860161446d565b60208301525060408301358281111561457557600080fd5b6145818782860161446d565b60408301525060608301358281111561459957600080fd5b6145a58782860161446d565b6060830152506080830135828111156145bd57600080fd5b6145c98782860161446d565b60808301525060a083013560a082015260c0830135828111156145eb57600080fd5b6145f78782860161446d565b60c08301525095945050505050565b80151581146134b657600080fd5b803561436a81614606565b600060c0828403121561463157600080fd5b6146396143f9565b905081356001600160401b038082111561465257600080fd5b61465e8583860161446d565b8352602084013591508082111561467457600080fd5b6146808583860161446d565b6020840152604084013591508082111561469957600080fd5b506146a68482850161446d565b6040830152506146b860608301614614565b60608201526146c960808301614614565b608082015260a082013560a082015292915050565b6000806000606084860312156146f357600080fd5b833592506020840135915060408401356001600160401b0381111561471757600080fd5b6147238682870161461f565b9150509250925092565b60008060006060848603121561474257600080fd5b61474b84614353565b925061475960208501614353565b9150604084013590509250925092565b60006020828403121561477b57600080fd5b81356001600160801b0381168114610f9657600080fd5b60e0815260006147a560e083018a6142fb565b82810360208401526147b7818a6142fb565b905082810360408401526147cb81896142fb565b905082810360608401526147df81886142fb565b905082810360808401526147f381876142fb565b90508460a084015282810360c084015261480d81856142fb565b9a9950505050505050505050565b60006020828403121561482d57600080fd5b81356001600160401b0381111561484357600080fd5b612a428482850161446d565b60006020828403121561486157600080fd5b610f9682614353565b60808152600061487d60808301876142fb565b828103602084015261488f81876142fb565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b038211156148c5576148c56143bb565b5060051b60200190565b600080604083850312156148e257600080fd5b823591506020808401356001600160401b038082111561490157600080fd5b818601915086601f83011261491557600080fd5b8135614928614923826148ac565b61443d565b81815260059190911b8301840190848101908983111561494757600080fd5b8585015b8381101561497f578035858111156149635760008081fd5b6149718c89838a010161461f565b84525091860191860161494b565b508096505050505050509250929050565b600080604083850312156149a357600080fd5b6149ac83614353565b915060208301356149bc81614606565b809150509250929050565b60008083601f8401126149d957600080fd5b5081356001600160401b038111156149f057600080fd5b6020830191508360208260051b8501011115614a0b57600080fd5b9250929050565b600080600060408486031215614a2757600080fd5b614a3084614353565b925060208401356001600160401b03811115614a4b57600080fd5b614a57868287016149c7565b9497909650939450505050565b600082601f830112614a7557600080fd5b81356020614a85614923836148ac565b82815260059290921b84018101918181019086841115614aa457600080fd5b8286015b84811015614abf5780358352918301918301614aa8565b509695505050505050565b60006020808385031215614add57600080fd5b82356001600160401b0380821115614af457600080fd5b818501915085601f830112614b0857600080fd5b8135614b16614923826148ac565b81815260059190911b83018401908481019088831115614b3557600080fd5b8585015b83811015614bc857803585811115614b515760008081fd5b86016040818c03601f1901811315614b695760008081fd5b614b7161441b565b8983013588811115614b835760008081fd5b614b918e8c83870101614a64565b825250908201359087821115614ba75760008081fd5b614bb58d8b84860101614a64565b818b015285525050918601918601614b39565b5098975050505050505050565b60008060008060808587031215614beb57600080fd5b614bf485614353565b9350614c0260208601614353565b92506040850135915060608501356001600160401b03811115614c2457600080fd5b614c308782880161446d565b91505092959194509250565b600080600060408486031215614c5157600080fd5b8335925060208401356001600160401b03811115614a4b57600080fd5b60008060408385031215614c8157600080fd5b82359150614c9160208401614353565b90509250929050565b60008060408385031215614cad57600080fd5b8235915060208301356149bc81614606565b6020808252825182820181905260009190848201906040850190845b81811015614cf757835183529284019291840191600101614cdb565b50909695505050505050565b60008060408385031215614d1657600080fd5b614d1f83614353565b9150614c9160208401614353565b602081526000825160606020840152614d4960808401826142fb565b90506020840151601f19848303016040850152614d6682826142fb565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b80820180821115610d8b57610d8b61427a565b8082028115828204841417610d8b57610d8b61427a565b600082614de757614de7614264565b500690565b600060018201614dfe57614dfe61427a565b5060010190565b600181811c90821680614e1957607f821691505b602082108103614e3957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b601f82111561121d57600081815260208120601f850160051c81016020861015614ea85750805b601f850160051c820191505b8181101561385557828155600101614eb4565b81516001600160401b03811115614ee057614ee06143bb565b614ef481614eee8454614e05565b84614e81565b602080601f831160018114614f295760008415614f115750858301515b600019600386901b1c1916600185901b178555613855565b600085815260208120601f198616915b82811015614f5857888601518255948401946001909101908401614f39565b5085821015614f765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215614f9857600080fd5b8151610f9681614606565b6001600160801b03818116838216028082169190828114614fc657614fc661427a565b505092915050565b81810381811115610d8b57610d8b61427a565b60008154614fee81614e05565b60018281168015615006576001811461501b5761504a565b60ff198416875282151583028701945061504a565b8560005260208060002060005b858110156150415781548a820152908401908201615028565b50505082870194505b5050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000615078600f830185614fe1565b6a1116113b30b63ab2911d1160a91b8152615096600b820185614fe1565b61227d60f01b815260020195945050505050565b60006150b68284614fe1565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b815260006150f66005830185614fe1565b670ed8985cd94d8d0b60c21b815283516151178160088401602088016142d7565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006151506005830185614fe1565b670ed8985cd94d8d0b60c21b815283516151718160088401602088016142d7565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516152d281601a8501602087016142d7565b91909101601a0192915050565b683d913730b6b2911d1160b91b815260006152fd6009830186614fe1565b61202360f01b815284516153188160028401602089016142d7565b701116113232b9b1b934b83a34b7b7111d1160791b600292909101918201526153446013820185614fe1565b61088b60f21b81526002019695505050505050565b681134b6b0b3b2911d1160b91b815260006153776009830187614fe1565b8551615387818360208a016142d7565b643f646e613d60d81b910190815284516153a88160058401602089016142d7565b6a266e6574776f726b49643d60a81b600592909101918201526153ce6010820185614fe1565b61088b60f21b8152600201979650505050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b6080820152600082516154a88160918501602087016142d7565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b6d1134b6b0b3b2afb230ba30911d1160911b815281516000906154f981600e8501602087016142d7565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061553b81600d8501602087016142d7565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161558b81601d8501602087016142d7565b91909101601d0192915050565b683d913730b6b2911d1160b91b815260006155b6600983018a614fe1565b701116113232b9b1b934b83a34b7b7111d1160791b81526155da601182018a614fe1565b6a11161134b6b0b3b2911d1160a91b815290506155fa600b820189614fe1565b6b1116113130b73732b9111d1160a11b8152905061561b600c820188614fe1565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506156436013820187614fe1565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161567b81601c8401602089016142d7565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c92909101918201526156a8602e820185614fe1565b61227d60f01b81526002019a9950505050505050505050565b60ff81811683821602908116908181146156dd576156dd61427a565b5092915050565b60ff8281168282160390811115610d8b57610d8b61427a565b60ff8181168382160190811115610d8b57610d8b61427a565b600060ff821660ff810361572c5761572c61427a565b60010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615768908301846142fb565b9695505050505050565b60006020828403121561578457600080fd5b8151610f96816142a456fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723aa264697066735822122004022ec15c89e41c872d7bdf323d1efcc2bd92bc6c25dda9319f0b638aeaf78264736f6c63430008110033
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.