ETH Price: $3,455.97 (-0.90%)
Gas: 2 Gwei

Token

InversePunks (INVPNKS)
 

Overview

Max Total Supply

10,000 INVPNKS

Holders

1,032

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 INVPNKS
0x7b75b51f2101b9752c2e0c2effcb27f0e4f9313c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Indelible

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Indelible.sol
// SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;

    import "erc721a/contracts/ERC721A.sol";
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/utils/Base64.sol";
    import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
    import "@openzeppelin/contracts/utils/Address.sol";
    import "./SSTORE2.sol";
    import "./DynamicBuffer.sol";
    import "./HelperLib.sol";

    contract Indelible is ERC721A, ReentrancyGuard, Ownable {
        using HelperLib for uint;
        using DynamicBuffer for bytes;

        struct LinkedTraitDTO {
            uint[] traitA;
            uint[] traitB;
        }

        struct TraitDTO {
            string name;
            string mimetype;
            bytes data;
            bool useExistingData;
            uint existingDataIndex;
        }
        
        struct Trait {
            string name;
            string mimetype;
        }

        struct ContractData {
            string name;
            string description;
            string image;
            string banner;
            string website;
            uint royalties;
            string royaltiesRecipient;
        }

        mapping(uint => address[]) internal _traitDataPointers;
        mapping(uint => mapping(uint => Trait)) internal _traitDetails;
        mapping(uint => bool) internal _renderTokenOffChain;
        mapping(uint => mapping(uint => uint[])) internal _linkedTraits;

        uint private constant DEVELOPER_FEE = 250; // of 10,000 = 2.5%
        uint private constant NUM_LAYERS = 8;
        uint private constant MAX_BATCH_MINT = 20;
        uint[][NUM_LAYERS] private TIERS;
        string[] private LAYER_NAMES = [unicode"Ear", unicode"Neck", unicode"Mouth", unicode"Eyes", unicode"Head", unicode"Facial Features", unicode"Type", unicode"Background"];
        bool private shouldWrapSVG = true;
        string private backgroundColor = "transparent";

        bool public isContractSealed;
        uint public constant maxSupply = 10000;
        uint public maxPerAddress = 10;
        uint public publicMintPrice = 0.000 ether;
        string public baseURI = "";
        bool public isPublicMintActive;
        
        ContractData public contractData = ContractData(unicode"InversePunks", unicode"InversePunks are punks with inverted rarity dynamics. In this collection Aliens are the most common, while Humans are the rarest. This begs the question as to whether collectors will prefer aesthetics commonly regarded as rare in most collections or will they sacrifice that aspect for pure rarity. InversePunks is a free mint rarity experimentation project inspired by CryptoPunks not affiliated with Larva Labs nor Yuga Labs in anyway shape or form.", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/67cecc74-3cc9-4935-936d-dc76e81c6974", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/67cecc74-3cc9-4935-936d-dc76e81c6974", "", 500, "0xe3a2162c8a41c0477aaf8B8BEEbA9E9e62f80191");

        constructor() ERC721A(unicode"InversePunks", unicode"INVPNKS") {
            TIERS[0] = [3267,3333,3400];
TIERS[1] = [830,830,830,830,830,830,830,830,830,830,850,850];
TIERS[2] = [81,95,165,399,607,843,954,1059,1111,1329,1576,1781];
TIERS[3] = [56,63,126,217,253,279,354,453,491,616,732,904,963,1104,1572,1817];
TIERS[4] = [55,65,69,75,78,78,82,84,86,88,106,110,118,122,124,133,135,135,149,155,165,179,189,217,244,250,284,296,339,361,371,375,405,422,428,433,471,484,498,503,514,525];
TIERS[5] = [354,696,1150,1630,1998,2036,2136];
TIERS[6] = [11,11,11,88,3840,6039];
TIERS[7] = [10000];
        }

        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);
        }

        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 entropyForExtraData() internal view returns (uint24) {
            uint randomNumber = uint(
                keccak256(
                    abi.encodePacked(
                        tx.gasprice,
                        block.number,
                        block.timestamp,
                        block.difficulty,
                        blockhash(block.number - 1),
                        msg.sender
                    )
                )
            );
            return uint24(randomNumber);
        }
        
        function stringCompare(string memory a, string memory b) internal pure returns (bool) {
            return keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b));
        }

        function tokensAreDuplicates(uint tokenIdA, uint tokenIdB) public view returns (bool) {
            return stringCompare(
                tokenIdToHash(tokenIdA),
                tokenIdToHash(tokenIdB)
            );
        }
        
        function reRollDuplicate(
            uint tokenIdA,
            uint tokenIdB
        ) public whenUnsealed {
            require(tokensAreDuplicates(tokenIdA, tokenIdB), "All tokens must be duplicates");

            uint largerTokenId = tokenIdA > tokenIdB ? tokenIdA : tokenIdB;

            if (msg.sender != owner()) {
                require(msg.sender == ownerOf(largerTokenId), "Only the token owner or contract owner can re-roll");
            }
            
            _initializeOwnershipAt(largerTokenId);
            if (_exists(largerTokenId + 1)) {
                _initializeOwnershipAt(largerTokenId + 1);
            }

            _setExtraDataAt(largerTokenId, entropyForExtraData());
        }
        
        function _extraData(
            address from,
            address to,
            uint24 previousExtraData
        ) internal view virtual override returns (uint24) {
            return from == address(0) ? entropyForExtraData() : previousExtraData;
        }

        function getTokenSeed(uint _tokenId) internal view returns (uint24) {
            return _ownershipOf(_tokenId).extraData;
        }

        function tokenIdToHash(
            uint _tokenId
        ) public view returns (string memory) {
            require(_exists(_tokenId), "Invalid token");
            // This will generate a NUM_LAYERS * 3 character string.
            bytes memory hashBytes = DynamicBuffer.allocate(NUM_LAYERS * 4);

            uint[] memory hash = new uint[](NUM_LAYERS);
            bool[] memory modifiedLayers = new bool[](NUM_LAYERS);

            for (uint i = 0; i < NUM_LAYERS; i++) {
                uint traitIndex = hash[i];
                if (modifiedLayers[i] == false) {
                    uint _randinput = uint(
                        uint(
                            keccak256(
                                abi.encodePacked(
                                    getTokenSeed(_tokenId),
                                    _tokenId,
                                    _tokenId + i
                                )
                            )
                        ) % maxSupply
                    );
    
                    traitIndex = rarityGen(_randinput, 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(uint256 _count) internal whenMintActive returns (uint256) {
            uint256 totalMinted = _totalMinted();
            require(_count > 0, "Invalid token count");
            require(totalMinted + _count <= maxSupply, "All tokens are gone");

            
            if (msg.sender != owner()) {
                require(_numberMinted(msg.sender) + _count <= maxPerAddress, "Exceeded max mints allowed");
            }
            require(msg.sender == tx.origin, "EOAs only");
            require(_count * publicMintPrice == msg.value, "Incorrect amount of ether sent");
            
            uint256 batchCount = _count / MAX_BATCH_MINT;
            uint256 remainder = _count % MAX_BATCH_MINT;

            for (uint256 i = 0; i < batchCount; i++) {
                _mint(msg.sender, MAX_BATCH_MINT);
            }

            if (remainder > 0) {
                _mint(msg.sender, remainder);
            }

            return totalMinted;
        }

        function mint(uint256 _count)
            external
            payable
            nonReentrant
            whenMintActive
            returns (uint)
        {
            
                uint256 totalMinted = handleMint(_count);
    
                return totalMinted;
        }

        function isMintActive() public view returns (bool) {
            return _totalMinted() < maxSupply && isPublicMintActive;
        }

        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 < NUM_LAYERS - 1; i++) {
                thisTraitIndex = HelperLib.parseInt(
                    HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
                );
                svgBytes.appendSafe(
                    abi.encodePacked(
                        "data:",
                        _traitDetails[i][thisTraitIndex].mimetype,
                        ";base64,",
                        Base64.encode(SSTORE2.read(_traitDataPointers[i][thisTraitIndex])),
                        "),url("
                    )
                );
            }

            thisTraitIndex = HelperLib.parseInt(
                HelperLib._substring(_hash, (NUM_LAYERS * 3) - 3, NUM_LAYERS * 3)
            );

            svgBytes.appendSafe(
                abi.encodePacked(
                    "data:",
                    _traitDetails[NUM_LAYERS - 1][thisTraitIndex].mimetype,
                    ";base64,",
                    Base64.encode(SSTORE2.read(_traitDataPointers[NUM_LAYERS - 1][thisTraitIndex])),
                    ');background-repeat:no-repeat;background-size:contain;background-position:center;image-rendering:-webkit-optimize-contrast;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated;"></svg>'
                )
            );

            return string(
                abi.encodePacked(
                    "data:image/svg+xml;base64,",
                    Base64.encode(svgBytes)
                )
            );
        }

        function hashToMetadata(string memory _hash)
            public
            view
            returns (string memory)
        {
            bytes memory metadataBytes = DynamicBuffer.allocate(1024 * 128);
            metadataBytes.appendSafe("[");

            for (uint i = 0; i < NUM_LAYERS; i++) {
                uint thisTraitIndex = HelperLib.parseInt(
                    HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
                );
                metadataBytes.appendSafe(
                    abi.encodePacked(
                        '{"trait_type":"',
                        LAYER_NAMES[i],
                        '","value":"',
                        _traitDetails[i][thisTraitIndex].name,
                        '"}'
                    )
                );
                
                if (i == NUM_LAYERS - 1) {
                    metadataBytes.appendSafe("]");
                } else {
                    metadataBytes.appendSafe(",");
                }
            }

            return string(metadataBytes);
        }

        

        function 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(unicode"{\"name\":\"InversePunks #");

            jsonBytes.appendSafe(
                abi.encodePacked(
                    _toString(_tokenId),
                    "\",\"description\":\"",
                    contractData.description,
                    "\","
                )
            );

            if (bytes(baseURI).length > 0 && _renderTokenOffChain[_tokenId]) {
                jsonBytes.appendSafe(
                    abi.encodePacked(
                        '"image":"',
                        baseURI,
                        _toString(_tokenId),
                        "?dna=",
                        tokenHash,
                        '&network=mainnet",'
                    )
                );
            } else {
                string memory svgCode = "";
                if (shouldWrapSVG) {
                    string memory svgString = hashToSVG(tokenHash);
                    svgCode = string(
                        abi.encodePacked(
                            "data:image/svg+xml;base64,",
                            Base64.encode(
                                abi.encodePacked(
                                    '<svg width="100%" height="100%" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg"><image width="1200" height="1200" href="',
                                    svgString,
                                    '"></image></svg>'
                                )
                            )
                        )
                    );
                    jsonBytes.appendSafe(
                        abi.encodePacked(
                            '"svg_image_data":"',
                            svgString,
                            '",'
                        )
                    );
                } else {
                    svgCode = hashToSVG(tokenHash);
                }

                jsonBytes.appendSafe(
                    abi.encodePacked(
                        '"image_data":"',
                        svgCode,
                        '",'
                    )
                );
            }

            jsonBytes.appendSafe(
                abi.encodePacked(
                    '"attributes":',
                    hashToMetadata(tokenHash),
                    "}"
                )
            );

            return string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(jsonBytes)
                )
            );
        }

        function contractURI()
            public
            view
            returns (string memory)
        {
            return string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(
                        abi.encodePacked(
                            '{"name":"',
                            contractData.name,
                            '","description":"',
                            contractData.description,
                            '","image":"',
                            contractData.image,
                            '","banner":"',
                            contractData.banner,
                            '","external_link":"',
                            contractData.website,
                            '","seller_fee_basis_points":',
                            _toString(contractData.royalties),
                            ',"fee_recipient":"',
                            contractData.royaltiesRecipient,
                            '"}'
                        )
                    )
                )
            );
        }

        function tokenIdToSVG(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 (string memory)
        {
            return string(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 size does not match tiers for this index");
            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);
            }
            _traitDataPointers[_layerIndex] = dataPointers;
            return;
        }

        function addTrait(uint _layerIndex, uint _traitIndex, TraitDTO memory trait)
            public
            onlyOwner
            whenUnsealed
        {
            _traitDetails[_layerIndex][_traitIndex] = Trait(trait.name, trait.mimetype);
            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 _contractData) external onlyOwner whenUnsealed {
            contractData = _contractData;
        }

        function setMaxPerAddress(uint _maxPerAddress) external onlyOwner {
            maxPerAddress = _maxPerAddress;
        }

        function setBaseURI(string memory _baseURI) external onlyOwner {
            baseURI = _baseURI;
        }

        function setBackgroundColor(string memory _backgroundColor) external onlyOwner whenUnsealed {
            backgroundColor = _backgroundColor;
        }

        function setRenderOfTokenId(uint _tokenId, bool _renderOffChain) external {
            require(msg.sender == ownerOf(_tokenId), "Only the token owner can set the render method");
            _renderTokenOffChain[_tokenId] = _renderOffChain;
        }

        

        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;
    
            address payable receiver = payable(owner());
            address payable dev = payable(0xEA208Da933C43857683C04BC76e3FD331D7bfdf7);
    
            Address.sendValue(receiver, amount);
            Address.sendValue(dev, balance - amount);
        }
    }

