ETH Price: $3,117.12 (+0.62%)
Gas: 4 Gwei

Token

Holy Nephalem (NEPHALEMS)
 

Overview

Max Total Supply

2,000 NEPHALEMS

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 NEPHALEMS
0x40b6d9400c7ea7fbbe38d851727de2e958795c11
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HolyNephalem

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : HolyNephalem.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
import "./ECDSA.sol"; 
import "./ToStringLib.sol";

/*                                                                                
 *                                     ~~                                       
 *                                    .BG                                       
 *                                    J&&J                                      
 *                                   ~&&&&^                                     
 *                                   G&&&&P                                     
 *                                  J&&&&&&?                                    
 *                                 ^BB&&&&BB:                                   
 *                         :Y~     J?Y&&&&J??     ~Y.                           
 *                        7#&~     7:?&&&&7:!     ~&#!                          
 *                       Y&&B.       7&#&&!       .B&&J                         
 *                     .P&&&P        7&&&&!        P&&&5.                       
 *                     P&&#&5        ?&&&&7        5&#&&5                       
 *                    Y#YB#&Y        J&&&&?        5&&GY#J                      
 *                   ~P7^J&#P        Y&&&&J        P&&J^?P~                     
 *                   ^7: ~##G        G&###P       .B&&~ :!^                     
 *                       ^###^      ^######^      ~&&&^                         
 *                       ^&&&Y      5######Y      5&&#:                         
 *                       ^&&&#^    7########7    ~&&&#:                         
 *                       !&###B7^~Y########&&Y~^?#####~                         
 *                       Y&##############&&&&&&#&#####J                         
 *                      .G############&&&&&&##########G                         
 *                      ?###########&&&&&#############&7                        
 *                     .Y5PGGBB##&&&&&###########BBGGP5J.                       
 *                      .:^~!7?J5PB##########BP5J?7!~^:.                        
 *                             .:^7YG######GY7~:.                               
 *                                 .~YB##BY~.                                   
 *                                   .7BB?.                                     
 *                                     ??                                       
 *                                     ..                                       
 */                                                                              

contract HolyNephalem is ERC721A, Ownable, ReentrancyGuard {

    /* Variables */

    uint256 public mintPrice = 0.05 ether;
    uint128 public maxMintsPerTxn = 2;
    uint128 public maxSupply = 5050;
    string private _baseTokenURI;
    bool private _paused = true;
    bool private _privatePaused = true;
    address private _authority = address(0);

    /* Construction */

    constructor() ERC721A("Holy Nephalem", "NEPHALEMS") {
        constructDistribution();
    }

    /* Config */

    /// @notice Gets the total minted
    function totalMinted() external view returns (uint256) {
        return _totalMinted();
    }

    /// @notice Gets all required config variables
    function config() external view returns(uint256, uint128, uint128, uint256, bool, bool) {
        return (mintPrice, maxMintsPerTxn, maxSupply, _totalMinted(), _paused, _privatePaused);
    }

    /* Mint */

    /// @notice Private mint function that requires signature authorisation
    /// @dev Signature required mint function using ECDSA verification.
    function privateMint(uint256 quantity, bytes memory signature) external payable nonReentrant {
        require(_privatePaused == false, "Cannot mint while paused");
        require(msg.value == quantity * mintPrice, "Must send exact mint price.");
        require(quantity <= maxMintsPerTxn, "Cannot mint over maximum allowed mints per transaction.");
        require(isValidAccessMessage(signature), "Mint access not granted!");
        _internalMint(msg.sender, quantity);
    }

    /// @notice Public mint function that accepts a quantity.
    /// @dev Mint function with price and maxMints checks.
    function mint(uint256 quantity) external payable nonReentrant {
        require(_paused == false, "Cannot mint while paused");
        require(msg.value == quantity * mintPrice, "Must send exact mint price.");
        require(quantity <= maxMintsPerTxn, "Cannot mint over maximum allowed mints per transaction");
        _internalMint(msg.sender, quantity);
    }

    /// @notice Minting functionality for the contract owner.
    /// @dev Owner mint with no checks other than those included in _internalMint()
    function ownerMint(uint256 quantity) external onlyOwner nonReentrant {
        _internalMint(msg.sender, quantity);
    }

    /// @dev Internal mint function that runs basic max supply check.
    function _internalMint(address to, uint256 quantity) private {
        require(_totalMinted() + quantity <= maxSupply, "Exceeded max supply");
        _safeMint(to, quantity);
    }

    /* Whitelist */

    function isValidAccessMessage(bytes memory signature) private view returns (bool) {
        bytes32 internalHash = keccak256(bytes(interalAccessor()));
        bytes32 messageHash = ECDSA.toEthSignedMessageHash(internalHash);
        return _authority == ECDSA.recover(messageHash, signature);
    }

    function interalAccessor() private view returns(string memory) {
        return string(abi.encodePacked(ToStringLib.toString(address(this)), ToStringLib.toString(msg.sender)));
    }

    /* Metadata */

    /// @dev Override to pass in metadata URI
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    /* Ownership */

    /// @notice Gets all the token IDs of an owner
    /// @dev Should not be called internally. Runs a simple loop to calcute all the token IDs of a specific address.
    function tokensOfOwner(address owner) external view returns(uint256[] memory ownerTokens) {
        uint256 tokenCount = balanceOf(owner);

        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 total = totalSupply();
            uint256 resultIndex = 0;
            uint256 id;

            for (id = 0; id < total; id++) {
                if (ownerOf(id) == owner) {
                    result[resultIndex] = id;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    /// @notice Prevents ownership renouncement
    function renounceOwnership() public override onlyOwner {}

    /* Interface Support */

    function supportsInterface(bytes4 interfaceId) public view override(ERC721A) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /* Fallbacks */

    receive() payable external {}
    fallback() payable external {}

    /* Owner Functions */

    /// @notice Sets the mint price in WEI
    function setMintPrice(uint256 price) external onlyOwner {
        mintPrice = price;
    }

    /// @notice Sets the max supply of the collection
    function setMaxSupply(uint128 supply) external onlyOwner {
        maxSupply = supply;
    }

    /// @notice Sets the maximum number of tokens per mint
    function setMaxMintsPerTxn(uint128 maxMints) external onlyOwner {
        maxMintsPerTxn = maxMints;
    }

    /// @notice Sets the Token URI for the Metadata
    function setTokenURI(string memory uri) external onlyOwner {
        _baseTokenURI = uri;
    }

    /// @notice Sets the public mint to paused or not paused
    function setPaused(bool pause) external onlyOwner {
        _paused = pause;
    }

    /// @notice Sets the private mint to paused or not paused
    function setPrivatePaused(bool pause) external onlyOwner {
        _privatePaused = pause;
    }

    /// @notice Sets the whitelist address authority
    function setAuthority(address auth) external onlyOwner {
        _authority = auth;
    }

    /* Funds */

    uint16 private shareDenominator = 10000;
    uint16[] private shares;
    address[] private payees;

    /// @notice Assigns payees and their associated shares
    /// @dev Uses the addPayee function to assign the share distribution
    function constructDistribution() private {
        addPayee(0xFC93CA5348F580465352B775b11e52DB88F33023, 3850);
        addPayee(0xdCA2CfCBd294b86bE596CF3AE8ef4c5B2e52Afbd, 3850);
        addPayee(0xe893a628C73f7A4c7742A273328a545293B785ce, 1000);
        addPayee(0xb71BF456529a0392C48EFAE846Cf6d30C705561D, 500);
        addPayee(0x86212f0fe1944f37208e0A71c81c772440B89eF6, 800);
    }

    /// @notice Adds a payee to the distribution list
    /// @dev Ensures that both payee and share length match and also that there is no over assignment of shares.
    function addPayee(address payee, uint16 share) public onlyOwner {
        require(payees.length == shares.length, "Payee and shares must be the same length.");
        require(totalShares() + share <= shareDenominator, "Cannot overassign share distribution.");
        payees.push(payee);
        shares.push(share);
    }

    /// @notice Updates a payee to the distribution list
    /// @dev Ensures that both payee and share length match and also that there is no over assignment of shares.
    function updatePayee(address payee, uint16 share) external onlyOwner {
        require(address(this).balance == 0, "Must have a zero balance before updating payee shares");
        for (uint i=0; i < payees.length; i++) {
            if(payees[i] == payee) shares[i] = share;
        }
        require(totalShares() <= shareDenominator, "Cannot overassign share distribution.");
    }

    /// @notice Removes a payee from the distribution list
    /// @dev Sets a payees shares to zero, but does not remove them from the array. Payee will be ignored in the distributeFunds function
    function removePayee(address payee) external onlyOwner {
        for (uint i=0; i < payees.length; i++) {
            if(payees[i] == payee) shares[i] = 0;
        }
    }

    /// @notice Gets the total number of shares assigned to payees
    /// @dev Calculates total shares from shares[] array.
    function totalShares() private view returns(uint16) {
        uint16 sharesTotal = 0;
        for (uint i=0; i < shares.length; i++) {
            sharesTotal += shares[i];
        }
        return sharesTotal;
    }

    /// @notice Fund distribution function.
    /// @dev Uses the payees and shares array to calculate 
    function distributeFunds() external onlyOwner nonReentrant {

        uint currentBalance = address(this).balance;

        for (uint i=0; i < payees.length; i++) {
            if(shares[i] == 0) continue;
            uint share = (shares[i] * currentBalance) / shareDenominator;
            (bool sent,) = payable(payees[i]).call{value : share}("");
            require(sent, "Failed to distribute to payee.");
        }

        if(address(this).balance > 0) {
            (bool sent,) = msg.sender.call{value: address(this).balance}("");
            require(sent, "Failed to distribute remaining funds.");
        }
    }
}

File 2 of 9 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 3 of 9 : ToStringLib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


library ToStringLib {
    
    function toString(address account) internal pure returns(string memory) {
        return toString(abi.encodePacked(account));
    }

    function toString(uint256 value) internal pure returns(string memory) {
        return toString(abi.encodePacked(value));
    }

    function toString(bytes32 value) internal pure returns(string memory) {
        return toString(abi.encodePacked(value));
    }

    function toString(bytes memory data) internal pure returns(string memory) {
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < data.length; i++) {
            str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))];
            str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }
}

