ETH Price: $3,167.41 (+3.53%)

Token

PUMPkn (PUMP)
 

Overview

Max Total Supply

51 PUMP

Holders

18

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Pumpkn

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Pumpkn.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol"; 
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Pumpkn is ERC721A, Ownable, Pausable, ReentrancyGuard {

    address collabAddress = 0x28EF4800417bEddDEDEbDeE594845A41C8c22fBe;
    uint256 public maxSupply = 1555;

    //minter roles configuration
    struct MintersInfo {
        uint8 maxMintPerTransaction; //max mint per wallet and per transaction
        uint8 numberOfFreemint;
        uint256 supply; //max allocated supply per minter role
        uint256 mintCost;
        bytes32 root; //Merkle root
    }

    mapping(string => MintersInfo) minters; //map of minter types
    mapping(string => uint256) public mintedCount; //map of total mints per type


    enum Phases { N, Phase1, Public } //mint phases, N = mint not live

    Phases public currentPhase;

    mapping(address => uint256) minted; //map of addresses that minted
    mapping(string => mapping(address => uint8)) public mintedPerRole;  //map of addresses that minted per phase and their mint counts
    mapping(address => uint8) public mintedFree; //map of addresses that minted free and their mint counts

    address[] public mintersAddresses; //addresses of minters    
    
    string private baseURI = "ipfs://bafybeifvy4bbix6e7qyrbmoixi75mqej3uvbxt3af7cux7nqdjsybl5ici/";
    string[] private prerevealedArtworks;
    bool isRevealed;

    //events
    event Minted(address indexed to, uint8 numberOfTokens, uint256 amount);
    event SoldOut();
   
    event PhaseChanged(address indexed to, uint256 indexed eventId, uint8 indexed phaseId);
    event WithdrawalSuccessful(address indexed to, uint256 amount);
    event CollectionRevealed(address indexed to);
    

    //errors
    error WithdrawalFailed();

    constructor() ERC721A("PUMPkn", "PUMP") {
        //_pause();
        currentPhase = Phases.N;

        //added an invalid root here to avoid zero comparison later
        addMintersInfo(
            "WL", //minter role name
            3, //max per wallet/per transaction
            1, //number of free mint
            555, //allocated supply
            0.0069 ether, //mint cost
            0x8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c //root dummy
        );

        addMintersInfo(
            "PUBLIC", //minter role name
            4, //max per wallet/per transaction
            0, //number of free mint
            1000, //allocated supply
            0.0077 ether, //mint cost
            0x8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c //root dummy
        );

    }

    /*
    * ******** ******** ******** ******** ******** ******** ********
    * Public Mint functions
    * ******** ******** ******** ******** ******** ******** ********
    */
    
    function whitelistMint(uint8 numberOfTokens, bytes32[] calldata proof) external payable nonReentrant whenNotPaused {

        require(currentPhase == Phases.Phase1, "ERROR: Mint is not active.");
        string memory _minterRole = "WL"; //set minter role
       
        uint256 _totalCost;

        //verify whitelist
        require(_isWhitelisted(msg.sender, proof, minters[_minterRole].root), "ERROR: You are not allowed to mint on this phase.");

        require(mintedCount[_minterRole] + numberOfTokens <= minters[_minterRole].supply, "ERROR: Maximum number of mints on this phase has been reached");
        require(numberOfTokens <= minters[_minterRole].maxMintPerTransaction, "ERROR: Maximum number of mints per transaction exceeded");
        require((mintedPerRole[_minterRole][msg.sender] + numberOfTokens) <= minters[_minterRole].maxMintPerTransaction, "ERROR: Your maximum NFT mint per wallet on this phase has been reached.");

        //Free mint check
        if ((mintedFree[msg.sender] > 0)) {

            _totalCost = minters[_minterRole].mintCost * numberOfTokens;
            require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint.");

        } else {

            //Block for free mint
            if (numberOfTokens == 1) {
                
                require(mintedFree[msg.sender] == 0, "ERROR: You do not have enough funds to mint.");

            } else if (numberOfTokens > 1) {

                _totalCost = minters[_minterRole].mintCost * (numberOfTokens - minters[_minterRole].numberOfFreemint);
                require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint.");
            
            }
            
            mintedFree[msg.sender] = 1; // Register free mint
        }
        
        _phaseMint(_minterRole, numberOfTokens, _totalCost);
    }

    function publicMint(uint8 numberOfTokens) external payable nonReentrant whenNotPaused {
        
        require(currentPhase != Phases.N, "ERROR: Mint is not active.");
        string memory _minterRole = "PUBLIC";

        require(numberOfTokens <= minters[_minterRole].maxMintPerTransaction, "ERROR: Maximum number of mints per transaction exceeded");
        require((mintedPerRole[_minterRole][msg.sender] + numberOfTokens) <= minters[_minterRole].maxMintPerTransaction, "ERROR: Your maximum NFT mint per wallet on this phase has been reached.");

        if (currentPhase == Phases.Phase1) {
            //on this phase make sure that the allocated supply count per minter role will not be exceeded
            require(mintedCount[_minterRole] + numberOfTokens <= minters[_minterRole].supply, "ERROR: Maximum number of mints on this phase has been reached");
        }

        uint256 _totalCost;
        _totalCost = minters[_minterRole].mintCost * numberOfTokens;
        require(msg.value >= _totalCost, "ERROR: You do not have enough funds to mint.");
        
        _phaseMint(_minterRole, numberOfTokens, _totalCost);          
    }

    function verifyWhitelist(string memory _minterType, address _address, bytes32[] calldata _merkleProof) public view returns (bool) {
        require(minters[_minterType].root != bytes32(0), "ERROR: Minter Type not found.");
        if (_isWhitelisted(_address, _merkleProof, minters[_minterType].root))
            return true;
        return false;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        _tokenId += 1;
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

     /*
    * ******** ******** ******** ******** ******** ******** ********
    * Public - onlyOwner functions
    * ******** ******** ******** ******** ******** ******** ********
    */

    function setMintPhase(uint8 _phase) public onlyOwner {
        currentPhase = Phases(_phase);
        emit PhaseChanged(msg.sender, block.timestamp, uint8(currentPhase));
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setCollabAddress(address _collabAddress) public onlyOwner {
        collabAddress = _collabAddress;
    }

    function getCollabAddress() public onlyOwner view returns (address) {
        return collabAddress;
    }

    //Function to add MintersInfo to minters
    function addMintersInfo(
        string memory _minterName,
        uint8 _maxMintPerTransaction,
        uint8 _numberOfFreeMint,
        uint256 _supply,
        uint256 _mintCost,
        bytes32 _root
    ) public onlyOwner {
        MintersInfo memory newMintersInfo = MintersInfo(
            _maxMintPerTransaction,
            _numberOfFreeMint,
            _supply,
            _mintCost,
            _root
        );
        minters[_minterName] = newMintersInfo;
    }

    //Function to modify MintersInfo of a minterRole
    function modifyMintersInfo(
        string memory _minterName,
        uint8 _newMaxMintPerTransaction,
        uint8 _newNumberOfFreeMint,
        uint256 _newSupply,
        uint256 _newMintCost,
        bytes32 _newRoot
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        MintersInfo memory updatedMintersInfo = MintersInfo(
            _newMaxMintPerTransaction,
            _newNumberOfFreeMint,
            _newSupply,
            _newMintCost,
            _newRoot
        );

        minters[_minterName] = updatedMintersInfo;
    }

    function modifyMintersMintCost(
        string memory _minterName,
        uint256 _newMintCost
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].mintCost = _newMintCost;
    }

    function modifyMintersSupply(
        string memory _minterName,
        uint256 _newSupplyCount
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].supply = _newSupplyCount;
    }

    function modifyFreeMintCount(
        string memory _minterName,
        uint8 _newFreeMintCount
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].numberOfFreemint = _newFreeMintCount;
    }

    function modifyMintersMaxMintPerTransaction(
        string memory _minterName,
        uint8 _newMaxMintPerTransaction
    ) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "MintersInfo not found.");
        minters[_minterName].maxMintPerTransaction = _newMaxMintPerTransaction;
    }

    //Function to get the MintersInfo for a specific minter
    function getMintInfo(string memory _minterName, address _userAddress) public view returns (uint8, uint8, uint256, uint256, uint256, uint8) {

        uint8 _mintedPerRole = mintedPerRole[_minterName][_userAddress];
        return (
           
            uint8(currentPhase),
            minters[_minterName].maxMintPerTransaction,
            minters[_minterName].mintCost, 
            minters[_minterName].supply, 
            mintedCount[_minterName],
            _mintedPerRole
        );
    }

    function getSupplyInfo() public view returns (uint256, uint256, uint8) {
        return (maxSupply, totalSupply(), uint8(currentPhase));
    }

    //Function to modify the root of an existing MintersInfo
    function modifyMintersRoot(string memory _minterName, bytes32 _newRoot) public onlyOwner {
        require(minters[_minterName].root != bytes32(0), "ERROR: MintersInfo not found."); //change
        minters[_minterName].root = _newRoot;
    }

    function revealCollection (string memory _baseURI, bool _isRevealed) public onlyOwner {
        isRevealed = _isRevealed;
        baseURI = _baseURI;

        if (isRevealed)
            emit CollectionRevealed(msg.sender);
    }

    function unPause() public onlyOwner {
        _unpause();
    }

    function pause() public onlyOwner whenNotPaused {
        _pause();
    }

    function internalMint(uint8 numberOfTokens) public onlyOwner {
        require((_totalMinted() + numberOfTokens) <= maxSupply, "ERROR: Not enough tokens");
        _safeMint(msg.sender, numberOfTokens);
        emit Minted(msg.sender, numberOfTokens, 0);
    }

    function withdraw() public onlyOwner {

        require(address(this).balance > 0, "ERROR: No balance to withdraw.");
        uint256 balance = address(this).balance;

        // Calculate 5% for the special address
        uint256 _specialAmount = (balance * 5) / 100;

        // Calculate the rest for the owner
        uint256 _ownerAmount = balance - _specialAmount;

        // Send the amounts to the respective addresses
        (bool _specialSuccess, ) = payable(collabAddress).call{value: _specialAmount}("");
        (bool _ownerSuccess, ) = payable(msg.sender).call{value: _ownerAmount}("");

        if (!_specialSuccess || !_ownerSuccess) {
            revert WithdrawalFailed();
        }

        emit WithdrawalSuccessful(collabAddress, _specialAmount);
        emit WithdrawalSuccessful(msg.sender, _ownerAmount);
    }

    /*
    * ******** ******** ******** ******** ******** ******** ********
    * Internal - functions
    * ******** ******** ******** ******** ******** ******** ********
    */  

    function _phaseMint(string memory _minterRole, uint8 _numberOfTokens, uint256 _totalCost) internal {
        
        require((_totalMinted() + _numberOfTokens) <= maxSupply, "ERROR: No tokens left to mint");
        require(_numberOfTokens > 0, "ERROR: Number of tokens should be greater than zero");

        _safeMint(msg.sender, _numberOfTokens);

        //after mint registry
        mintedCount[_minterRole] += _numberOfTokens; //adds the newly minted token count per minter Role
        mintedPerRole[_minterRole][msg.sender] += _numberOfTokens; //registers the address and the number of tokens of the minter per role
        mintersAddresses.push(msg.sender); //registers minters address, for future purposes

        emit Minted(msg.sender, _numberOfTokens, _totalCost);
        
        //if total minted reach or exceeds max supply - pause contract
        if (_totalMinted() >= maxSupply) {
            emit SoldOut();
        }    
    } 

    //for whitelist check
    function _isWhitelisted  (
        address _minterLeaf,
        bytes32[] calldata _merkleProof, 
        bytes32 _minterRoot
    ) public pure returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(_minterLeaf));
        return MerkleProof.verify(_merkleProof, _minterRoot, _leaf);
    }
}