File 2 of 13 : DynamicBuffer.sol
// 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);
    }
}

File 3 of 13 : HelperLib.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

library HelperLib {
    function parseInt(string memory _a)
        internal
        pure
        returns (uint8 _parsedInt)
    {
        bytes memory bresult = bytes(_a);
        uint8 mint = 0;
        for (uint8 i = 0; i < bresult.length; i++) {
            if (
                (uint8(uint8(bresult[i])) >= 48) &&
                (uint8(uint8(bresult[i])) <= 57)
            ) {
                mint *= 10;
                mint += uint8(bresult[i]) - 48;
            }
        }
        return mint;
    }

    function _substring(
        string memory str,
        uint256 startIndex,
        uint256 endIndex
    ) internal pure returns (string memory) {
        bytes memory strBytes = bytes(str);
        bytes memory result = new bytes(endIndex - startIndex);
        for (uint256 i = startIndex; i < endIndex; i++) {
            result[i - startIndex] = strBytes[i];
        }
        return string(result);
    }
}

File 4 of 13 : SSTORE2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./utils/Bytecode.sol";

/**
  @title A key-value storage with auto-generated keys for storing chunks of data with a lower write & read cost.
  @author Agustin Aguilar <[email protected]>

  Readme: https://github.com/0xsequence/sstore2#readme
*/
library SSTORE2 {
  error WriteError();

  /**
    @notice Stores `_data` and returns `pointer` as key for later retrieval
    @dev The pointer is a contract address with `_data` as code
    @param _data to be written
    @return pointer Pointer to the written `_data`
  */
  function write(bytes memory _data) internal returns (address pointer) {
    // Append 00 to _data so contract can't be called
    // Build init code
    bytes memory code = Bytecode.creationCodeFor(
      abi.encodePacked(
        hex'00',
        _data
      )
    );

    // Deploy contract using create
    assembly { pointer := create(0, add(code, 32), mload(code)) }

    // Address MUST be non-zero
    if (pointer == address(0)) revert WriteError();
  }

  /**
    @notice Reads the contents of the `_pointer` code as data, skips the first byte 
    @dev The function is intended for reading pointers generated by `write`
    @param _pointer to be read
    @return data read from `_pointer` contract
  */
  function read(address _pointer) internal view returns (bytes memory) {
    return Bytecode.codeAt(_pointer, 1, type(uint256).max);
  }

  /**
    @notice Reads the contents of the `_pointer` code as data, skips the first byte 
    @dev The function is intended for reading pointers generated by `write`
    @param _pointer to be read
    @param _start number of bytes to skip
    @return data read from `_pointer` contract
  */
  function read(address _pointer, uint256 _start) internal view returns (bytes memory) {
    return Bytecode.codeAt(_pointer, _start + 1, type(uint256).max);
  }

  /**
    @notice Reads the contents of the `_pointer` code as data, skips the first byte 
    @dev The function is intended for reading pointers generated by `write`
    @param _pointer to be read
    @param _start number of bytes to skip
    @param _end index before which to end extraction
    @return data read from `_pointer` contract
  */
  function read(address _pointer, uint256 _start, uint256 _end) internal view returns (bytes memory) {
    return Bytecode.codeAt(_pointer, _start + 1, _end + 1);
  }
}

File 5 of 13 : Bytecode.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


library Bytecode {
  error InvalidCodeAtRange(uint256 _size, uint256 _start, uint256 _end);

  /**
    @notice Generate a creation code that results on a contract with `_code` as bytecode
    @param _code The returning value of the resulting `creationCode`
    @return creationCode (constructor) for new contract
  */
  function creationCodeFor(bytes memory _code) internal pure returns (bytes memory) {
    /*
      0x00    0x63         0x63XXXXXX  PUSH4 _code.length  size
      0x01    0x80         0x80        DUP1                size size
      0x02    0x60         0x600e      PUSH1 14            14 size size
      0x03    0x60         0x6000      PUSH1 00            0 14 size size
      0x04    0x39         0x39        CODECOPY            size
      0x05    0x60         0x6000      PUSH1 00            0 size
      0x06    0xf3         0xf3        RETURN
      <CODE>
    */

    return abi.encodePacked(
      hex"63",
      uint32(_code.length),
      hex"80_60_0E_60_00_39_60_00_F3",
      _code
    );
  }

  /**
    @notice Returns the size of the code on a given address
    @param _addr Address that may or may not contain code
    @return size of the code on the given `_addr`
  */
  function codeSize(address _addr) internal view returns (uint256 size) {
    assembly { size := extcodesize(_addr) }
  }

  /**
    @notice Returns the code of a given address
    @dev It will fail if `_end < _start`
    @param _addr Address that may or may not contain code
    @param _start number of bytes of code to skip on read
    @param _end index before which to end extraction
    @return oCode read from `_addr` deployed bytecode

    Forked from: https://gist.github.com/KardanovIR/fe98661df9338c842b4a30306d507fbd
  */
  function codeAt(address _addr, uint256 _start, uint256 _end) internal view returns (bytes memory oCode) {
    uint256 csize = codeSize(_addr);
    if (csize == 0) return bytes("");

    if (_start > csize) return bytes("");
    if (_end < _start) revert InvalidCodeAtRange(csize, _start, _end); 

    unchecked {
      uint256 reqSize = _end - _start;
      uint256 maxSize = csize - _start;

      uint256 size = maxSize < reqSize ? maxSize : reqSize;

      assembly {
        // allocate output byte array - this could also be done without assembly
        // by using o_code = new bytes(size)
        oCode := mload(0x40)
        // new "memory end" including padding
        mstore(0x40, add(oCode, and(add(add(size, 0x20), 0x1f), not(0x1f))))
        // store length in memory
        mstore(oCode, size)
        // actually retrieve the code, this needs assembly
        extcodecopy(_addr, add(oCode, 0x20), _start, size)
      }
    }
  }
}

File 6 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 13 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 10 of 13 : Context.sol
// 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;
    }
}

File 11 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 12 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 13 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