File 4 of 9 : 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 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 9 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

File 8 of 9 : 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 9 : 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"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint16","name":"share","type":"uint16"}],"name":"addPayee","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":"config","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint128","name":"","type":"uint128"},{"internalType":"uint128","name":"","type":"uint128"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributeFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTxn","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"}],"name":"removePayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"auth","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"maxMints","type":"uint128"}],"name":"setMaxMintsPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"supply","type":"uint128"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"pause","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"pause","type":"bool"}],"name":"setPrivatePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint16","name":"share","type":"uint16"}],"name":"updatePayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266b1a2bc2ec50000600a556002600b60006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506113ba600b60106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612710600d60166101000a81548161ffff021916908361ffff1602179055503480156200012857600080fd5b506040518060400160405280600d81526020017f486f6c79204e657068616c656d000000000000000000000000000000000000008152506040518060400160405280600981526020017f4e455048414c454d5300000000000000000000000000000000000000000000008152508160029080519060200190620001ad929190620006a3565b508060039080519060200190620001c6929190620006a3565b50620001d76200021d60201b60201c565b6000819055505050620001ff620001f36200022260201b60201c565b6200022a60201b60201c565b600160098190555062000217620002f060201b60201c565b62000a3f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200031873fc93ca5348f580465352b775b11e52db88f33023610f0a620003ba60201b60201c565b6200034073dca2cfcbd294b86be596cf3ae8ef4c5b2e52afbd610f0a620003ba60201b60201c565b6200036873e893a628c73f7a4c7742a273328a545293b785ce6103e8620003ba60201b60201c565b6200039073b71bf456529a0392c48efae846cf6d30c705561d6101f4620003ba60201b60201c565b620003b87386212f0fe1944f37208e0a71c81c772440b89ef6610320620003ba60201b60201c565b565b620003ca6200054460201b60201c565b600e80549050600f805490501462000419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041090620007c8565b60405180910390fd5b600d60169054906101000a900461ffff1661ffff16816200043f620005d560201b60201c565b6200044b91906200083f565b61ffff16111562000493576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048a906200080c565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e8190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055505050565b620005546200022260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200057a6200067960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ca90620007ea565b60405180910390fd5b565b6000806000905060005b600e805490508110156200067157600e818154811062000628577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16826200065991906200083f565b915080806200066890620008cc565b915050620005df565b508091505090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006b19062000896565b90600052602060002090601f016020900481019282620006d5576000855562000721565b82601f10620006f057805160ff191683800117855562000721565b8280016001018555821562000721579182015b828111156200072057825182559160200191906001019062000703565b5b50905062000730919062000734565b5090565b5b808211156200074f57600081600090555060010162000735565b5090565b6000620007626029836200082e565b91506200076f8262000978565b604082019050919050565b6000620007896020836200082e565b91506200079682620009c7565b602082019050919050565b6000620007b06025836200082e565b9150620007bd82620009f0565b604082019050919050565b60006020820190508181036000830152620007e38162000753565b9050919050565b6000602082019050818103600083015262000805816200077a565b9050919050565b600060208201905081810360008301526200082781620007a1565b9050919050565b600082825260208201905092915050565b60006200084c826200087e565b915062000859836200087e565b92508261ffff038211156200087357620008726200091a565b5b828201905092915050565b600061ffff82169050919050565b6000819050919050565b60006002820490506001821680620008af57607f821691505b60208210811415620008c657620008c562000949565b5b50919050565b6000620008d9826200088c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200090f576200090e6200091a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f506179656520616e6420736861726573206d757374206265207468652073616d60008201527f65206c656e6774682e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74206f76657261737369676e20736861726520646973747269627560008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b614f258062000a4f6000396000f3fe60806040526004361061021e5760003560e01c80637a9e5e4b11610123578063a2309ff8116100ab578063e0df5b6f1161006f578063e0df5b6f14610764578063e985e9c51461078d578063f19e75d4146107ca578063f2fde38b146107f3578063f4a0a5281461081c57610225565b8063a2309ff81461068a578063af54001e146106b5578063b88d4fde146106e0578063c87b56dd146106fc578063d5abeb011461073957610225565b806392eca5b4116100f257806392eca5b4146105d557806395d89b41146105f15780639ce8a55b1461061c578063a0712d6814610645578063a22cb4651461066157610225565b80637a9e5e4b1461051b5780638462151c146105445780638ac068a2146105815780638da5cb5b146105aa57610225565b80633a6a4d2e116101a65780636817c76c116101755780636817c76c1461044357806370a082311461046e578063715018a6146104ab5780637439f147146104c257806379502c55146104eb57610225565b80633a6a4d2e146103aa5780633ed35855146103c157806342842e0e146103ea5780636352211e1461040657610225565b806316c38b3c116101ed57806316c38b3c146102e857806318160ddd1461031157806323b872dd1461033c5780632cb9672b14610358578063328fc0ed1461038157610225565b806301ffc9a71461022757806306fdde0314610264578063081812fc1461028f578063095ea7b3146102cc57610225565b3661022557005b005b34801561023357600080fd5b5061024e60048036038101906102499190613b2e565b610845565b60405161025b91906141d6565b60405180910390f35b34801561027057600080fd5b50610279610857565b6040516102869190614236565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613bea565b6108e9565b6040516102c3919061414d565b60405180910390f35b6102e660048036038101906102e19190613ac9565b610968565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190613b05565b610aac565b005b34801561031d57600080fd5b50610326610ad1565b60405161033391906144b3565b60405180910390f35b61035660048036038101906103519190613987565b610ae8565b005b34801561036457600080fd5b5061037f600480360381019061037a9190613b05565b610e0d565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613a8d565b610e32565b005b3480156103b657600080fd5b506103bf61100a565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613922565b61135d565b005b61040460048036038101906103ff9190613987565b611490565b005b34801561041257600080fd5b5061042d60048036038101906104289190613bea565b6114b0565b60405161043a919061414d565b60405180910390f35b34801561044f57600080fd5b506104586114c2565b60405161046591906144b3565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613922565b6114c8565b6040516104a291906144b3565b60405180910390f35b3480156104b757600080fd5b506104c0611581565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613bc1565b61158b565b005b3480156104f757600080fd5b506105006115cf565b604051610512969594939291906144ce565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613922565b611655565b005b34801561055057600080fd5b5061056b60048036038101906105669190613922565b6116a1565b60405161057891906141b4565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613bc1565b61186e565b005b3480156105b657600080fd5b506105bf6118b2565b6040516105cc919061414d565b60405180910390f35b6105ef60048036038101906105ea9190613c13565b6118dc565b005b3480156105fd57600080fd5b50610606611aa0565b6040516106139190614236565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190613a8d565b611b32565b005b61065f600480360381019061065a9190613bea565b611ca4565b005b34801561066d57600080fd5b5061068860048036038101906106839190613a51565b611e1f565b005b34801561069657600080fd5b5061069f611f2a565b6040516106ac91906144b3565b60405180910390f35b3480156106c157600080fd5b506106ca611f39565b6040516106d79190614498565b60405180910390f35b6106fa60048036038101906106f591906139d6565b611f5b565b005b34801561070857600080fd5b50610723600480360381019061071e9190613bea565b611fce565b6040516107309190614236565b60405180910390f35b34801561074557600080fd5b5061074e61206d565b60405161075b9190614498565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190613b80565b61208f565b005b34801561079957600080fd5b506107b460048036038101906107af919061394b565b6120b1565b6040516107c191906141d6565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bea565b612145565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190613922565b6121b0565b005b34801561082857600080fd5b50610843600480360381019061083e9190613bea565b612234565b005b600061085082612246565b9050919050565b6060600280546108669061484d565b80601f01602080910402602001604051908101604052809291908181526020018280546108929061484d565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f4826122d8565b61092a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610973826114b0565b90508073ffffffffffffffffffffffffffffffffffffffff16610994612337565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576109c0816109bb612337565b6120b1565b6109f6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ab461233f565b80600d60006101000a81548160ff02191690831515021790555050565b6000610adb6123bd565b6001546000540303905090565b6000610af3826123c2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6684612490565b91509150610b7c8187610b77612337565b6124b7565b610bc857610b9186610b8c612337565b6120b1565b610bc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3c86868660016124fb565b8015610c4757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1585610cf1888887612501565b7c020000000000000000000000000000000000000000000000000000000017612529565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d9d576000600185019050600060046000838152602001908152602001600020541415610d9b576000548114610d9a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e058686866001612554565b505050505050565b610e1561233f565b80600d60016101000a81548160ff02191690831515021790555050565b610e3a61233f565b60004714610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906143b8565b60405180910390fd5b60005b600f80549050811015610fa3578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110610ede577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f905781600e8281548110610f60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505b8080610f9b906148b0565b915050610e80565b50600d60169054906101000a900461ffff1661ffff16610fc161255a565b61ffff161115611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90614438565b60405180910390fd5b5050565b61101261233f565b60026009541415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90614458565b60405180910390fd5b6002600981905550600047905060005b600f8054905081101561129a576000600e82815481106110b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1614156110e457611287565b6000600d60169054906101000a900461ffff1661ffff1683600e8481548110611136577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661116891906146fc565b61117291906146cb565b90506000600f83815481106111b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516111fe90614138565b60006040518083038185875af1925050503d806000811461123b576040519150601f19603f3d011682016040523d82523d6000602084013e611240565b606091505b5050905080611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90614478565b60405180910390fd5b50505b8080611292906148b0565b915050611068565b5060004711156113525760003373ffffffffffffffffffffffffffffffffffffffff16476040516112ca90614138565b60006040518083038185875af1925050503d8060008114611307576040519150601f19603f3d011682016040523d82523d6000602084013e61130c565b606091505b5050905080611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790614418565b60405180910390fd5b505b506001600981905550565b61136561233f565b60005b600f8054905081101561148c578173ffffffffffffffffffffffffffffffffffffffff16600f82815481106113c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611479576000600e8281548110611449577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505b8080611484906148b0565b915050611368565b5050565b6114ab83838360405180602001604052806000815250611f5b565b505050565b60006114bb826123c2565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611530576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61158961233f565b565b61159361233f565b80600b60006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b600080600080600080600a54600b60009054906101000a90046fffffffffffffffffffffffffffffffff16600b60109054906101000a90046fffffffffffffffffffffffffffffffff166116216125f7565b600d60009054906101000a900460ff16600d60019054906101000a900460ff16955095509550955095509550909192939495565b61165d61233f565b80600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060006116ae836114c8565b9050600081141561173157600067ffffffffffffffff8111156116fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117285781602001602082028036833780820191505090505b50915050611869565b60008167ffffffffffffffff811115611773577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117a15781602001602082028036833780820191505090505b50905060006117ae610ad1565b90506000805b82811015611860578673ffffffffffffffffffffffffffffffffffffffff166117dc826114b0565b73ffffffffffffffffffffffffffffffffffffffff16141561184d5780848381518110611832577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180611849906148b0565b9250505b8080611858906148b0565b9150506117b4565b83955050505050505b919050565b61187661233f565b80600b60106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026009541415611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990614458565b60405180910390fd5b600260098190555060001515600d60019054906101000a900460ff16151514611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906142d8565b60405180910390fd5b600a548261198e91906146fc565b34146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614318565b60405180910390fd5b600b60009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990614378565b60405180910390fd5b611a4b8161260a565b611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190614358565b60405180910390fd5b611a94338361268e565b60016009819055505050565b606060038054611aaf9061484d565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb9061484d565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b5050505050905090565b611b3a61233f565b600e80549050600f8054905014611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d906142f8565b60405180910390fd5b600d60169054906101000a900461ffff1661ffff1681611ba461255a565b611bae919061463d565b61ffff161115611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90614438565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e8190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055505050565b60026009541415611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614458565b60405180910390fd5b600260098190555060001515600d60009054906101000a900460ff16151514611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f906142d8565b60405180910390fd5b600a5481611d5691906146fc565b3414611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614318565b60405180910390fd5b600b60009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811115611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e01906142b8565b60405180910390fd5b611e14338261268e565b600160098190555050565b8060076000611e2c612337565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ed9612337565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f1e91906141d6565b60405180910390a35050565b6000611f346125f7565b905090565b600b60009054906101000a90046fffffffffffffffffffffffffffffffff1681565b611f66848484610ae8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fc857611f9184848484612721565b611fc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611fd9826122d8565b61200f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612019612881565b905060008151141561203a5760405180602001604052806000815250612065565b8061204484612913565b6040516020016120559291906140ee565b6040516020818303038152906040525b915050919050565b600b60109054906101000a90046fffffffffffffffffffffffffffffffff1681565b61209761233f565b80600c90805190602001906120ad92919061371c565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214d61233f565b60026009541415612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614458565b60405180910390fd5b60026009819055506121a5338261268e565b600160098190555050565b6121b861233f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90614298565b60405180910390fd5b6122318161296c565b50565b61223c61233f565b80600a8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122a157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122d15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000816122e36123bd565b111580156122f2575060005482105b8015612330575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612347612a32565b73ffffffffffffffffffffffffffffffffffffffff166123656118b2565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b2906143d8565b60405180910390fd5b565b600090565b600080829050806123d16123bd565b11612459576000548110156124585760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612456575b600081141561244c576004600083600190039350838152602001908152602001600020549050612421565b809250505061248b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612518868684612a3a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000905060005b600e805490508110156125ef57600e81815481106125ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16826125da919061463d565b915080806125e7906148b0565b915050612564565b508091505090565b60006126016123bd565b60005403905090565b600080612615612a43565b805190602001209050600061262982612a7c565b90506126358185612aac565b73ffffffffffffffffffffffffffffffffffffffff16600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161492505050919050565b600b60109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16816126c86125f7565b6126d29190614675565b1115612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a906143f8565b60405180910390fd5b61271d8282612ad3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612747612337565b8786866040518563ffffffff1660e01b81526004016127699493929190614168565b602060405180830381600087803b15801561278357600080fd5b505af19250505080156127b457506040513d601f19601f820116820180604052508101906127b19190613b57565b60015b61282e573d80600081146127e4576040519150601f19603f3d011682016040523d82523d6000602084013e6127e9565b606091505b50600081511415612826576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546128909061484d565b80601f01602080910402602001604051908101604052809291908181526020018280546128bc9061484d565b80156129095780601f106128de57610100808354040283529160200191612909565b820191906000526020600020905b8154815290600101906020018083116128ec57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561295757600184039350600a81066030018453600a810490508061295257612957565b61292c565b50828103602084039350808452505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60009392505050565b6060612a4e30612af1565b612a5733612af1565b604051602001612a689291906140ee565b604051602081830303815290604052905090565b600081604051602001612a8f9190614112565b604051602081830303815290604052805190602001209050919050565b6000806000612abb8585612b22565b91509150612ac881612ba5565b819250505092915050565b612aed828260405180602001604052806000815250612ef6565b5050565b6060612b1b82604051602001612b0791906140d3565b604051602081830303815290604052612f93565b9050919050565b600080604183511415612b645760008060006020860151925060408601519150606086015160001a9050612b58878285856133e3565b94509450505050612b9e565b604083511415612b95576000806020850151915060408501519050612b8a8683836134f0565b935093505050612b9e565b60006002915091505b9250929050565b60006004811115612bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c18577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612c2357612ef3565b60016004811115612c5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c96577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce90614258565b60405180910390fd5b60026004811115612d11577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612d4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290614278565b60405180910390fd5b60036004811115612dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612dfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3690614338565b60405180910390fd5b600480811115612e78577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612eb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee990614398565b60405180910390fd5b5b50565b612f00838361354f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f8e57600080549050600083820390505b612f406000868380600101945086612721565b612f76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612f2d578160005414612f8b57600080fd5b50505b505050565b606060006040518060400160405280601081526020017f30313233343536373839616263646566000000000000000000000000000000008152509050600060028451612fdf91906146fc565b6002612feb9190614675565b67ffffffffffffffff81111561302a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561305c5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106130ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613144577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b84518110156133d8578260048683815181106131bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110613227577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361324091906146fc565b600261324c9190614675565b81518110613283577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b8683815181106132f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff168151811061333a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361335391906146fc565b600361335f9190614675565b81518110613396577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806133d0906148b0565b915050613176565b508092505050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561341e5760006003915091506134e7565b601b8560ff16141580156134365750601c8560ff1614155b156134485760006004915091506134e7565b60006001878787876040516000815260200160405260405161346d94939291906141f1565b6020604051602081039080840390855afa15801561348f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134de576000600192509250506134e7565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6135339190614675565b9050613541878288856133e3565b935093505050935093915050565b6000805490506000821415613590576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61359d60008483856124fb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613614836136056000866000612501565b61360e8561370c565b17612529565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146136b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061367a565b5060008214156136f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506137076000848385612554565b505050565b60006001821460e11b9050919050565b8280546137289061484d565b90600052602060002090601f01602090048101928261374a5760008555613791565b82601f1061376357805160ff1916838001178555613791565b82800160010185558215613791579182015b82811115613790578251825591602001919060010190613775565b5b50905061379e91906137a2565b5090565b5b808211156137bb5760008160009055506001016137a3565b5090565b60006137d26137cd84614554565b61452f565b9050828152602081018484840111156137ea57600080fd5b6137f584828561480b565b509392505050565b600061381061380b84614585565b61452f565b90508281526020810184848401111561382857600080fd5b61383384828561480b565b509392505050565b60008135905061384a81614e65565b92915050565b60008135905061385f81614e7c565b92915050565b60008135905061387481614e93565b92915050565b60008151905061388981614e93565b92915050565b600082601f8301126138a057600080fd5b81356138b08482602086016137bf565b91505092915050565b600082601f8301126138ca57600080fd5b81356138da8482602086016137fd565b91505092915050565b6000813590506138f281614eaa565b92915050565b60008135905061390781614ec1565b92915050565b60008135905061391c81614ed8565b92915050565b60006020828403121561393457600080fd5b60006139428482850161383b565b91505092915050565b6000806040838503121561395e57600080fd5b600061396c8582860161383b565b925050602061397d8582860161383b565b9150509250929050565b60008060006060848603121561399c57600080fd5b60006139aa8682870161383b565b93505060206139bb8682870161383b565b92505060406139cc8682870161390d565b9150509250925092565b600080600080608085870312156139ec57600080fd5b60006139fa8782880161383b565b9450506020613a0b8782880161383b565b9350506040613a1c8782880161390d565b925050606085013567ffffffffffffffff811115613a3957600080fd5b613a458782880161388f565b91505092959194509250565b60008060408385031215613a6457600080fd5b6000613a728582860161383b565b9250506020613a8385828601613850565b9150509250929050565b60008060408385031215613aa057600080fd5b6000613aae8582860161383b565b9250506020613abf858286016138f8565b9150509250929050565b60008060408385031215613adc57600080fd5b6000613aea8582860161383b565b9250506020613afb8582860161390d565b9150509250929050565b600060208284031215613b1757600080fd5b6000613b2584828501613850565b91505092915050565b600060208284031215613b4057600080fd5b6000613b4e84828501613865565b91505092915050565b600060208284031215613b6957600080fd5b6000613b778482850161387a565b91505092915050565b600060208284031215613b9257600080fd5b600082013567ffffffffffffffff811115613bac57600080fd5b613bb8848285016138b9565b91505092915050565b600060208284031215613bd357600080fd5b6000613be1848285016138e3565b91505092915050565b600060208284031215613bfc57600080fd5b6000613c0a8482850161390d565b91505092915050565b60008060408385031215613c2657600080fd5b6000613c348582860161390d565b925050602083013567ffffffffffffffff811115613c5157600080fd5b613c5d8582860161388f565b9150509250929050565b6000613c7383836140a6565b60208301905092915050565b613c8881614756565b82525050565b613c9f613c9a82614756565b6148f9565b82525050565b6000613cb0826145c6565b613cba81856145f4565b9350613cc5836145b6565b8060005b83811015613cf6578151613cdd8882613c67565b9750613ce8836145e7565b925050600181019050613cc9565b5085935050505092915050565b613d0c81614768565b82525050565b613d1b81614774565b82525050565b613d32613d2d82614774565b61490b565b82525050565b6000613d43826145d1565b613d4d8185614605565b9350613d5d81856020860161481a565b613d66816149e3565b840191505092915050565b6000613d7c826145dc565b613d868185614621565b9350613d9681856020860161481a565b613d9f816149e3565b840191505092915050565b6000613db5826145dc565b613dbf8185614632565b9350613dcf81856020860161481a565b80840191505092915050565b6000613de8601883614621565b9150613df382614a01565b602082019050919050565b6000613e0b601f83614621565b9150613e1682614a2a565b602082019050919050565b6000613e2e601c83614632565b9150613e3982614a53565b601c82019050919050565b6000613e51602683614621565b9150613e5c82614a7c565b604082019050919050565b6000613e74603683614621565b9150613e7f82614acb565b604082019050919050565b6000613e97601883614621565b9150613ea282614b1a565b602082019050919050565b6000613eba602983614621565b9150613ec582614b43565b604082019050919050565b6000613edd601b83614621565b9150613ee882614b92565b602082019050919050565b6000613f00602283614621565b9150613f0b82614bbb565b604082019050919050565b6000613f23601883614621565b9150613f2e82614c0a565b602082019050919050565b6000613f46603783614621565b9150613f5182614c33565b604082019050919050565b6000613f69602283614621565b9150613f7482614c82565b604082019050919050565b6000613f8c603583614621565b9150613f9782614cd1565b604082019050919050565b6000613faf602083614621565b9150613fba82614d20565b602082019050919050565b6000613fd2601383614621565b9150613fdd82614d49565b602082019050919050565b6000613ff5602583614621565b915061400082614d72565b604082019050919050565b6000614018600083614616565b915061402382614dc1565b600082019050919050565b600061403b602583614621565b915061404682614dc4565b604082019050919050565b600061405e601f83614621565b915061406982614e13565b602082019050919050565b6000614081601e83614621565b915061408c82614e3c565b602082019050919050565b6140a0816147aa565b82525050565b6140af816147f4565b82525050565b6140be816147f4565b82525050565b6140cd816147fe565b82525050565b60006140df8284613c8e565b60148201915081905092915050565b60006140fa8285613daa565b91506141068284613daa565b91508190509392505050565b600061411d82613e21565b91506141298284613d21565b60208201915081905092915050565b60006141438261400b565b9150819050919050565b60006020820190506141626000830184613c7f565b92915050565b600060808201905061417d6000830187613c7f565b61418a6020830186613c7f565b61419760408301856140b5565b81810360608301526141a98184613d38565b905095945050505050565b600060208201905081810360008301526141ce8184613ca5565b905092915050565b60006020820190506141eb6000830184613d03565b92915050565b60006080820190506142066000830187613d12565b61421360208301866140c4565b6142206040830185613d12565b61422d6060830184613d12565b95945050505050565b600060208201905081810360008301526142508184613d71565b905092915050565b6000602082019050818103600083015261427181613ddb565b9050919050565b6000602082019050818103600083015261429181613dfe565b9050919050565b600060208201905081810360008301526142b181613e44565b9050919050565b600060208201905081810360008301526142d181613e67565b9050919050565b600060208201905081810360008301526142f181613e8a565b9050919050565b6000602082019050818103600083015261431181613ead565b9050919050565b6000602082019050818103600083015261433181613ed0565b9050919050565b6000602082019050818103600083015261435181613ef3565b9050919050565b6000602082019050818103600083015261437181613f16565b9050919050565b6000602082019050818103600083015261439181613f39565b9050919050565b600060208201905081810360008301526143b181613f5c565b9050919050565b600060208201905081810360008301526143d181613f7f565b9050919050565b600060208201905081810360008301526143f181613fa2565b9050919050565b6000602082019050818103600083015261441181613fc5565b9050919050565b6000602082019050818103600083015261443181613fe8565b9050919050565b600060208201905081810360008301526144518161402e565b9050919050565b6000602082019050818103600083015261447181614051565b9050919050565b6000602082019050818103600083015261449181614074565b9050919050565b60006020820190506144ad6000830184614097565b92915050565b60006020820190506144c860008301846140b5565b92915050565b600060c0820190506144e360008301896140b5565b6144f06020830188614097565b6144fd6040830187614097565b61450a60608301866140b5565b6145176080830185613d03565b61452460a0830184613d03565b979650505050505050565b600061453961454a565b9050614545828261487f565b919050565b6000604051905090565b600067ffffffffffffffff82111561456f5761456e6149b4565b5b614578826149e3565b9050602081019050919050565b600067ffffffffffffffff8211156145a05761459f6149b4565b5b6145a9826149e3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614648826147c6565b9150614653836147c6565b92508261ffff0382111561466a57614669614927565b5b828201905092915050565b6000614680826147f4565b915061468b836147f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146c0576146bf614927565b5b828201905092915050565b60006146d6826147f4565b91506146e1836147f4565b9250826146f1576146f0614956565b5b828204905092915050565b6000614707826147f4565b9150614712836147f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561474b5761474a614927565b5b828202905092915050565b6000614761826147d4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561483857808201518184015260208101905061481d565b83811115614847576000848401525b50505050565b6000600282049050600182168061486557607f821691505b6020821081141561487957614878614985565b5b50919050565b614888826149e3565b810181811067ffffffffffffffff821117156148a7576148a66149b4565b5b80604052505050565b60006148bb826147f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ee576148ed614927565b5b600182019050919050565b600061490482614915565b9050919050565b6000819050919050565b6000614920826149f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206f766572206d6178696d756d20616c6c6f77656460008201527f206d696e747320706572207472616e73616374696f6e00000000000000000000602082015250565b7f43616e6e6f74206d696e74207768696c65207061757365640000000000000000600082015250565b7f506179656520616e6420736861726573206d757374206265207468652073616d60008201527f65206c656e6774682e0000000000000000000000000000000000000000000000602082015250565b7f4d7573742073656e64206578616374206d696e742070726963652e0000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616363657373206e6f74206772616e746564210000000000000000600082015250565b7f43616e6e6f74206d696e74206f766572206d6178696d756d20616c6c6f77656460008201527f206d696e747320706572207472616e73616374696f6e2e000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d75737420686176652061207a65726f2062616c616e6365206265666f72652060008201527f7570646174696e67207061796565207368617265730000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b7f4661696c656420746f20646973747269627574652072656d61696e696e67206660008201527f756e64732e000000000000000000000000000000000000000000000000000000602082015250565b50565b7f43616e6e6f74206f76657261737369676e20736861726520646973747269627560008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4661696c656420746f206469737472696275746520746f2070617965652e0000600082015250565b614e6e81614756565b8114614e7957600080fd5b50565b614e8581614768565b8114614e9057600080fd5b50565b614e9c8161477e565b8114614ea757600080fd5b50565b614eb3816147aa565b8114614ebe57600080fd5b50565b614eca816147c6565b8114614ed557600080fd5b50565b614ee1816147f4565b8114614eec57600080fd5b5056fea2646970667358221220caa4c9849364c62fdc048f0070d18a72689cd900176f66d13f3445c52793761a64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637a9e5e4b11610123578063a2309ff8116100ab578063e0df5b6f1161006f578063e0df5b6f14610764578063e985e9c51461078d578063f19e75d4146107ca578063f2fde38b146107f3578063f4a0a5281461081c57610225565b8063a2309ff81461068a578063af54001e146106b5578063b88d4fde146106e0578063c87b56dd146106fc578063d5abeb011461073957610225565b806392eca5b4116100f257806392eca5b4146105d557806395d89b41146105f15780639ce8a55b1461061c578063a0712d6814610645578063a22cb4651461066157610225565b80637a9e5e4b1461051b5780638462151c146105445780638ac068a2146105815780638da5cb5b146105aa57610225565b80633a6a4d2e116101a65780636817c76c116101755780636817c76c1461044357806370a082311461046e578063715018a6146104ab5780637439f147146104c257806379502c55146104eb57610225565b80633a6a4d2e146103aa5780633ed35855146103c157806342842e0e146103ea5780636352211e1461040657610225565b806316c38b3c116101ed57806316c38b3c146102e857806318160ddd1461031157806323b872dd1461033c5780632cb9672b14610358578063328fc0ed1461038157610225565b806301ffc9a71461022757806306fdde0314610264578063081812fc1461028f578063095ea7b3146102cc57610225565b3661022557005b005b34801561023357600080fd5b5061024e60048036038101906102499190613b2e565b610845565b60405161025b91906141d6565b60405180910390f35b34801561027057600080fd5b50610279610857565b6040516102869190614236565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613bea565b6108e9565b6040516102c3919061414d565b60405180910390f35b6102e660048036038101906102e19190613ac9565b610968565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190613b05565b610aac565b005b34801561031d57600080fd5b50610326610ad1565b60405161033391906144b3565b60405180910390f35b61035660048036038101906103519190613987565b610ae8565b005b34801561036457600080fd5b5061037f600480360381019061037a9190613b05565b610e0d565b005b34801561038d57600080fd5b506103a860048036038101906103a39190613a8d565b610e32565b005b3480156103b657600080fd5b506103bf61100a565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613922565b61135d565b005b61040460048036038101906103ff9190613987565b611490565b005b34801561041257600080fd5b5061042d60048036038101906104289190613bea565b6114b0565b60405161043a919061414d565b60405180910390f35b34801561044f57600080fd5b506104586114c2565b60405161046591906144b3565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613922565b6114c8565b6040516104a291906144b3565b60405180910390f35b3480156104b757600080fd5b506104c0611581565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613bc1565b61158b565b005b3480156104f757600080fd5b506105006115cf565b604051610512969594939291906144ce565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190613922565b611655565b005b34801561055057600080fd5b5061056b60048036038101906105669190613922565b6116a1565b60405161057891906141b4565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613bc1565b61186e565b005b3480156105b657600080fd5b506105bf6118b2565b6040516105cc919061414d565b60405180910390f35b6105ef60048036038101906105ea9190613c13565b6118dc565b005b3480156105fd57600080fd5b50610606611aa0565b6040516106139190614236565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e9190613a8d565b611b32565b005b61065f600480360381019061065a9190613bea565b611ca4565b005b34801561066d57600080fd5b5061068860048036038101906106839190613a51565b611e1f565b005b34801561069657600080fd5b5061069f611f2a565b6040516106ac91906144b3565b60405180910390f35b3480156106c157600080fd5b506106ca611f39565b6040516106d79190614498565b60405180910390f35b6106fa60048036038101906106f591906139d6565b611f5b565b005b34801561070857600080fd5b50610723600480360381019061071e9190613bea565b611fce565b6040516107309190614236565b60405180910390f35b34801561074557600080fd5b5061074e61206d565b60405161075b9190614498565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190613b80565b61208f565b005b34801561079957600080fd5b506107b460048036038101906107af919061394b565b6120b1565b6040516107c191906141d6565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bea565b612145565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190613922565b6121b0565b005b34801561082857600080fd5b50610843600480360381019061083e9190613bea565b612234565b005b600061085082612246565b9050919050565b6060600280546108669061484d565b80601f01602080910402602001604051908101604052809291908181526020018280546108929061484d565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f4826122d8565b61092a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610973826114b0565b90508073ffffffffffffffffffffffffffffffffffffffff16610994612337565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576109c0816109bb612337565b6120b1565b6109f6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ab461233f565b80600d60006101000a81548160ff02191690831515021790555050565b6000610adb6123bd565b6001546000540303905090565b6000610af3826123c2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6684612490565b91509150610b7c8187610b77612337565b6124b7565b610bc857610b9186610b8c612337565b6120b1565b610bc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3c86868660016124fb565b8015610c4757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1585610cf1888887612501565b7c020000000000000000000000000000000000000000000000000000000017612529565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d9d576000600185019050600060046000838152602001908152602001600020541415610d9b576000548114610d9a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e058686866001612554565b505050505050565b610e1561233f565b80600d60016101000a81548160ff02191690831515021790555050565b610e3a61233f565b60004714610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906143b8565b60405180910390fd5b60005b600f80549050811015610fa3578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110610ede577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f905781600e8281548110610f60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505b8080610f9b906148b0565b915050610e80565b50600d60169054906101000a900461ffff1661ffff16610fc161255a565b61ffff161115611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90614438565b60405180910390fd5b5050565b61101261233f565b60026009541415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90614458565b60405180910390fd5b6002600981905550600047905060005b600f8054905081101561129a576000600e82815481106110b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1614156110e457611287565b6000600d60169054906101000a900461ffff1661ffff1683600e8481548110611136577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1661116891906146fc565b61117291906146cb565b90506000600f83815481106111b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516111fe90614138565b60006040518083038185875af1925050503d806000811461123b576040519150601f19603f3d011682016040523d82523d6000602084013e611240565b606091505b5050905080611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90614478565b60405180910390fd5b50505b8080611292906148b0565b915050611068565b5060004711156113525760003373ffffffffffffffffffffffffffffffffffffffff16476040516112ca90614138565b60006040518083038185875af1925050503d8060008114611307576040519150601f19603f3d011682016040523d82523d6000602084013e61130c565b606091505b5050905080611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790614418565b60405180910390fd5b505b506001600981905550565b61136561233f565b60005b600f8054905081101561148c578173ffffffffffffffffffffffffffffffffffffffff16600f82815481106113c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611479576000600e8281548110611449577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505b8080611484906148b0565b915050611368565b5050565b6114ab83838360405180602001604052806000815250611f5b565b505050565b60006114bb826123c2565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611530576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61158961233f565b565b61159361233f565b80600b60006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b600080600080600080600a54600b60009054906101000a90046fffffffffffffffffffffffffffffffff16600b60109054906101000a90046fffffffffffffffffffffffffffffffff166116216125f7565b600d60009054906101000a900460ff16600d60019054906101000a900460ff16955095509550955095509550909192939495565b61165d61233f565b80600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060006116ae836114c8565b9050600081141561173157600067ffffffffffffffff8111156116fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117285781602001602082028036833780820191505090505b50915050611869565b60008167ffffffffffffffff811115611773577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117a15781602001602082028036833780820191505090505b50905060006117ae610ad1565b90506000805b82811015611860578673ffffffffffffffffffffffffffffffffffffffff166117dc826114b0565b73ffffffffffffffffffffffffffffffffffffffff16141561184d5780848381518110611832577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180611849906148b0565b9250505b8080611858906148b0565b9150506117b4565b83955050505050505b919050565b61187661233f565b80600b60106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026009541415611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990614458565b60405180910390fd5b600260098190555060001515600d60019054906101000a900460ff16151514611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906142d8565b60405180910390fd5b600a548261198e91906146fc565b34146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614318565b60405180910390fd5b600b60009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990614378565b60405180910390fd5b611a4b8161260a565b611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190614358565b60405180910390fd5b611a94338361268e565b60016009819055505050565b606060038054611aaf9061484d565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb9061484d565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b5050505050905090565b611b3a61233f565b600e80549050600f8054905014611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d906142f8565b60405180910390fd5b600d60169054906101000a900461ffff1661ffff1681611ba461255a565b611bae919061463d565b61ffff161115611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90614438565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e8190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055505050565b60026009541415611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614458565b60405180910390fd5b600260098190555060001515600d60009054906101000a900460ff16151514611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f906142d8565b60405180910390fd5b600a5481611d5691906146fc565b3414611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614318565b60405180910390fd5b600b60009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811115611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e01906142b8565b60405180910390fd5b611e14338261268e565b600160098190555050565b8060076000611e2c612337565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ed9612337565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f1e91906141d6565b60405180910390a35050565b6000611f346125f7565b905090565b600b60009054906101000a90046fffffffffffffffffffffffffffffffff1681565b611f66848484610ae8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fc857611f9184848484612721565b611fc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611fd9826122d8565b61200f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612019612881565b905060008151141561203a5760405180602001604052806000815250612065565b8061204484612913565b6040516020016120559291906140ee565b6040516020818303038152906040525b915050919050565b600b60109054906101000a90046fffffffffffffffffffffffffffffffff1681565b61209761233f565b80600c90805190602001906120ad92919061371c565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214d61233f565b60026009541415612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614458565b60405180910390fd5b60026009819055506121a5338261268e565b600160098190555050565b6121b861233f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90614298565b60405180910390fd5b6122318161296c565b50565b61223c61233f565b80600a8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122a157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122d15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000816122e36123bd565b111580156122f2575060005482105b8015612330575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612347612a32565b73ffffffffffffffffffffffffffffffffffffffff166123656118b2565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b2906143d8565b60405180910390fd5b565b600090565b600080829050806123d16123bd565b11612459576000548110156124585760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612456575b600081141561244c576004600083600190039350838152602001908152602001600020549050612421565b809250505061248b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612518868684612a3a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000905060005b600e805490508110156125ef57600e81815481106125ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16826125da919061463d565b915080806125e7906148b0565b915050612564565b508091505090565b60006126016123bd565b60005403905090565b600080612615612a43565b805190602001209050600061262982612a7c565b90506126358185612aac565b73ffffffffffffffffffffffffffffffffffffffff16600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161492505050919050565b600b60109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16816126c86125f7565b6126d29190614675565b1115612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a906143f8565b60405180910390fd5b61271d8282612ad3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612747612337565b8786866040518563ffffffff1660e01b81526004016127699493929190614168565b602060405180830381600087803b15801561278357600080fd5b505af19250505080156127b457506040513d601f19601f820116820180604052508101906127b19190613b57565b60015b61282e573d80600081146127e4576040519150601f19603f3d011682016040523d82523d6000602084013e6127e9565b606091505b50600081511415612826576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546128909061484d565b80601f01602080910402602001604051908101604052809291908181526020018280546128bc9061484d565b80156129095780601f106128de57610100808354040283529160200191612909565b820191906000526020600020905b8154815290600101906020018083116128ec57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561295757600184039350600a81066030018453600a810490508061295257612957565b61292c565b50828103602084039350808452505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60009392505050565b6060612a4e30612af1565b612a5733612af1565b604051602001612a689291906140ee565b604051602081830303815290604052905090565b600081604051602001612a8f9190614112565b604051602081830303815290604052805190602001209050919050565b6000806000612abb8585612b22565b91509150612ac881612ba5565b819250505092915050565b612aed828260405180602001604052806000815250612ef6565b5050565b6060612b1b82604051602001612b0791906140d3565b604051602081830303815290604052612f93565b9050919050565b600080604183511415612b645760008060006020860151925060408601519150606086015160001a9050612b58878285856133e3565b94509450505050612b9e565b604083511415612b95576000806020850151915060408501519050612b8a8683836134f0565b935093505050612b9e565b60006002915091505b9250929050565b60006004811115612bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c18577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612c2357612ef3565b60016004811115612c5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c96577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce90614258565b60405180910390fd5b60026004811115612d11577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612d4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290614278565b60405180910390fd5b60036004811115612dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612dfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3690614338565b60405180910390fd5b600480811115612e78577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612eb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee990614398565b60405180910390fd5b5b50565b612f00838361354f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f8e57600080549050600083820390505b612f406000868380600101945086612721565b612f76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612f2d578160005414612f8b57600080fd5b50505b505050565b606060006040518060400160405280601081526020017f30313233343536373839616263646566000000000000000000000000000000008152509050600060028451612fdf91906146fc565b6002612feb9190614675565b67ffffffffffffffff81111561302a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561305c5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106130ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613144577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b84518110156133d8578260048683815181106131bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110613227577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361324091906146fc565b600261324c9190614675565b81518110613283577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b8683815181106132f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff168151811061333a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361335391906146fc565b600361335f9190614675565b81518110613396577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806133d0906148b0565b915050613176565b508092505050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561341e5760006003915091506134e7565b601b8560ff16141580156134365750601c8560ff1614155b156134485760006004915091506134e7565b60006001878787876040516000815260200160405260405161346d94939291906141f1565b6020604051602081039080840390855afa15801561348f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134de576000600192509250506134e7565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6135339190614675565b9050613541878288856133e3565b935093505050935093915050565b6000805490506000821415613590576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61359d60008483856124fb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613614836136056000866000612501565b61360e8561370c565b17612529565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146136b557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061367a565b5060008214156136f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506137076000848385612554565b505050565b60006001821460e11b9050919050565b8280546137289061484d565b90600052602060002090601f01602090048101928261374a5760008555613791565b82601f1061376357805160ff1916838001178555613791565b82800160010185558215613791579182015b82811115613790578251825591602001919060010190613775565b5b50905061379e91906137a2565b5090565b5b808211156137bb5760008160009055506001016137a3565b5090565b60006137d26137cd84614554565b61452f565b9050828152602081018484840111156137ea57600080fd5b6137f584828561480b565b509392505050565b600061381061380b84614585565b61452f565b90508281526020810184848401111561382857600080fd5b61383384828561480b565b509392505050565b60008135905061384a81614e65565b92915050565b60008135905061385f81614e7c565b92915050565b60008135905061387481614e93565b92915050565b60008151905061388981614e93565b92915050565b600082601f8301126138a057600080fd5b81356138b08482602086016137bf565b91505092915050565b600082601f8301126138ca57600080fd5b81356138da8482602086016137fd565b91505092915050565b6000813590506138f281614eaa565b92915050565b60008135905061390781614ec1565b92915050565b60008135905061391c81614ed8565b92915050565b60006020828403121561393457600080fd5b60006139428482850161383b565b91505092915050565b6000806040838503121561395e57600080fd5b600061396c8582860161383b565b925050602061397d8582860161383b565b9150509250929050565b60008060006060848603121561399c57600080fd5b60006139aa8682870161383b565b93505060206139bb8682870161383b565b92505060406139cc8682870161390d565b9150509250925092565b600080600080608085870312156139ec57600080fd5b60006139fa8782880161383b565b9450506020613a0b8782880161383b565b9350506040613a1c8782880161390d565b925050606085013567ffffffffffffffff811115613a3957600080fd5b613a458782880161388f565b91505092959194509250565b60008060408385031215613a6457600080fd5b6000613a728582860161383b565b9250506020613a8385828601613850565b9150509250929050565b60008060408385031215613aa057600080fd5b6000613aae8582860161383b565b9250506020613abf858286016138f8565b9150509250929050565b60008060408385031215613adc57600080fd5b6000613aea8582860161383b565b9250506020613afb8582860161390d565b9150509250929050565b600060208284031215613b1757600080fd5b6000613b2584828501613850565b91505092915050565b600060208284031215613b4057600080fd5b6000613b4e84828501613865565b91505092915050565b600060208284031215613b6957600080fd5b6000613b778482850161387a565b91505092915050565b600060208284031215613b9257600080fd5b600082013567ffffffffffffffff811115613bac57600080fd5b613bb8848285016138b9565b91505092915050565b600060208284031215613bd357600080fd5b6000613be1848285016138e3565b91505092915050565b600060208284031215613bfc57600080fd5b6000613c0a8482850161390d565b91505092915050565b60008060408385031215613c2657600080fd5b6000613c348582860161390d565b925050602083013567ffffffffffffffff811115613c5157600080fd5b613c5d8582860161388f565b9150509250929050565b6000613c7383836140a6565b60208301905092915050565b613c8881614756565b82525050565b613c9f613c9a82614756565b6148f9565b82525050565b6000613cb0826145c6565b613cba81856145f4565b9350613cc5836145b6565b8060005b83811015613cf6578151613cdd8882613c67565b9750613ce8836145e7565b925050600181019050613cc9565b5085935050505092915050565b613d0c81614768565b82525050565b613d1b81614774565b82525050565b613d32613d2d82614774565b61490b565b82525050565b6000613d43826145d1565b613d4d8185614605565b9350613d5d81856020860161481a565b613d66816149e3565b840191505092915050565b6000613d7c826145dc565b613d868185614621565b9350613d9681856020860161481a565b613d9f816149e3565b840191505092915050565b6000613db5826145dc565b613dbf8185614632565b9350613dcf81856020860161481a565b80840191505092915050565b6000613de8601883614621565b9150613df382614a01565b602082019050919050565b6000613e0b601f83614621565b9150613e1682614a2a565b602082019050919050565b6000613e2e601c83614632565b9150613e3982614a53565b601c82019050919050565b6000613e51602683614621565b9150613e5c82614a7c565b604082019050919050565b6000613e74603683614621565b9150613e7f82614acb565b604082019050919050565b6000613e97601883614621565b9150613ea282614b1a565b602082019050919050565b6000613eba602983614621565b9150613ec582614b43565b604082019050919050565b6000613edd601b83614621565b9150613ee882614b92565b602082019050919050565b6000613f00602283614621565b9150613f0b82614bbb565b604082019050919050565b6000613f23601883614621565b9150613f2e82614c0a565b602082019050919050565b6000613f46603783614621565b9150613f5182614c33565b604082019050919050565b6000613f69602283614621565b9150613f7482614c82565b604082019050919050565b6000613f8c603583614621565b9150613f9782614cd1565b604082019050919050565b6000613faf602083614621565b9150613fba82614d20565b602082019050919050565b6000613fd2601383614621565b9150613fdd82614d49565b602082019050919050565b6000613ff5602583614621565b915061400082614d72565b604082019050919050565b6000614018600083614616565b915061402382614dc1565b600082019050919050565b600061403b602583614621565b915061404682614dc4565b604082019050919050565b600061405e601f83614621565b915061406982614e13565b602082019050919050565b6000614081601e83614621565b915061408c82614e3c565b602082019050919050565b6140a0816147aa565b82525050565b6140af816147f4565b82525050565b6140be816147f4565b82525050565b6140cd816147fe565b82525050565b60006140df8284613c8e565b60148201915081905092915050565b60006140fa8285613daa565b91506141068284613daa565b91508190509392505050565b600061411d82613e21565b91506141298284613d21565b60208201915081905092915050565b60006141438261400b565b9150819050919050565b60006020820190506141626000830184613c7f565b92915050565b600060808201905061417d6000830187613c7f565b61418a6020830186613c7f565b61419760408301856140b5565b81810360608301526141a98184613d38565b905095945050505050565b600060208201905081810360008301526141ce8184613ca5565b905092915050565b60006020820190506141eb6000830184613d03565b92915050565b60006080820190506142066000830187613d12565b61421360208301866140c4565b6142206040830185613d12565b61422d6060830184613d12565b95945050505050565b600060208201905081810360008301526142508184613d71565b905092915050565b6000602082019050818103600083015261427181613ddb565b9050919050565b6000602082019050818103600083015261429181613dfe565b9050919050565b600060208201905081810360008301526142b181613e44565b9050919050565b600060208201905081810360008301526142d181613e67565b9050919050565b600060208201905081810360008301526142f181613e8a565b9050919050565b6000602082019050818103600083015261431181613ead565b9050919050565b6000602082019050818103600083015261433181613ed0565b9050919050565b6000602082019050818103600083015261435181613ef3565b9050919050565b6000602082019050818103600083015261437181613f16565b9050919050565b6000602082019050818103600083015261439181613f39565b9050919050565b600060208201905081810360008301526143b181613f5c565b9050919050565b600060208201905081810360008301526143d181613f7f565b9050919050565b600060208201905081810360008301526143f181613fa2565b9050919050565b6000602082019050818103600083015261441181613fc5565b9050919050565b6000602082019050818103600083015261443181613fe8565b9050919050565b600060208201905081810360008301526144518161402e565b9050919050565b6000602082019050818103600083015261447181614051565b9050919050565b6000602082019050818103600083015261449181614074565b9050919050565b60006020820190506144ad6000830184614097565b92915050565b60006020820190506144c860008301846140b5565b92915050565b600060c0820190506144e360008301896140b5565b6144f06020830188614097565b6144fd6040830187614097565b61450a60608301866140b5565b6145176080830185613d03565b61452460a0830184613d03565b979650505050505050565b600061453961454a565b9050614545828261487f565b919050565b6000604051905090565b600067ffffffffffffffff82111561456f5761456e6149b4565b5b614578826149e3565b9050602081019050919050565b600067ffffffffffffffff8211156145a05761459f6149b4565b5b6145a9826149e3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614648826147c6565b9150614653836147c6565b92508261ffff0382111561466a57614669614927565b5b828201905092915050565b6000614680826147f4565b915061468b836147f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146c0576146bf614927565b5b828201905092915050565b60006146d6826147f4565b91506146e1836147f4565b9250826146f1576146f0614956565b5b828204905092915050565b6000614707826147f4565b9150614712836147f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561474b5761474a614927565b5b828202905092915050565b6000614761826147d4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561483857808201518184015260208101905061481d565b83811115614847576000848401525b50505050565b6000600282049050600182168061486557607f821691505b6020821081141561487957614878614985565b5b50919050565b614888826149e3565b810181811067ffffffffffffffff821117156148a7576148a66149b4565b5b80604052505050565b60006148bb826147f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ee576148ed614927565b5b600182019050919050565b600061490482614915565b9050919050565b6000819050919050565b6000614920826149f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206f766572206d6178696d756d20616c6c6f77656460008201527f206d696e747320706572207472616e73616374696f6e00000000000000000000602082015250565b7f43616e6e6f74206d696e74207768696c65207061757365640000000000000000600082015250565b7f506179656520616e6420736861726573206d757374206265207468652073616d60008201527f65206c656e6774682e0000000000000000000000000000000000000000000000602082015250565b7f4d7573742073656e64206578616374206d696e742070726963652e0000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616363657373206e6f74206772616e746564210000000000000000600082015250565b7f43616e6e6f74206d696e74206f766572206d6178696d756d20616c6c6f77656460008201527f206d696e747320706572207472616e73616374696f6e2e000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d75737420686176652061207a65726f2062616c616e6365206265666f72652060008201527f7570646174696e67207061796565207368617265730000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b7f4661696c656420746f20646973747269627574652072656d61696e696e67206660008201527f756e64732e000000000000000000000000000000000000000000000000000000602082015250565b50565b7f43616e6e6f74206f76657261737369676e20736861726520646973747269627560008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4661696c656420746f206469737472696275746520746f2070617965652e0000600082015250565b614e6e81614756565b8114614e7957600080fd5b50565b614e8581614768565b8114614e9057600080fd5b50565b614e9c8161477e565b8114614ea757600080fd5b50565b614eb3816147aa565b8114614ebe57600080fd5b50565b614eca816147c6565b8114614ed557600080fd5b50565b614ee1816147f4565b8114614eec57600080fd5b5056fea2646970667358221220caa4c9849364c62fdc048f0070d18a72689cd900176f66d13f3445c52793761a64736f6c63430008040033

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.