/*
* ***** ***** ***** ***** 
*/

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 6 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

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

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

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

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

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

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

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

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

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

File 8 of 11 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 9 of 11 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 10 of 11 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 11 of 11 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":"WithdrawalFailed","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":"address","name":"to","type":"address"}],"name":"CollectionRevealed","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":"to","type":"address"},{"indexed":false,"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"eventId","type":"uint256"},{"indexed":true,"internalType":"uint8","name":"phaseId","type":"uint8"}],"name":"PhaseChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SoldOut","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawalSuccessful","type":"event"},{"inputs":[{"internalType":"address","name":"_minterLeaf","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"_minterRoot","type":"bytes32"}],"name":"_isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_maxMintPerTransaction","type":"uint8"},{"internalType":"uint8","name":"_numberOfFreeMint","type":"uint8"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_mintCost","type":"uint256"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"addMintersInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum Pumpkn.Phases","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCollabAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getMintInfo","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedFree","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"mintedPerRole","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintersAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_newFreeMintCount","type":"uint8"}],"name":"modifyFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_newMaxMintPerTransaction","type":"uint8"},{"internalType":"uint8","name":"_newNumberOfFreeMint","type":"uint8"},{"internalType":"uint256","name":"_newSupply","type":"uint256"},{"internalType":"uint256","name":"_newMintCost","type":"uint256"},{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"modifyMintersInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint8","name":"_newMaxMintPerTransaction","type":"uint8"}],"name":"modifyMintersMaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint256","name":"_newMintCost","type":"uint256"}],"name":"modifyMintersMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"modifyMintersRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterName","type":"string"},{"internalType":"uint256","name":"_newSupplyCount","type":"uint256"}],"name":"modifyMintersSupply","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collabAddress","type":"address"}],"name":"setCollabAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_minterType","type":"string"},{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527328ef4800417bedddedebdee594845a41c8c22fbe600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610613600b55604051806080016040528060438152602001620062e260439139601390816200008991906200077f565b503480156200009757600080fd5b506040518060400160405280600681526020017f50554d506b6e00000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554d500000000000000000000000000000000000000000000000000000000081525081600290816200011591906200077f565b5080600390816200012791906200077f565b5062000138620002a960201b60201c565b60008190555050506200016062000154620002ae60201b60201c565b620002b660201b60201c565b6000600860146101000a81548160ff02191690831515021790555060016009819055506000600e60006101000a81548160ff02191690836002811115620001ac57620001ab62000866565b5b02179055506200022a6040518060400160405280600281526020017f574c0000000000000000000000000000000000000000000000000000000000008152506003600161022b6618838370f340007f8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c60001b6200037c60201b60201c565b620002a36040518060400160405280600681526020017f5055424c49430000000000000000000000000000000000000000000000000000815250600460006103e8661b5b1bf4c540007f8ac3d4f184349fb28ebb642349f97130ce71b7bc967acb07c881b5ec27ad725c60001b6200037c60201b60201c565b6200099f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200038c6200044a60201b60201c565b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600c88604051620003d0919062000903565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6200045a620002ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000480620004db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d0906200097d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058757607f821691505b6020821081036200059d576200059c6200053f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005c8565b620006138683620005c8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006606200065a62000654846200062b565b62000635565b6200062b565b9050919050565b6000819050919050565b6200067c836200063f565b620006946200068b8262000667565b848454620005d5565b825550505050565b600090565b620006ab6200069c565b620006b881848462000671565b505050565b5b81811015620006e057620006d4600082620006a1565b600181019050620006be565b5050565b601f8211156200072f57620006f981620005a3565b6200070484620005b8565b8101602085101562000714578190505b6200072c6200072385620005b8565b830182620006bd565b50505b505050565b600082821c905092915050565b6000620007546000198460080262000734565b1980831691505092915050565b60006200076f838362000741565b9150826002028217905092915050565b6200078a8262000505565b67ffffffffffffffff811115620007a657620007a562000510565b5b620007b282546200056e565b620007bf828285620006e4565b600060209050601f831160018114620007f75760008415620007e2578287015190505b620007ee858262000761565b8655506200085e565b601f1984166200080786620005a3565b60005b8281101562000831578489015182556001820191506020850194506020810190506200080a565b868310156200085157848901516200084d601f89168262000741565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081905092915050565b60005b83811015620008c0578082015181840152602081019050620008a3565b60008484015250505050565b6000620008d98262000505565b620008e5818562000895565b9350620008f7818560208601620008a0565b80840191505092915050565b6000620009118284620008cc565b915081905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009656020836200091c565b915062000972826200092d565b602082019050919050565b60006020820190508181036000830152620009988162000956565b9050919050565b61593380620009af6000396000f3fe60806040526004361061027c5760003560e01c80636107896e1161014f578063a22cb465116100c1578063e1c678051161007a578063e1c678051461096e578063e7d9793714610997578063e985e9c5146109c0578063eee156d0146109fd578063f2fde38b14610a26578063f7b188a514610a4f5761027c565b8063a22cb4651461086f578063b88d4fde14610898578063c87b56dd146108b4578063cf7c0b49146108f1578063d5abeb011461091a578063d89a7574146109455761027c565b80637e454447116101135780637e454447146107925780638456cb59146107bb578063858e83b5146107d25780638cdaea21146107ee5780638da5cb5b1461081957806395d89b41146108445761027c565b80636107896e1461069b5780636352211e146106d85780636f8b44b01461071557806370a082311461073e578063715018a61461077b5761027c565b806320984801116101f35780633ccfd60b116101ac5780633ccfd60b146105cf578063411d1be5146105e657806342842e0e1461060f57806347d4f5781461062b57806358381669146106545780635c975abb146106705761027c565b806320984801146104b557806320edeaf3146104f257806323b872dd1461051f578063293227ab1461053b5780632b5619a41461056457806331c07bbf146105a65761027c565b8063095ea7b311610245578063095ea7b31461038e57806309945734146103aa5780630e6f5272146103e757806315587fc31461042457806318160ddd14610461578063189b83bd1461048c5761027c565b80623775801461028157806301ffc9a7146102be578063055ad42e146102fb57806306fdde0314610326578063081812fc14610351575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190613ce3565b610a66565b6040516102b59190613d8e565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e01565b610b16565b6040516102f29190613d8e565b60405180910390f35b34801561030757600080fd5b50610310610ba8565b60405161031d9190613ea5565b60405180910390f35b34801561033257600080fd5b5061033b610bbb565b6040516103489190613f3f565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613f97565b610c4d565b6040516103859190613fd3565b60405180910390f35b6103a860048036038101906103a39190613fee565b610ccc565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061402e565b610e10565b6040516103de9190614086565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906140d7565b610e3e565b60405161041b9190613d8e565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061414b565b610ec1565b60405161045891906141c3565b60405180910390f35b34801561046d57600080fd5b50610476610f06565b6040516104839190614086565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906141de565b610f1d565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061423a565b610fb5565b6040516104e991906141c3565b60405180910390f35b3480156104fe57600080fd5b50610507610fd5565b60405161051693929190614267565b60405180910390f35b6105396004803603810190610534919061429e565b611012565b005b34801561054757600080fd5b50610562600480360381019061055d91906142f1565b611334565b005b34801561057057600080fd5b5061058b6004803603810190610586919061414b565b6113cc565b60405161059d9695949392919061434d565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906143da565b61150e565b005b3480156105db57600080fd5b506105e46115c1565b005b3480156105f257600080fd5b5061060d60048036038101906106089190614407565b61183f565b005b6106296004803603810190610624919061429e565b6118eb565b005b34801561063757600080fd5b50610652600480360381019061064d9190614463565b61190b565b005b61066e6004803603810190610669919061450c565b6119cf565b005b34801561067c57600080fd5b50610685611f92565b6040516106929190613d8e565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190613f97565b611fa9565b6040516106cf9190613fd3565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613f97565b611fe8565b60405161070c9190613fd3565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613f97565b611ffa565b005b34801561074a57600080fd5b506107656004803603810190610760919061423a565b61200c565b6040516107729190614086565b60405180910390f35b34801561078757600080fd5b506107906120c4565b005b34801561079e57600080fd5b506107b960048036038101906107b49190614407565b6120d8565b005b3480156107c757600080fd5b506107d0612184565b005b6107ec60048036038101906107e791906143da565b61219e565b005b3480156107fa57600080fd5b5061080361251a565b6040516108109190613fd3565b60405180910390f35b34801561082557600080fd5b5061082e61254c565b60405161083b9190613fd3565b60405180910390f35b34801561085057600080fd5b50610859612576565b6040516108669190613f3f565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190614598565b612608565b005b6108b260048036038101906108ad9190614679565b612713565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613f97565b612786565b6040516108e89190613f3f565b60405180910390f35b3480156108fd57600080fd5b50610918600480360381019061091391906142f1565b612811565b005b34801561092657600080fd5b5061092f6128a9565b60405161093c9190614086565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190614463565b6128af565b005b34801561097a57600080fd5b50610995600480360381019061099091906146fc565b6129d9565b005b3480156109a357600080fd5b506109be60048036038101906109b991906143da565b612a68565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190614758565b612b2b565b6040516109f49190613d8e565b60405180910390f35b348015610a0957600080fd5b50610a246004803603810190610a1f919061423a565b612bbf565b005b348015610a3257600080fd5b50610a4d6004803603810190610a48919061423a565b612c0b565b005b348015610a5b57600080fd5b50610a64612c8e565b005b60008060001b600c86604051610a7c91906147d4565b90815260200160405180910390206003015403610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590614837565b60405180910390fd5b610afb848484600c89604051610ae491906147d4565b908152602001604051809103902060030154610e3e565b15610b095760019050610b0e565b600090505b949350505050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e60009054906101000a900460ff1681565b606060028054610bca90614886565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf690614886565b8015610c435780601f10610c1857610100808354040283529160200191610c43565b820191906000526020600020905b815481529060010190602001808311610c2657829003601f168201915b5050505050905090565b6000610c5882612ca0565b610c8e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd782611fe8565b90508073ffffffffffffffffffffffffffffffffffffffff16610cf8612cff565b73ffffffffffffffffffffffffffffffffffffffff1614610d5b57610d2481610d1f612cff565b612b2b565b610d5a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b60008085604051602001610e5291906148ff565b604051602081830303815290604052805190602001209050610eb6858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508483612d07565b915050949350505050565b6010828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b6000610f10612d1e565b6001546000540303905090565b610f25612d23565b6000801b600c83604051610f3991906147d4565b90815260200160405180910390206003015403610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614966565b60405180910390fd5b80600c83604051610f9c91906147d4565b9081526020016040518091039020600301819055505050565b60116020528060005260406000206000915054906101000a900460ff1681565b6000806000600b54610fe5610f06565b600e60009054906101000a900460ff16600281111561100757611006613e2e565b5b925092509250909192565b600061101d82612da1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611084576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109084612e6d565b915091506110a681876110a1612cff565b612e94565b6110f2576110bb866110b6612cff565b612b2b565b6110f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611158576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111658686866001612ed8565b801561117057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061123e8561121a888887612ede565b7c020000000000000000000000000000000000000000000000000000000017612f06565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112c457600060018501905060006004600083815260200190815260200160002054036112c25760005481146112c1578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132c8686866001612f31565b505050505050565b61133c612d23565b6000801b600c8360405161135091906147d4565b908152602001604051809103902060030154036113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906149d2565b60405180910390fd5b80600c836040516113b391906147d4565b9081526020016040518091039020600201819055505050565b60008060008060008060006010896040516113e791906147d4565b908152602001604051809103902060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900460ff16600281111561146457611463613e2e565b5b600c8a60405161147491906147d4565b908152602001604051809103902060000160009054906101000a900460ff16600c8b6040516114a391906147d4565b908152602001604051809103902060020154600c8c6040516114c591906147d4565b908152602001604051809103902060010154600d8d6040516114e791906147d4565b90815260200160405180910390205485965096509650965096509650509295509295509295565b611516612d23565b8060ff16600281111561152c5761152b613e2e565b5b600e60006101000a81548160ff021916908360028111156115505761154f613e2e565b5b0217905550600e60009054906101000a900460ff16600281111561157757611576613e2e565b5b60ff16423373ffffffffffffffffffffffffffffffffffffffff167f7d7f6ed6d84cc6a4531c22effb48bb76d643459a9d3398dab7ddb04f6fb01ebc60405160405180910390a450565b6115c9612d23565b6000471161160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390614a3e565b60405180910390fd5b6000479050600060646005836116229190614a8d565b61162c9190614afe565b90506000818361163c9190614b2f565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161168690614b94565b60006040518083038185875af1925050503d80600081146116c3576040519150601f19603f3d011682016040523d82523d6000602084013e6116c8565b606091505b5050905060003373ffffffffffffffffffffffffffffffffffffffff16836040516116f290614b94565b60006040518083038185875af1925050503d806000811461172f576040519150601f19603f3d011682016040523d82523d6000602084013e611734565b606091505b50509050811580611743575080155b1561177a576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec856040516117e29190614086565b60405180910390a23373ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec846040516118309190614086565b60405180910390a25050505050565b611847612d23565b6000801b600c8360405161185b91906147d4565b908152602001604051809103902060030154036118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a4906149d2565b60405180910390fd5b80600c836040516118be91906147d4565b908152602001604051809103902060000160006101000a81548160ff021916908360ff1602179055505050565b61190683838360405180602001604052806000815250612713565b505050565b611913612d23565b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600c8860405161195591906147d4565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6119d7612f37565b6119df612f86565b600160028111156119f3576119f2613e2e565b5b600e60009054906101000a900460ff166002811115611a1557611a14613e2e565b5b14611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614bf5565b60405180910390fd5b60006040518060400160405280600281526020017f574c00000000000000000000000000000000000000000000000000000000000081525090506000611abe338585600c86604051611aa791906147d4565b908152602001604051809103902060030154610e3e565b611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614c87565b60405180910390fd5b600c82604051611b0d91906147d4565b9081526020016040518091039020600101548560ff16600d84604051611b3391906147d4565b908152602001604051809103902054611b4c9190614ca7565b1115611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490614d4d565b60405180910390fd5b600c82604051611b9d91906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff168560ff161115611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90614ddf565b60405180910390fd5b600c82604051611c1491906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff1685601084604051611c4791906147d4565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611caa9190614dff565b60ff161115611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614ecc565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611dc0578460ff16600c83604051611d5a91906147d4565b908152602001604051809103902060020154611d769190614a8d565b905080341015611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290614f5e565b60405180910390fd5b611f78565b60018560ff1603611e62576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490614f5e565b60405180910390fd5b611f1e565b60018560ff161115611f1d57600c82604051611e7e91906147d4565b908152602001604051809103902060000160019054906101000a900460ff1685611ea89190614f7e565b60ff16600c83604051611ebb91906147d4565b908152602001604051809103902060020154611ed79190614a8d565b905080341015611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390614f5e565b60405180910390fd5b5b5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b611f83828683612fd0565b5050611f8d613239565b505050565b6000600860149054906101000a900460ff16905090565b60128181548110611fb957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611ff382612da1565b9050919050565b612002612d23565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612073576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6120cc612d23565b6120d66000613243565b565b6120e0612d23565b6000801b600c836040516120f491906147d4565b90815260200160405180910390206003015403612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d906149d2565b60405180910390fd5b80600c8360405161215791906147d4565b908152602001604051809103902060000160016101000a81548160ff021916908360ff1602179055505050565b61218c612d23565b612194612f86565b61219c613309565b565b6121a6612f37565b6121ae612f86565b600060028111156121c2576121c1613e2e565b5b600e60009054906101000a900460ff1660028111156121e4576121e3613e2e565b5b03612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90614bf5565b60405180910390fd5b60006040518060400160405280600681526020017f5055424c494300000000000000000000000000000000000000000000000000008152509050600c8160405161226e91906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff168260ff1611156122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90614ddf565b60405180910390fd5b600c816040516122e591906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff168260108360405161231891906147d4565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661237b9190614dff565b60ff1611156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614ecc565b60405180910390fd5b600160028111156123d3576123d2613e2e565b5b600e60009054906101000a900460ff1660028111156123f5576123f4613e2e565b5b0361248b57600c8160405161240a91906147d4565b9081526020016040518091039020600101548260ff16600d8360405161243091906147d4565b9081526020016040518091039020546124499190614ca7565b111561248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614d4d565b60405180910390fd5b5b60008260ff16600c836040516124a191906147d4565b9081526020016040518091039020600201546124bd9190614a8d565b905080341015612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990614f5e565b60405180910390fd5b61250d828483612fd0565b5050612517613239565b50565b6000612524612d23565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461258590614886565b80601f01602080910402602001604051908101604052809291908181526020018280546125b190614886565b80156125fe5780601f106125d3576101008083540402835291602001916125fe565b820191906000526020600020905b8154815290600101906020018083116125e157829003601f168201915b5050505050905090565b8060076000612615612cff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166126c2612cff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127079190613d8e565b60405180910390a35050565b61271e848484611012565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612780576127498484848461336c565b61277f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061279182612ca0565b6127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790615025565b60405180910390fd5b6001826127dd9190614ca7565b915060136127ea836134bc565b6040516020016127fb9291906150dd565b6040516020818303038152906040529050919050565b612819612d23565b6000801b600c8360405161282d91906147d4565b9081526020016040518091039020600301540361287f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612876906149d2565b60405180910390fd5b80600c8360405161289091906147d4565b9081526020016040518091039020600101819055505050565b600b5481565b6128b7612d23565b6000801b600c876040516128cb91906147d4565b9081526020016040518091039020600301540361291d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612914906149d2565b60405180910390fd5b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600c8860405161295f91906147d4565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6129e1612d23565b80601560006101000a81548160ff0219169083151502179055508160139081612a0a9190615298565b50601560009054906101000a900460ff1615612a64573373ffffffffffffffffffffffffffffffffffffffff167f2a10c355cd3f8130b128e45782d3e92e6c0b4ba2e844d06f49a48ee23f1f21f760405160405180910390a25b5050565b612a70612d23565b600b548160ff16612a7f61358a565b612a899190614ca7565b1115612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac1906153b6565b60405180910390fd5b612ad7338260ff1661359d565b3373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740826000604051612b20929190615411565b60405180910390a250565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bc7612d23565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c13612d23565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c79906154ac565b60405180910390fd5b612c8b81613243565b50565b612c96612d23565b612c9e6135bb565b565b600081612cab612d1e565b11158015612cba575060005482105b8015612cf8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612d14858461361e565b1490509392505050565b600090565b612d2b613674565b73ffffffffffffffffffffffffffffffffffffffff16612d4961254c565b73ffffffffffffffffffffffffffffffffffffffff1614612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690615518565b60405180910390fd5b565b60008082905080612db0612d1e565b11612e3657600054811015612e355760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612e33575b60008103612e29576004600083600190039350838152602001908152602001600020549050612dff565b8092505050612e68565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ef586868461367c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403612f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7390615584565b60405180910390fd5b6002600981905550565b612f8e611f92565b15612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc5906155f0565b60405180910390fd5b565b600b548260ff16612fdf61358a565b612fe99190614ca7565b111561302a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130219061565c565b60405180910390fd5b60008260ff1611613070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613067906156ee565b60405180910390fd5b61307d338360ff1661359d565b8160ff16600d8460405161309191906147d4565b908152602001604051809103902060008282546130ae9190614ca7565b92505081905550816010846040516130c691906147d4565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661312c9190614dff565b92506101000a81548160ff021916908360ff1602179055506012339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d07774083836040516131ef92919061570e565b60405180910390a2600b5461320261358a565b10613234577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613311612f86565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613355613674565b6040516133629190613fd3565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613392612cff565b8786866040518563ffffffff1660e01b81526004016133b4949392919061578c565b6020604051808303816000875af19250505080156133f057506040513d601f19601f820116820180604052508101906133ed91906157ed565b60015b613469573d8060008114613420576040519150601f19603f3d011682016040523d82523d6000602084013e613425565b606091505b506000815103613461576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016134cb84613685565b01905060008167ffffffffffffffff8111156134ea576134e9613afa565b5b6040519080825280601f01601f19166020018201604052801561351c5781602001600182028036833780820191505090505b509050600082602001820190505b60011561357f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161357357613572614acf565b5b0494506000850361352a575b819350505050919050565b6000613594612d1e565b60005403905090565b6135b78282604051806020016040528060008152506137d8565b5050565b6135c3613875565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613607613674565b6040516136149190613fd3565b60405180910390a1565b60008082905060005b845181101561366957613654828683815181106136475761364661581a565b5b60200260200101516138be565b9150808061366190615849565b915050613627565b508091505092915050565b600033905090565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106136e3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816136d9576136d8614acf565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613720576d04ee2d6d415b85acef8100000000838161371657613715614acf565b5b0492506020810190505b662386f26fc10000831061374f57662386f26fc10000838161374557613744614acf565b5b0492506010810190505b6305f5e1008310613778576305f5e100838161376e5761376d614acf565b5b0492506008810190505b612710831061379d57612710838161379357613792614acf565b5b0492506004810190505b606483106137c057606483816137b6576137b5614acf565b5b0492506002810190505b600a83106137cf576001810190505b80915050919050565b6137e283836138e9565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461387057600080549050600083820390505b613822600086838060010194508661336c565b613858576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061380f57816000541461386d57600080fd5b50505b505050565b61387d611f92565b6138bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b3906158dd565b60405180910390fd5b565b60008183106138d6576138d18284613aa4565b6138e1565b6138e08383613aa4565b5b905092915050565b60008054905060008203613929576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139366000848385612ed8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139ad8361399e6000866000612ede565b6139a785613abb565b17612f06565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a4e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a13565b5060008203613a89576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a9f6000848385612f31565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b3282613ae9565b810181811067ffffffffffffffff82111715613b5157613b50613afa565b5b80604052505050565b6000613b64613acb565b9050613b708282613b29565b919050565b600067ffffffffffffffff821115613b9057613b8f613afa565b5b613b9982613ae9565b9050602081019050919050565b82818337600083830152505050565b6000613bc8613bc384613b75565b613b5a565b905082815260208101848484011115613be457613be3613ae4565b5b613bef848285613ba6565b509392505050565b600082601f830112613c0c57613c0b613adf565b5b8135613c1c848260208601613bb5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5082613c25565b9050919050565b613c6081613c45565b8114613c6b57600080fd5b50565b600081359050613c7d81613c57565b92915050565b600080fd5b600080fd5b60008083601f840112613ca357613ca2613adf565b5b8235905067ffffffffffffffff811115613cc057613cbf613c83565b5b602083019150836020820283011115613cdc57613cdb613c88565b5b9250929050565b60008060008060608587031215613cfd57613cfc613ad5565b5b600085013567ffffffffffffffff811115613d1b57613d1a613ada565b5b613d2787828801613bf7565b9450506020613d3887828801613c6e565b935050604085013567ffffffffffffffff811115613d5957613d58613ada565b5b613d6587828801613c8d565b925092505092959194509250565b60008115159050919050565b613d8881613d73565b82525050565b6000602082019050613da36000830184613d7f565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613dde81613da9565b8114613de957600080fd5b50565b600081359050613dfb81613dd5565b92915050565b600060208284031215613e1757613e16613ad5565b5b6000613e2584828501613dec565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613e6e57613e6d613e2e565b5b50565b6000819050613e7f82613e5d565b919050565b6000613e8f82613e71565b9050919050565b613e9f81613e84565b82525050565b6000602082019050613eba6000830184613e96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613efa578082015181840152602081019050613edf565b60008484015250505050565b6000613f1182613ec0565b613f1b8185613ecb565b9350613f2b818560208601613edc565b613f3481613ae9565b840191505092915050565b60006020820190508181036000830152613f598184613f06565b905092915050565b6000819050919050565b613f7481613f61565b8114613f7f57600080fd5b50565b600081359050613f9181613f6b565b92915050565b600060208284031215613fad57613fac613ad5565b5b6000613fbb84828501613f82565b91505092915050565b613fcd81613c45565b82525050565b6000602082019050613fe86000830184613fc4565b92915050565b6000806040838503121561400557614004613ad5565b5b600061401385828601613c6e565b925050602061402485828601613f82565b9150509250929050565b60006020828403121561404457614043613ad5565b5b600082013567ffffffffffffffff81111561406257614061613ada565b5b61406e84828501613bf7565b91505092915050565b61408081613f61565b82525050565b600060208201905061409b6000830184614077565b92915050565b6000819050919050565b6140b4816140a1565b81146140bf57600080fd5b50565b6000813590506140d1816140ab565b92915050565b600080600080606085870312156140f1576140f0613ad5565b5b60006140ff87828801613c6e565b945050602085013567ffffffffffffffff8111156141205761411f613ada565b5b61412c87828801613c8d565b9350935050604061413f878288016140c2565b91505092959194509250565b6000806040838503121561416257614161613ad5565b5b600083013567ffffffffffffffff8111156141805761417f613ada565b5b61418c85828601613bf7565b925050602061419d85828601613c6e565b9150509250929050565b600060ff82169050919050565b6141bd816141a7565b82525050565b60006020820190506141d860008301846141b4565b92915050565b600080604083850312156141f5576141f4613ad5565b5b600083013567ffffffffffffffff81111561421357614212613ada565b5b61421f85828601613bf7565b9250506020614230858286016140c2565b9150509250929050565b6000602082840312156142505761424f613ad5565b5b600061425e84828501613c6e565b91505092915050565b600060608201905061427c6000830186614077565b6142896020830185614077565b61429660408301846141b4565b949350505050565b6000806000606084860312156142b7576142b6613ad5565b5b60006142c586828701613c6e565b93505060206142d686828701613c6e565b92505060406142e786828701613f82565b9150509250925092565b6000806040838503121561430857614307613ad5565b5b600083013567ffffffffffffffff81111561432657614325613ada565b5b61433285828601613bf7565b925050602061434385828601613f82565b9150509250929050565b600060c08201905061436260008301896141b4565b61436f60208301886141b4565b61437c6040830187614077565b6143896060830186614077565b6143966080830185614077565b6143a360a08301846141b4565b979650505050505050565b6143b7816141a7565b81146143c257600080fd5b50565b6000813590506143d4816143ae565b92915050565b6000602082840312156143f0576143ef613ad5565b5b60006143fe848285016143c5565b91505092915050565b6000806040838503121561441e5761441d613ad5565b5b600083013567ffffffffffffffff81111561443c5761443b613ada565b5b61444885828601613bf7565b9250506020614459858286016143c5565b9150509250929050565b60008060008060008060c087890312156144805761447f613ad5565b5b600087013567ffffffffffffffff81111561449e5761449d613ada565b5b6144aa89828a01613bf7565b96505060206144bb89828a016143c5565b95505060406144cc89828a016143c5565b94505060606144dd89828a01613f82565b93505060806144ee89828a01613f82565b92505060a06144ff89828a016140c2565b9150509295509295509295565b60008060006040848603121561452557614524613ad5565b5b6000614533868287016143c5565b935050602084013567ffffffffffffffff81111561455457614553613ada565b5b61456086828701613c8d565b92509250509250925092565b61457581613d73565b811461458057600080fd5b50565b6000813590506145928161456c565b92915050565b600080604083850312156145af576145ae613ad5565b5b60006145bd85828601613c6e565b92505060206145ce85828601614583565b9150509250929050565b600067ffffffffffffffff8211156145f3576145f2613afa565b5b6145fc82613ae9565b9050602081019050919050565b600061461c614617846145d8565b613b5a565b90508281526020810184848401111561463857614637613ae4565b5b614643848285613ba6565b509392505050565b600082601f8301126146605761465f613adf565b5b8135614670848260208601614609565b91505092915050565b6000806000806080858703121561469357614692613ad5565b5b60006146a187828801613c6e565b94505060206146b287828801613c6e565b93505060406146c387828801613f82565b925050606085013567ffffffffffffffff8111156146e4576146e3613ada565b5b6146f08782880161464b565b91505092959194509250565b6000806040838503121561471357614712613ad5565b5b600083013567ffffffffffffffff81111561473157614730613ada565b5b61473d85828601613bf7565b925050602061474e85828601614583565b9150509250929050565b6000806040838503121561476f5761476e613ad5565b5b600061477d85828601613c6e565b925050602061478e85828601613c6e565b9150509250929050565b600081905092915050565b60006147ae82613ec0565b6147b88185614798565b93506147c8818560208601613edc565b80840191505092915050565b60006147e082846147a3565b915081905092915050565b7f4552524f523a204d696e7465722054797065206e6f7420666f756e642e000000600082015250565b6000614821601d83613ecb565b915061482c826147eb565b602082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489e57607f821691505b6020821081036148b1576148b0614857565b5b50919050565b60008160601b9050919050565b60006148cf826148b7565b9050919050565b60006148e1826148c4565b9050919050565b6148f96148f482613c45565b6148d6565b82525050565b600061490b82846148e8565b60148201915081905092915050565b7f4552524f523a204d696e74657273496e666f206e6f7420666f756e642e000000600082015250565b6000614950601d83613ecb565b915061495b8261491a565b602082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f4d696e74657273496e666f206e6f7420666f756e642e00000000000000000000600082015250565b60006149bc601683613ecb565b91506149c782614986565b602082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b7f4552524f523a204e6f2062616c616e636520746f2077697468647261772e0000600082015250565b6000614a28601e83613ecb565b9150614a33826149f2565b602082019050919050565b60006020820190508181036000830152614a5781614a1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a9882613f61565b9150614aa383613f61565b9250828202614ab181613f61565b91508282048414831517614ac857614ac7614a5e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b0982613f61565b9150614b1483613f61565b925082614b2457614b23614acf565b5b828204905092915050565b6000614b3a82613f61565b9150614b4583613f61565b9250828203905081811115614b5d57614b5c614a5e565b5b92915050565b600081905092915050565b50565b6000614b7e600083614b63565b9150614b8982614b6e565b600082019050919050565b6000614b9f82614b71565b9150819050919050565b7f4552524f523a204d696e74206973206e6f74206163746976652e000000000000600082015250565b6000614bdf601a83613ecb565b9150614bea82614ba9565b602082019050919050565b60006020820190508181036000830152614c0e81614bd2565b9050919050565b7f4552524f523a20596f7520617265206e6f7420616c6c6f77656420746f206d6960008201527f6e74206f6e20746869732070686173652e000000000000000000000000000000602082015250565b6000614c71603183613ecb565b9150614c7c82614c15565b604082019050919050565b60006020820190508181036000830152614ca081614c64565b9050919050565b6000614cb282613f61565b9150614cbd83613f61565b9250828201905080821115614cd557614cd4614a5e565b5b92915050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473206f60008201527f6e207468697320706861736520686173206265656e2072656163686564000000602082015250565b6000614d37603d83613ecb565b9150614d4282614cdb565b604082019050919050565b60006020820190508181036000830152614d6681614d2a565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473207060008201527f6572207472616e73616374696f6e206578636565646564000000000000000000602082015250565b6000614dc9603783613ecb565b9150614dd482614d6d565b604082019050919050565b60006020820190508181036000830152614df881614dbc565b9050919050565b6000614e0a826141a7565b9150614e15836141a7565b9250828201905060ff811115614e2e57614e2d614a5e565b5b92915050565b7f4552524f523a20596f7572206d6178696d756d204e4654206d696e742070657260008201527f2077616c6c6574206f6e207468697320706861736520686173206265656e207260208201527f6561636865642e00000000000000000000000000000000000000000000000000604082015250565b6000614eb6604783613ecb565b9150614ec182614e34565b606082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f75676820667560008201527f6e647320746f206d696e742e0000000000000000000000000000000000000000602082015250565b6000614f48602c83613ecb565b9150614f5382614eec565b604082019050919050565b60006020820190508181036000830152614f7781614f3b565b9050919050565b6000614f89826141a7565b9150614f94836141a7565b9250828203905060ff811115614fad57614fac614a5e565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061500f602f83613ecb565b915061501a82614fb3565b604082019050919050565b6000602082019050818103600083015261503e81615002565b9050919050565b60008190508160005260206000209050919050565b6000815461506781614886565b6150718186614798565b9450600182166000811461508c57600181146150a1576150d4565b60ff19831686528115158202860193506150d4565b6150aa85615045565b60005b838110156150cc578154818901526001820191506020810190506150ad565b838801955050505b50505092915050565b60006150e9828561505a565b91506150f582846147a3565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261514e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615111565b6151588683615111565b95508019841693508086168417925050509392505050565b6000819050919050565b600061519561519061518b84613f61565b615170565b613f61565b9050919050565b6000819050919050565b6151af8361517a565b6151c36151bb8261519c565b84845461511e565b825550505050565b600090565b6151d86151cb565b6151e38184846151a6565b505050565b5b81811015615207576151fc6000826151d0565b6001810190506151e9565b5050565b601f82111561524c5761521d81615045565b61522684615101565b81016020851015615235578190505b61524961524185615101565b8301826151e8565b50505b505050565b600082821c905092915050565b600061526f60001984600802615251565b1980831691505092915050565b6000615288838361525e565b9150826002028217905092915050565b6152a182613ec0565b67ffffffffffffffff8111156152ba576152b9613afa565b5b6152c48254614886565b6152cf82828561520b565b600060209050601f83116001811461530257600084156152f0578287015190505b6152fa858261527c565b865550615362565b601f19841661531086615045565b60005b8281101561533857848901518255600182019150602085019450602081019050615313565b868310156153555784890151615351601f89168261525e565b8355505b6001600288020188555050505b505050505050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e730000000000000000600082015250565b60006153a0601883613ecb565b91506153ab8261536a565b602082019050919050565b600060208201905081810360008301526153cf81615393565b9050919050565b6000819050919050565b60006153fb6153f66153f1846153d6565b615170565b613f61565b9050919050565b61540b816153e0565b82525050565b600060408201905061542660008301856141b4565b6154336020830184615402565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615496602683613ecb565b91506154a18261543a565b604082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615502602083613ecb565b915061550d826154cc565b602082019050919050565b60006020820190508181036000830152615531816154f5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061556e601f83613ecb565b915061557982615538565b602082019050919050565b6000602082019050818103600083015261559d81615561565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006155da601083613ecb565b91506155e5826155a4565b602082019050919050565b60006020820190508181036000830152615609816155cd565b9050919050565b7f4552524f523a204e6f20746f6b656e73206c65667420746f206d696e74000000600082015250565b6000615646601d83613ecb565b915061565182615610565b602082019050919050565b6000602082019050818103600083015261567581615639565b9050919050565b7f4552524f523a204e756d626572206f6620746f6b656e732073686f756c64206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b60006156d8603383613ecb565b91506156e38261567c565b604082019050919050565b60006020820190508181036000830152615707816156cb565b9050919050565b600060408201905061572360008301856141b4565b6157306020830184614077565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061575e82615737565b6157688185615742565b9350615778818560208601613edc565b61578181613ae9565b840191505092915050565b60006080820190506157a16000830187613fc4565b6157ae6020830186613fc4565b6157bb6040830185614077565b81810360608301526157cd8184615753565b905095945050505050565b6000815190506157e781613dd5565b92915050565b60006020828403121561580357615802613ad5565b5b6000615811848285016157d8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061585482613f61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361588657615885614a5e565b5b600182019050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006158c7601483613ecb565b91506158d282615891565b602082019050919050565b600060208201905081810360008301526158f6816158ba565b905091905056fea2646970667358221220f236bce9c4b1c81f067a75cbb7b366705e46aa040b8254deeb4d7053ed56335464736f6c63430008120033697066733a2f2f626166796265696676793462626978366537717972626d6f69786937356d71656a33757662787433616637637578376e71646a7379626c356963692f

Deployed Bytecode

0x60806040526004361061027c5760003560e01c80636107896e1161014f578063a22cb465116100c1578063e1c678051161007a578063e1c678051461096e578063e7d9793714610997578063e985e9c5146109c0578063eee156d0146109fd578063f2fde38b14610a26578063f7b188a514610a4f5761027c565b8063a22cb4651461086f578063b88d4fde14610898578063c87b56dd146108b4578063cf7c0b49146108f1578063d5abeb011461091a578063d89a7574146109455761027c565b80637e454447116101135780637e454447146107925780638456cb59146107bb578063858e83b5146107d25780638cdaea21146107ee5780638da5cb5b1461081957806395d89b41146108445761027c565b80636107896e1461069b5780636352211e146106d85780636f8b44b01461071557806370a082311461073e578063715018a61461077b5761027c565b806320984801116101f35780633ccfd60b116101ac5780633ccfd60b146105cf578063411d1be5146105e657806342842e0e1461060f57806347d4f5781461062b57806358381669146106545780635c975abb146106705761027c565b806320984801146104b557806320edeaf3146104f257806323b872dd1461051f578063293227ab1461053b5780632b5619a41461056457806331c07bbf146105a65761027c565b8063095ea7b311610245578063095ea7b31461038e57806309945734146103aa5780630e6f5272146103e757806315587fc31461042457806318160ddd14610461578063189b83bd1461048c5761027c565b80623775801461028157806301ffc9a7146102be578063055ad42e146102fb57806306fdde0314610326578063081812fc14610351575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190613ce3565b610a66565b6040516102b59190613d8e565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e01565b610b16565b6040516102f29190613d8e565b60405180910390f35b34801561030757600080fd5b50610310610ba8565b60405161031d9190613ea5565b60405180910390f35b34801561033257600080fd5b5061033b610bbb565b6040516103489190613f3f565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613f97565b610c4d565b6040516103859190613fd3565b60405180910390f35b6103a860048036038101906103a39190613fee565b610ccc565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061402e565b610e10565b6040516103de9190614086565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906140d7565b610e3e565b60405161041b9190613d8e565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061414b565b610ec1565b60405161045891906141c3565b60405180910390f35b34801561046d57600080fd5b50610476610f06565b6040516104839190614086565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906141de565b610f1d565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061423a565b610fb5565b6040516104e991906141c3565b60405180910390f35b3480156104fe57600080fd5b50610507610fd5565b60405161051693929190614267565b60405180910390f35b6105396004803603810190610534919061429e565b611012565b005b34801561054757600080fd5b50610562600480360381019061055d91906142f1565b611334565b005b34801561057057600080fd5b5061058b6004803603810190610586919061414b565b6113cc565b60405161059d9695949392919061434d565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906143da565b61150e565b005b3480156105db57600080fd5b506105e46115c1565b005b3480156105f257600080fd5b5061060d60048036038101906106089190614407565b61183f565b005b6106296004803603810190610624919061429e565b6118eb565b005b34801561063757600080fd5b50610652600480360381019061064d9190614463565b61190b565b005b61066e6004803603810190610669919061450c565b6119cf565b005b34801561067c57600080fd5b50610685611f92565b6040516106929190613d8e565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190613f97565b611fa9565b6040516106cf9190613fd3565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613f97565b611fe8565b60405161070c9190613fd3565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613f97565b611ffa565b005b34801561074a57600080fd5b506107656004803603810190610760919061423a565b61200c565b6040516107729190614086565b60405180910390f35b34801561078757600080fd5b506107906120c4565b005b34801561079e57600080fd5b506107b960048036038101906107b49190614407565b6120d8565b005b3480156107c757600080fd5b506107d0612184565b005b6107ec60048036038101906107e791906143da565b61219e565b005b3480156107fa57600080fd5b5061080361251a565b6040516108109190613fd3565b60405180910390f35b34801561082557600080fd5b5061082e61254c565b60405161083b9190613fd3565b60405180910390f35b34801561085057600080fd5b50610859612576565b6040516108669190613f3f565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190614598565b612608565b005b6108b260048036038101906108ad9190614679565b612713565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613f97565b612786565b6040516108e89190613f3f565b60405180910390f35b3480156108fd57600080fd5b50610918600480360381019061091391906142f1565b612811565b005b34801561092657600080fd5b5061092f6128a9565b60405161093c9190614086565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190614463565b6128af565b005b34801561097a57600080fd5b50610995600480360381019061099091906146fc565b6129d9565b005b3480156109a357600080fd5b506109be60048036038101906109b991906143da565b612a68565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190614758565b612b2b565b6040516109f49190613d8e565b60405180910390f35b348015610a0957600080fd5b50610a246004803603810190610a1f919061423a565b612bbf565b005b348015610a3257600080fd5b50610a4d6004803603810190610a48919061423a565b612c0b565b005b348015610a5b57600080fd5b50610a64612c8e565b005b60008060001b600c86604051610a7c91906147d4565b90815260200160405180910390206003015403610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590614837565b60405180910390fd5b610afb848484600c89604051610ae491906147d4565b908152602001604051809103902060030154610e3e565b15610b095760019050610b0e565b600090505b949350505050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e60009054906101000a900460ff1681565b606060028054610bca90614886565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf690614886565b8015610c435780601f10610c1857610100808354040283529160200191610c43565b820191906000526020600020905b815481529060010190602001808311610c2657829003601f168201915b5050505050905090565b6000610c5882612ca0565b610c8e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd782611fe8565b90508073ffffffffffffffffffffffffffffffffffffffff16610cf8612cff565b73ffffffffffffffffffffffffffffffffffffffff1614610d5b57610d2481610d1f612cff565b612b2b565b610d5a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b60008085604051602001610e5291906148ff565b604051602081830303815290604052805190602001209050610eb6858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508483612d07565b915050949350505050565b6010828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b6000610f10612d1e565b6001546000540303905090565b610f25612d23565b6000801b600c83604051610f3991906147d4565b90815260200160405180910390206003015403610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614966565b60405180910390fd5b80600c83604051610f9c91906147d4565b9081526020016040518091039020600301819055505050565b60116020528060005260406000206000915054906101000a900460ff1681565b6000806000600b54610fe5610f06565b600e60009054906101000a900460ff16600281111561100757611006613e2e565b5b925092509250909192565b600061101d82612da1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611084576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109084612e6d565b915091506110a681876110a1612cff565b612e94565b6110f2576110bb866110b6612cff565b612b2b565b6110f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611158576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111658686866001612ed8565b801561117057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061123e8561121a888887612ede565b7c020000000000000000000000000000000000000000000000000000000017612f06565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112c457600060018501905060006004600083815260200190815260200160002054036112c25760005481146112c1578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132c8686866001612f31565b505050505050565b61133c612d23565b6000801b600c8360405161135091906147d4565b908152602001604051809103902060030154036113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906149d2565b60405180910390fd5b80600c836040516113b391906147d4565b9081526020016040518091039020600201819055505050565b60008060008060008060006010896040516113e791906147d4565b908152602001604051809103902060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900460ff16600281111561146457611463613e2e565b5b600c8a60405161147491906147d4565b908152602001604051809103902060000160009054906101000a900460ff16600c8b6040516114a391906147d4565b908152602001604051809103902060020154600c8c6040516114c591906147d4565b908152602001604051809103902060010154600d8d6040516114e791906147d4565b90815260200160405180910390205485965096509650965096509650509295509295509295565b611516612d23565b8060ff16600281111561152c5761152b613e2e565b5b600e60006101000a81548160ff021916908360028111156115505761154f613e2e565b5b0217905550600e60009054906101000a900460ff16600281111561157757611576613e2e565b5b60ff16423373ffffffffffffffffffffffffffffffffffffffff167f7d7f6ed6d84cc6a4531c22effb48bb76d643459a9d3398dab7ddb04f6fb01ebc60405160405180910390a450565b6115c9612d23565b6000471161160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390614a3e565b60405180910390fd5b6000479050600060646005836116229190614a8d565b61162c9190614afe565b90506000818361163c9190614b2f565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161168690614b94565b60006040518083038185875af1925050503d80600081146116c3576040519150601f19603f3d011682016040523d82523d6000602084013e6116c8565b606091505b5050905060003373ffffffffffffffffffffffffffffffffffffffff16836040516116f290614b94565b60006040518083038185875af1925050503d806000811461172f576040519150601f19603f3d011682016040523d82523d6000602084013e611734565b606091505b50509050811580611743575080155b1561177a576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec856040516117e29190614086565b60405180910390a23373ffffffffffffffffffffffffffffffffffffffff167ff4f855c53853d0277a9ff688aadbfe4cb795ca1d5af41704b62cb539f89939ec846040516118309190614086565b60405180910390a25050505050565b611847612d23565b6000801b600c8360405161185b91906147d4565b908152602001604051809103902060030154036118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a4906149d2565b60405180910390fd5b80600c836040516118be91906147d4565b908152602001604051809103902060000160006101000a81548160ff021916908360ff1602179055505050565b61190683838360405180602001604052806000815250612713565b505050565b611913612d23565b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600c8860405161195591906147d4565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6119d7612f37565b6119df612f86565b600160028111156119f3576119f2613e2e565b5b600e60009054906101000a900460ff166002811115611a1557611a14613e2e565b5b14611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614bf5565b60405180910390fd5b60006040518060400160405280600281526020017f574c00000000000000000000000000000000000000000000000000000000000081525090506000611abe338585600c86604051611aa791906147d4565b908152602001604051809103902060030154610e3e565b611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614c87565b60405180910390fd5b600c82604051611b0d91906147d4565b9081526020016040518091039020600101548560ff16600d84604051611b3391906147d4565b908152602001604051809103902054611b4c9190614ca7565b1115611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490614d4d565b60405180910390fd5b600c82604051611b9d91906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff168560ff161115611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90614ddf565b60405180910390fd5b600c82604051611c1491906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff1685601084604051611c4791906147d4565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611caa9190614dff565b60ff161115611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614ecc565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611dc0578460ff16600c83604051611d5a91906147d4565b908152602001604051809103902060020154611d769190614a8d565b905080341015611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290614f5e565b60405180910390fd5b611f78565b60018560ff1603611e62576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5490614f5e565b60405180910390fd5b611f1e565b60018560ff161115611f1d57600c82604051611e7e91906147d4565b908152602001604051809103902060000160019054906101000a900460ff1685611ea89190614f7e565b60ff16600c83604051611ebb91906147d4565b908152602001604051809103902060020154611ed79190614a8d565b905080341015611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390614f5e565b60405180910390fd5b5b5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b611f83828683612fd0565b5050611f8d613239565b505050565b6000600860149054906101000a900460ff16905090565b60128181548110611fb957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611ff382612da1565b9050919050565b612002612d23565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612073576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6120cc612d23565b6120d66000613243565b565b6120e0612d23565b6000801b600c836040516120f491906147d4565b90815260200160405180910390206003015403612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d906149d2565b60405180910390fd5b80600c8360405161215791906147d4565b908152602001604051809103902060000160016101000a81548160ff021916908360ff1602179055505050565b61218c612d23565b612194612f86565b61219c613309565b565b6121a6612f37565b6121ae612f86565b600060028111156121c2576121c1613e2e565b5b600e60009054906101000a900460ff1660028111156121e4576121e3613e2e565b5b03612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90614bf5565b60405180910390fd5b60006040518060400160405280600681526020017f5055424c494300000000000000000000000000000000000000000000000000008152509050600c8160405161226e91906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff168260ff1611156122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90614ddf565b60405180910390fd5b600c816040516122e591906147d4565b908152602001604051809103902060000160009054906101000a900460ff1660ff168260108360405161231891906147d4565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661237b9190614dff565b60ff1611156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614ecc565b60405180910390fd5b600160028111156123d3576123d2613e2e565b5b600e60009054906101000a900460ff1660028111156123f5576123f4613e2e565b5b0361248b57600c8160405161240a91906147d4565b9081526020016040518091039020600101548260ff16600d8360405161243091906147d4565b9081526020016040518091039020546124499190614ca7565b111561248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614d4d565b60405180910390fd5b5b60008260ff16600c836040516124a191906147d4565b9081526020016040518091039020600201546124bd9190614a8d565b905080341015612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990614f5e565b60405180910390fd5b61250d828483612fd0565b5050612517613239565b50565b6000612524612d23565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461258590614886565b80601f01602080910402602001604051908101604052809291908181526020018280546125b190614886565b80156125fe5780601f106125d3576101008083540402835291602001916125fe565b820191906000526020600020905b8154815290600101906020018083116125e157829003601f168201915b5050505050905090565b8060076000612615612cff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166126c2612cff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127079190613d8e565b60405180910390a35050565b61271e848484611012565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612780576127498484848461336c565b61277f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061279182612ca0565b6127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790615025565b60405180910390fd5b6001826127dd9190614ca7565b915060136127ea836134bc565b6040516020016127fb9291906150dd565b6040516020818303038152906040529050919050565b612819612d23565b6000801b600c8360405161282d91906147d4565b9081526020016040518091039020600301540361287f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612876906149d2565b60405180910390fd5b80600c8360405161289091906147d4565b9081526020016040518091039020600101819055505050565b600b5481565b6128b7612d23565b6000801b600c876040516128cb91906147d4565b9081526020016040518091039020600301540361291d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612914906149d2565b60405180910390fd5b60006040518060a001604052808760ff1681526020018660ff16815260200185815260200184815260200183815250905080600c8860405161295f91906147d4565b908152602001604051809103902060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015590505050505050505050565b6129e1612d23565b80601560006101000a81548160ff0219169083151502179055508160139081612a0a9190615298565b50601560009054906101000a900460ff1615612a64573373ffffffffffffffffffffffffffffffffffffffff167f2a10c355cd3f8130b128e45782d3e92e6c0b4ba2e844d06f49a48ee23f1f21f760405160405180910390a25b5050565b612a70612d23565b600b548160ff16612a7f61358a565b612a899190614ca7565b1115612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac1906153b6565b60405180910390fd5b612ad7338260ff1661359d565b3373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d077740826000604051612b20929190615411565b60405180910390a250565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bc7612d23565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c13612d23565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c79906154ac565b60405180910390fd5b612c8b81613243565b50565b612c96612d23565b612c9e6135bb565b565b600081612cab612d1e565b11158015612cba575060005482105b8015612cf8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600082612d14858461361e565b1490509392505050565b600090565b612d2b613674565b73ffffffffffffffffffffffffffffffffffffffff16612d4961254c565b73ffffffffffffffffffffffffffffffffffffffff1614612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690615518565b60405180910390fd5b565b60008082905080612db0612d1e565b11612e3657600054811015612e355760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612e33575b60008103612e29576004600083600190039350838152602001908152602001600020549050612dff565b8092505050612e68565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ef586868461367c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403612f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7390615584565b60405180910390fd5b6002600981905550565b612f8e611f92565b15612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc5906155f0565b60405180910390fd5b565b600b548260ff16612fdf61358a565b612fe99190614ca7565b111561302a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130219061565c565b60405180910390fd5b60008260ff1611613070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613067906156ee565b60405180910390fd5b61307d338360ff1661359d565b8160ff16600d8460405161309191906147d4565b908152602001604051809103902060008282546130ae9190614ca7565b92505081905550816010846040516130c691906147d4565b908152602001604051809103902060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661312c9190614dff565b92506101000a81548160ff021916908360ff1602179055506012339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167fc06d53176829f80e4279d4c047b74872abc9e10a4c210a24abff21de3d07774083836040516131ef92919061570e565b60405180910390a2600b5461320261358a565b10613234577f52df9fe5b9c9a7b0b4fdc2c9f89387959e35e4209c2a8d133a2b8165edad2a0460405160405180910390a15b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613311612f86565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613355613674565b6040516133629190613fd3565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613392612cff565b8786866040518563ffffffff1660e01b81526004016133b4949392919061578c565b6020604051808303816000875af19250505080156133f057506040513d601f19601f820116820180604052508101906133ed91906157ed565b60015b613469573d8060008114613420576040519150601f19603f3d011682016040523d82523d6000602084013e613425565b606091505b506000815103613461576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016134cb84613685565b01905060008167ffffffffffffffff8111156134ea576134e9613afa565b5b6040519080825280601f01601f19166020018201604052801561351c5781602001600182028036833780820191505090505b509050600082602001820190505b60011561357f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161357357613572614acf565b5b0494506000850361352a575b819350505050919050565b6000613594612d1e565b60005403905090565b6135b78282604051806020016040528060008152506137d8565b5050565b6135c3613875565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613607613674565b6040516136149190613fd3565b60405180910390a1565b60008082905060005b845181101561366957613654828683815181106136475761364661581a565b5b60200260200101516138be565b9150808061366190615849565b915050613627565b508091505092915050565b600033905090565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106136e3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816136d9576136d8614acf565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613720576d04ee2d6d415b85acef8100000000838161371657613715614acf565b5b0492506020810190505b662386f26fc10000831061374f57662386f26fc10000838161374557613744614acf565b5b0492506010810190505b6305f5e1008310613778576305f5e100838161376e5761376d614acf565b5b0492506008810190505b612710831061379d57612710838161379357613792614acf565b5b0492506004810190505b606483106137c057606483816137b6576137b5614acf565b5b0492506002810190505b600a83106137cf576001810190505b80915050919050565b6137e283836138e9565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461387057600080549050600083820390505b613822600086838060010194508661336c565b613858576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061380f57816000541461386d57600080fd5b50505b505050565b61387d611f92565b6138bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b3906158dd565b60405180910390fd5b565b60008183106138d6576138d18284613aa4565b6138e1565b6138e08383613aa4565b5b905092915050565b60008054905060008203613929576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139366000848385612ed8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506139ad8361399e6000866000612ede565b6139a785613abb565b17612f06565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613a4e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a13565b5060008203613a89576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a9f6000848385612f31565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b3282613ae9565b810181811067ffffffffffffffff82111715613b5157613b50613afa565b5b80604052505050565b6000613b64613acb565b9050613b708282613b29565b919050565b600067ffffffffffffffff821115613b9057613b8f613afa565b5b613b9982613ae9565b9050602081019050919050565b82818337600083830152505050565b6000613bc8613bc384613b75565b613b5a565b905082815260208101848484011115613be457613be3613ae4565b5b613bef848285613ba6565b509392505050565b600082601f830112613c0c57613c0b613adf565b5b8135613c1c848260208601613bb5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5082613c25565b9050919050565b613c6081613c45565b8114613c6b57600080fd5b50565b600081359050613c7d81613c57565b92915050565b600080fd5b600080fd5b60008083601f840112613ca357613ca2613adf565b5b8235905067ffffffffffffffff811115613cc057613cbf613c83565b5b602083019150836020820283011115613cdc57613cdb613c88565b5b9250929050565b60008060008060608587031215613cfd57613cfc613ad5565b5b600085013567ffffffffffffffff811115613d1b57613d1a613ada565b5b613d2787828801613bf7565b9450506020613d3887828801613c6e565b935050604085013567ffffffffffffffff811115613d5957613d58613ada565b5b613d6587828801613c8d565b925092505092959194509250565b60008115159050919050565b613d8881613d73565b82525050565b6000602082019050613da36000830184613d7f565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613dde81613da9565b8114613de957600080fd5b50565b600081359050613dfb81613dd5565b92915050565b600060208284031215613e1757613e16613ad5565b5b6000613e2584828501613dec565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613e6e57613e6d613e2e565b5b50565b6000819050613e7f82613e5d565b919050565b6000613e8f82613e71565b9050919050565b613e9f81613e84565b82525050565b6000602082019050613eba6000830184613e96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613efa578082015181840152602081019050613edf565b60008484015250505050565b6000613f1182613ec0565b613f1b8185613ecb565b9350613f2b818560208601613edc565b613f3481613ae9565b840191505092915050565b60006020820190508181036000830152613f598184613f06565b905092915050565b6000819050919050565b613f7481613f61565b8114613f7f57600080fd5b50565b600081359050613f9181613f6b565b92915050565b600060208284031215613fad57613fac613ad5565b5b6000613fbb84828501613f82565b91505092915050565b613fcd81613c45565b82525050565b6000602082019050613fe86000830184613fc4565b92915050565b6000806040838503121561400557614004613ad5565b5b600061401385828601613c6e565b925050602061402485828601613f82565b9150509250929050565b60006020828403121561404457614043613ad5565b5b600082013567ffffffffffffffff81111561406257614061613ada565b5b61406e84828501613bf7565b91505092915050565b61408081613f61565b82525050565b600060208201905061409b6000830184614077565b92915050565b6000819050919050565b6140b4816140a1565b81146140bf57600080fd5b50565b6000813590506140d1816140ab565b92915050565b600080600080606085870312156140f1576140f0613ad5565b5b60006140ff87828801613c6e565b945050602085013567ffffffffffffffff8111156141205761411f613ada565b5b61412c87828801613c8d565b9350935050604061413f878288016140c2565b91505092959194509250565b6000806040838503121561416257614161613ad5565b5b600083013567ffffffffffffffff8111156141805761417f613ada565b5b61418c85828601613bf7565b925050602061419d85828601613c6e565b9150509250929050565b600060ff82169050919050565b6141bd816141a7565b82525050565b60006020820190506141d860008301846141b4565b92915050565b600080604083850312156141f5576141f4613ad5565b5b600083013567ffffffffffffffff81111561421357614212613ada565b5b61421f85828601613bf7565b9250506020614230858286016140c2565b9150509250929050565b6000602082840312156142505761424f613ad5565b5b600061425e84828501613c6e565b91505092915050565b600060608201905061427c6000830186614077565b6142896020830185614077565b61429660408301846141b4565b949350505050565b6000806000606084860312156142b7576142b6613ad5565b5b60006142c586828701613c6e565b93505060206142d686828701613c6e565b92505060406142e786828701613f82565b9150509250925092565b6000806040838503121561430857614307613ad5565b5b600083013567ffffffffffffffff81111561432657614325613ada565b5b61433285828601613bf7565b925050602061434385828601613f82565b9150509250929050565b600060c08201905061436260008301896141b4565b61436f60208301886141b4565b61437c6040830187614077565b6143896060830186614077565b6143966080830185614077565b6143a360a08301846141b4565b979650505050505050565b6143b7816141a7565b81146143c257600080fd5b50565b6000813590506143d4816143ae565b92915050565b6000602082840312156143f0576143ef613ad5565b5b60006143fe848285016143c5565b91505092915050565b6000806040838503121561441e5761441d613ad5565b5b600083013567ffffffffffffffff81111561443c5761443b613ada565b5b61444885828601613bf7565b9250506020614459858286016143c5565b9150509250929050565b60008060008060008060c087890312156144805761447f613ad5565b5b600087013567ffffffffffffffff81111561449e5761449d613ada565b5b6144aa89828a01613bf7565b96505060206144bb89828a016143c5565b95505060406144cc89828a016143c5565b94505060606144dd89828a01613f82565b93505060806144ee89828a01613f82565b92505060a06144ff89828a016140c2565b9150509295509295509295565b60008060006040848603121561452557614524613ad5565b5b6000614533868287016143c5565b935050602084013567ffffffffffffffff81111561455457614553613ada565b5b61456086828701613c8d565b92509250509250925092565b61457581613d73565b811461458057600080fd5b50565b6000813590506145928161456c565b92915050565b600080604083850312156145af576145ae613ad5565b5b60006145bd85828601613c6e565b92505060206145ce85828601614583565b9150509250929050565b600067ffffffffffffffff8211156145f3576145f2613afa565b5b6145fc82613ae9565b9050602081019050919050565b600061461c614617846145d8565b613b5a565b90508281526020810184848401111561463857614637613ae4565b5b614643848285613ba6565b509392505050565b600082601f8301126146605761465f613adf565b5b8135614670848260208601614609565b91505092915050565b6000806000806080858703121561469357614692613ad5565b5b60006146a187828801613c6e565b94505060206146b287828801613c6e565b93505060406146c387828801613f82565b925050606085013567ffffffffffffffff8111156146e4576146e3613ada565b5b6146f08782880161464b565b91505092959194509250565b6000806040838503121561471357614712613ad5565b5b600083013567ffffffffffffffff81111561473157614730613ada565b5b61473d85828601613bf7565b925050602061474e85828601614583565b9150509250929050565b6000806040838503121561476f5761476e613ad5565b5b600061477d85828601613c6e565b925050602061478e85828601613c6e565b9150509250929050565b600081905092915050565b60006147ae82613ec0565b6147b88185614798565b93506147c8818560208601613edc565b80840191505092915050565b60006147e082846147a3565b915081905092915050565b7f4552524f523a204d696e7465722054797065206e6f7420666f756e642e000000600082015250565b6000614821601d83613ecb565b915061482c826147eb565b602082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489e57607f821691505b6020821081036148b1576148b0614857565b5b50919050565b60008160601b9050919050565b60006148cf826148b7565b9050919050565b60006148e1826148c4565b9050919050565b6148f96148f482613c45565b6148d6565b82525050565b600061490b82846148e8565b60148201915081905092915050565b7f4552524f523a204d696e74657273496e666f206e6f7420666f756e642e000000600082015250565b6000614950601d83613ecb565b915061495b8261491a565b602082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f4d696e74657273496e666f206e6f7420666f756e642e00000000000000000000600082015250565b60006149bc601683613ecb565b91506149c782614986565b602082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b7f4552524f523a204e6f2062616c616e636520746f2077697468647261772e0000600082015250565b6000614a28601e83613ecb565b9150614a33826149f2565b602082019050919050565b60006020820190508181036000830152614a5781614a1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a9882613f61565b9150614aa383613f61565b9250828202614ab181613f61565b91508282048414831517614ac857614ac7614a5e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b0982613f61565b9150614b1483613f61565b925082614b2457614b23614acf565b5b828204905092915050565b6000614b3a82613f61565b9150614b4583613f61565b9250828203905081811115614b5d57614b5c614a5e565b5b92915050565b600081905092915050565b50565b6000614b7e600083614b63565b9150614b8982614b6e565b600082019050919050565b6000614b9f82614b71565b9150819050919050565b7f4552524f523a204d696e74206973206e6f74206163746976652e000000000000600082015250565b6000614bdf601a83613ecb565b9150614bea82614ba9565b602082019050919050565b60006020820190508181036000830152614c0e81614bd2565b9050919050565b7f4552524f523a20596f7520617265206e6f7420616c6c6f77656420746f206d6960008201527f6e74206f6e20746869732070686173652e000000000000000000000000000000602082015250565b6000614c71603183613ecb565b9150614c7c82614c15565b604082019050919050565b60006020820190508181036000830152614ca081614c64565b9050919050565b6000614cb282613f61565b9150614cbd83613f61565b9250828201905080821115614cd557614cd4614a5e565b5b92915050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473206f60008201527f6e207468697320706861736520686173206265656e2072656163686564000000602082015250565b6000614d37603d83613ecb565b9150614d4282614cdb565b604082019050919050565b60006020820190508181036000830152614d6681614d2a565b9050919050565b7f4552524f523a204d6178696d756d206e756d626572206f66206d696e7473207060008201527f6572207472616e73616374696f6e206578636565646564000000000000000000602082015250565b6000614dc9603783613ecb565b9150614dd482614d6d565b604082019050919050565b60006020820190508181036000830152614df881614dbc565b9050919050565b6000614e0a826141a7565b9150614e15836141a7565b9250828201905060ff811115614e2e57614e2d614a5e565b5b92915050565b7f4552524f523a20596f7572206d6178696d756d204e4654206d696e742070657260008201527f2077616c6c6574206f6e207468697320706861736520686173206265656e207260208201527f6561636865642e00000000000000000000000000000000000000000000000000604082015250565b6000614eb6604783613ecb565b9150614ec182614e34565b606082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f4552524f523a20596f7520646f206e6f74206861766520656e6f75676820667560008201527f6e647320746f206d696e742e0000000000000000000000000000000000000000602082015250565b6000614f48602c83613ecb565b9150614f5382614eec565b604082019050919050565b60006020820190508181036000830152614f7781614f3b565b9050919050565b6000614f89826141a7565b9150614f94836141a7565b9250828203905060ff811115614fad57614fac614a5e565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061500f602f83613ecb565b915061501a82614fb3565b604082019050919050565b6000602082019050818103600083015261503e81615002565b9050919050565b60008190508160005260206000209050919050565b6000815461506781614886565b6150718186614798565b9450600182166000811461508c57600181146150a1576150d4565b60ff19831686528115158202860193506150d4565b6150aa85615045565b60005b838110156150cc578154818901526001820191506020810190506150ad565b838801955050505b50505092915050565b60006150e9828561505a565b91506150f582846147a3565b91508190509392505050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261514e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615111565b6151588683615111565b95508019841693508086168417925050509392505050565b6000819050919050565b600061519561519061518b84613f61565b615170565b613f61565b9050919050565b6000819050919050565b6151af8361517a565b6151c36151bb8261519c565b84845461511e565b825550505050565b600090565b6151d86151cb565b6151e38184846151a6565b505050565b5b81811015615207576151fc6000826151d0565b6001810190506151e9565b5050565b601f82111561524c5761521d81615045565b61522684615101565b81016020851015615235578190505b61524961524185615101565b8301826151e8565b50505b505050565b600082821c905092915050565b600061526f60001984600802615251565b1980831691505092915050565b6000615288838361525e565b9150826002028217905092915050565b6152a182613ec0565b67ffffffffffffffff8111156152ba576152b9613afa565b5b6152c48254614886565b6152cf82828561520b565b600060209050601f83116001811461530257600084156152f0578287015190505b6152fa858261527c565b865550615362565b601f19841661531086615045565b60005b8281101561533857848901518255600182019150602085019450602081019050615313565b868310156153555784890151615351601f89168261525e565b8355505b6001600288020188555050505b505050505050565b7f4552524f523a204e6f7420656e6f75676820746f6b656e730000000000000000600082015250565b60006153a0601883613ecb565b91506153ab8261536a565b602082019050919050565b600060208201905081810360008301526153cf81615393565b9050919050565b6000819050919050565b60006153fb6153f66153f1846153d6565b615170565b613f61565b9050919050565b61540b816153e0565b82525050565b600060408201905061542660008301856141b4565b6154336020830184615402565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615496602683613ecb565b91506154a18261543a565b604082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615502602083613ecb565b915061550d826154cc565b602082019050919050565b60006020820190508181036000830152615531816154f5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061556e601f83613ecb565b915061557982615538565b602082019050919050565b6000602082019050818103600083015261559d81615561565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006155da601083613ecb565b91506155e5826155a4565b602082019050919050565b60006020820190508181036000830152615609816155cd565b9050919050565b7f4552524f523a204e6f20746f6b656e73206c65667420746f206d696e74000000600082015250565b6000615646601d83613ecb565b915061565182615610565b602082019050919050565b6000602082019050818103600083015261567581615639565b9050919050565b7f4552524f523a204e756d626572206f6620746f6b656e732073686f756c64206260008201527f652067726561746572207468616e207a65726f00000000000000000000000000602082015250565b60006156d8603383613ecb565b91506156e38261567c565b604082019050919050565b60006020820190508181036000830152615707816156cb565b9050919050565b600060408201905061572360008301856141b4565b6157306020830184614077565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061575e82615737565b6157688185615742565b9350615778818560208601613edc565b61578181613ae9565b840191505092915050565b60006080820190506157a16000830187613fc4565b6157ae6020830186613fc4565b6157bb6040830185614077565b81810360608301526157cd8184615753565b905095945050505050565b6000815190506157e781613dd5565b92915050565b60006020828403121561580357615802613ad5565b5b6000615811848285016157d8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061585482613f61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361588657615885614a5e565b5b600182019050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006158c7601483613ecb565b91506158d282615891565b602082019050919050565b600060208201905081810360008301526158f6816158ba565b905091905056fea2646970667358221220f236bce9c4b1c81f067a75cbb7b366705e46aa040b8254deeb4d7053ed56335464736f6c63430008120033

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.