Settings
{
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WriteError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"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":"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdA","type":"uint256"},{"internalType":"uint256","name":"tokenIdB","type":"uint256"}],"name":"reRollDuplicate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_backgroundColor","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"internalType":"struct Indelible.ContractData","name":"_contractData","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":"_maxPerAddress","type":"uint256"}],"name":"setMaxPerAddress","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":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWrapSVG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenIdToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdA","type":"uint256"},{"internalType":"uint256","name":"tokenIdB","type":"uint256"}],"name":"tokensAreDuplicates","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"internalType":"uint256","name":"_traitIndex","type":"uint256"}],"name":"traitData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_layerIndex","type":"uint256"},{"internalType":"uint256","name":"_traitIndex","type":"uint256"}],"name":"traitDetails","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"}],"internalType":"struct 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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60036101809081526222b0b960e91b6101a052608090815260046101c0818152634e65636b60e01b6101e05260a05260056102009081526409adeeae8d60db1b6102205260c052610240818152634579657360e01b6102605260e052610280818152631219585960e21b6102a05261010052600f6102c09081526e46616369616c20466561747572657360881b6102e05261012052610300908152635479706560e01b6103205261014052610380604052600a61034090815269109858dad9dc9bdd5b9960b21b6103605261016052620000de906016906008620007a3565b506017805460ff1916600117905560408051808201909152600b8082526a1d1c985b9cdc185c995b9d60aa1b6020909201918252620001209160189162000807565b50600a601a556000601b8190556040805160208101918290528290526200014b91601c919062000807565b506040518060e001604052806040518060400160405280600c81526020016b496e766572736550756e6b7360a01b81525081526020016040518061020001604052806101c38152602001620059196101c3913981526020016040518060a001604052806062815260200162005b676062913981526020016040518060a001604052806061815260200162005b066061913981526020016040518060200160405280600081525081526020016101f481526020016040518060600160405280602a815260200162005adc602a9139905280518051601e91620002329183916020019062000807565b5060208281015180516200024d926001850192019062000807565b50604082015180516200026b91600284019160209091019062000807565b50606082015180516200028991600384019160209091019062000807565b5060808201518051620002a791600484019160209091019062000807565b5060a0820151600582015560c08201518051620002cf91600684019160209091019062000807565b505050348015620002df57600080fd5b50604080518082018252600c81526b496e766572736550756e6b7360a01b602080830191825283518085019094526007845266494e56504e4b5360c81b908401528151919291620003339160029162000807565b5080516200034990600390602084019062000807565b506000805550506001600855620003603362000751565b60408051606081018252610cc38152610d056020820152610d48918101919091526200039190600e90600362000892565b50604080516101808101825261033e80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081019190915261035261014082018190526101608201526200040590600f90600c62000892565b50604080516101808101825260518152605f602082015260a59181019190915261018f606082015261025f608082015261034b60a08201526103ba60c082015261042360e08201526104576101008201526105316101208201526106286101408201526106f56101608201526200048190601090600c62000892565b50604080516102008101825260388152603f6020820152607e9181019190915260d9606082015260fd608082015261011760a082015261016260c08201526101c560e08201526101eb6101008201526102686101208201526102dc6101408201526103886101608201526103c36101808201526104506101a08201526106246101c08201526107196101e08201526200051f90601190601062000892565b5060408051610540810182526037815260416020820152604591810191909152604b6060820152604e6080820181905260a0820152605260c0820152605460e082015260566101008201526058610120820152606a610140820152606e6101608201526076610180820152607a6101a0820152607c6101c082015260856101e0820152608761020082018190526102208201526095610240820152609b61026082015260a561028082015260b36102a082015260bd6102c082015260d96102e082015260f461030082015260fa61032082015261011c6103408201526101286103608201526101536103808201526101696103a08201526101736103c08201526101776103e08201526101956104008201526101a66104208201526101ac6104408201526101b16104608201526101d76104808201526101e46104a08201526101f26104c08201526101f76104e082015261020261050082015261020d6105208201526200069290601290602a62000892565b506040805160e08101825261016281526102b8602082015261047e9181019190915261065e60608201526107ce60808201526107f460a082015261085860c0820152620006e490601390600762000892565b506040805160c081018252600b808252602082018190529181019190915260586060820152610f00608082015261179760a08201526200072990601490600662000892565b50604080516020810190915261271081526200074a90601590600162000892565b506200098c565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620007f5579160200282015b82811115620007f55782518051620007e491849160209091019062000807565b5091602001919060010190620007c4565b5062000803929150620008d6565b5090565b828054620008159062000950565b90600052602060002090601f01602090048101928262000839576000855562000884565b82601f106200085457805160ff191683800117855562000884565b8280016001018555821562000884579182015b828111156200088457825182559160200191906001019062000867565b5062000803929150620008f7565b82805482825590600052602060002090810192821562000884579160200282015b8281111562000884578251829061ffff16905591602001919060010190620008b3565b8082111562000803576000620008ed82826200090e565b50600101620008d6565b5b80821115620008035760008155600101620008f8565b5080546200091c9062000950565b6000825580601f106200092d575050565b601f0160209004906000526020600020908101906200094d9190620008f7565b50565b600181811c908216806200096557607f821691505b6020821081036200098657634e487b7160e01b600052602260045260246000fd5b50919050565b614f7d806200099c6000396000f3fe6080604052600436106102975760003560e01c80636c0360eb1161015a578063c11feac1116100c1578063dc9867ce1161007a578063dc9867ce146107f9578063e8a3d48514610826578063e985e9c51461083b578063ea84b59b14610884578063f2fde38b146108b1578063fd6b3cf5146108d157600080fd5b8063c11feac11461074d578063c87b56dd1461076d578063d36c2f261461078d578063d5abeb01146107ad578063dbe9875f146107c3578063dc53fd92146107e357600080fd5b80638da5cb5b116101135780638da5cb5b146106a757806395d89b41146106c5578063a0712d68146106da578063a22cb465146106ed578063b45680661461070d578063b88d4fde1461072d57600080fd5b80636c0360eb146105fd5780636cced73a1461061257806370a0823114610632578063715018a6146106525780637bddd65b1461066757806389ce30741461068757600080fd5b806342842e0e116101fe57806361ab9d0c116101b757806361ab9d0c14610552578063621a1f74146105725780636352211e14610592578063639814e0146105b257806366e33870146105c857806368bd580e146105e857600080fd5b806342842e0e146104ae5780634920154b146104ce578063542d5041146104e357806355f804b3146104fd5780635b92ac0d1461051d5780636190e1da1461053257600080fd5b806318160ddd1161025057806318160ddd146103ff57806323b872dd146104225780632d6b6224146104425780633cca24201461045c5780633ccfd60b146104845780634047638d1461049957600080fd5b806301ffc9a71461031057806306fdde0314610345578063081812fc14610367578063095ea7b31461039f57806309dbabca146103bf5780630f3debbe146103df57600080fd5b3661030b57601d5460ff166102f35760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b610309601b54346103049190613b76565b6108f1565b005b600080fd5b34801561031c57600080fd5b5061033061032b366004613ba0565b610b5a565b60405190151581526020015b60405180910390f35b34801561035157600080fd5b5061035a610bac565b60405161033c9190613c15565b34801561037357600080fd5b50610387610382366004613c28565b610c3e565b6040516001600160a01b03909116815260200161033c565b3480156103ab57600080fd5b506103096103ba366004613c58565b610c82565b3480156103cb57600080fd5b5061035a6103da366004613c82565b610d22565b3480156103eb57600080fd5b506103096103fa366004613dc5565b610d6a565b34801561040b57600080fd5b50600154600054035b60405190815260200161033c565b34801561042e57600080fd5b5061030961043d366004613eef565b610e6a565b34801561044e57600080fd5b50601d546103309060ff1681565b34801561046857600080fd5b5061047161101e565b60405161033c9796959493929190613f2b565b34801561049057600080fd5b5061030961137c565b3480156104a557600080fd5b50610309611477565b3480156104ba57600080fd5b506103096104c9366004613eef565b6114b5565b3480156104da57600080fd5b506103096114d5565b3480156104ef57600080fd5b506019546103309060ff1681565b34801561050957600080fd5b50610309610518366004613fb4565b611513565b34801561052957600080fd5b50610330611554565b34801561053e57600080fd5b5061030961054d366004613fb4565b611576565b34801561055e57600080fd5b5061030961056d3660046140c9565b6115d6565b34801561057e57600080fd5b5061035a61058d366004613c28565b6118a8565b34801561059e57600080fd5b506103876105ad366004613c28565b611c94565b3480156105be57600080fd5b50610414601a5481565b3480156105d457600080fd5b5061035a6105e3366004613fb4565b611c9f565b3480156105f457600080fd5b50610309611dfb565b34801561060957600080fd5b5061035a611e57565b34801561061e57600080fd5b5061033061062d366004613c82565b611ee5565b34801561063e57600080fd5b5061041461064d36600461418a565b611f01565b34801561065e57600080fd5b50610309611f4f565b34801561067357600080fd5b50610309610682366004613c28565b611f85565b34801561069357600080fd5b5061035a6106a2366004613fb4565b611fb4565b3480156106b357600080fd5b506009546001600160a01b0316610387565b3480156106d157600080fd5b5061035a6121cd565b6104146106e8366004613c28565b6121dc565b3480156106f957600080fd5b506103096107083660046141a5565b612298565b34801561071957600080fd5b5061030961072836600461423e565b61232d565b34801561073957600080fd5b50610309610748366004614349565b6124bc565b34801561075957600080fd5b5061035a610768366004613c28565b612500565b34801561077957600080fd5b5061035a610788366004613c28565b61250e565b34801561079957600080fd5b506103096107a83660046143b0565b61278c565b3480156107b957600080fd5b5061041461271081565b3480156107cf57600080fd5b506103096107de3660046143ff565b612962565b3480156107ef57600080fd5b50610414601b5481565b34801561080557600080fd5b50610819610814366004613c82565b612a02565b60405161033c9190614422565b34801561083257600080fd5b5061035a612a6d565b34801561084757600080fd5b50610330610856366004614466565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561089057600080fd5b506108a461089f366004613c82565b612acb565b60405161033c9190614490565b3480156108bd57600080fd5b506103096108cc36600461418a565b612c2d565b3480156108dd57600080fd5b506103096108ec366004613c82565b612cc8565b60006108fb611554565b61093f5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b60448201526064016102ea565b600054826109855760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016102ea565b61271061099284836144d2565b11156109d65760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016102ea565b6009546001600160a01b03163314610a6157601a5433600090815260056020526040908190205485911c6001600160401b0316610a1391906144d2565b1115610a615760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016102ea565b333214610a9c5760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016102ea565b34601b5484610aab91906144ea565b14610af85760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016102ea565b6000610b05601485613b76565b90506000610b14601486614509565b905060005b82811015610b3e57610b2c336014612e47565b80610b368161451d565b915050610b19565b508015610b4f57610b4f3382612e47565b50909150505b919050565b60006301ffc9a760e01b6001600160e01b031983161480610b8b57506380ac58cd60e01b6001600160e01b03198316145b80610ba65750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610bbb90614536565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790614536565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b5050505050905090565b6000610c4982612f48565b610c66576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c8d82611c94565b9050336001600160a01b03821614610cc657610ca98133610856565b610cc6576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610d639184908110610d4957610d4961456a565b6000918252602090912001546001600160a01b0316612f6f565b9392505050565b6009546001600160a01b03163314610d945760405162461bcd60e51b81526004016102ea90614580565b60195460ff1615610db75760405162461bcd60e51b81526004016102ea906145b5565b805180518291601e91610dd1918391602090910190613a22565b506020828101518051610dea9260018501920190613a22565b5060408201518051610e06916002840191602090910190613a22565b5060608201518051610e22916003840191602090910190613a22565b5060808201518051610e3e916004840191602090910190613a22565b5060a0820151600582015560c08201518051610e64916006840191602090910190613a22565b50505050565b6000610e7582612f7f565b9050836001600160a01b0316816001600160a01b031614610ea85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ef557610ed88633610856565b610ef557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f1c57604051633a954ecd60e21b815260040160405180910390fd5b8015610f2757600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681522080546001019055610f8085610f65888287612fe6565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003610fd557600184016000818152600460205260408120549003610fd3576000548114610fd35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601e8054819061102d90614536565b80601f016020809104026020016040519081016040528092919081815260200182805461105990614536565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050908060010180546110bb90614536565b80601f01602080910402602001604051908101604052809291908181526020018280546110e790614536565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b50505050509080600201805461114990614536565b80601f016020809104026020016040519081016040528092919081815260200182805461117590614536565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b5050505050908060030180546111d790614536565b80601f016020809104026020016040519081016040528092919081815260200182805461120390614536565b80156112505780601f1061122557610100808354040283529160200191611250565b820191906000526020600020905b81548152906001019060200180831161123357829003601f168201915b50505050509080600401805461126590614536565b80601f016020809104026020016040519081016040528092919081815260200182805461129190614536565b80156112de5780601f106112b3576101008083540402835291602001916112de565b820191906000526020600020905b8154815290600101906020018083116112c157829003601f168201915b5050505050908060050154908060060180546112f990614536565b80601f016020809104026020016040519081016040528092919081815260200182805461132590614536565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b5050505050905087565b6009546001600160a01b031633146113a65760405162461bcd60e51b81526004016102ea90614580565b6002600854036113f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ea565b600260085547600061271061140e60fa826145e1565b61141890846144ea565b6114229190613b76565b905060006114386009546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf76114598284613009565b61146c8161146785876145e1565b613009565b505060016008555050565b6009546001600160a01b031633146114a15760405162461bcd60e51b81526004016102ea90614580565b601d805460ff19811660ff90911615179055565b6114d0838383604051806020016040528060008152506124bc565b505050565b6009546001600160a01b031633146114ff5760405162461bcd60e51b81526004016102ea90614580565b6017805460ff19811660ff90911615179055565b6009546001600160a01b0316331461153d5760405162461bcd60e51b81526004016102ea90614580565b805161155090601c906020840190613a22565b5050565b600061271061156260005490565b1080156115715750601d5460ff165b905090565b6009546001600160a01b031633146115a05760405162461bcd60e51b81526004016102ea90614580565b60195460ff16156115c35760405162461bcd60e51b81526004016102ea906145b5565b8051611550906018906020840190613a22565b6009546001600160a01b031633146116005760405162461bcd60e51b81526004016102ea90614580565b60195460ff16156116235760405162461bcd60e51b81526004016102ea906145b5565b8051600e83600881106116385761163861456a565b01541461169f5760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b60648201526084016102ea565b600081516001600160401b038111156116ba576116ba613ca4565b6040519080825280602002602001820160405280156116e3578160200160208202803683370190505b50905060005b8251811015611888578281815181106117045761170461456a565b6020026020010151606001511561178357818382815181106117285761172861456a565b602002602001015160800151815181106117445761174461456a565b602002602001015182828151811061175e5761175e61456a565b60200260200101906001600160a01b031690816001600160a01b0316815250506117dc565b6117a98382815181106117985761179861456a565b602002602001015160400151613122565b8282815181106117bb576117bb61456a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b60405180604001604052808483815181106117f9576117f961456a565b602002602001015160000151815260200184838151811061181c5761181c61456a565b6020908102919091018101518101519091526000868152600b825260408082208583528352902082518051919261185892849290910190613a22565b5060208281015180516118719260018501920190613a22565b5090505080806118809061451d565b9150506116e9565b506000838152600a602090815260409091208251610e6492840190613aa6565b60606118b382612f48565b6118ef5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016102ea565b600061191d611900600860046144ea565b604080518281016060018252910181526000602090910190815290565b6040805160088082526101208201909252919250600091906020820161010080368337505060408051600880825261012082019092529293506000929150602082016101008036833701905050905060005b6008811015611b6257600083828151811061198c5761198c61456a565b602002602001015190508282815181106119a8576119a861456a565b602002602001015115156000151503611a4e5760006127106119c989613187565b896119d486826144d2565b60405160e89390931b6001600160e81b0319166020840152602383019190915260438201526063016040516020818303038152906040528051906020012060001c611a1f9190614509565b9050611a2b818461319c565b915081858481518110611a4057611a4061456a565b602002602001018181525050505b6000828152600d6020908152604080832084845290915290205415611b4f576000828152600d60209081526040808320848452909152902080546001908110611a9957611a9961456a565b6000918252602080832090910154848352600d82526040808420858552909252908220805491928792611ace57611ace61456a565b906000526020600020015481518110611ae957611ae961456a565b6020908102919091018101919091526000838152600d825260408082208483529092529081208054600192869291611b2357611b2361456a565b906000526020600020015481518110611b3e57611b3e61456a565b911515602092830291909101909101525b5080611b5a8161451d565b91505061196f565b5060005b8251811015611c8a57600a838281518110611b8357611b8361456a565b60200260200101511015611bba57604080518082019091526002815261030360f41b6020820152611bb5908590613238565b611bff565b6064838281518110611bce57611bce61456a565b60200260200101511015611bff576040805180820190915260018152600360fc1b6020820152611bff908590613238565b6103e7838281518110611c1457611c1461456a565b60200260200101511115611c4c5760408051808201909152600381526239393960e81b6020820152611c47908590613238565b611c78565b611c78611c71848381518110611c6457611c6461456a565b60200260200101516132bd565b8590613238565b80611c828161451d565b915050611b66565b5091949350505050565b6000610ba682612f7f565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611ce1908290613238565b60005b6008811015611df4576000611d21611d1c86611d018560036144ea565b611d0c8660036144ea565b611d179060036144d2565b61330c565b6133d8565b60ff169050611d8460168381548110611d3c57611d3c61456a565b60009182526020808320868452600b825260408085208786528352938490209351611d6d9493909101929101614691565b60408051601f198184030181529190528490613238565b611d90600160086145e1565b8203611dbe576040805180820190915260018152605d60f81b6020820152611db9908490613238565b611de1565b6040805180820190915260018152600b60fa1b6020820152611de1908490613238565b5080611dec8161451d565b915050611ce4565b5092915050565b60195460ff1615611e1e5760405162461bcd60e51b81526004016102ea906145b5565b6009546001600160a01b03163314611e485760405162461bcd60e51b81526004016102ea90614580565b6019805460ff19166001179055565b601c8054611e6490614536565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9090614536565b8015611edd5780601f10611eb257610100808354040283529160200191611edd565b820191906000526020600020905b815481529060010190602001808311611ec057829003601f168201915b505050505081565b6000610d63611ef3846118a8565b611efc846118a8565b613496565b60006001600160a01b038216611f2a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314611f795760405162461bcd60e51b81526004016102ea90614580565b611f8360006134ef565b565b6009546001600160a01b03163314611faf5760405162461bcd60e51b81526004016102ea90614580565b601a55565b604080516202006081019091526202004081526000602090910181815260609190611ff86040518060c0016040528060818152602001614e87608191398290613238565b612024601860405160200161200d91906146e7565b60408051601f198184030181529190528290613238565b60005b612033600160086145e1565b8110156120ef57612057611d1c8661204c8460036144ea565b611d0c8560036144ea565b60ff1692506120dd600b600083815260200190815260200160002060008581526020019081526020016000206001016120b56120b0600a60008681526020019081526020016000208781548110610d4957610d4961456a565b613541565b6040516020016120c6929190614719565b60408051601f198184030181529190528390613238565b806120e78161451d565b915050612027565b5061211a611d1c8560036121046008826144ea565b61210e91906145e1565b611d17600860036144ea565b60ff16915061219c600b6000612132600160086145e1565b8152602001908152602001600020600084815260200190815260200160002060010161218b6120b0600a60006001600861216c91906145e1565b81526020019081526020016000208681548110610d4957610d4961456a565b60405160200161200d929190614773565b6121a581613541565b6040516020016121b591906148d7565b60405160208183030381529060405292505050919050565b606060038054610bbb90614536565b60006002600854036122305760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ea565b600260085561223d611554565b6122815760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b60448201526064016102ea565b600061228c836108f1565b60016008559392505050565b336001600160a01b038316036122c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146123575760405162461bcd60e51b81526004016102ea90614580565b60195460ff161561237a5760405162461bcd60e51b81526004016102ea906145b5565b60005b81518110156115505760405180604001604052808383815181106123a3576123a361456a565b6020026020010151602001516000815181106123c1576123c161456a565b602002602001015181526020018383815181106123e0576123e061456a565b6020026020010151602001516001815181106123fe576123fe61456a565b6020026020010151815250600d600084848151811061241f5761241f61456a565b60200260200101516000015160008151811061243d5761243d61456a565b6020026020010151815260200190815260200160002060008484815181106124675761246761456a565b6020026020010151600001516001815181106124855761248561456a565b602002602001015181526020019081526020016000209060026124a9929190613afb565b50806124b48161451d565b91505061237d565b6124c7848484610e6a565b6001600160a01b0383163b15610e64576124e384848484613693565b610e64576040516368d2bf6b60e11b815260040160405180910390fd5b6060610ba66106a2836118a8565b606061251982612f48565b6125555760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016102ea565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3546125cc5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016102ea565b60006125d7836118a8565b604080516202006081018252620200408152600060209182019081528251808401909352601783527f7b226e616d65223a22496e766572736550756e6b73202300000000000000000091830191909152919250612635908290613238565b612654612641856132bd565b60405161200d9190601f9060200161491c565b6000601c805461266390614536565b905011801561268057506000848152600c602052604090205460ff165b156126ab576126a6601c612693866132bd565b8460405160200161200d9392919061496a565b612757565b60408051602081019091526000815260175460ff16156127355760006126d084611fb4565b90506126fa816040516020016126e691906149e5565b604051602081830303815290604052613541565b60405160200161270a91906148d7565b604051602081830303815290604052915061272f81604051602001611d6d9190614ad0565b50612741565b61273e83611fb4565b90505b612755816040516020016120c69190614b17565b505b61277361276383611c9f565b60405160200161200d9190614b5a565b61277c81613541565b6040516020016121b59190614b9b565b6009546001600160a01b031633146127b65760405162461bcd60e51b81526004016102ea90614580565b60195460ff16156127d95760405162461bcd60e51b81526004016102ea906145b5565b60408051808201825282518152602080840151818301526000868152600b8252838120868252825292909220815180519293919261281a9284920190613a22565b5060208281015180516128339260018501920190613a22565b5050506000838152600a602090815260408083208054825181850281018501909352808352919290919083018282801561289657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612878575b505050505090508160600151156128fc57808260800151815181106128bd576128bd61456a565b60200260200101518184815181106128d7576128d761456a565b60200260200101906001600160a01b031690816001600160a01b03168152505061293c565b6129098260400151613122565b81848151811061291b5761291b61456a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600a60209081526040909120825161295b92840190613aa6565b5050505050565b61296b82611c94565b6001600160a01b0316336001600160a01b0316146129e25760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b60648201526084016102ea565b6000918252600c6020526040909120805460ff1916911515919091179055565b6000828152600d60209081526040808320848452825291829020805483518184028101840190945280845260609392830182828015612a6057602002820191906000526020600020905b815481526020019060010190808311612a4c575b5050505050905092915050565b602354606090612aa790601e90601f90602090602190602290612a8f906132bd565b6040516126e696959493929190602490602001614be0565b604051602001612ab79190614b9b565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600b60209081526040808320858452909152908190208151808301909252805482908290612b1190614536565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90614536565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b50505050508152602001600182018054612ba390614536565b80601f0160208091040260200160405190810160405280929190818152602001828054612bcf90614536565b8015612c1c5780601f10612bf157610100808354040283529160200191612c1c565b820191906000526020600020905b815481529060010190602001808311612bff57829003601f168201915b505050505081525050905092915050565b6009546001600160a01b03163314612c575760405162461bcd60e51b81526004016102ea90614580565b6001600160a01b038116612cbc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102ea565b612cc5816134ef565b50565b60195460ff1615612ceb5760405162461bcd60e51b81526004016102ea906145b5565b612cf58282611ee5565b612d415760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c69636174657300000060448201526064016102ea565b6000818311612d505781612d52565b825b9050612d666009546001600160a01b031690565b6001600160a01b0316336001600160a01b031614612e0257612d8781611c94565b6001600160a01b0316336001600160a01b031614612e025760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b60648201526084016102ea565b612e0b8161377f565b612e1e612e198260016144d2565b612f48565b15612e3657612e36612e318260016144d2565b61377f565b6114d081612e426137af565b613820565b6000546001600160a01b038316612e7057604051622e076360e81b815260040160405180910390fd5b81600003612e915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602052604081208054680100000000000000018502019055612ee8908490612ecb908281612fe6565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612efc5760005550505050565b6000805482108015610ba6575050600090815260046020526040902054600160e01b161590565b6060610ba6826001600019613875565b600081600054811015612fcd5760008181526004602052604081205490600160e01b82169003612fcb575b80600003610d63575060001901600081815260046020526040902054612faa565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c90612ff986868461392a565b62ffffff16901b95945050505050565b804710156130595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016102ea565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146130a6576040519150601f19603f3d011682016040523d82523d6000602084013e6130ab565b606091505b50509050806114d05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016102ea565b60008061314d836040516020016131399190614d09565b604051602081830303815290604052613949565b90508051602082016000f091506001600160a01b0382166131815760405163046a55db60e11b815260040160405180910390fd5b50919050565b600061319282613975565b6060015192915050565b600080805b600e84600881106131b4576131b461456a565b015481101561030b576000600e85600881106131d2576131d261456a565b0182815481106131e4576131e461456a565b90600052602060002001549050828610158015613209575061320681846144d2565b86105b1561321857509150610ba69050565b61322281846144d2565b92505080806132309061451d565b9150506131a1565b601f1982015182518251603f1990920191829061325590836144d2565b11156132b35760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016102ea565b610e6484846139ec565b604080516080810191829052607f0190826030600a8206018353600a90045b80156132fa57600183039250600a81066030018353600a90046132dc565b50819003601f19909101908152919050565b606083600061331b85856145e1565b6001600160401b0381111561333257613332613ca4565b6040519080825280601f01601f19166020018201604052801561335c576020820181803683370190505b509050845b848110156133ce5782818151811061337b5761337b61456a565b01602001516001600160f81b0319168261339588846145e1565b815181106133a5576133a561456a565b60200101906001600160f81b031916908160001a905350806133c68161451d565b915050613361565b5095945050505050565b60008181805b82518160ff16101561348e576030838260ff16815181106134015761340161456a565b016020015160f81c1080159061343457506039838260ff16815181106134295761342961456a565b016020015160f81c11155b1561347c57613444600a83614d2f565b91506030838260ff168151811061345d5761345d61456a565b016020015161346f919060f81c614d58565b6134799083614d7b565b91505b8061348681614da0565b9150506133de565b509392505050565b6000816040516020016134a99190614dbf565b60405160208183030381529060405280519060200120836040516020016134d09190614dbf565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060815160000361356057505060408051602081019091526000815290565b6000604051806060016040528060408152602001614f08604091399050600060038451600261358f91906144d2565b6135999190613b76565b6135a49060046144ea565b6001600160401b038111156135bb576135bb613ca4565b6040519080825280601f01601f1916602001820160405280156135e5576020820181803683370190505b509050600182016020820185865187015b80821015613651576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506135f6565b505060038651066001811461366d576002811461368057613688565b603d6001830353603d6002830353613688565b603d60018303535b509195945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906136c8903390899088908890600401614ddb565b6020604051808303816000875af1925050508015613703575060408051601f3d908101601f1916820190925261370091810190614e18565b60015b613761573d808015613731576040519150601f19603f3d011682016040523d82523d6000602084013e613736565b606091505b508051600003613759576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000818152600460205260408120549003612cc55761379d81612f7f565b60008281526004602052604090205550565b6000803a4342446137c16001846145e1565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b6000828152600460205260408120549081900361384f5760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b6060833b6000819003613898575050604080516020810190915260008152610d63565b808411156138b6575050604080516020810190915260008152610d63565b838310156138e85760405163162544fd60e11b81526004810182905260248101859052604481018490526064016102ea565b83830384820360008282106138fd57826138ff565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b60006001600160a01b038416156139415781613777565b6137776137af565b606081518260405160200161395f929190614e35565b6040516020818303038152906040529050919050565b604080516080810182526000808252602082018190529181018290526060810191909152610ba66139a583612f7f565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b81841015613a175783518152602093840193016139ff565b505082510190915250565b828054613a2e90614536565b90600052602060002090601f016020900481019282613a505760008555613a96565b82601f10613a6957805160ff1916838001178555613a96565b82800160010185558215613a96579182015b82811115613a96578251825591602001919060010190613a7b565b50613aa2929150613b35565b5090565b828054828255906000526020600020908101928215613a96579160200282015b82811115613a9657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613ac6565b828054828255906000526020600020908101928215613a965791602002820182811115613a96578251825591602001919060010190613a7b565b5b80821115613aa25760008155600101613b36565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082613b8557613b85613b4a565b500490565b6001600160e01b031981168114612cc557600080fd5b600060208284031215613bb257600080fd5b8135610d6381613b8a565b60005b83811015613bd8578181015183820152602001613bc0565b83811115610e645750506000910152565b60008151808452613c01816020860160208601613bbd565b601f01601f19169290920160200192915050565b602081526000610d636020830184613be9565b600060208284031215613c3a57600080fd5b5035919050565b80356001600160a01b0381168114610b5557600080fd5b60008060408385031215613c6b57600080fd5b613c7483613c41565b946020939093013593505050565b60008060408385031215613c9557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715613cdc57613cdc613ca4565b60405290565b60405160a081016001600160401b0381118282101715613cdc57613cdc613ca4565b604080519081016001600160401b0381118282101715613cdc57613cdc613ca4565b604051601f8201601f191681016001600160401b0381118282101715613d4e57613d4e613ca4565b604052919050565b600082601f830112613d6757600080fd5b81356001600160401b03811115613d8057613d80613ca4565b613d93601f8201601f1916602001613d26565b818152846020838601011115613da857600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215613dd757600080fd5b81356001600160401b0380821115613dee57600080fd5b9083019060e08286031215613e0257600080fd5b613e0a613cba565b823582811115613e1957600080fd5b613e2587828601613d56565b825250602083013582811115613e3a57600080fd5b613e4687828601613d56565b602083015250604083013582811115613e5e57600080fd5b613e6a87828601613d56565b604083015250606083013582811115613e8257600080fd5b613e8e87828601613d56565b606083015250608083013582811115613ea657600080fd5b613eb287828601613d56565b60808301525060a083013560a082015260c083013582811115613ed457600080fd5b613ee087828601613d56565b60c08301525095945050505050565b600080600060608486031215613f0457600080fd5b613f0d84613c41565b9250613f1b60208501613c41565b9150604084013590509250925092565b60e081526000613f3e60e083018a613be9565b8281036020840152613f50818a613be9565b90508281036040840152613f648189613be9565b90508281036060840152613f788188613be9565b90508281036080840152613f8c8187613be9565b90508460a084015282810360c0840152613fa68185613be9565b9a9950505050505050505050565b600060208284031215613fc657600080fd5b81356001600160401b03811115613fdc57600080fd5b61377784828501613d56565b60006001600160401b0382111561400157614001613ca4565b5060051b60200190565b80358015158114610b5557600080fd5b600060a0828403121561402d57600080fd5b614035613ce2565b905081356001600160401b038082111561404e57600080fd5b61405a85838601613d56565b8352602084013591508082111561407057600080fd5b61407c85838601613d56565b6020840152604084013591508082111561409557600080fd5b506140a284828501613d56565b6040830152506140b46060830161400b565b60608201526080820135608082015292915050565b600080604083850312156140dc57600080fd5b823591506020808401356001600160401b03808211156140fb57600080fd5b818601915086601f83011261410f57600080fd5b813561412261411d82613fe8565b613d26565b81815260059190911b8301840190848101908983111561414157600080fd5b8585015b838110156141795780358581111561415d5760008081fd5b61416b8c89838a010161401b565b845250918601918601614145565b508096505050505050509250929050565b60006020828403121561419c57600080fd5b610d6382613c41565b600080604083850312156141b857600080fd5b6141c183613c41565b91506141cf6020840161400b565b90509250929050565b600082601f8301126141e957600080fd5b813560206141f961411d83613fe8565b82815260059290921b8401810191818101908684111561421857600080fd5b8286015b84811015614233578035835291830191830161421c565b509695505050505050565b6000602080838503121561425157600080fd5b82356001600160401b038082111561426857600080fd5b818501915085601f83011261427c57600080fd5b813561428a61411d82613fe8565b81815260059190911b830184019084810190888311156142a957600080fd5b8585015b8381101561433c578035858111156142c55760008081fd5b86016040818c03601f19018113156142dd5760008081fd5b6142e5613d04565b89830135888111156142f75760008081fd5b6143058e8c838701016141d8565b82525090820135908782111561431b5760008081fd5b6143298d8b848601016141d8565b818b0152855250509186019186016142ad565b5098975050505050505050565b6000806000806080858703121561435f57600080fd5b61436885613c41565b935061437660208601613c41565b92506040850135915060608501356001600160401b0381111561439857600080fd5b6143a487828801613d56565b91505092959194509250565b6000806000606084860312156143c557600080fd5b833592506020840135915060408401356001600160401b038111156143e957600080fd5b6143f58682870161401b565b9150509250925092565b6000806040838503121561441257600080fd5b823591506141cf6020840161400b565b6020808252825182820181905260009190848201906040850190845b8181101561445a5783518352928401929184019160010161443e565b50909695505050505050565b6000806040838503121561447957600080fd5b61448283613c41565b91506141cf60208401613c41565b6020815260008251604060208401526144ac6060840182613be9565b90506020840151601f198483030160408501526144c98282613be9565b95945050505050565b600082198211156144e5576144e5613b60565b500190565b600081600019048311821515161561450457614504613b60565b500290565b60008261451857614518613b4a565b500690565b60006001820161452f5761452f613b60565b5060010190565b600181811c9082168061454a57607f821691505b60208210810361318157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6000828210156145f3576145f3613b60565b500390565b8054600090600181811c908083168061461257607f831692505b6020808410820361463357634e487b7160e01b600052602260045260246000fd5b818015614647576001811461465857614685565b60ff19861689528489019650614685565b60008881526020902060005b8681101561467d5781548b820152908501908301614664565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b815260006146b5600f8301856145f8565b6a1116113b30b63ab2911d1160a91b81526146d3600b8201856145f8565b61227d60f01b815260020195945050505050565b60006146f382846145f8565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b8152600061473360058301856145f8565b670ed8985cd94d8d0b60c21b81528351614754816008840160208801613bbd565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b8152600061478d60058301856145f8565b670ed8985cd94d8d0b60c21b815283516147ae816008840160208801613bbd565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161490f81601a850160208701613bbd565b91909101601a0192915050565b6000835161492e818460208801613bbd565b701116113232b9b1b934b83a34b7b7111d1160791b90830190815261495660118201856145f8565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b8152600061498860098301866145f8565b8451614998818360208901613bbd565b643f646e613d60d81b910190815283516149b9816005840160208801613bbd565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251614aa9816091850160208701613bbd565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090614afe816012850160208701613bbd565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b81528151600090614b4181600e850160208701613bbd565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b81528151600090614b8381600d850160208701613bbd565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614bd381601d850160208701613bbd565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000614bfe600983018a6145f8565b701116113232b9b1b934b83a34b7b7111d1160791b8152614c22601182018a6145f8565b6a11161134b6b0b3b2911d1160a91b81529050614c42600b8201896145f8565b6b1116113130b73732b9111d1160a11b81529050614c63600c8201886145f8565b7211161132bc3a32b93730b62fb634b735911d1160691b81529050614c8b60138201876145f8565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a0000000081528451614cc381601c840160208901613bbd565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152614cf0602e8201856145f8565b61227d60f01b81526002019a9950505050505050505050565b6000815260008251614d22816001850160208701613bbd565b9190910160010192915050565b600060ff821660ff84168160ff0481118215151615614d5057614d50613b60565b029392505050565b600060ff821660ff841680821015614d7257614d72613b60565b90039392505050565b600060ff821660ff84168060ff03821115614d9857614d98613b60565b019392505050565b600060ff821660ff8103614db657614db6613b60565b60010192915050565b60008251614dd1818460208701613bbd565b9190910192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614e0e90830184613be9565b9695505050505050565b600060208284031215614e2a57600080fd5b8151610d6381613b8a565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b60058201528151600090614e7881600e850160208701613bbd565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220dce07626241b91e3273579791d6b468927fd239afafdea9f7e701bf64ad09bfa64736f6c634300080e0033496e766572736550756e6b73206172652070756e6b73207769746820696e766572746564207261726974792064796e616d6963732e20496e207468697320636f6c6c656374696f6e20416c69656e732061726520746865206d6f737420636f6d6d6f6e2c207768696c652048756d616e732061726520746865207261726573742e2054686973206265677320746865207175657374696f6e20617320746f207768657468657220636f6c6c6563746f72732077696c6c20707265666572206165737468657469637320636f6d6d6f6e6c79207265676172646564206173207261726520696e206d6f737420636f6c6c656374696f6e73206f722077696c6c20746865792073616372696669636520746861742061737065637420666f722070757265207261726974792e20496e766572736550756e6b7320697320612066726565206d696e7420726172697479206578706572696d656e746174696f6e2070726f6a65637420696e7370697265642062792043727970746f50756e6b73206e6f7420616666696c69617465642077697468204c61727661204c616273206e6f722059756761204c61627320696e20616e79776179207368617065206f7220666f726d2e30786533613231363263386134316330343737616166384238424545624139453965363266383031393168747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f36376365636337342d336363392d343933352d393336642d64633736653831633639373468747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f36376365636337342d336363392d343933352d393336642d646337366538316336393734

