ETH Price: $3,405.72 (-1.94%)
Gas: 6 Gwei

Token

BDG3 Pass (BDG3)
 

Overview

Max Total Supply

600 BDG3

Holders

540

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
joeprz1321.eth
Balance
1 BDG3
0xbd6b34a1d5db3ff53386307c6d505bb4afdc9cf4
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:
BDG3Pass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 14 : BDG3Pass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";

/*
 *             ╔═══════╗
 *            █|       |█
 *           █           █
 *          █    ╔══      █
 *          █  ╔╝         █
 *          █ ╔╝═══       █
 *           █           █
 *             @@@@@@@@@
 *
 * @title ERC721 token for the BDG3 Pass
 * @author - https://twitter.com/theincubator_
 */
contract BDG3Pass is ERC721A, ERC721ABurnable, ERC721AQueryable, Ownable, IERC2981 {
    uint256 public presaleMaxSupply = 1200;
    uint256 public maxSupply = 1200;
    uint256 public publicPrice = 0.12 ether;
    uint256 public presalePrice = publicPrice;
    uint256 public maxPresaleMintPerWallet = 1;
    uint256 public maxMintPerWallet = 2;

    bool public isPublicSaleActive = false;
    bool public isWaitlistSaleActive = false;
    bool private _isPresaleActive = false;

    bytes32 public mintlistMerkleRoot;
    bytes32 public waitlistMerkleRoot;

    string private _baseTokenURI;

    address public royaltiesAddress;
    uint256 public royaltiesBasisPoints;
    uint256 private constant ROYALTY_DENOMINATOR = 10_000;

    address payable public immutable incubator;
    address payable public bdge;

    uint256 private _amountReserved;

    string private provenanceHash;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory baseTokenURI,
        address _royaltiesAddress,
        uint256 _royaltiesBasisPoints,
        address _incubator,
        address _bdge,
        string memory _provenanceHash
    ) ERC721A(_name, _symbol) {
        _baseTokenURI = baseTokenURI;
        royaltiesAddress = _royaltiesAddress;
        royaltiesBasisPoints = _royaltiesBasisPoints;
        incubator = payable(_incubator);
        bdge = payable(_bdge);
        provenanceHash = _provenanceHash;
    }

    struct MintContext {
        bool isPresaleActive;
        bool isPresaleSoldOut;
        bool isMintListSet;
        uint256 presalePrice;
        uint256 maxPresaleMintPerWallet;
        uint256 presaleMaxSupply;
        bool isWaitlistSaleActive;
        bool isPublicSaleActive;
        uint256 publicPrice;
        uint256 maxMintPerWallet;
        uint256 maxSupply;
        uint256 currentMintCount;
        uint256 currentUserMintCount;
    }

    function getMintContext() external view returns (MintContext memory) {
        return
            MintContext({
                isPresaleSoldOut: _totalNonReservedMinted() >= presaleMaxSupply,
                isPresaleActive: isPresaleActive(),
                isMintListSet: mintlistMerkleRoot[0] != 0,
                presalePrice: presalePrice,
                maxPresaleMintPerWallet: maxPresaleMintPerWallet,
                presaleMaxSupply: presaleMaxSupply,
                isWaitlistSaleActive: isWaitlistSaleActive,
                isPublicSaleActive: isPublicSaleActive,
                publicPrice: publicPrice,
                maxMintPerWallet: maxMintPerWallet,
                maxSupply: maxSupply,
                currentMintCount: _totalMinted(),
                currentUserMintCount: _numberMinted(msg.sender)
            });
    }

    function mintPresale(bytes32[] calldata proof, uint256 quantity) public payable {
        require(quantity + _totalNonReservedMinted() <= presaleMaxSupply, "max presale supply reached");
        require(quantity + _totalMinted() <= maxSupply, "max supply reached");
        require(_isPresaleActive, "presale is not active");
        require(isOnMintlist(proof), "not on the mintlist");

        uint256 totalCost = presalePrice * quantity;
        require(msg.value >= totalCost, "not enough money");
        require(quantity + _numberMinted(msg.sender) <= maxPresaleMintPerWallet, "can't presale mint this many");
        require(tx.origin == msg.sender, "can't mint from a smart contract");

        _mint(msg.sender, quantity);

        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function mintWaitlist(bytes32[] calldata proof, uint256 quantity) public payable {
        require(quantity + _totalNonReservedMinted() <= presaleMaxSupply, "max presale supply reached");
        require(quantity + _totalMinted() <= maxSupply, "max supply reached");
        require(isWaitlistSaleActive, "waitlist is not active");
        require(isOnWaitlist(proof), "not on the waitlist");

        uint256 totalCost = presalePrice * quantity;
        require(msg.value >= totalCost, "not enough money");
        require(quantity + _numberMinted(msg.sender) <= maxPresaleMintPerWallet, "can't presale mint this many");
        require(tx.origin == msg.sender, "can't mint from a smart contract");

        _mint(msg.sender, quantity);

        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function mintPublic(uint256 quantity) public payable {
        require(quantity + _totalMinted() <= maxSupply, "max supply reached");
        require(isPublicSaleActive, "sale is not active");

        uint256 totalCost = publicPrice * quantity;
        require(msg.value >= totalCost, "not enough money");
        require(quantity + _numberMinted(msg.sender) <= maxMintPerWallet, "can't mint this many");
        require(tx.origin == msg.sender, "can't mint from a smart contract");

        _mint(msg.sender, quantity);

        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function reserve(address[] calldata receivers, uint256[] calldata quantities) external onlyOwner {
        require(receivers.length == quantities.length, "need to supply an equal amount of receivers and quantities");
        for (uint256 i = 0; i < receivers.length; i++) {
            _amountReserved += quantities[i];
            _safeMint(receivers[i], quantities[i]);
        }
    }

    function isOnMintlist(bytes32[] calldata proof) public view returns (bool) {
        return MerkleProof.verify(proof, mintlistMerkleRoot, keccak256(abi.encodePacked(msg.sender)));
    }

    function isOnWaitlist(bytes32[] calldata proof) public view returns (bool) {
        return MerkleProof.verify(proof, waitlistMerkleRoot, keccak256(abi.encodePacked(msg.sender)));
    }

    function togglePresaleActive() external onlyOwner {
        _isPresaleActive = !_isPresaleActive;
    }

    function toggleWaitlistSaleActive() external onlyOwner {
        isWaitlistSaleActive = !isWaitlistSaleActive;
    }

    function togglePublicSaleActive() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    function isPresaleActive() public view returns (bool) {
        return _isPresaleActive && _totalNonReservedMinted() < presaleMaxSupply;
    }

    function transitionToWaitlistSale() external onlyOwner {
        _isPresaleActive = false;
        isWaitlistSaleActive = true;
        isPublicSaleActive = false;
    }

    function transitionToPublicSale() external onlyOwner {
        _isPresaleActive = false;
        isWaitlistSaleActive = false;
        isPublicSaleActive = true;
    }

    function setRoyaltiesAddress(address _royaltiesAddress) external onlyOwner {
        royaltiesAddress = _royaltiesAddress;
    }

    function setRoyaltiesBasisPoints(uint256 _royaltiesBasisPoints) external onlyOwner {
        require(_royaltiesBasisPoints < royaltiesBasisPoints, "New royalty amount must be lower");
        royaltiesBasisPoints = _royaltiesBasisPoints;
    }

    /**
     * @dev See {IERC2981-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Non-existent token");
        return (royaltiesAddress, (salePrice * royaltiesBasisPoints) / ROYALTY_DENOMINATOR);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721A) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function withdraw() external onlyOwner {
        (bool incubatorSuccess, ) = incubator.call{ value: (address(this).balance * 10) / 100 }("");
        require(incubatorSuccess, "unable to send incubator value, recipient may have reverted");

        (bool success, ) = bdge.call{ value: address(this).balance }("");
        require(success, "unable to send client value, recipient may have reverted");
    }

    function setMintlistMerkleRoot(bytes32 newMintlistMerkleRoot) external onlyOwner {
        mintlistMerkleRoot = newMintlistMerkleRoot;
    }

    function setWaitlistMerkleRoot(bytes32 newWaitlistMerkleRoot) external onlyOwner {
        waitlistMerkleRoot = newWaitlistMerkleRoot;
    }

    function setPresalePrice(uint256 newPresalePrice) external onlyOwner {
        if (_totalNonReservedMinted() > 0) {
            require(newPresalePrice < presalePrice, "can't raise the price after the mint has started");
        }
        require(newPresalePrice <= publicPrice, "can't charge more for presale than the public sale");
        presalePrice = newPresalePrice;
    }

    function setMaxPresaleMintPerWallet(uint256 newMaxPresaleMintPerWallet) external onlyOwner {
        maxPresaleMintPerWallet = newMaxPresaleMintPerWallet;
    }

    function setPresaleMaxSupply(uint256 newPresaleMaxSupply) external onlyOwner {
        if (_totalNonReservedMinted() > 0) {
            require(newPresaleMaxSupply < presaleMaxSupply, "can't raise the max supply once the mint has started");
        }
        require(_totalNonReservedMinted() != presaleMaxSupply, "presale max supply already reached");
        presaleMaxSupply = newPresaleMaxSupply;
    }

    function setPublicPrice(uint256 newPublicPrice) external onlyOwner {
        if (_totalNonReservedMinted() > 0) {
            require(newPublicPrice < publicPrice, "can't raise the price after the mint has started");
        }
        publicPrice = newPublicPrice;
    }

    function setMaxMintPerWallet(uint256 newMaxMintPerWallet) public onlyOwner {
        maxMintPerWallet = newMaxMintPerWallet;
    }

    function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
        if (_totalNonReservedMinted() > 0) {
            require(newMaxSupply < maxSupply, "can't raise the max supply once the mint has started");
        }
        require(_totalMinted() != maxSupply, "max supply already reached");
        maxSupply = newMaxSupply;
    }

    function setBdgeVault(address payable _bdge) external onlyOwner {
        bdge = _bdge;
    }

    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    /**
     * @dev - See {ERC721A-_baseURI}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    /**
     * @dev - See {ERC721A-_startTokenId}.
     */
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function _totalNonReservedMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _totalMinted() - _amountReserved;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 6 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

File 7 of 14 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721ABurnable.
 *
 * @dev ERC721A token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 8 of 14 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 9 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 10 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

File 11 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 12 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            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;

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

    /**
     * @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;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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 13 of 14 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721ABurnable.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

File 14 of 14 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"address","name":"_royaltiesAddress","type":"address"},{"internalType":"uint256","name":"_royaltiesBasisPoints","type":"uint256"},{"internalType":"address","name":"_incubator","type":"address"},{"internalType":"address","name":"_bdge","type":"address"},{"internalType":"string","name":"_provenanceHash","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bdge","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintContext","outputs":[{"components":[{"internalType":"bool","name":"isPresaleActive","type":"bool"},{"internalType":"bool","name":"isPresaleSoldOut","type":"bool"},{"internalType":"bool","name":"isMintListSet","type":"bool"},{"internalType":"uint256","name":"presalePrice","type":"uint256"},{"internalType":"uint256","name":"maxPresaleMintPerWallet","type":"uint256"},{"internalType":"uint256","name":"presaleMaxSupply","type":"uint256"},{"internalType":"bool","name":"isWaitlistSaleActive","type":"bool"},{"internalType":"bool","name":"isPublicSaleActive","type":"bool"},{"internalType":"uint256","name":"publicPrice","type":"uint256"},{"internalType":"uint256","name":"maxMintPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"currentMintCount","type":"uint256"},{"internalType":"uint256","name":"currentUserMintCount","type":"uint256"}],"internalType":"struct BDG3Pass.MintContext","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incubator","outputs":[{"internalType":"address payable","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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isOnMintlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isOnWaitlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWaitlistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintWaitlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltiesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltiesBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_bdge","type":"address"}],"name":"setBdgeVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPresaleMintPerWallet","type":"uint256"}],"name":"setMaxPresaleMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMintlistMerkleRoot","type":"bytes32"}],"name":"setMintlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPresalePrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltiesAddress","type":"address"}],"name":"setRoyaltiesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltiesBasisPoints","type":"uint256"}],"name":"setRoyaltiesBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWaitlistMerkleRoot","type":"bytes32"}],"name":"setWaitlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWaitlistSaleActive","outputs":[],"stateMutability":"nonpayable","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":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transitionToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transitionToWaitlistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waitlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526104b06009819055600a556701aa535d3d0c0000600b819055600c556001600d556002600e55600f805462ffffff191690553480156200004357600080fd5b5060405162003fdd38038062003fdd8339810160408190526200006691620002ff565b8751889088906200007f9060029060208501906200016f565b508051620000959060039060208401906200016f565b5050600160005550620000a8336200011d565b8551620000bd9060129060208901906200016f565b50601380546001600160a01b038088166001600160a01b0319928316179092556014869055848216608052601580549285169290911691909117905580516200010e9060179060208401906200016f565b50505050505050505062000437565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017d90620003fa565b90600052602060002090601f016020900481019282620001a15760008555620001ec565b82601f10620001bc57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001ec578251825591602001919060010190620001cf565b50620001fa929150620001fe565b5090565b5b80821115620001fa5760008155600101620001ff565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023d57600080fd5b81516001600160401b03808211156200025a576200025a62000215565b604051601f8301601f19908116603f0116810190828211818310171562000285576200028562000215565b81604052838152602092508683858801011115620002a257600080fd5b600091505b83821015620002c65785820183015181830184015290820190620002a7565b83821115620002d85760008385830101525b9695505050505050565b80516001600160a01b0381168114620002fa57600080fd5b919050565b600080600080600080600080610100898b0312156200031d57600080fd5b88516001600160401b03808211156200033557600080fd5b620003438c838d016200022b565b995060208b01519150808211156200035a57600080fd5b620003688c838d016200022b565b985060408b01519150808211156200037f57600080fd5b6200038d8c838d016200022b565b97506200039d60608c01620002e2565b965060808b01519550620003b460a08c01620002e2565b9450620003c460c08c01620002e2565b935060e08b0151915080821115620003db57600080fd5b50620003ea8b828c016200022b565b9150509295985092959890939650565b600181811c908216806200040f57607f821691505b602082108114156200043157634e487b7160e01b600052602260045260246000fd5b50919050565b608051613b836200045a60003960008181610ada01526112e00152613b836000f3fe6080604052600436106103b65760003560e01c80638462151c116101f2578063b6920d901161010d578063e6ef6670116100a0578063efd0cbf91161006f578063efd0cbf914610afc578063f2fde38b14610b0f578063f41f88a914610b2f578063f4b90fd814610b4f57600080fd5b8063e6ef667014610a4a578063e929ce4314610a6a578063e985e9c514610a7f578063ebceda3214610ac857600080fd5b8063c87b56dd116100dc578063c87b56dd146109df578063d4bdb2ec146109ff578063d5abeb0114610a14578063dc95c4a714610a2a57600080fd5b8063b6920d901461095c578063b88d4fde14610972578063c23dc68f14610992578063c6275255146109bf57600080fd5b8063a38f3f6411610185578063a945bf8011610154578063a945bf80146108fd578063ad7f1ea114610913578063afdf613414610926578063b228d9251461094657600080fd5b8063a38f3f6414610888578063a3f3b3b2146108a8578063a45c8b9c146108c8578063a53a84b6146108e757600080fd5b806399a2557a116101c157806399a2557a1461081d57806399bf40da1461083d5780639a56c13814610853578063a22cb4651461086857600080fd5b80638462151c146107a857806389b0649b146107d55780638da5cb5b146107ea57806395d89b411461080857600080fd5b80633ccfd60b116102e2578063640909c3116102755780636fe7b14b116102445780636fe7b14b1461073d57806370a082311461075d578063715018a61461077d57806383217ba21461079257600080fd5b8063640909c3146106bb57806369e1cac1146106db5780636ddca210146106fb5780636f8b44b01461071d57600080fd5b806355f804b3116102b157806355f804b3146106395780635bbb21771461065957806360d938dc146106865780636352211e1461069b57600080fd5b80633ccfd60b146105d157806342842e0e146105e657806342966c6814610606578063497703e31461062657600080fd5b80630a403f041161035a57806323b872dd1161032957806323b872dd146105325780632a55205a1461055257806332882535146105915780633549345e146105b157600080fd5b80630a403f04146104c65780630c894cfe146104e657806318160ddd146104fb5780631e84c4131461051857600080fd5b806306fdde031161039657806306fdde0314610434578063081812fc1461045657806308fc299b1461048e578063095ea7b3146104a457600080fd5b80620e7fa8146103bb578062f4c0dd146103e457806301ffc9a714610414575b600080fd5b3480156103c757600080fd5b506103d1600c5481565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff36600461339a565b610b6f565b60405190151581526020016103db565b34801561042057600080fd5b5061040461042f3660046133f2565b610bf0565b34801561044057600080fd5b50610449610c15565b6040516103db9190613467565b34801561046257600080fd5b5061047661047136600461347a565b610ca7565b6040516001600160a01b0390911681526020016103db565b34801561049a57600080fd5b506103d160095481565b3480156104b057600080fd5b506104c46104bf3660046134a8565b610ceb565b005b3480156104d257600080fd5b506104c46104e136600461347a565b610d8b565b3480156104f257600080fd5b506104c4610ec8565b34801561050757600080fd5b5060015460005403600019016103d1565b34801561052457600080fd5b50600f546104049060ff1681565b34801561053e57600080fd5b506104c461054d3660046134d4565b610f24565b34801561055e57600080fd5b5061057261056d366004613515565b6110bf565b604080516001600160a01b0390931683526020830191909152016103db565b34801561059d57600080fd5b50601354610476906001600160a01b031681565b3480156105bd57600080fd5b506104c46105cc36600461347a565b61114d565b3480156105dd57600080fd5b506104c461128c565b3480156105f257600080fd5b506104c46106013660046134d4565b61149c565b34801561061257600080fd5b506104c461062136600461347a565b6114bc565b6104c4610634366004613537565b6114ca565b34801561064557600080fd5b506104c461065436600461360f565b61179d565b34801561066557600080fd5b5061067961067436600461339a565b6117f8565b6040516103db9190613658565b34801561069257600080fd5b506104046118c4565b3480156106a757600080fd5b506104766106b636600461347a565b6118ec565b3480156106c757600080fd5b506104c46106d636600461347a565b6118f7565b3480156106e757600080fd5b506104c46106f63660046136d5565b611995565b34801561070757600080fd5b50610710611ae7565b6040516103db9190613741565b34801561072957600080fd5b506104c461073836600461347a565b611c51565b34801561074957600080fd5b506104c461075836600461347a565b611d7d565b34801561076957600080fd5b506103d16107783660046137f8565b611dca565b34801561078957600080fd5b506104c4611e19565b34801561079e57600080fd5b506103d1600d5481565b3480156107b457600080fd5b506107c86107c33660046137f8565b611e6d565b6040516103db9190613815565b3480156107e157600080fd5b506104c4611f78565b3480156107f657600080fd5b506008546001600160a01b0316610476565b34801561081457600080fd5b50610449611fdf565b34801561082957600080fd5b506107c861083836600461384d565b611fee565b34801561084957600080fd5b506103d160115481565b34801561085f57600080fd5b506104c461217a565b34801561087457600080fd5b506104c4610883366004613882565b6121df565b34801561089457600080fd5b50601554610476906001600160a01b031681565b3480156108b457600080fd5b506104c46108c336600461347a565b612275565b3480156108d457600080fd5b50600f5461040490610100900460ff1681565b3480156108f357600080fd5b506103d160145481565b34801561090957600080fd5b506103d1600b5481565b6104c4610921366004613537565b6122c2565b34801561093257600080fd5b506104c461094136600461347a565b61242a565b34801561095257600080fd5b506103d1600e5481565b34801561096857600080fd5b506103d160105481565b34801561097e57600080fd5b506104c461098d3660046138c0565b612477565b34801561099e57600080fd5b506109b26109ad36600461347a565b6124bb565b6040516103db9190613940565b3480156109cb57600080fd5b506104c46109da36600461347a565b612543565b3480156109eb57600080fd5b506104496109fa36600461347a565b61260a565b348015610a0b57600080fd5b506104c461268e565b348015610a2057600080fd5b506103d1600a5481565b348015610a3657600080fd5b506104c4610a453660046137f8565b6126e7565b348015610a5657600080fd5b506104c4610a6536600461347a565b612751565b348015610a7657600080fd5b506104c461279e565b348015610a8b57600080fd5b50610404610a9a366004613985565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ad457600080fd5b506104767f000000000000000000000000000000000000000000000000000000000000000081565b6104c4610b0a36600461347a565b6127f8565b348015610b1b57600080fd5b506104c4610b2a3660046137f8565b612a05565b348015610b3b57600080fd5b506104c4610b4a3660046137f8565b612ad2565b348015610b5b57600080fd5b50610404610b6a36600461339a565b612b3c565b6000610be7838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120612b9d565b90505b92915050565b60006001600160e01b0319821663152a902d60e11b1480610bea5750610bea82612bb3565b606060028054610c24906139b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c50906139b3565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b5050505050905090565b6000610cb282612c01565b610ccf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610cf6826118ec565b9050336001600160a01b03821614610d2f57610d128133610a9a565b610d2f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610dd85760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e83398151915260448201526064015b60405180910390fd5b6000610de2612c36565b1115610e5f576009548110610e5f5760405162461bcd60e51b815260206004820152603460248201527f63616e277420726169736520746865206d617820737570706c79206f6e63652060448201527f746865206d696e742068617320737461727465640000000000000000000000006064820152608401610dcf565b600954610e6a612c36565b1415610ec35760405162461bcd60e51b815260206004820152602260248201527f70726573616c65206d617820737570706c7920616c7265616479207265616368604482015261195960f21b6064820152608401610dcf565b600955565b6008546001600160a01b03163314610f105760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805460ff19811660ff90911615179055565b6000610f2f82612c4e565b9050836001600160a01b0316816001600160a01b031614610f625760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610f8e8187335b6001600160a01b039081169116811491141790565b610fb957610f9c8633610a9a565b610fb957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610fe057604051633a954ecd60e21b815260040160405180910390fd5b8015610feb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661107657600184016000818152600460205260409020546110745760005481146110745760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000806110cb84612c01565b6111175760405162461bcd60e51b815260206004820152601260248201527f4e6f6e2d6578697374656e7420746f6b656e00000000000000000000000000006044820152606401610dcf565b6013546014546001600160a01b0390911690612710906111379086613a04565b6111419190613a23565b915091505b9250929050565b6008546001600160a01b031633146111955760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600061119f612c36565b111561120f57600c54811061120f5760405162461bcd60e51b815260206004820152603060248201527f63616e277420726169736520746865207072696365206166746572207468652060448201526f1b5a5b9d081a185cc81cdd185c9d195960821b6064820152608401610dcf565b600b548111156112875760405162461bcd60e51b815260206004820152603260248201527f63616e277420636861726765206d6f726520666f722070726573616c6520746860448201527f616e20746865207075626c69632073616c6500000000000000000000000000006064820152608401610dcf565b600c55565b6008546001600160a01b031633146112d45760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b60006001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016606461130d47600a613a04565b6113179190613a23565b604051600081818185875af1925050503d8060008114611353576040519150601f19603f3d011682016040523d82523d6000602084013e611358565b606091505b50509050806113cf5760405162461bcd60e51b815260206004820152603b60248201527f756e61626c6520746f2073656e6420696e63756261746f722076616c75652c2060448201527f726563697069656e74206d6179206861766520726576657274656400000000006064820152608401610dcf565b6015546040516000916001600160a01b03169047908381818185875af1925050503d806000811461141c576040519150601f19603f3d011682016040523d82523d6000602084013e611421565b606091505b50509050806114985760405162461bcd60e51b815260206004820152603860248201527f756e61626c6520746f2073656e6420636c69656e742076616c75652c2072656360448201527f697069656e74206d6179206861766520726576657274656400000000000000006064820152608401610dcf565b5050565b6114b783838360405180602001604052806000815250612477565b505050565b6114c7816001612cb7565b50565b6009546114d5612c36565b6114df9083613a45565b111561152d5760405162461bcd60e51b815260206004820152601a60248201527f6d61782070726573616c6520737570706c7920726561636865640000000000006044820152606401610dcf565b600a54600054600019016115419083613a45565b11156115845760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610dcf565b600f54610100900460ff166115db5760405162461bcd60e51b815260206004820152601660248201527f776169746c697374206973206e6f7420616374697665000000000000000000006044820152606401610dcf565b6115e58383612b3c565b6116315760405162461bcd60e51b815260206004820152601360248201527f6e6f74206f6e2074686520776169746c697374000000000000000000000000006044820152606401610dcf565b600081600c546116419190613a04565b9050803410156116865760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f756768206d6f6e657960801b6044820152606401610dcf565b600d543360009081526005602052604090819020546116b0911c67ffffffffffffffff1684613a45565b11156116fe5760405162461bcd60e51b815260206004820152601c60248201527f63616e27742070726573616c65206d696e742074686973206d616e79000000006044820152606401610dcf565b32331461174d5760405162461bcd60e51b815260206004820181905260248201527f63616e2774206d696e742066726f6d206120736d61727420636f6e74726163746044820152606401610dcf565b6117573383612dfa565b8034111561179757336108fc61176d8334613a5d565b6040518115909202916000818181858888f19350505050158015611795573d6000803e3d6000fd5b505b50505050565b6008546001600160a01b031633146117e55760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b80516114989060129060208401906132bc565b60608160008167ffffffffffffffff81111561181657611816613583565b60405190808252806020026020018201604052801561186857816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816118345790505b50905060005b8281146118bb5761189686868381811061188a5761188a613a74565b905060200201356124bb565b8282815181106118a8576118a8613a74565b602090810291909101015260010161186e565b50949350505050565b600f5460009062010000900460ff1680156118e757506009546118e5612c36565b105b905090565b6000610bea82612c4e565b6008546001600160a01b0316331461193f5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b60145481106119905760405162461bcd60e51b815260206004820181905260248201527f4e657720726f79616c747920616d6f756e74206d757374206265206c6f7765726044820152606401610dcf565b601455565b6008546001600160a01b031633146119dd5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b828114611a525760405162461bcd60e51b815260206004820152603a60248201527f6e65656420746f20737570706c7920616e20657175616c20616d6f756e74206f60448201527f662072656365697665727320616e64207175616e7469746965730000000000006064820152608401610dcf565b60005b8381101561179557828282818110611a6f57611a6f613a74565b9050602002013560166000828254611a879190613a45565b90915550611ad59050858583818110611aa257611aa2613a74565b9050602002016020810190611ab791906137f8565b848484818110611ac957611ac9613a74565b90506020020135612ef1565b80611adf81613a8a565b915050611a55565b611b5c604051806101a0016040528060001515815260200160001515815260200160001515815260200160008152602001600081526020016000815260200160001515815260200160001515815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806101a00160405280611b706118c4565b15158152602001600954611b82612c36565b1015815260105460001a60f81b7fff000000000000000000000000000000000000000000000000000000000000001615156020820152600c546040820152600d5460608201526009546080820152600f5461010080820460ff908116151560a0850152909116151560c0830152600b5460e0830152600e5490820152600a5461012082015261014001611c186000546000190190565b8152602001611c4a336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b9052919050565b6008546001600160a01b03163314611c995760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b6000611ca3612c36565b1115611d2057600a548110611d205760405162461bcd60e51b815260206004820152603460248201527f63616e277420726169736520746865206d617820737570706c79206f6e63652060448201527f746865206d696e742068617320737461727465640000000000000000000000006064820152608401610dcf565b600a54600054600019011415611d785760405162461bcd60e51b815260206004820152601a60248201527f6d617820737570706c7920616c726561647920726561636865640000000000006044820152606401610dcf565b600a55565b6008546001600160a01b03163314611dc55760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601055565b60006001600160a01b038216611df3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611e615760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b611e6b6000612f0b565b565b60606000806000611e7d85611dca565b905060008167ffffffffffffffff811115611e9a57611e9a613583565b604051908082528060200260200182016040528015611ec3578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614611f6c57611efe81612f5d565b9150816040015115611f0f57611f64565b81516001600160a01b031615611f2457815194505b876001600160a01b0316856001600160a01b03161415611f645780838780600101985081518110611f5757611f57613a74565b6020026020010181815250505b600101611eee565b50909695505050505050565b6008546001600160a01b03163314611fc05760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805462ff0000198116620100009182900460ff1615909102179055565b606060038054610c24906139b3565b606081831061201057604051631960ccad60e11b815260040160405180910390fd5b60008061201c60005490565b9050600185101561202c57600194505b80841115612038578093505b600061204387611dca565b905084861015612062578585038181101561205c578091505b50612066565b5060005b60008167ffffffffffffffff81111561208157612081613583565b6040519080825280602002602001820160405280156120aa578160200160208202803683370190505b509050816120bd57935061217392505050565b60006120c8886124bb565b9050600081604001516120d9575080515b885b8881141580156120eb5750848714155b15612167576120f981612f5d565b925082604001511561210a5761215f565b82516001600160a01b03161561211f57825191505b8a6001600160a01b0316826001600160a01b0316141561215f578084888060010199508151811061215257612152613a74565b6020026020010181815250505b6001016120db565b50505092835250909150505b9392505050565b6008546001600160a01b031633146121c25760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0382163314156122095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146122bd5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601155565b6009546122cd612c36565b6122d79083613a45565b11156123255760405162461bcd60e51b815260206004820152601a60248201527f6d61782070726573616c6520737570706c7920726561636865640000000000006044820152606401610dcf565b600a54600054600019016123399083613a45565b111561237c5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610dcf565b600f5462010000900460ff166123d45760405162461bcd60e51b815260206004820152601560248201527f70726573616c65206973206e6f742061637469766500000000000000000000006044820152606401610dcf565b6123de8383610b6f565b6116315760405162461bcd60e51b815260206004820152601360248201527f6e6f74206f6e20746865206d696e746c697374000000000000000000000000006044820152606401610dcf565b6008546001600160a01b031633146124725760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600e55565b612482848484610f24565b6001600160a01b0383163b156117975761249e84848484612fdc565b611797576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061251457506000548310155b1561251f5792915050565b61252883612f5d565b905080604001511561253a5792915050565b612173836130d4565b6008546001600160a01b0316331461258b5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b6000612595612c36565b111561260557600b5481106126055760405162461bcd60e51b815260206004820152603060248201527f63616e277420726169736520746865207072696365206166746572207468652060448201526f1b5a5b9d081a185cc81cdd185c9d195960821b6064820152608401610dcf565b600b55565b606061261582612c01565b61263257604051630a14c4b560e41b815260040160405180910390fd5b600061263c61314c565b905080516000141561265d5760405180602001604052806000815250612173565b806126678461315b565b604051602001612678929190613aa5565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146126d65760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805462ffffff19166001179055565b6008546001600160a01b0316331461272f5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146127995760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600d55565b6008546001600160a01b031633146127e65760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805462ffffff1916610100179055565b600a546000546000190161280c9083613a45565b111561284f5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610dcf565b600f5460ff166128a15760405162461bcd60e51b815260206004820152601260248201527f73616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610dcf565b600081600b546128b19190613a04565b9050803410156128f65760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f756768206d6f6e657960801b6044820152606401610dcf565b600e54336000908152600560205260409081902054612920911c67ffffffffffffffff1684613a45565b111561296e5760405162461bcd60e51b815260206004820152601460248201527f63616e2774206d696e742074686973206d616e790000000000000000000000006044820152606401610dcf565b3233146129bd5760405162461bcd60e51b815260206004820181905260248201527f63616e2774206d696e742066726f6d206120736d61727420636f6e74726163746044820152606401610dcf565b6129c73383612dfa565b8034111561149857336108fc6129dd8334613a5d565b6040518115909202916000818181858888f193505050501580156114b7573d6000803e3d6000fd5b6008546001600160a01b03163314612a4d5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b6001600160a01b038116612ac95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dcf565b6114c781612f0b565b6008546001600160a01b03163314612b1a5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610be7838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050610bcc565b600082612baa85846131aa565b14949350505050565b60006301ffc9a760e01b6001600160e01b031983161480612be457506380ac58cd60e01b6001600160e01b03198316145b80610bea5750506001600160e01b031916635b5e139f60e01b1490565b600081600111158015612c15575060005482105b8015610bea575050600090815260046020526040902054600160e01b161590565b6000601654612c486000546000190190565b03905090565b60008180600111612c9e57600054811015612c9e57600081815260046020526040902054600160e01b8116612c9c575b80612173575060001901600081815260046020526040902054612c7e565b505b604051636f96cda160e11b815260040160405180910390fd5b6000612cc283612c4e565b905080600080612ce086600090815260066020526040902080549091565b915091508415612d2057612cf5818433610f79565b612d2057612d038333610a9a565b612d2057604051632ce44b5f60e11b815260040160405180910390fd5b8015612d2b57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040902055600160e11b8416612db25760018601600081815260046020526040902054612db0576000548114612db05760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b60005481612e1b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612eca57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612e92565b5081612ee857604051622e076360e81b815260040160405180910390fd5b60005550505050565b611498828260405180602001604052806000815250613256565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610bea90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290613011903390899088908890600401613ad4565b602060405180830381600087803b15801561302b57600080fd5b505af192505050801561305b575060408051601f3d908101601f1916820190925261305891810190613b10565b60015b6130b6573d808015613089576040519150601f19603f3d011682016040523d82523d6000602084013e61308e565b606091505b5080516130ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610bea61310483612c4e565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b606060128054610c24906139b3565b604080516080810191829052607f0190826030600a8206018353600a90045b801561319857600183039250600a81066030018353600a900461317a565b50819003601f19909101908152919050565b600081815b845181101561324e5760008582815181106131cc576131cc613a74565b6020026020010151905080831161320e57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061323b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061324681613a8a565b9150506131af565b509392505050565b6132608383612dfa565b6001600160a01b0383163b156114b7576000548281035b61328a6000868380600101945086612fdc565b6132a7576040516368d2bf6b60e11b815260040160405180910390fd5b81811061327757816000541461179557600080fd5b8280546132c8906139b3565b90600052602060002090601f0160209004810192826132ea5760008555613330565b82601f1061330357805160ff1916838001178555613330565b82800160010185558215613330579182015b82811115613330578251825591602001919060010190613315565b5061333c929150613340565b5090565b5b8082111561333c5760008155600101613341565b60008083601f84011261336757600080fd5b50813567ffffffffffffffff81111561337f57600080fd5b6020830191508360208260051b850101111561114657600080fd5b600080602083850312156133ad57600080fd5b823567ffffffffffffffff8111156133c457600080fd5b6133d085828601613355565b90969095509350505050565b6001600160e01b0319811681146114c757600080fd5b60006020828403121561340457600080fd5b8135612173816133dc565b60005b8381101561342a578181015183820152602001613412565b838111156117975750506000910152565b6000815180845261345381602086016020860161340f565b601f01601f19169290920160200192915050565b602081526000610be7602083018461343b565b60006020828403121561348c57600080fd5b5035919050565b6001600160a01b03811681146114c757600080fd5b600080604083850312156134bb57600080fd5b82356134c681613493565b946020939093013593505050565b6000806000606084860312156134e957600080fd5b83356134f481613493565b9250602084013561350481613493565b929592945050506040919091013590565b6000806040838503121561352857600080fd5b50508035926020909101359150565b60008060006040848603121561354c57600080fd5b833567ffffffffffffffff81111561356357600080fd5b61356f86828701613355565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156135b4576135b4613583565b604051601f8501601f19908116603f011681019082821181831017156135dc576135dc613583565b816040528093508581528686860111156135f557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561362157600080fd5b813567ffffffffffffffff81111561363857600080fd5b8201601f8101841361364957600080fd5b6130cc84823560208401613599565b6020808252825182820181905260009190848201906040850190845b81811015611f6c576136c28385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101613674565b600080600080604085870312156136eb57600080fd5b843567ffffffffffffffff8082111561370357600080fd5b61370f88838901613355565b9096509450602087013591508082111561372857600080fd5b5061373587828801613355565b95989497509550505050565b8151151581526101a08101602083015161375f602084018215159052565b506040830151613773604084018215159052565b50606083015160608301526080830151608083015260a083015160a083015260c08301516137a560c084018215159052565b5060e08301516137b960e084018215159052565b50610100838101519083015261012080840151908301526101408084015190830152610160808401519083015261018092830151929091019190915290565b60006020828403121561380a57600080fd5b813561217381613493565b6020808252825182820181905260009190848201906040850190845b81811015611f6c57835183529284019291840191600101613831565b60008060006060848603121561386257600080fd5b833561386d81613493565b95602085013595506040909401359392505050565b6000806040838503121561389557600080fd5b82356138a081613493565b9150602083013580151581146138b557600080fd5b809150509250929050565b600080600080608085870312156138d657600080fd5b84356138e181613493565b935060208501356138f181613493565b925060408501359150606085013567ffffffffffffffff81111561391457600080fd5b8501601f8101871361392557600080fd5b61393487823560208401613599565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610bea565b6000806040838503121561399857600080fd5b82356139a381613493565b915060208301356138b581613493565b600181811c908216806139c757607f821691505b602082108114156139e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613a1e57613a1e6139ee565b500290565b600082613a4057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613a5857613a586139ee565b500190565b600082821015613a6f57613a6f6139ee565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415613a9e57613a9e6139ee565b5060010190565b60008351613ab781846020880161340f565b835190830190613acb81836020880161340f565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b06608083018461343b565b9695505050505050565b600060208284031215613b2257600080fd5b8151612173816133dc56fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212207a3720a795e645634796f5b6c40935d437b658b72e1d5c5c728af56c023ccd6a64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000e020a6af4386efccf9bbba1ab9264fc7d7b28cd000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000fddbd8e7fea8d3b294ab328f5ada9feba087ab0000000000000000000000000e020a6af4386efccf9bbba1ab9264fc7d7b28cd0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000094244473320506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442444733000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696565616e70756f65357776346f656e6e357a327a706b78786834717a6b3673346b66343269336b376832766c64326369673436692f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004063393966393061393639313765316230663336346166373466336238353065323033333161633738396366336139363437366662303438333837373661386138

Deployed Bytecode

0x6080604052600436106103b65760003560e01c80638462151c116101f2578063b6920d901161010d578063e6ef6670116100a0578063efd0cbf91161006f578063efd0cbf914610afc578063f2fde38b14610b0f578063f41f88a914610b2f578063f4b90fd814610b4f57600080fd5b8063e6ef667014610a4a578063e929ce4314610a6a578063e985e9c514610a7f578063ebceda3214610ac857600080fd5b8063c87b56dd116100dc578063c87b56dd146109df578063d4bdb2ec146109ff578063d5abeb0114610a14578063dc95c4a714610a2a57600080fd5b8063b6920d901461095c578063b88d4fde14610972578063c23dc68f14610992578063c6275255146109bf57600080fd5b8063a38f3f6411610185578063a945bf8011610154578063a945bf80146108fd578063ad7f1ea114610913578063afdf613414610926578063b228d9251461094657600080fd5b8063a38f3f6414610888578063a3f3b3b2146108a8578063a45c8b9c146108c8578063a53a84b6146108e757600080fd5b806399a2557a116101c157806399a2557a1461081d57806399bf40da1461083d5780639a56c13814610853578063a22cb4651461086857600080fd5b80638462151c146107a857806389b0649b146107d55780638da5cb5b146107ea57806395d89b411461080857600080fd5b80633ccfd60b116102e2578063640909c3116102755780636fe7b14b116102445780636fe7b14b1461073d57806370a082311461075d578063715018a61461077d57806383217ba21461079257600080fd5b8063640909c3146106bb57806369e1cac1146106db5780636ddca210146106fb5780636f8b44b01461071d57600080fd5b806355f804b3116102b157806355f804b3146106395780635bbb21771461065957806360d938dc146106865780636352211e1461069b57600080fd5b80633ccfd60b146105d157806342842e0e146105e657806342966c6814610606578063497703e31461062657600080fd5b80630a403f041161035a57806323b872dd1161032957806323b872dd146105325780632a55205a1461055257806332882535146105915780633549345e146105b157600080fd5b80630a403f04146104c65780630c894cfe146104e657806318160ddd146104fb5780631e84c4131461051857600080fd5b806306fdde031161039657806306fdde0314610434578063081812fc1461045657806308fc299b1461048e578063095ea7b3146104a457600080fd5b80620e7fa8146103bb578062f4c0dd146103e457806301ffc9a714610414575b600080fd5b3480156103c757600080fd5b506103d1600c5481565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff36600461339a565b610b6f565b60405190151581526020016103db565b34801561042057600080fd5b5061040461042f3660046133f2565b610bf0565b34801561044057600080fd5b50610449610c15565b6040516103db9190613467565b34801561046257600080fd5b5061047661047136600461347a565b610ca7565b6040516001600160a01b0390911681526020016103db565b34801561049a57600080fd5b506103d160095481565b3480156104b057600080fd5b506104c46104bf3660046134a8565b610ceb565b005b3480156104d257600080fd5b506104c46104e136600461347a565b610d8b565b3480156104f257600080fd5b506104c4610ec8565b34801561050757600080fd5b5060015460005403600019016103d1565b34801561052457600080fd5b50600f546104049060ff1681565b34801561053e57600080fd5b506104c461054d3660046134d4565b610f24565b34801561055e57600080fd5b5061057261056d366004613515565b6110bf565b604080516001600160a01b0390931683526020830191909152016103db565b34801561059d57600080fd5b50601354610476906001600160a01b031681565b3480156105bd57600080fd5b506104c46105cc36600461347a565b61114d565b3480156105dd57600080fd5b506104c461128c565b3480156105f257600080fd5b506104c46106013660046134d4565b61149c565b34801561061257600080fd5b506104c461062136600461347a565b6114bc565b6104c4610634366004613537565b6114ca565b34801561064557600080fd5b506104c461065436600461360f565b61179d565b34801561066557600080fd5b5061067961067436600461339a565b6117f8565b6040516103db9190613658565b34801561069257600080fd5b506104046118c4565b3480156106a757600080fd5b506104766106b636600461347a565b6118ec565b3480156106c757600080fd5b506104c46106d636600461347a565b6118f7565b3480156106e757600080fd5b506104c46106f63660046136d5565b611995565b34801561070757600080fd5b50610710611ae7565b6040516103db9190613741565b34801561072957600080fd5b506104c461073836600461347a565b611c51565b34801561074957600080fd5b506104c461075836600461347a565b611d7d565b34801561076957600080fd5b506103d16107783660046137f8565b611dca565b34801561078957600080fd5b506104c4611e19565b34801561079e57600080fd5b506103d1600d5481565b3480156107b457600080fd5b506107c86107c33660046137f8565b611e6d565b6040516103db9190613815565b3480156107e157600080fd5b506104c4611f78565b3480156107f657600080fd5b506008546001600160a01b0316610476565b34801561081457600080fd5b50610449611fdf565b34801561082957600080fd5b506107c861083836600461384d565b611fee565b34801561084957600080fd5b506103d160115481565b34801561085f57600080fd5b506104c461217a565b34801561087457600080fd5b506104c4610883366004613882565b6121df565b34801561089457600080fd5b50601554610476906001600160a01b031681565b3480156108b457600080fd5b506104c46108c336600461347a565b612275565b3480156108d457600080fd5b50600f5461040490610100900460ff1681565b3480156108f357600080fd5b506103d160145481565b34801561090957600080fd5b506103d1600b5481565b6104c4610921366004613537565b6122c2565b34801561093257600080fd5b506104c461094136600461347a565b61242a565b34801561095257600080fd5b506103d1600e5481565b34801561096857600080fd5b506103d160105481565b34801561097e57600080fd5b506104c461098d3660046138c0565b612477565b34801561099e57600080fd5b506109b26109ad36600461347a565b6124bb565b6040516103db9190613940565b3480156109cb57600080fd5b506104c46109da36600461347a565b612543565b3480156109eb57600080fd5b506104496109fa36600461347a565b61260a565b348015610a0b57600080fd5b506104c461268e565b348015610a2057600080fd5b506103d1600a5481565b348015610a3657600080fd5b506104c4610a453660046137f8565b6126e7565b348015610a5657600080fd5b506104c4610a6536600461347a565b612751565b348015610a7657600080fd5b506104c461279e565b348015610a8b57600080fd5b50610404610a9a366004613985565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ad457600080fd5b506104767f0000000000000000000000000fddbd8e7fea8d3b294ab328f5ada9feba087ab081565b6104c4610b0a36600461347a565b6127f8565b348015610b1b57600080fd5b506104c4610b2a3660046137f8565b612a05565b348015610b3b57600080fd5b506104c4610b4a3660046137f8565b612ad2565b348015610b5b57600080fd5b50610404610b6a36600461339a565b612b3c565b6000610be7838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120612b9d565b90505b92915050565b60006001600160e01b0319821663152a902d60e11b1480610bea5750610bea82612bb3565b606060028054610c24906139b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c50906139b3565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b5050505050905090565b6000610cb282612c01565b610ccf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610cf6826118ec565b9050336001600160a01b03821614610d2f57610d128133610a9a565b610d2f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610dd85760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e83398151915260448201526064015b60405180910390fd5b6000610de2612c36565b1115610e5f576009548110610e5f5760405162461bcd60e51b815260206004820152603460248201527f63616e277420726169736520746865206d617820737570706c79206f6e63652060448201527f746865206d696e742068617320737461727465640000000000000000000000006064820152608401610dcf565b600954610e6a612c36565b1415610ec35760405162461bcd60e51b815260206004820152602260248201527f70726573616c65206d617820737570706c7920616c7265616479207265616368604482015261195960f21b6064820152608401610dcf565b600955565b6008546001600160a01b03163314610f105760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805460ff19811660ff90911615179055565b6000610f2f82612c4e565b9050836001600160a01b0316816001600160a01b031614610f625760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610f8e8187335b6001600160a01b039081169116811491141790565b610fb957610f9c8633610a9a565b610fb957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610fe057604051633a954ecd60e21b815260040160405180910390fd5b8015610feb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661107657600184016000818152600460205260409020546110745760005481146110745760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000806110cb84612c01565b6111175760405162461bcd60e51b815260206004820152601260248201527f4e6f6e2d6578697374656e7420746f6b656e00000000000000000000000000006044820152606401610dcf565b6013546014546001600160a01b0390911690612710906111379086613a04565b6111419190613a23565b915091505b9250929050565b6008546001600160a01b031633146111955760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600061119f612c36565b111561120f57600c54811061120f5760405162461bcd60e51b815260206004820152603060248201527f63616e277420726169736520746865207072696365206166746572207468652060448201526f1b5a5b9d081a185cc81cdd185c9d195960821b6064820152608401610dcf565b600b548111156112875760405162461bcd60e51b815260206004820152603260248201527f63616e277420636861726765206d6f726520666f722070726573616c6520746860448201527f616e20746865207075626c69632073616c6500000000000000000000000000006064820152608401610dcf565b600c55565b6008546001600160a01b031633146112d45760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b60006001600160a01b037f0000000000000000000000000fddbd8e7fea8d3b294ab328f5ada9feba087ab016606461130d47600a613a04565b6113179190613a23565b604051600081818185875af1925050503d8060008114611353576040519150601f19603f3d011682016040523d82523d6000602084013e611358565b606091505b50509050806113cf5760405162461bcd60e51b815260206004820152603b60248201527f756e61626c6520746f2073656e6420696e63756261746f722076616c75652c2060448201527f726563697069656e74206d6179206861766520726576657274656400000000006064820152608401610dcf565b6015546040516000916001600160a01b03169047908381818185875af1925050503d806000811461141c576040519150601f19603f3d011682016040523d82523d6000602084013e611421565b606091505b50509050806114985760405162461bcd60e51b815260206004820152603860248201527f756e61626c6520746f2073656e6420636c69656e742076616c75652c2072656360448201527f697069656e74206d6179206861766520726576657274656400000000000000006064820152608401610dcf565b5050565b6114b783838360405180602001604052806000815250612477565b505050565b6114c7816001612cb7565b50565b6009546114d5612c36565b6114df9083613a45565b111561152d5760405162461bcd60e51b815260206004820152601a60248201527f6d61782070726573616c6520737570706c7920726561636865640000000000006044820152606401610dcf565b600a54600054600019016115419083613a45565b11156115845760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610dcf565b600f54610100900460ff166115db5760405162461bcd60e51b815260206004820152601660248201527f776169746c697374206973206e6f7420616374697665000000000000000000006044820152606401610dcf565b6115e58383612b3c565b6116315760405162461bcd60e51b815260206004820152601360248201527f6e6f74206f6e2074686520776169746c697374000000000000000000000000006044820152606401610dcf565b600081600c546116419190613a04565b9050803410156116865760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f756768206d6f6e657960801b6044820152606401610dcf565b600d543360009081526005602052604090819020546116b0911c67ffffffffffffffff1684613a45565b11156116fe5760405162461bcd60e51b815260206004820152601c60248201527f63616e27742070726573616c65206d696e742074686973206d616e79000000006044820152606401610dcf565b32331461174d5760405162461bcd60e51b815260206004820181905260248201527f63616e2774206d696e742066726f6d206120736d61727420636f6e74726163746044820152606401610dcf565b6117573383612dfa565b8034111561179757336108fc61176d8334613a5d565b6040518115909202916000818181858888f19350505050158015611795573d6000803e3d6000fd5b505b50505050565b6008546001600160a01b031633146117e55760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b80516114989060129060208401906132bc565b60608160008167ffffffffffffffff81111561181657611816613583565b60405190808252806020026020018201604052801561186857816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816118345790505b50905060005b8281146118bb5761189686868381811061188a5761188a613a74565b905060200201356124bb565b8282815181106118a8576118a8613a74565b602090810291909101015260010161186e565b50949350505050565b600f5460009062010000900460ff1680156118e757506009546118e5612c36565b105b905090565b6000610bea82612c4e565b6008546001600160a01b0316331461193f5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b60145481106119905760405162461bcd60e51b815260206004820181905260248201527f4e657720726f79616c747920616d6f756e74206d757374206265206c6f7765726044820152606401610dcf565b601455565b6008546001600160a01b031633146119dd5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b828114611a525760405162461bcd60e51b815260206004820152603a60248201527f6e65656420746f20737570706c7920616e20657175616c20616d6f756e74206f60448201527f662072656365697665727320616e64207175616e7469746965730000000000006064820152608401610dcf565b60005b8381101561179557828282818110611a6f57611a6f613a74565b9050602002013560166000828254611a879190613a45565b90915550611ad59050858583818110611aa257611aa2613a74565b9050602002016020810190611ab791906137f8565b848484818110611ac957611ac9613a74565b90506020020135612ef1565b80611adf81613a8a565b915050611a55565b611b5c604051806101a0016040528060001515815260200160001515815260200160001515815260200160008152602001600081526020016000815260200160001515815260200160001515815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806101a00160405280611b706118c4565b15158152602001600954611b82612c36565b1015815260105460001a60f81b7fff000000000000000000000000000000000000000000000000000000000000001615156020820152600c546040820152600d5460608201526009546080820152600f5461010080820460ff908116151560a0850152909116151560c0830152600b5460e0830152600e5490820152600a5461012082015261014001611c186000546000190190565b8152602001611c4a336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b9052919050565b6008546001600160a01b03163314611c995760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b6000611ca3612c36565b1115611d2057600a548110611d205760405162461bcd60e51b815260206004820152603460248201527f63616e277420726169736520746865206d617820737570706c79206f6e63652060448201527f746865206d696e742068617320737461727465640000000000000000000000006064820152608401610dcf565b600a54600054600019011415611d785760405162461bcd60e51b815260206004820152601a60248201527f6d617820737570706c7920616c726561647920726561636865640000000000006044820152606401610dcf565b600a55565b6008546001600160a01b03163314611dc55760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601055565b60006001600160a01b038216611df3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611e615760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b611e6b6000612f0b565b565b60606000806000611e7d85611dca565b905060008167ffffffffffffffff811115611e9a57611e9a613583565b604051908082528060200260200182016040528015611ec3578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614611f6c57611efe81612f5d565b9150816040015115611f0f57611f64565b81516001600160a01b031615611f2457815194505b876001600160a01b0316856001600160a01b03161415611f645780838780600101985081518110611f5757611f57613a74565b6020026020010181815250505b600101611eee565b50909695505050505050565b6008546001600160a01b03163314611fc05760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805462ff0000198116620100009182900460ff1615909102179055565b606060038054610c24906139b3565b606081831061201057604051631960ccad60e11b815260040160405180910390fd5b60008061201c60005490565b9050600185101561202c57600194505b80841115612038578093505b600061204387611dca565b905084861015612062578585038181101561205c578091505b50612066565b5060005b60008167ffffffffffffffff81111561208157612081613583565b6040519080825280602002602001820160405280156120aa578160200160208202803683370190505b509050816120bd57935061217392505050565b60006120c8886124bb565b9050600081604001516120d9575080515b885b8881141580156120eb5750848714155b15612167576120f981612f5d565b925082604001511561210a5761215f565b82516001600160a01b03161561211f57825191505b8a6001600160a01b0316826001600160a01b0316141561215f578084888060010199508151811061215257612152613a74565b6020026020010181815250505b6001016120db565b50505092835250909150505b9392505050565b6008546001600160a01b031633146121c25760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0382163314156122095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146122bd5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601155565b6009546122cd612c36565b6122d79083613a45565b11156123255760405162461bcd60e51b815260206004820152601a60248201527f6d61782070726573616c6520737570706c7920726561636865640000000000006044820152606401610dcf565b600a54600054600019016123399083613a45565b111561237c5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610dcf565b600f5462010000900460ff166123d45760405162461bcd60e51b815260206004820152601560248201527f70726573616c65206973206e6f742061637469766500000000000000000000006044820152606401610dcf565b6123de8383610b6f565b6116315760405162461bcd60e51b815260206004820152601360248201527f6e6f74206f6e20746865206d696e746c697374000000000000000000000000006044820152606401610dcf565b6008546001600160a01b031633146124725760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600e55565b612482848484610f24565b6001600160a01b0383163b156117975761249e84848484612fdc565b611797576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061251457506000548310155b1561251f5792915050565b61252883612f5d565b905080604001511561253a5792915050565b612173836130d4565b6008546001600160a01b0316331461258b5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b6000612595612c36565b111561260557600b5481106126055760405162461bcd60e51b815260206004820152603060248201527f63616e277420726169736520746865207072696365206166746572207468652060448201526f1b5a5b9d081a185cc81cdd185c9d195960821b6064820152608401610dcf565b600b55565b606061261582612c01565b61263257604051630a14c4b560e41b815260040160405180910390fd5b600061263c61314c565b905080516000141561265d5760405180602001604052806000815250612173565b806126678461315b565b604051602001612678929190613aa5565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146126d65760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805462ffffff19166001179055565b6008546001600160a01b0316331461272f5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146127995760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600d55565b6008546001600160a01b031633146127e65760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b600f805462ffffff1916610100179055565b600a546000546000190161280c9083613a45565b111561284f5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610dcf565b600f5460ff166128a15760405162461bcd60e51b815260206004820152601260248201527f73616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610dcf565b600081600b546128b19190613a04565b9050803410156128f65760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f756768206d6f6e657960801b6044820152606401610dcf565b600e54336000908152600560205260409081902054612920911c67ffffffffffffffff1684613a45565b111561296e5760405162461bcd60e51b815260206004820152601460248201527f63616e2774206d696e742074686973206d616e790000000000000000000000006044820152606401610dcf565b3233146129bd5760405162461bcd60e51b815260206004820181905260248201527f63616e2774206d696e742066726f6d206120736d61727420636f6e74726163746044820152606401610dcf565b6129c73383612dfa565b8034111561149857336108fc6129dd8334613a5d565b6040518115909202916000818181858888f193505050501580156114b7573d6000803e3d6000fd5b6008546001600160a01b03163314612a4d5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b6001600160a01b038116612ac95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dcf565b6114c781612f0b565b6008546001600160a01b03163314612b1a5760405162461bcd60e51b81526020600482018190526024820152600080516020613b2e8339815191526044820152606401610dcf565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610be7838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050610bcc565b600082612baa85846131aa565b14949350505050565b60006301ffc9a760e01b6001600160e01b031983161480612be457506380ac58cd60e01b6001600160e01b03198316145b80610bea5750506001600160e01b031916635b5e139f60e01b1490565b600081600111158015612c15575060005482105b8015610bea575050600090815260046020526040902054600160e01b161590565b6000601654612c486000546000190190565b03905090565b60008180600111612c9e57600054811015612c9e57600081815260046020526040902054600160e01b8116612c9c575b80612173575060001901600081815260046020526040902054612c7e565b505b604051636f96cda160e11b815260040160405180910390fd5b6000612cc283612c4e565b905080600080612ce086600090815260066020526040902080549091565b915091508415612d2057612cf5818433610f79565b612d2057612d038333610a9a565b612d2057604051632ce44b5f60e11b815260040160405180910390fd5b8015612d2b57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040902055600160e11b8416612db25760018601600081815260046020526040902054612db0576000548114612db05760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b60005481612e1b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612eca57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612e92565b5081612ee857604051622e076360e81b815260040160405180910390fd5b60005550505050565b611498828260405180602001604052806000815250613256565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610bea90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290613011903390899088908890600401613ad4565b602060405180830381600087803b15801561302b57600080fd5b505af192505050801561305b575060408051601f3d908101601f1916820190925261305891810190613b10565b60015b6130b6573d808015613089576040519150601f19603f3d011682016040523d82523d6000602084013e61308e565b606091505b5080516130ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610bea61310483612c4e565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b606060128054610c24906139b3565b604080516080810191829052607f0190826030600a8206018353600a90045b801561319857600183039250600a81066030018353600a900461317a565b50819003601f19909101908152919050565b600081815b845181101561324e5760008582815181106131cc576131cc613a74565b6020026020010151905080831161320e57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061323b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061324681613a8a565b9150506131af565b509392505050565b6132608383612dfa565b6001600160a01b0383163b156114b7576000548281035b61328a6000868380600101945086612fdc565b6132a7576040516368d2bf6b60e11b815260040160405180910390fd5b81811061327757816000541461179557600080fd5b8280546132c8906139b3565b90600052602060002090601f0160209004810192826132ea5760008555613330565b82601f1061330357805160ff1916838001178555613330565b82800160010185558215613330579182015b82811115613330578251825591602001919060010190613315565b5061333c929150613340565b5090565b5b8082111561333c5760008155600101613341565b60008083601f84011261336757600080fd5b50813567ffffffffffffffff81111561337f57600080fd5b6020830191508360208260051b850101111561114657600080fd5b600080602083850312156133ad57600080fd5b823567ffffffffffffffff8111156133c457600080fd5b6133d085828601613355565b90969095509350505050565b6001600160e01b0319811681146114c757600080fd5b60006020828403121561340457600080fd5b8135612173816133dc565b60005b8381101561342a578181015183820152602001613412565b838111156117975750506000910152565b6000815180845261345381602086016020860161340f565b601f01601f19169290920160200192915050565b602081526000610be7602083018461343b565b60006020828403121561348c57600080fd5b5035919050565b6001600160a01b03811681146114c757600080fd5b600080604083850312156134bb57600080fd5b82356134c681613493565b946020939093013593505050565b6000806000606084860312156134e957600080fd5b83356134f481613493565b9250602084013561350481613493565b929592945050506040919091013590565b6000806040838503121561352857600080fd5b50508035926020909101359150565b60008060006040848603121561354c57600080fd5b833567ffffffffffffffff81111561356357600080fd5b61356f86828701613355565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156135b4576135b4613583565b604051601f8501601f19908116603f011681019082821181831017156135dc576135dc613583565b816040528093508581528686860111156135f557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561362157600080fd5b813567ffffffffffffffff81111561363857600080fd5b8201601f8101841361364957600080fd5b6130cc84823560208401613599565b6020808252825182820181905260009190848201906040850190845b81811015611f6c576136c28385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101613674565b600080600080604085870312156136eb57600080fd5b843567ffffffffffffffff8082111561370357600080fd5b61370f88838901613355565b9096509450602087013591508082111561372857600080fd5b5061373587828801613355565b95989497509550505050565b8151151581526101a08101602083015161375f602084018215159052565b506040830151613773604084018215159052565b50606083015160608301526080830151608083015260a083015160a083015260c08301516137a560c084018215159052565b5060e08301516137b960e084018215159052565b50610100838101519083015261012080840151908301526101408084015190830152610160808401519083015261018092830151929091019190915290565b60006020828403121561380a57600080fd5b813561217381613493565b6020808252825182820181905260009190848201906040850190845b81811015611f6c57835183529284019291840191600101613831565b60008060006060848603121561386257600080fd5b833561386d81613493565b95602085013595506040909401359392505050565b6000806040838503121561389557600080fd5b82356138a081613493565b9150602083013580151581146138b557600080fd5b809150509250929050565b600080600080608085870312156138d657600080fd5b84356138e181613493565b935060208501356138f181613493565b925060408501359150606085013567ffffffffffffffff81111561391457600080fd5b8501601f8101871361392557600080fd5b61393487823560208401613599565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610bea565b6000806040838503121561399857600080fd5b82356139a381613493565b915060208301356138b581613493565b600181811c908216806139c757607f821691505b602082108114156139e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613a1e57613a1e6139ee565b500290565b600082613a4057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613a5857613a586139ee565b500190565b600082821015613a6f57613a6f6139ee565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415613a9e57613a9e6139ee565b5060010190565b60008351613ab781846020880161340f565b835190830190613acb81836020880161340f565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b06608083018461343b565b9695505050505050565b600060208284031215613b2257600080fd5b8151612173816133dc56fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212207a3720a795e645634796f5b6c40935d437b658b72e1d5c5c728af56c023ccd6a64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000e020a6af4386efccf9bbba1ab9264fc7d7b28cd000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000fddbd8e7fea8d3b294ab328f5ada9feba087ab0000000000000000000000000e020a6af4386efccf9bbba1ab9264fc7d7b28cd0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000094244473320506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442444733000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696565616e70756f65357776346f656e6e357a327a706b78786834717a6b3673346b66343269336b376832766c64326369673436692f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004063393966393061393639313765316230663336346166373466336238353065323033333161633738396366336139363437366662303438333837373661386138

-----Decoded View---------------
Arg [0] : _name (string): BDG3 Pass
Arg [1] : _symbol (string): BDG3
Arg [2] : baseTokenURI (string): ipfs://bafybeieeanpuoe5wv4oenn5z2zpkxxh4qzk6s4kf42i3k7h2vld2cig46i/
Arg [3] : _royaltiesAddress (address): 0xe020A6Af4386eFcCf9BBBA1aB9264fC7D7B28cD0
Arg [4] : _royaltiesBasisPoints (uint256): 500
Arg [5] : _incubator (address): 0x0FddbD8E7fEA8D3B294AB328F5aDa9FebA087ab0
Arg [6] : _bdge (address): 0xe020A6Af4386eFcCf9BBBA1aB9264fC7D7B28cD0
Arg [7] : _provenanceHash (string): c99f90a96917e1b0f364af74f3b850e20331ac789cf3a96476fb04838776a8a8

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 000000000000000000000000e020a6af4386efccf9bbba1ab9264fc7d7b28cd0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [5] : 0000000000000000000000000fddbd8e7fea8d3b294ab328f5ada9feba087ab0
Arg [6] : 000000000000000000000000e020a6af4386efccf9bbba1ab9264fc7d7b28cd0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 4244473320506173730000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 4244473300000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 697066733a2f2f626166796265696565616e70756f65357776346f656e6e357a
Arg [14] : 327a706b78786834717a6b3673346b66343269336b376832766c643263696734
Arg [15] : 36692f0000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [17] : 6339396639306139363931376531623066333634616637346633623835306532
Arg [18] : 3033333161633738396366336139363437366662303438333837373661386138


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.