Deployed Bytecode

0x6080604052600436106102975760003560e01c80636c0360eb1161015a578063c11feac1116100c1578063dc9867ce1161007a578063dc9867ce146107f9578063e8a3d48514610826578063e985e9c51461083b578063ea84b59b14610884578063f2fde38b146108b1578063fd6b3cf5146108d157600080fd5b8063c11feac11461074d578063c87b56dd1461076d578063d36c2f261461078d578063d5abeb01146107ad578063dbe9875f146107c3578063dc53fd92146107e357600080fd5b80638da5cb5b116101135780638da5cb5b146106a757806395d89b41146106c5578063a0712d68146106da578063a22cb465146106ed578063b45680661461070d578063b88d4fde1461072d57600080fd5b80636c0360eb146105fd5780636cced73a1461061257806370a0823114610632578063715018a6146106525780637bddd65b1461066757806389ce30741461068757600080fd5b806342842e0e116101fe57806361ab9d0c116101b757806361ab9d0c14610552578063621a1f74146105725780636352211e14610592578063639814e0146105b257806366e33870146105c857806368bd580e146105e857600080fd5b806342842e0e146104ae5780634920154b146104ce578063542d5041146104e357806355f804b3146104fd5780635b92ac0d1461051d5780636190e1da1461053257600080fd5b806318160ddd1161025057806318160ddd146103ff57806323b872dd146104225780632d6b6224146104425780633cca24201461045c5780633ccfd60b146104845780634047638d1461049957600080fd5b806301ffc9a71461031057806306fdde0314610345578063081812fc14610367578063095ea7b31461039f57806309dbabca146103bf5780630f3debbe146103df57600080fd5b3661030b57601d5460ff166102f35760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b610309601b54346103049190613b76565b6108f1565b005b600080fd5b34801561031c57600080fd5b5061033061032b366004613ba0565b610b5a565b60405190151581526020015b60405180910390f35b34801561035157600080fd5b5061035a610bac565b60405161033c9190613c15565b34801561037357600080fd5b50610387610382366004613c28565b610c3e565b6040516001600160a01b03909116815260200161033c565b3480156103ab57600080fd5b506103096103ba366004613c58565b610c82565b3480156103cb57600080fd5b5061035a6103da366004613c82565b610d22565b3480156103eb57600080fd5b506103096103fa366004613dc5565b610d6a565b34801561040b57600080fd5b50600154600054035b60405190815260200161033c565b34801561042e57600080fd5b5061030961043d366004613eef565b610e6a565b34801561044e57600080fd5b50601d546103309060ff1681565b34801561046857600080fd5b5061047161101e565b60405161033c9796959493929190613f2b565b34801561049057600080fd5b5061030961137c565b3480156104a557600080fd5b50610309611477565b3480156104ba57600080fd5b506103096104c9366004613eef565b6114b5565b3480156104da57600080fd5b506103096114d5565b3480156104ef57600080fd5b506019546103309060ff1681565b34801561050957600080fd5b50610309610518366004613fb4565b611513565b34801561052957600080fd5b50610330611554565b34801561053e57600080fd5b5061030961054d366004613fb4565b611576565b34801561055e57600080fd5b5061030961056d3660046140c9565b6115d6565b34801561057e57600080fd5b5061035a61058d366004613c28565b6118a8565b34801561059e57600080fd5b506103876105ad366004613c28565b611c94565b3480156105be57600080fd5b50610414601a5481565b3480156105d457600080fd5b5061035a6105e3366004613fb4565b611c9f565b3480156105f457600080fd5b50610309611dfb565b34801561060957600080fd5b5061035a611e57565b34801561061e57600080fd5b5061033061062d366004613c82565b611ee5565b34801561063e57600080fd5b5061041461064d36600461418a565b611f01565b34801561065e57600080fd5b50610309611f4f565b34801561067357600080fd5b50610309610682366004613c28565b611f85565b34801561069357600080fd5b5061035a6106a2366004613fb4565b611fb4565b3480156106b357600080fd5b506009546001600160a01b0316610387565b3480156106d157600080fd5b5061035a6121cd565b6104146106e8366004613c28565b6121dc565b3480156106f957600080fd5b506103096107083660046141a5565b612298565b34801561071957600080fd5b5061030961072836600461423e565b61232d565b34801561073957600080fd5b50610309610748366004614349565b6124bc565b34801561075957600080fd5b5061035a610768366004613c28565b612500565b34801561077957600080fd5b5061035a610788366004613c28565b61250e565b34801561079957600080fd5b506103096107a83660046143b0565b61278c565b3480156107b957600080fd5b5061041461271081565b3480156107cf57600080fd5b506103096107de3660046143ff565b612962565b3480156107ef57600080fd5b50610414601b5481565b34801561080557600080fd5b50610819610814366004613c82565b612a02565b60405161033c9190614422565b34801561083257600080fd5b5061035a612a6d565b34801561084757600080fd5b50610330610856366004614466565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561089057600080fd5b506108a461089f366004613c82565b612acb565b60405161033c9190614490565b3480156108bd57600080fd5b506103096108cc36600461418a565b612c2d565b3480156108dd57600080fd5b506103096108ec366004613c82565b612cc8565b60006108fb611554565b61093f5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b60448201526064016102ea565b600054826109855760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016102ea565b61271061099284836144d2565b11156109d65760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016102ea565b6009546001600160a01b03163314610a6157601a5433600090815260056020526040908190205485911c6001600160401b0316610a1391906144d2565b1115610a615760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016102ea565b333214610a9c5760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016102ea565b34601b5484610aab91906144ea565b14610af85760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016102ea565b6000610b05601485613b76565b90506000610b14601486614509565b905060005b82811015610b3e57610b2c336014612e47565b80610b368161451d565b915050610b19565b508015610b4f57610b4f3382612e47565b50909150505b919050565b60006301ffc9a760e01b6001600160e01b031983161480610b8b57506380ac58cd60e01b6001600160e01b03198316145b80610ba65750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610bbb90614536565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790614536565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b5050505050905090565b6000610c4982612f48565b610c66576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c8d82611c94565b9050336001600160a01b03821614610cc657610ca98133610856565b610cc6576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600a602052604090208054606091610d639184908110610d4957610d4961456a565b6000918252602090912001546001600160a01b0316612f6f565b9392505050565b6009546001600160a01b03163314610d945760405162461bcd60e51b81526004016102ea90614580565b60195460ff1615610db75760405162461bcd60e51b81526004016102ea906145b5565b805180518291601e91610dd1918391602090910190613a22565b506020828101518051610dea9260018501920190613a22565b5060408201518051610e06916002840191602090910190613a22565b5060608201518051610e22916003840191602090910190613a22565b5060808201518051610e3e916004840191602090910190613a22565b5060a0820151600582015560c08201518051610e64916006840191602090910190613a22565b50505050565b6000610e7582612f7f565b9050836001600160a01b0316816001600160a01b031614610ea85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610ef557610ed88633610856565b610ef557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f1c57604051633a954ecd60e21b815260040160405180910390fd5b8015610f2757600082555b6001600160a01b03808716600090815260056020526040808220805460001901905591871681522080546001019055610f8085610f65888287612fe6565b600160e11b174260a01b176001600160a01b03919091161790565b600085815260046020526040812091909155600160e11b84169003610fd557600184016000818152600460205260408120549003610fd3576000548114610fd35760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b601e8054819061102d90614536565b80601f016020809104026020016040519081016040528092919081815260200182805461105990614536565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050908060010180546110bb90614536565b80601f01602080910402602001604051908101604052809291908181526020018280546110e790614536565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b50505050509080600201805461114990614536565b80601f016020809104026020016040519081016040528092919081815260200182805461117590614536565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b5050505050908060030180546111d790614536565b80601f016020809104026020016040519081016040528092919081815260200182805461120390614536565b80156112505780601f1061122557610100808354040283529160200191611250565b820191906000526020600020905b81548152906001019060200180831161123357829003601f168201915b50505050509080600401805461126590614536565b80601f016020809104026020016040519081016040528092919081815260200182805461129190614536565b80156112de5780601f106112b3576101008083540402835291602001916112de565b820191906000526020600020905b8154815290600101906020018083116112c157829003601f168201915b5050505050908060050154908060060180546112f990614536565b80601f016020809104026020016040519081016040528092919081815260200182805461132590614536565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b5050505050905087565b6009546001600160a01b031633146113a65760405162461bcd60e51b81526004016102ea90614580565b6002600854036113f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ea565b600260085547600061271061140e60fa826145e1565b61141890846144ea565b6114229190613b76565b905060006114386009546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf76114598284613009565b61146c8161146785876145e1565b613009565b505060016008555050565b6009546001600160a01b031633146114a15760405162461bcd60e51b81526004016102ea90614580565b601d805460ff19811660ff90911615179055565b6114d0838383604051806020016040528060008152506124bc565b505050565b6009546001600160a01b031633146114ff5760405162461bcd60e51b81526004016102ea90614580565b6017805460ff19811660ff90911615179055565b6009546001600160a01b0316331461153d5760405162461bcd60e51b81526004016102ea90614580565b805161155090601c906020840190613a22565b5050565b600061271061156260005490565b1080156115715750601d5460ff165b905090565b6009546001600160a01b031633146115a05760405162461bcd60e51b81526004016102ea90614580565b60195460ff16156115c35760405162461bcd60e51b81526004016102ea906145b5565b8051611550906018906020840190613a22565b6009546001600160a01b031633146116005760405162461bcd60e51b81526004016102ea90614580565b60195460ff16156116235760405162461bcd60e51b81526004016102ea906145b5565b8051600e83600881106116385761163861456a565b01541461169f5760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b60648201526084016102ea565b600081516001600160401b038111156116ba576116ba613ca4565b6040519080825280602002602001820160405280156116e3578160200160208202803683370190505b50905060005b8251811015611888578281815181106117045761170461456a565b6020026020010151606001511561178357818382815181106117285761172861456a565b602002602001015160800151815181106117445761174461456a565b602002602001015182828151811061175e5761175e61456a565b60200260200101906001600160a01b031690816001600160a01b0316815250506117dc565b6117a98382815181106117985761179861456a565b602002602001015160400151613122565b8282815181106117bb576117bb61456a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b60405180604001604052808483815181106117f9576117f961456a565b602002602001015160000151815260200184838151811061181c5761181c61456a565b6020908102919091018101518101519091526000868152600b825260408082208583528352902082518051919261185892849290910190613a22565b5060208281015180516118719260018501920190613a22565b5090505080806118809061451d565b9150506116e9565b506000838152600a602090815260409091208251610e6492840190613aa6565b60606118b382612f48565b6118ef5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016102ea565b600061191d611900600860046144ea565b604080518281016060018252910181526000602090910190815290565b6040805160088082526101208201909252919250600091906020820161010080368337505060408051600880825261012082019092529293506000929150602082016101008036833701905050905060005b6008811015611b6257600083828151811061198c5761198c61456a565b602002602001015190508282815181106119a8576119a861456a565b602002602001015115156000151503611a4e5760006127106119c989613187565b896119d486826144d2565b60405160e89390931b6001600160e81b0319166020840152602383019190915260438201526063016040516020818303038152906040528051906020012060001c611a1f9190614509565b9050611a2b818461319c565b915081858481518110611a4057611a4061456a565b602002602001018181525050505b6000828152600d6020908152604080832084845290915290205415611b4f576000828152600d60209081526040808320848452909152902080546001908110611a9957611a9961456a565b6000918252602080832090910154848352600d82526040808420858552909252908220805491928792611ace57611ace61456a565b906000526020600020015481518110611ae957611ae961456a565b6020908102919091018101919091526000838152600d825260408082208483529092529081208054600192869291611b2357611b2361456a565b906000526020600020015481518110611b3e57611b3e61456a565b911515602092830291909101909101525b5080611b5a8161451d565b91505061196f565b5060005b8251811015611c8a57600a838281518110611b8357611b8361456a565b60200260200101511015611bba57604080518082019091526002815261030360f41b6020820152611bb5908590613238565b611bff565b6064838281518110611bce57611bce61456a565b60200260200101511015611bff576040805180820190915260018152600360fc1b6020820152611bff908590613238565b6103e7838281518110611c1457611c1461456a565b60200260200101511115611c4c5760408051808201909152600381526239393960e81b6020820152611c47908590613238565b611c78565b611c78611c71848381518110611c6457611c6461456a565b60200260200101516132bd565b8590613238565b80611c828161451d565b915050611b66565b5091949350505050565b6000610ba682612f7f565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611ce1908290613238565b60005b6008811015611df4576000611d21611d1c86611d018560036144ea565b611d0c8660036144ea565b611d179060036144d2565b61330c565b6133d8565b60ff169050611d8460168381548110611d3c57611d3c61456a565b60009182526020808320868452600b825260408085208786528352938490209351611d6d9493909101929101614691565b60408051601f198184030181529190528490613238565b611d90600160086145e1565b8203611dbe576040805180820190915260018152605d60f81b6020820152611db9908490613238565b611de1565b6040805180820190915260018152600b60fa1b6020820152611de1908490613238565b5080611dec8161451d565b915050611ce4565b5092915050565b60195460ff1615611e1e5760405162461bcd60e51b81526004016102ea906145b5565b6009546001600160a01b03163314611e485760405162461bcd60e51b81526004016102ea90614580565b6019805460ff19166001179055565b601c8054611e6490614536565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9090614536565b8015611edd5780601f10611eb257610100808354040283529160200191611edd565b820191906000526020600020905b815481529060010190602001808311611ec057829003601f168201915b505050505081565b6000610d63611ef3846118a8565b611efc846118a8565b613496565b60006001600160a01b038216611f2a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314611f795760405162461bcd60e51b81526004016102ea90614580565b611f8360006134ef565b565b6009546001600160a01b03163314611faf5760405162461bcd60e51b81526004016102ea90614580565b601a55565b604080516202006081019091526202004081526000602090910181815260609190611ff86040518060c0016040528060818152602001614e87608191398290613238565b612024601860405160200161200d91906146e7565b60408051601f198184030181529190528290613238565b60005b612033600160086145e1565b8110156120ef57612057611d1c8661204c8460036144ea565b611d0c8560036144ea565b60ff1692506120dd600b600083815260200190815260200160002060008581526020019081526020016000206001016120b56120b0600a60008681526020019081526020016000208781548110610d4957610d4961456a565b613541565b6040516020016120c6929190614719565b60408051601f198184030181529190528390613238565b806120e78161451d565b915050612027565b5061211a611d1c8560036121046008826144ea565b61210e91906145e1565b611d17600860036144ea565b60ff16915061219c600b6000612132600160086145e1565b8152602001908152602001600020600084815260200190815260200160002060010161218b6120b0600a60006001600861216c91906145e1565b81526020019081526020016000208681548110610d4957610d4961456a565b60405160200161200d929190614773565b6121a581613541565b6040516020016121b591906148d7565b60405160208183030381529060405292505050919050565b606060038054610bbb90614536565b60006002600854036122305760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102ea565b600260085561223d611554565b6122815760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b60448201526064016102ea565b600061228c836108f1565b60016008559392505050565b336001600160a01b038316036122c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146123575760405162461bcd60e51b81526004016102ea90614580565b60195460ff161561237a5760405162461bcd60e51b81526004016102ea906145b5565b60005b81518110156115505760405180604001604052808383815181106123a3576123a361456a565b6020026020010151602001516000815181106123c1576123c161456a565b602002602001015181526020018383815181106123e0576123e061456a565b6020026020010151602001516001815181106123fe576123fe61456a565b6020026020010151815250600d600084848151811061241f5761241f61456a565b60200260200101516000015160008151811061243d5761243d61456a565b6020026020010151815260200190815260200160002060008484815181106124675761246761456a565b6020026020010151600001516001815181106124855761248561456a565b602002602001015181526020019081526020016000209060026124a9929190613afb565b50806124b48161451d565b91505061237d565b6124c7848484610e6a565b6001600160a01b0383163b15610e64576124e384848484613693565b610e64576040516368d2bf6b60e11b815260040160405180910390fd5b6060610ba66106a2836118a8565b606061251982612f48565b6125555760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016102ea565b60008052600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3546125cc5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016102ea565b60006125d7836118a8565b604080516202006081018252620200408152600060209182019081528251808401909352601783527f7b226e616d65223a22496e766572736550756e6b73202300000000000000000091830191909152919250612635908290613238565b612654612641856132bd565b60405161200d9190601f9060200161491c565b6000601c805461266390614536565b905011801561268057506000848152600c602052604090205460ff165b156126ab576126a6601c612693866132bd565b8460405160200161200d9392919061496a565b612757565b60408051602081019091526000815260175460ff16156127355760006126d084611fb4565b90506126fa816040516020016126e691906149e5565b604051602081830303815290604052613541565b60405160200161270a91906148d7565b604051602081830303815290604052915061272f81604051602001611d6d9190614ad0565b50612741565b61273e83611fb4565b90505b612755816040516020016120c69190614b17565b505b61277361276383611c9f565b60405160200161200d9190614b5a565b61277c81613541565b6040516020016121b59190614b9b565b6009546001600160a01b031633146127b65760405162461bcd60e51b81526004016102ea90614580565b60195460ff16156127d95760405162461bcd60e51b81526004016102ea906145b5565b60408051808201825282518152602080840151818301526000868152600b8252838120868252825292909220815180519293919261281a9284920190613a22565b5060208281015180516128339260018501920190613a22565b5050506000838152600a602090815260408083208054825181850281018501909352808352919290919083018282801561289657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612878575b505050505090508160600151156128fc57808260800151815181106128bd576128bd61456a565b60200260200101518184815181106128d7576128d761456a565b60200260200101906001600160a01b031690816001600160a01b03168152505061293c565b6129098260400151613122565b81848151811061291b5761291b61456a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600a60209081526040909120825161295b92840190613aa6565b5050505050565b61296b82611c94565b6001600160a01b0316336001600160a01b0316146129e25760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520746f6b656e206f776e65722063616e207365742074686560448201526d081c995b99195c881b595d1a1bd960921b60648201526084016102ea565b6000918252600c6020526040909120805460ff1916911515919091179055565b6000828152600d60209081526040808320848452825291829020805483518184028101840190945280845260609392830182828015612a6057602002820191906000526020600020905b815481526020019060010190808311612a4c575b5050505050905092915050565b602354606090612aa790601e90601f90602090602190602290612a8f906132bd565b6040516126e696959493929190602490602001614be0565b604051602001612ab79190614b9b565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600b60209081526040808320858452909152908190208151808301909252805482908290612b1190614536565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3d90614536565b8015612b8a5780601f10612b5f57610100808354040283529160200191612b8a565b820191906000526020600020905b815481529060010190602001808311612b6d57829003601f168201915b50505050508152602001600182018054612ba390614536565b80601f0160208091040260200160405190810160405280929190818152602001828054612bcf90614536565b8015612c1c5780601f10612bf157610100808354040283529160200191612c1c565b820191906000526020600020905b815481529060010190602001808311612bff57829003601f168201915b505050505081525050905092915050565b6009546001600160a01b03163314612c575760405162461bcd60e51b81526004016102ea90614580565b6001600160a01b038116612cbc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102ea565b612cc5816134ef565b50565b60195460ff1615612ceb5760405162461bcd60e51b81526004016102ea906145b5565b612cf58282611ee5565b612d415760405162461bcd60e51b815260206004820152601d60248201527f416c6c20746f6b656e73206d757374206265206475706c69636174657300000060448201526064016102ea565b6000818311612d505781612d52565b825b9050612d666009546001600160a01b031690565b6001600160a01b0316336001600160a01b031614612e0257612d8781611c94565b6001600160a01b0316336001600160a01b031614612e025760405162461bcd60e51b815260206004820152603260248201527f4f6e6c792074686520746f6b656e206f776e6572206f7220636f6e7472616374604482015271081bdddb995c8818d85b881c994b5c9bdb1b60721b60648201526084016102ea565b612e0b8161377f565b612e1e612e198260016144d2565b612f48565b15612e3657612e36612e318260016144d2565b61377f565b6114d081612e426137af565b613820565b6000546001600160a01b038316612e7057604051622e076360e81b815260040160405180910390fd5b81600003612e915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602052604081208054680100000000000000018502019055612ee8908490612ecb908281612fe6565b6001851460e11b174260a01b176001600160a01b03919091161790565b600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612efc5760005550505050565b6000805482108015610ba6575050600090815260046020526040902054600160e01b161590565b6060610ba6826001600019613875565b600081600054811015612fcd5760008181526004602052604081205490600160e01b82169003612fcb575b80600003610d63575060001901600081815260046020526040902054612faa565b505b604051636f96cda160e11b815260040160405180910390fd5b600060e882811c90612ff986868461392a565b62ffffff16901b95945050505050565b804710156130595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016102ea565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146130a6576040519150601f19603f3d011682016040523d82523d6000602084013e6130ab565b606091505b50509050806114d05760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016102ea565b60008061314d836040516020016131399190614d09565b604051602081830303815290604052613949565b90508051602082016000f091506001600160a01b0382166131815760405163046a55db60e11b815260040160405180910390fd5b50919050565b600061319282613975565b6060015192915050565b600080805b600e84600881106131b4576131b461456a565b015481101561030b576000600e85600881106131d2576131d261456a565b0182815481106131e4576131e461456a565b90600052602060002001549050828610158015613209575061320681846144d2565b86105b1561321857509150610ba69050565b61322281846144d2565b92505080806132309061451d565b9150506131a1565b601f1982015182518251603f1990920191829061325590836144d2565b11156132b35760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016102ea565b610e6484846139ec565b604080516080810191829052607f0190826030600a8206018353600a90045b80156132fa57600183039250600a81066030018353600a90046132dc565b50819003601f19909101908152919050565b606083600061331b85856145e1565b6001600160401b0381111561333257613332613ca4565b6040519080825280601f01601f19166020018201604052801561335c576020820181803683370190505b509050845b848110156133ce5782818151811061337b5761337b61456a565b01602001516001600160f81b0319168261339588846145e1565b815181106133a5576133a561456a565b60200101906001600160f81b031916908160001a905350806133c68161451d565b915050613361565b5095945050505050565b60008181805b82518160ff16101561348e576030838260ff16815181106134015761340161456a565b016020015160f81c1080159061343457506039838260ff16815181106134295761342961456a565b016020015160f81c11155b1561347c57613444600a83614d2f565b91506030838260ff168151811061345d5761345d61456a565b016020015161346f919060f81c614d58565b6134799083614d7b565b91505b8061348681614da0565b9150506133de565b509392505050565b6000816040516020016134a99190614dbf565b60405160208183030381529060405280519060200120836040516020016134d09190614dbf565b6040516020818303038152906040528051906020012014905092915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060815160000361356057505060408051602081019091526000815290565b6000604051806060016040528060408152602001614f08604091399050600060038451600261358f91906144d2565b6135999190613b76565b6135a49060046144ea565b6001600160401b038111156135bb576135bb613ca4565b6040519080825280601f01601f1916602001820160405280156135e5576020820181803683370190505b509050600182016020820185865187015b80821015613651576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506135f6565b505060038651066001811461366d576002811461368057613688565b603d6001830353603d6002830353613688565b603d60018303535b509195945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906136c8903390899088908890600401614ddb565b6020604051808303816000875af1925050508015613703575060408051601f3d908101601f1916820190925261370091810190614e18565b60015b613761573d808015613731576040519150601f19603f3d011682016040523d82523d6000602084013e613736565b606091505b508051600003613759576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000818152600460205260408120549003612cc55761379d81612f7f565b60008281526004602052604090205550565b6000803a4342446137c16001846145e1565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d40160408051601f19818403018152919052805160209091012092915050565b6000828152600460205260408120549081900361384f5760405162d5815360e01b815260040160405180910390fd5b6000928352600460205260409092206001600160e81b039290921660e89190911b179055565b6060833b6000819003613898575050604080516020810190915260008152610d63565b808411156138b6575050604080516020810190915260008152610d63565b838310156138e85760405163162544fd60e11b81526004810182905260248101859052604481018490526064016102ea565b83830384820360008282106138fd57826138ff565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b60006001600160a01b038416156139415781613777565b6137776137af565b606081518260405160200161395f929190614e35565b6040516020818303038152906040529050919050565b604080516080810182526000808252602082018190529181018290526060810191909152610ba66139a583612f7f565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b8051602082019150808201602084510184015b81841015613a175783518152602093840193016139ff565b505082510190915250565b828054613a2e90614536565b90600052602060002090601f016020900481019282613a505760008555613a96565b82601f10613a6957805160ff1916838001178555613a96565b82800160010185558215613a96579182015b82811115613a96578251825591602001919060010190613a7b565b50613aa2929150613b35565b5090565b828054828255906000526020600020908101928215613a96579160200282015b82811115613a9657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613ac6565b828054828255906000526020600020908101928215613a965791602002820182811115613a96578251825591602001919060010190613a7b565b5b80821115613aa25760008155600101613b36565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082613b8557613b85613b4a565b500490565b6001600160e01b031981168114612cc557600080fd5b600060208284031215613bb257600080fd5b8135610d6381613b8a565b60005b83811015613bd8578181015183820152602001613bc0565b83811115610e645750506000910152565b60008151808452613c01816020860160208601613bbd565b601f01601f19169290920160200192915050565b602081526000610d636020830184613be9565b600060208284031215613c3a57600080fd5b5035919050565b80356001600160a01b0381168114610b5557600080fd5b60008060408385031215613c6b57600080fd5b613c7483613c41565b946020939093013593505050565b60008060408385031215613c9557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715613cdc57613cdc613ca4565b60405290565b60405160a081016001600160401b0381118282101715613cdc57613cdc613ca4565b604080519081016001600160401b0381118282101715613cdc57613cdc613ca4565b604051601f8201601f191681016001600160401b0381118282101715613d4e57613d4e613ca4565b604052919050565b600082601f830112613d6757600080fd5b81356001600160401b03811115613d8057613d80613ca4565b613d93601f8201601f1916602001613d26565b818152846020838601011115613da857600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215613dd757600080fd5b81356001600160401b0380821115613dee57600080fd5b9083019060e08286031215613e0257600080fd5b613e0a613cba565b823582811115613e1957600080fd5b613e2587828601613d56565b825250602083013582811115613e3a57600080fd5b613e4687828601613d56565b602083015250604083013582811115613e5e57600080fd5b613e6a87828601613d56565b604083015250606083013582811115613e8257600080fd5b613e8e87828601613d56565b606083015250608083013582811115613ea657600080fd5b613eb287828601613d56565b60808301525060a083013560a082015260c083013582811115613ed457600080fd5b613ee087828601613d56565b60c08301525095945050505050565b600080600060608486031215613f0457600080fd5b613f0d84613c41565b9250613f1b60208501613c41565b9150604084013590509250925092565b60e081526000613f3e60e083018a613be9565b8281036020840152613f50818a613be9565b90508281036040840152613f648189613be9565b90508281036060840152613f788188613be9565b90508281036080840152613f8c8187613be9565b90508460a084015282810360c0840152613fa68185613be9565b9a9950505050505050505050565b600060208284031215613fc657600080fd5b81356001600160401b03811115613fdc57600080fd5b61377784828501613d56565b60006001600160401b0382111561400157614001613ca4565b5060051b60200190565b80358015158114610b5557600080fd5b600060a0828403121561402d57600080fd5b614035613ce2565b905081356001600160401b038082111561404e57600080fd5b61405a85838601613d56565b8352602084013591508082111561407057600080fd5b61407c85838601613d56565b6020840152604084013591508082111561409557600080fd5b506140a284828501613d56565b6040830152506140b46060830161400b565b60608201526080820135608082015292915050565b600080604083850312156140dc57600080fd5b823591506020808401356001600160401b03808211156140fb57600080fd5b818601915086601f83011261410f57600080fd5b813561412261411d82613fe8565b613d26565b81815260059190911b8301840190848101908983111561414157600080fd5b8585015b838110156141795780358581111561415d5760008081fd5b61416b8c89838a010161401b565b845250918601918601614145565b508096505050505050509250929050565b60006020828403121561419c57600080fd5b610d6382613c41565b600080604083850312156141b857600080fd5b6141c183613c41565b91506141cf6020840161400b565b90509250929050565b600082601f8301126141e957600080fd5b813560206141f961411d83613fe8565b82815260059290921b8401810191818101908684111561421857600080fd5b8286015b84811015614233578035835291830191830161421c565b509695505050505050565b6000602080838503121561425157600080fd5b82356001600160401b038082111561426857600080fd5b818501915085601f83011261427c57600080fd5b813561428a61411d82613fe8565b81815260059190911b830184019084810190888311156142a957600080fd5b8585015b8381101561433c578035858111156142c55760008081fd5b86016040818c03601f19018113156142dd5760008081fd5b6142e5613d04565b89830135888111156142f75760008081fd5b6143058e8c838701016141d8565b82525090820135908782111561431b5760008081fd5b6143298d8b848601016141d8565b818b0152855250509186019186016142ad565b5098975050505050505050565b6000806000806080858703121561435f57600080fd5b61436885613c41565b935061437660208601613c41565b92506040850135915060608501356001600160401b0381111561439857600080fd5b6143a487828801613d56565b91505092959194509250565b6000806000606084860312156143c557600080fd5b833592506020840135915060408401356001600160401b038111156143e957600080fd5b6143f58682870161401b565b9150509250925092565b6000806040838503121561441257600080fd5b823591506141cf6020840161400b565b6020808252825182820181905260009190848201906040850190845b8181101561445a5783518352928401929184019160010161443e565b50909695505050505050565b6000806040838503121561447957600080fd5b61448283613c41565b91506141cf60208401613c41565b6020815260008251604060208401526144ac6060840182613be9565b90506020840151601f198483030160408501526144c98282613be9565b95945050505050565b600082198211156144e5576144e5613b60565b500190565b600081600019048311821515161561450457614504613b60565b500290565b60008261451857614518613b4a565b500690565b60006001820161452f5761452f613b60565b5060010190565b600181811c9082168061454a57607f821691505b60208210810361318157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6000828210156145f3576145f3613b60565b500390565b8054600090600181811c908083168061461257607f831692505b6020808410820361463357634e487b7160e01b600052602260045260246000fd5b818015614647576001811461465857614685565b60ff19861689528489019650614685565b60008881526020902060005b8681101561467d5781548b820152908501908301614664565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b815260006146b5600f8301856145f8565b6a1116113b30b63ab2911d1160a91b81526146d3600b8201856145f8565b61227d60f01b815260020195945050505050565b60006146f382846145f8565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b8152600061473360058301856145f8565b670ed8985cd94d8d0b60c21b81528351614754816008840160208801613bbd565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b8152600061478d60058301856145f8565b670ed8985cd94d8d0b60c21b815283516147ae816008840160208801613bbd565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161490f81601a850160208701613bbd565b91909101601a0192915050565b6000835161492e818460208801613bbd565b701116113232b9b1b934b83a34b7b7111d1160791b90830190815261495660118201856145f8565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b8152600061498860098301866145f8565b8451614998818360208901613bbd565b643f646e613d60d81b910190815283516149b9816005840160208801613bbd565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251614aa9816091850160208701613bbd565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090614afe816012850160208701613bbd565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b81528151600090614b4181600e850160208701613bbd565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b81528151600090614b8381600d850160208701613bbd565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614bd381601d850160208701613bbd565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000614bfe600983018a6145f8565b701116113232b9b1b934b83a34b7b7111d1160791b8152614c22601182018a6145f8565b6a11161134b6b0b3b2911d1160a91b81529050614c42600b8201896145f8565b6b1116113130b73732b9111d1160a11b81529050614c63600c8201886145f8565b7211161132bc3a32b93730b62fb634b735911d1160691b81529050614c8b60138201876145f8565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a0000000081528451614cc381601c840160208901613bbd565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152614cf0602e8201856145f8565b61227d60f01b81526002019a9950505050505050505050565b6000815260008251614d22816001850160208701613bbd565b9190910160010192915050565b600060ff821660ff84168160ff0481118215151615614d5057614d50613b60565b029392505050565b600060ff821660ff841680821015614d7257614d72613b60565b90039392505050565b600060ff821660ff84168060ff03821115614d9857614d98613b60565b019392505050565b600060ff821660ff8103614db657614db6613b60565b60010192915050565b60008251614dd1818460208701613bbd565b9190910192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614e0e90830184613be9565b9695505050505050565b600060208284031215614e2a57600080fd5b8151610d6381613b8a565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b60058201528151600090614e7881600e850160208701613bbd565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220dce07626241b91e3273579791d6b468927fd239afafdea9f7e701bf64ad09bfa64736f6c634300080e0033

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.