ETH Price: $2,679.57 (+0.41%)

Token

RandomPandaClub (RPC)
 

Overview

Max Total Supply

10,000 RPC

Holders

112

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 RPC
0xabfb02cf416b727a791c968e2efd27df9dd49a60
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:
RandomPandaClub

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : RandomPandaClub.sol
/* 
  Copyright Statement

  Random Panda Club is an NFT project created by PandaDAO. The following is our copyright statement for NFT:

  i. You own the NFT. Each Random Panda is an NFT on the Ethereum blockchain. When you purchase an NFT, you own the underlying Art completely. Ownership of the NFT is mediated entirely by the Smart Contract and the Ethereum Network: at no point may we seize, freeze, or otherwise modify the ownership of any Random Panda.

  ii. Personal Use. Subject to your continued compliance with these Terms, PandaDAO LTD grants you a worldwide, royalty-free license to use, copy, and display the purchased Art, along with any extensions that you choose to create or use, solely for the following purposes: (i) for your own personal, non-commercial use; (ii) as part of a marketplace that permits the purchase and sale of your Random Panda / NFT, provided that the marketplace cryptographically verifies each Random Panda owner’s rights to display the Art for their Random Panda to ensure that only the actual owner can display the Art; or (iii) as part of a third party website or application that permits the inclusion, involvement, or participation of your Random Panda, provided that the website/application cryptographically verifies each Random Panda owner’s rights to display the Art for their Random Panda to ensure that only the actual owner can display the Art, and provided that the Art is no longer visible once the owner of the Random Panda leaves the website/application.

  iii. Commercial Use. Subject to your continued compliance with these Terms, PandaDAO LTD grants you an unlimited, worldwide license to use, copy, and display the purchased Art for the purpose of creating derivative works based upon the Art (“Commercial Use”). Examples of such Commercial Use would e.g. be the use of the Art to produce and sell merchandise products (T-Shirts etc.) displaying copies of the Art. For the sake of clarity, nothing in this Section will be deemed to restrict you from (i) owning or operating a marketplace that permits the use and sale of Random Panda generally, provided that the marketplace cryptographically verifies each Random Panda owner’s rights to display the Art for their Random Panda to ensure that only the actual owner can display the Art; (ii) owning or operating a third party website or application that permits the inclusion, involvement, or participation of Random Panda generally, provided that the third party website or application cryptographically verifies each Random Panda owner’s rights to display the Art for their Random Panda to ensure that only the actual owner can display the Art, and provided that the Art is no longer visible once the owner of the Purchased Random Panda leaves the website/application; or (iii) earning revenue from any of the foregoing.

  iiii. The holder of a Random Panda NFT can claim the CC0 copyright. Once the holder once does so, they will share the copyright of the NFT free to the world. The CC0 copyright is irreversible and will override the copyright notice in the i. ii. iii. content. 
*/

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./core/ERC721A.sol";

contract RandomPandaClub is Ownable, ERC721A {
    using ECDSA for bytes32;
    using SafeERC20 for IERC20;

    //PANDADAO Treasury.
    address public constant TREASURY_ADD = 0xe19B5757B8C2dD0C9B0fC6D5df739d0d581D0c59;

    //PANDADAO token.
    address public PANDA = 0x3cBb7f5d7499Af626026E96a2f05df806F2200DC;

    //Whitelist Merkle Root
    bytes32 public merkleRoot;

    //Public Sale ETH Price
    uint256 public PS_ETH_PRICE = 0.25 ether;

    //WL PANDA price.
    uint256 public WL_PANDA_PRICE = 50000 * 10 ** 18;

    //Public Sale PANDA price.
    uint256 public PS_PANDA_PRICE = WL_PANDA_PRICE * 120 / 100; 

    //The total quantity for Public sale.
    uint256 public PS_QUANTITY = 5999; 

    //Max panda mint for one address in public sale.
    uint256 public MAX_PANDAMINT_FOR_ADDRESS = 10;

    //Max eth mint for one address in public sale.
    uint256 public MAX_ETHMINT_FOR_ADDRESS = 10;

    //The max quantity for Panda Minting in Public sale.
    uint256 public PS_MAX_PANDAMINT_QUANTITY = 1000;

    //The quantity for WL.
    uint256 public WL_QUANTITY = 3001;

    //MAX Supply.
    uint256 public constant NFT_MAX_INDEX = 10000;

    //How many WL have been minted.
    uint256 public WL_MINTED;

    //How many PS minted by PANDA.
    uint256 public PS_PANDA_MINTED;

    //Takes place time of whitelist sale.
    uint256 public WL_STARTING_TIMESTAMP; 

    //Takes place 24 hours after Whitelist Sale.
    uint256 public PS_STARTING_TIMESTAMP;

    //Whitelist sale period.
    uint256 public WL_PERIOD = 24 * 3600;

    //Public sale period.
    uint256 public PS_PERIOD = 3 * 24 * 3600;

    //Minted by user in WLsale.
    mapping(address => uint256) public userToHasMintedWL;

    //ETHMinted by user in Public sale.
    mapping(address => uint256) public userToHasETHMintedPS;

    //PANDAMinted by user in Public sale.
    mapping(address => uint256) public userToHasPANDAMintedPS;

    //Metadata reveal state
    bool public REVEALED = false;

    //Token Base URI
    string public BASE_URI;

    modifier callerIsUser() {
        if (tx.origin != msg.sender) {
            revert CallIsAnContract(tx.origin, msg.sender);
        }
        _;
    }

    modifier notZeroAddress(address addr) {
        if (addr == address(0)) {
            revert NotZeroAddress(addr);
        }
        _;
    }

    constructor(string memory uri, uint256 ts, bytes32 root) ERC721A("RandomPandaClub", "RPC", 10000) {
        BASE_URI = uri;
        WL_STARTING_TIMESTAMP = ts;
        PS_STARTING_TIMESTAMP = ts + WL_PERIOD;
        merkleRoot = root;

        _safeMint(TREASURY_ADD, 1);
    } 

    /*------------------------------- views -------------------------------*/

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return BASE_URI;
    }

    /*------------------------------- writes -------------------------------*/

    function publicSaleByETH(uint8 quantity)
        public
        payable
        callerIsUser
    {
        if (block.timestamp < PS_STARTING_TIMESTAMP) {
            revert PSNotStart(block.timestamp, PS_STARTING_TIMESTAMP);
        }

        if (block.timestamp > PS_STARTING_TIMESTAMP + PS_PERIOD) {
            revert PSMintingFinished(block.timestamp, PS_STARTING_TIMESTAMP + PS_PERIOD);
        }

        if (totalSupply() + quantity > PS_QUANTITY + WL_QUANTITY) {
            revert MaxSupplyForPS(totalSupply(), quantity, PS_QUANTITY + WL_QUANTITY);
        }

        if (userToHasETHMintedPS[msg.sender] + quantity > MAX_ETHMINT_FOR_ADDRESS) {
             revert MaxETHMintForAddr(userToHasETHMintedPS[msg.sender], quantity, MAX_ETHMINT_FOR_ADDRESS);
        }

        //Require enough ETH
        if (msg.value < quantity * PS_ETH_PRICE) {
            revert NotEnoughEth(msg.value, quantity * PS_ETH_PRICE);
        }

        userToHasETHMintedPS[msg.sender] += quantity;

        //Mint the quantity
        _safeMint(msg.sender, quantity);

        emit PublicSaleByETH(msg.sender, quantity);
    }

    function publicSaleByPANDA(uint8 quantity)
        public
        callerIsUser
    {
        if (block.timestamp < PS_STARTING_TIMESTAMP) {
            revert PSNotStart(block.timestamp, PS_STARTING_TIMESTAMP);
        }

        if (block.timestamp > PS_STARTING_TIMESTAMP + PS_PERIOD) {
            revert PSMintingFinished(block.timestamp, PS_STARTING_TIMESTAMP + PS_PERIOD);
        }

        if (totalSupply() + quantity > PS_QUANTITY + WL_QUANTITY) {
            revert MaxSupplyForPS(totalSupply(), quantity, PS_QUANTITY + WL_QUANTITY);
        }

        if (PS_PANDA_MINTED + WL_MINTED + quantity > PS_MAX_PANDAMINT_QUANTITY + WL_QUANTITY) {
            revert MaxSupplyForPANDAMINT(PS_PANDA_MINTED + WL_MINTED, quantity, PS_MAX_PANDAMINT_QUANTITY + WL_QUANTITY);
        }

        if (userToHasPANDAMintedPS[msg.sender] + quantity > MAX_PANDAMINT_FOR_ADDRESS) {
             revert MaxPANDAMintForAddr(userToHasPANDAMintedPS[msg.sender], quantity, MAX_PANDAMINT_FOR_ADDRESS);
        }

        //Transfer PANDA
        IERC20(PANDA).safeTransferFrom(msg.sender, address(this), PS_PANDA_PRICE * quantity);

        userToHasPANDAMintedPS[msg.sender] += quantity;
        PS_PANDA_MINTED += quantity;

        //Mint the quantity
        _safeMint(msg.sender, quantity);

        emit PublicSaleByETH(msg.sender, quantity);
    }

    function mintWL(uint256 quantity, uint256 maxQuantity , bytes32[] calldata merkleProof) public callerIsUser {
        if (block.timestamp <= WL_STARTING_TIMESTAMP) {
            revert WLSaleNotStart(block.timestamp, WL_STARTING_TIMESTAMP);
        }

        if (block.timestamp > WL_STARTING_TIMESTAMP + WL_PERIOD) {
            revert WlMintingFinished(block.timestamp, WL_STARTING_TIMESTAMP + WL_PERIOD);
        }

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxQuantity));
        bool valid = MerkleProof.verify(merkleProof, merkleRoot, leaf);
        if (!valid) {
            revert MerkleProofFail();
        }
        
        if (WL_MINTED + quantity > WL_QUANTITY) {
            revert MaxSupplyWl(WL_MINTED + quantity, WL_QUANTITY);
        }

        if (userToHasMintedWL[msg.sender] + quantity > maxQuantity) {
            revert WlMintOverMax(userToHasMintedWL[msg.sender] + quantity);
        }
         
        IERC20(PANDA).safeTransferFrom(msg.sender, address(this), WL_PANDA_PRICE * quantity);

        userToHasMintedWL[msg.sender] = userToHasMintedWL[msg.sender] + quantity;
        WL_MINTED = WL_MINTED + quantity;

        //Mint them
        _safeMint(msg.sender, quantity);

        emit MintWL(msg.sender, quantity);
    }

    //send remaining NFTs to pool
    function devMint(address dev_Add) external onlyOwner {
        if (block.timestamp < PS_STARTING_TIMESTAMP + PS_PERIOD) {
            revert PSNotFinished(block.timestamp, PS_STARTING_TIMESTAMP + PS_PERIOD);
        }
        uint256 leftOver = NFT_MAX_INDEX - totalSupply();
        _safeMint(dev_Add, leftOver);

        emit DevMint(leftOver);
    }

    //send remaining NFTs to pool
    function devMintSafe(address dev_Add, uint leftNum) external onlyOwner {
        if (block.timestamp < PS_STARTING_TIMESTAMP + PS_PERIOD) {//mainnet WL_STARTING_TIMESTAMP + 86400
            revert PSNotFinished(block.timestamp, PS_STARTING_TIMESTAMP + PS_PERIOD);
        }
        uint256 leftOver = NFT_MAX_INDEX - totalSupply();
        if (leftNum > leftOver) {
            revert DevMintOver(leftNum, leftOver);
        }
        _safeMint(dev_Add, leftNum);
        
        emit DevMint(leftNum);
    }

    function withdrawEther() public onlyOwner {
        uint256 finalFunds = address(this).balance;
        payable(TREASURY_ADD).transfer(finalFunds);

        emit WithdrawEther(finalFunds);
    }

    function withdrawERC20(
        uint256 tokenAmount
    ) external onlyOwner
    {
        IERC20(PANDA).transfer(TREASURY_ADD, tokenAmount);

        emit WithdrawERC20(tokenAmount);
    }


    function setStartTime(uint256 startTime) external onlyOwner {
        WL_STARTING_TIMESTAMP = startTime;
        PS_STARTING_TIMESTAMP = startTime + WL_PERIOD;

        emit SetStartTime(startTime); 
    }

    function setWLPeriod(uint256 wlPeriod) external onlyOwner {
        WL_PERIOD = wlPeriod;

        emit SetWLPeriod(wlPeriod); 
    }

    function setPSPeriod(uint256 psPeriod) external onlyOwner {
        PS_PERIOD = psPeriod;

        emit SetPSPeriod(psPeriod); 
    }

    function setETHPrice(uint256 ethPrice) external onlyOwner {
        PS_ETH_PRICE = ethPrice;

        emit SetETHPrice(ethPrice);
    }

    function setPANDAPrice(uint256 pandaPrice) external onlyOwner {
        WL_PANDA_PRICE = pandaPrice;
        PS_PANDA_PRICE = pandaPrice * 120 / 100;

        emit SetPANDAPrice(pandaPrice);
    }

    function setWLSupply(uint256 quantity) external onlyOwner {
        WL_QUANTITY = quantity;

        emit SetWLSupply(quantity);
    }

    function setMaxPandaMint(uint256 maxPandaMint) external onlyOwner {
        MAX_PANDAMINT_FOR_ADDRESS = maxPandaMint;

        emit SetMaxPandaMint(maxPandaMint);
    }

    function setMaxETHMint(uint256 maxETHMint) external onlyOwner {
        MAX_ETHMINT_FOR_ADDRESS = maxETHMint;

        emit SetMaxETHMint(maxETHMint);
    }
    
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;

        emit SetMerkleRoot(_merkleRoot);
    }

    function setBaseURI(string memory baseURI_, bool _revealed) external onlyOwner {
        BASE_URI = baseURI_;
        REVEALED = _revealed;

        emit SetBaseURI(baseURI_, _revealed);
    }

    /*------------------------------- errors -------------------------------*/
    
    error CallIsAnContract(address originCaller, address caller);
    error WLSaleNotStart(uint256 timestamp, uint256 startTime);
    error MaxETHMintForAddr(uint256 totalMint, uint256 mintNum, uint256 ethMintNumPerAddr);
    error MaxPANDAMintForAddr(uint256 totalMint, uint256 mintNum, uint256 pandaMintNumPerAddr);
    error NotEnoughEth(uint256 msgValue, uint256 needValue);
    error MaxSupplyWl(uint256 mintNum, uint256 wlNum);
    error MaxSupplyForPS(uint256 totalSupply, uint256 mintNum, uint256 psNum);
    error MaxSupplyForPANDAMINT(uint256 totalSupply, uint256 mintNum, uint256 pandaMintNum);
    error WlMintOverMax(uint256 mintNum);
    error WlMintingFinished(uint256 timestamp, uint256 wlFinishTime);
    error PSNotStart(uint256 timestamp, uint256 psStartTime);     
    error PSMintingFinished(uint256 timestamp, uint256 psFinishTime);
    error PSNotFinished(uint256 timestamp, uint256 psFinishTime);   
    error NotZeroAddress(address addr); 
    error MerkleProofFail();
    error DevMintOver(uint256 leftNum, uint256 leftOver);

    /*------------------------------- events -------------------------------*/
    
    event PublicSaleByETH(address minter, uint256 quantity);
    event MintWL(address minter, uint256 quantity);
    event DevMint(uint256 quantity);
    event WithdrawEther(uint256 quantity);
    event WithdrawERC20(uint256 tokenAmount);
    event SetWLPeriod(uint256 wlPeriod);
    event SetPSPeriod(uint256 psPeriod);
    event SetStartTime(uint256 startTime); 
    event SetWLSupply(uint256 quantity);
    event SetMerkleRoot(bytes32 _merkleRoot);
    event SetBaseURI(string baseURI, bool revealed);
    event SetETHPrice(uint256 ethPrice);
    event SetPANDAPrice(uint256 pandaPrice);
    event SetMaxPandaMint(uint256 maxPandaMint);
    event SetMaxETHMint(uint256 maxETHMint);
}

File 2 of 16 : 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 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 4 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

File 6 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 16 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 8 of 16 : ERC721A.sol
/*
 **                                                                                                                                                              
 **                                                                   dddddddd                                                                                   
 **  PPPPPPPPPPPPPPPPP                                                d::::::d                  DDDDDDDDDDDDD                  AAA                 OOOOOOOOO     
 **  P::::::::::::::::P                                               d::::::d                  D::::::::::::DDD              A:::A              OO:::::::::OO   
 **  P::::::PPPPPP:::::P                                              d::::::d                  D:::::::::::::::DD           A:::::A           OO:::::::::::::OO 
 **  PP:::::P     P:::::P                                             d:::::d                   DDD:::::DDDDD:::::D         A:::::::A         O:::::::OOO:::::::O
 **    P::::P     P:::::Paaaaaaaaaaaaa  nnnn  nnnnnnnn        ddddddddd:::::d   aaaaaaaaaaaaa     D:::::D    D:::::D       A:::::::::A        O::::::O   O::::::O
 **    P::::P     P:::::Pa::::::::::::a n:::nn::::::::nn    dd::::::::::::::d   a::::::::::::a    D:::::D     D:::::D     A:::::A:::::A       O:::::O     O:::::O
 **    P::::PPPPPP:::::P aaaaaaaaa:::::an::::::::::::::nn  d::::::::::::::::d   aaaaaaaaa:::::a   D:::::D     D:::::D    A:::::A A:::::A      O:::::O     O:::::O
 **    P:::::::::::::PP           a::::ann:::::::::::::::nd:::::::ddddd:::::d            a::::a   D:::::D     D:::::D   A:::::A   A:::::A     O:::::O     O:::::O
 **    P::::PPPPPPPPP      aaaaaaa:::::a  n:::::nnnn:::::nd::::::d    d:::::d     aaaaaaa:::::a   D:::::D     D:::::D  A:::::A     A:::::A    O:::::O     O:::::O
 **    P::::P            aa::::::::::::a  n::::n    n::::nd:::::d     d:::::d   aa::::::::::::a   D:::::D     D:::::D A:::::AAAAAAAAA:::::A   O:::::O     O:::::O
 **    P::::P           a::::aaaa::::::a  n::::n    n::::nd:::::d     d:::::d  a::::aaaa::::::a   D:::::D     D:::::DA:::::::::::::::::::::A  O:::::O     O:::::O
 **    P::::P          a::::a    a:::::a  n::::n    n::::nd:::::d     d:::::d a::::a    a:::::a   D:::::D    D:::::DA:::::AAAAAAAAAAAAA:::::A O::::::O   O::::::O
 **  PP::::::PP        a::::a    a:::::a  n::::n    n::::nd::::::ddddd::::::dda::::a    a:::::a DDD:::::DDDDD:::::DA:::::A             A:::::AO:::::::OOO:::::::O
 **  P::::::::P        a:::::aaaa::::::a  n::::n    n::::n d:::::::::::::::::da:::::aaaa::::::a D:::::::::::::::DDA:::::A               A:::::AOO:::::::::::::OO 
 **  P::::::::P         a::::::::::aa:::a n::::n    n::::n  d:::::::::ddd::::d a::::::::::aa:::aD::::::::::::DDD A:::::A                 A:::::A OO:::::::::OO   
 **  PPPPPPPPPP          aaaaaaaaaa  aaaa nnnnnn    nnnnnn   ddddddddd   ddddd  aaaaaaaaaa  aaaaDDDDDDDDDDDDD   AAAAAAA                   AAAAAAA  OOOOOOOOO     
 **  
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal maxBatchSize;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
        bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

}

File 9 of 16 : 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 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

File 12 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 14 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 15 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"originCaller","type":"address"},{"internalType":"address","name":"caller","type":"address"}],"name":"CallIsAnContract","type":"error"},{"inputs":[{"internalType":"uint256","name":"leftNum","type":"uint256"},{"internalType":"uint256","name":"leftOver","type":"uint256"}],"name":"DevMintOver","type":"error"},{"inputs":[{"internalType":"uint256","name":"totalMint","type":"uint256"},{"internalType":"uint256","name":"mintNum","type":"uint256"},{"internalType":"uint256","name":"ethMintNumPerAddr","type":"uint256"}],"name":"MaxETHMintForAddr","type":"error"},{"inputs":[{"internalType":"uint256","name":"totalMint","type":"uint256"},{"internalType":"uint256","name":"mintNum","type":"uint256"},{"internalType":"uint256","name":"pandaMintNumPerAddr","type":"uint256"}],"name":"MaxPANDAMintForAddr","type":"error"},{"inputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"mintNum","type":"uint256"},{"internalType":"uint256","name":"pandaMintNum","type":"uint256"}],"name":"MaxSupplyForPANDAMINT","type":"error"},{"inputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"mintNum","type":"uint256"},{"internalType":"uint256","name":"psNum","type":"uint256"}],"name":"MaxSupplyForPS","type":"error"},{"inputs":[{"internalType":"uint256","name":"mintNum","type":"uint256"},{"internalType":"uint256","name":"wlNum","type":"uint256"}],"name":"MaxSupplyWl","type":"error"},{"inputs":[],"name":"MerkleProofFail","type":"error"},{"inputs":[{"internalType":"uint256","name":"msgValue","type":"uint256"},{"internalType":"uint256","name":"needValue","type":"uint256"}],"name":"NotEnoughEth","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"NotZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"psFinishTime","type":"uint256"}],"name":"PSMintingFinished","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"psFinishTime","type":"uint256"}],"name":"PSNotFinished","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"psStartTime","type":"uint256"}],"name":"PSNotStart","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"WLSaleNotStart","type":"error"},{"inputs":[{"internalType":"uint256","name":"mintNum","type":"uint256"}],"name":"WlMintOverMax","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"wlFinishTime","type":"uint256"}],"name":"WlMintingFinished","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":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"DevMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"MintWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"PublicSaleByETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"bool","name":"revealed","type":"bool"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethPrice","type":"uint256"}],"name":"SetETHPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxETHMint","type":"uint256"}],"name":"SetMaxETHMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxPandaMint","type":"uint256"}],"name":"SetMaxPandaMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"SetMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pandaPrice","type":"uint256"}],"name":"SetPANDAPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"psPeriod","type":"uint256"}],"name":"SetPSPeriod","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"SetStartTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"wlPeriod","type":"uint256"}],"name":"SetWLPeriod","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"SetWLSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"WithdrawERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"WithdrawEther","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ETHMINT_FOR_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PANDAMINT_FOR_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MAX_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PANDA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_ETH_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_MAX_PANDAMINT_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_PANDA_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_PANDA_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PS_STARTING_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_ADD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PANDA_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_STARTING_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dev_Add","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev_Add","type":"address"},{"internalType":"uint256","name":"leftNum","type":"uint256"}],"name":"devMintSafe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"maxQuantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicSaleByETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicSaleByPANDA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethPrice","type":"uint256"}],"name":"setETHPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxETHMint","type":"uint256"}],"name":"setMaxETHMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPandaMint","type":"uint256"}],"name":"setMaxPandaMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pandaPrice","type":"uint256"}],"name":"setPANDAPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"psPeriod","type":"uint256"}],"name":"setPSPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wlPeriod","type":"uint256"}],"name":"setWLPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setWLSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userToHasETHMintedPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userToHasMintedWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userToHasPANDAMintedPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600155600980546001600160a01b031916733cbb7f5d7499af626026e96a2f05df806f2200dc1790556703782dace9d90000600b55690a968163f0a57b400000600c8190556064906200005b90607862000987565b62000067919062000964565b600d5561176f600e55600a600f8190556010556103e8601155610bb9601255620151806017556203f480601855601c805460ff19169055348015620000ab57600080fd5b506040516200409a3803806200409a833981016040819052620000ce91620007fa565b6040518060400160405280600f81526020016e2930b73237b6a830b73230a1b63ab160891b8152506040518060400160405280600381526020016252504360e81b8152506127106200012f620001296200022260201b60201c565b62000226565b60008111620001955760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b8251620001aa90600390602086019062000721565b508151620001c090600490602085019062000721565b5060025550508251620001db90601d90602086019062000721565b506015829055601754620001f0908362000949565b601655600a8190556200021973e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c59600162000276565b50505062000a63565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620002988282604051806020016040528060008152506200029c60201b60201c565b5050565b6001546001600160a01b038416620003015760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016200018c565b6200030d816001541190565b156200035c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016200018c565b600254831115620003bb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016200018c565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190620004199087906200091b565b6001600160801b031681526020018583602001516200043991906200091b565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156200059d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46200051f6000888488620005a8565b620005785760405162461bcd60e51b815260206004820152603360248201526000805160206200407a83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200018c565b81620005848162000a19565b9250508080620005949062000a19565b915050620004cf565b506001555050505050565b6000620005c9846001600160a01b03166200071260201b6200211e1760201c565b156200070657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000603903390899088908890600401620008c5565b602060405180830381600087803b1580156200061e57600080fd5b505af192505050801562000651575060408051601f3d908101601f191682019092526200064e91810190620007c7565b60015b620006eb573d80801562000682576040519150601f19603f3d011682016040523d82523d6000602084013e62000687565b606091505b508051620006e35760405162461bcd60e51b815260206004820152603360248201526000805160206200407a83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200018c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200070a565b5060015b949350505050565b6001600160a01b03163b151590565b8280546200072f90620009dc565b90600052602060002090601f0160209004810192826200075357600085556200079e565b82601f106200076e57805160ff19168380011785556200079e565b828001600101855582156200079e579182015b828111156200079e57825182559160200191906001019062000781565b50620007ac929150620007b0565b5090565b5b80821115620007ac5760008155600101620007b1565b600060208284031215620007da57600080fd5b81516001600160e01b031981168114620007f357600080fd5b9392505050565b6000806000606084860312156200081057600080fd5b83516001600160401b03808211156200082857600080fd5b818601915086601f8301126200083d57600080fd5b81518181111562000852576200085262000a4d565b604051601f8201601f19908116603f011681019083821181831017156200087d576200087d62000a4d565b816040528281528960208487010111156200089757600080fd5b620008aa836020830160208801620009a9565b6020890151604090990151909a989950979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009048160a0850160208701620009a9565b601f01601f19169190910160a00195945050505050565b60006001600160801b0382811684821680830382111562000940576200094062000a37565b01949350505050565b600082198211156200095f576200095f62000a37565b500190565b6000826200098257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620009a457620009a462000a37565b500290565b60005b83811015620009c6578181015183820152602001620009ac565b83811115620009d6576000848401525b50505050565b600181811c90821680620009f157607f821691505b6020821081141562000a1357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000a305762000a3062000a37565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6136078062000a736000396000f3fe60806040526004361061038c5760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d78276c6116100a0578063e985e9c51161006f578063e985e9c5146109e6578063f2fde38b14610a2f578063fa47a93c14610a4f578063fa776a5314610a6f57600080fd5b8063d78276c614610985578063d9a3f487146109a5578063dbddb26a146109bb578063e6552fdf146109d057600080fd5b8063c87c050b116100dc578063c87c050b1461090f578063cc3b92e81461092f578063d673b3681461094f578063d6cc0be41461096f57600080fd5b8063b88d4fde146108af578063bc7dce06146108cf578063c87b56dd146108ef57600080fd5b806395d89b411161017a578063aa848d8411610149578063aa848d841461084d578063aab3a69314610863578063ae7f4ee514610879578063b64b21ca1461088f57600080fd5b806395d89b41146107eb5780639ea2323a14610800578063a22cb46514610813578063a76a95871461083357600080fd5b80637d5287bb116101b65780637d5287bb1461076a5780637ebae654146107975780638da5cb5b146107ad57806390829347146107cb57600080fd5b8063715018a6146107205780637362377b146107355780637cb647591461074a57600080fd5b80633623c5ba116102c157806342842e0e1161025f5780635ff9ce671161022e5780635ff9ce67146106a05780636352211e146106c057806368debb19146106e057806370a082311461070057600080fd5b806342842e0e1461063457806348e23baf146106545780634f6ccce71461066a5780635d2702041461068a57600080fd5b80633e0a322d1161029b5780633e0a322d146105b15780633f296d49146105d157806341e2d16b146105e757806341ee05f71461061457600080fd5b80633623c5ba1461055b5780633948b8cc146105715780633abf54fa1461059157600080fd5b806318160ddd1161032e5780632c1bda62116103085780632c1bda62146104f95780632eb4a7ab1461050f5780632f745c591461052557806333083ad71461054557600080fd5b806318160ddd146104a457806318cc8f08146104b957806323b872dd146104d957600080fd5b8063081812fc1161036a578063081812fc14610428578063095ea7b3146104485780630e9e765a1461046a578063165df4e51461048e57600080fd5b806301ffc9a7146103915780630671b9af146103c657806306fdde0314610406575b600080fd5b34801561039d57600080fd5b506103b16103ac36600461314e565b610a9c565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103ee73e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c5981565b6040516001600160a01b0390911681526020016103bd565b34801561041257600080fd5b5061041b610b09565b6040516103bd919061333d565b34801561043457600080fd5b506103ee610443366004613135565b610b9b565b34801561045457600080fd5b506104686104633660046130ee565b610c2b565b005b34801561047657600080fd5b50610480600d5481565b6040519081526020016103bd565b34801561049a57600080fd5b5061048060125481565b3480156104b057600080fd5b50600154610480565b3480156104c557600080fd5b506104686104d4366004613135565b610d43565b3480156104e557600080fd5b506104686104f4366004612fff565b610da9565b34801561050557600080fd5b50610480600c5481565b34801561051b57600080fd5b50610480600a5481565b34801561053157600080fd5b506104806105403660046130ee565b610db4565b34801561055157600080fd5b5061048060155481565b34801561056757600080fd5b5061048060165481565b34801561057d57600080fd5b5061046861058c366004613135565b610f2d565b34801561059d57600080fd5b506104686105ac366004613266565b610f8c565b3480156105bd57600080fd5b506104686105cc366004613135565b611239565b3480156105dd57600080fd5b5061048060135481565b3480156105f357600080fd5b50610480610602366004612fb1565b601b6020526000908152604090205481565b34801561062057600080fd5b5061046861062f366004612fb1565b6112a8565b34801561064057600080fd5b5061046861064f366004612fff565b611377565b34801561066057600080fd5b50610480600f5481565b34801561067657600080fd5b50610480610685366004613135565b611392565b34801561069657600080fd5b50610480600e5481565b3480156106ac57600080fd5b506104686106bb3660046130ee565b6113fb565b3480156106cc57600080fd5b506103ee6106db366004613135565b6114d3565b3480156106ec57600080fd5b506104686106fb366004613135565b6114e5565b34801561070c57600080fd5b5061048061071b366004612fb1565b611544565b34801561072c57600080fd5b506104686115d5565b34801561074157600080fd5b5061046861160b565b34801561075657600080fd5b50610468610765366004613135565b6116a9565b34801561077657600080fd5b50610480610785366004612fb1565b601a6020526000908152604090205481565b3480156107a357600080fd5b5061048061271081565b3480156107b957600080fd5b506000546001600160a01b03166103ee565b3480156107d757600080fd5b506009546103ee906001600160a01b031681565b3480156107f757600080fd5b5061041b611708565b61046861080e366004613266565b611717565b34801561081f57600080fd5b5061046861082e3660046130b7565b6118a1565b34801561083f57600080fd5b50601c546103b19060ff1681565b34801561085957600080fd5b5061048060145481565b34801561086f57600080fd5b50610480600b5481565b34801561088557600080fd5b5061048060175481565b34801561089b57600080fd5b506104686108aa366004613188565b611966565b3480156108bb57600080fd5b506104686108ca36600461303b565b6119e4565b3480156108db57600080fd5b506104686108ea366004613135565b611a1d565b3480156108fb57600080fd5b5061041b61090a366004613135565b611a7c565b34801561091b57600080fd5b5061046861092a366004613135565b611b49565b34801561093b57600080fd5b5061046861094a366004613135565b611ba8565b34801561095b57600080fd5b5061046861096a3660046131e3565b611c07565b34801561097b57600080fd5b5061048060185481565b34801561099157600080fd5b506104686109a0366004613135565b611e89565b3480156109b157600080fd5b5061048060105481565b3480156109c757600080fd5b5061041b611f7c565b3480156109dc57600080fd5b5061048060115481565b3480156109f257600080fd5b506103b1610a01366004612fcc565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a3b57600080fd5b50610468610a4a366004612fb1565b61200a565b348015610a5b57600080fd5b50610468610a6a366004613135565b6120a5565b348015610a7b57600080fd5b50610480610a8a366004612fb1565b60196020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b1480610acd57506001600160e01b03198216635b5e139f60e01b145b80610ae857506001600160e01b0319821663780e9d6360e01b145b80610b0357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610b18906134eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b44906134eb565b8015610b915780601f10610b6657610100808354040283529160200191610b91565b820191906000526020600020905b815481529060010190602001808311610b7457829003601f168201915b5050505050905090565b6000610ba8826001541190565b610c0f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c36826114d3565b9050806001600160a01b0316836001600160a01b03161415610ca55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c06565b336001600160a01b0382161480610cc15750610cc18133610a01565b610d335760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c06565b610d3e83838361212d565b505050565b6000546001600160a01b03163314610d6d5760405162461bcd60e51b8152600401610c0690613374565b600f8190556040518181527faf20c2c5c7b0db0681d58d0207b6f9192e56970ccb2ade3bfd3e5eaa330227d4906020015b60405180910390a150565b610d3e838383612189565b6000610dbf83611544565b8210610e185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c06565b6000610e2360015490565b905060008060005b83811015610ecd576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610e7e57805192505b876001600160a01b0316836001600160a01b03161415610eba5786841415610eac57509350610b0392505050565b83610eb681613526565b9450505b5080610ec581613526565b915050610e2b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c06565b6000546001600160a01b03163314610f575760405162461bcd60e51b8152600401610c0690613374565b60128190556040518181527f192fc312f13514e18abf34e5a1dcf9aa7309375355cc66a8a216d56fd8d9e1a190602001610d9e565b323314610fb457604051631f8ed9bd60e21b8152326004820152336024820152604401610c06565b601654421015610fe457601654604051630262fc1760e21b81524260048201526024810191909152604401610c06565b601854601654610ff4919061341e565b42111561102e574260185460165461100c919061341e565b604051632ffedea360e21b815260048101929092526024820152604401610c06565b601254600e5461103e919061341e565b8160ff1661104b60015490565b611055919061341e565b111561109c576001545b81601254600e54611070919061341e565b6040516355753fff60e11b8152600481019390935260ff90911660248301526044820152606401610c06565b6012546011546110ac919061341e565b8160ff166013546014546110c0919061341e565b6110ca919061341e565b111561111d576013546014546110e0919061341e565b816012546011546110f1919061341e565b604051633cf5cf5360e01b8152600481019390935260ff90911660248301526044820152606401610c06565b600f54336000908152601b602052604090205461113e9060ff84169061341e565b111561118657336000908152601b60205260409081902054600f549151630bb0613960e41b8152600481019190915260ff831660248201526044810191909152606401610c06565b6111b033308360ff16600d5461119c919061344a565b6009546001600160a01b0316929190612510565b336000908152601b60205260408120805460ff841692906111d290849061341e565b925050819055508060ff16601460008282546111ee919061341e565b9091555061120190503360ff831661256a565b6040805133815260ff831660208201527f2405c1757de78e31ac0b3c35320a7ef92cb3560cc2d66cddef01537412a0bab09101610d9e565b6000546001600160a01b031633146112635760405162461bcd60e51b8152600401610c0690613374565b6015819055601754611275908261341e565b6016556040518181527f191dde3e99ae398f28f0457d7346866a4fa04805ac0b57190b944935b5aa755090602001610d9e565b6000546001600160a01b031633146112d25760405162461bcd60e51b8152600401610c0690613374565b6018546016546112e2919061341e565b42101561131c57426018546016546112fa919061341e565b604051637a5e949560e01b815260048101929092526024820152604401610c06565b600061132760015490565b61133390612710613491565b905061133f828261256a565b6040518181527f6dc41da7efc7f0e4ff3cc76df99542e60d74c16e8ec252c7bffb4e83a5dbafce906020015b60405180910390a15050565b610d3e838383604051806020016040528060008152506119e4565b600061139d60015490565b82106113f75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c06565b5090565b6000546001600160a01b031633146114255760405162461bcd60e51b8152600401610c0690613374565b601854601654611435919061341e565b42101561144d57426018546016546112fa919061341e565b600061145860015490565b61146490612710613491565b90508082111561149157604051630f5e1d1960e31b81526004810183905260248101829052604401610c06565b61149b838361256a565b6040518281527f6dc41da7efc7f0e4ff3cc76df99542e60d74c16e8ec252c7bffb4e83a5dbafce9060200160405180910390a1505050565b60006114de82612588565b5192915050565b6000546001600160a01b0316331461150f5760405162461bcd60e51b8152600401610c0690613374565b60188190556040518181527f8c02708f6fd8030eb8a72d2585ac6144fc3a03dc811a7f7c14f353e786c563de90602001610d9e565b60006001600160a01b0382166115b05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c06565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610c0690613374565b61160960006126f7565b565b6000546001600160a01b031633146116355760405162461bcd60e51b8152600401610c0690613374565b604051479073e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c599082156108fc029083906000818181858888f19350505050158015611678573d6000803e3d6000fd5b506040518181527f384db9fc3726c2d95cfec67f179bab3b5b3151fb5642ccb002fd2e5d3613863b90602001610d9e565b6000546001600160a01b031633146116d35760405162461bcd60e51b8152600401610c0690613374565b600a8190556040518181527f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a4690602001610d9e565b606060048054610b18906134eb565b32331461173f57604051631f8ed9bd60e21b8152326004820152336024820152604401610c06565b60165442101561176f57601654604051630262fc1760e21b81524260048201526024810191909152604401610c06565b60185460165461177f919061341e565b421115611797574260185460165461100c919061341e565b601254600e546117a7919061341e565b8160ff166117b460015490565b6117be919061341e565b11156117cc5760015461105f565b601054336000908152601a60205260409020546117ed9060ff84169061341e565b111561183557336000908152601a60205260409081902054601054915163f4b5029b60e01b8152600481019190915260ff831660248201526044810191909152606401610c06565b600b546118459060ff831661344a565b34101561187f5734600b548260ff1661185e919061344a565b6040516226b02d60e21b815260048101929092526024820152604401610c06565b336000908152601a60205260408120805460ff841692906111ee90849061341e565b6001600160a01b0382163314156118fa5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c06565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119905760405162461bcd60e51b8152600401610c0690613374565b81516119a390601d906020850190612e8f565b50601c805460ff19168215151790556040517fb939e4eec1be4c65f209c823721a954c35bd434a61d9e058d7fa1c1ffbfc8bb89061136b9084908490613350565b6119ef848484612189565b6119fb84848484612747565b611a175760405162461bcd60e51b8152600401610c06906133a9565b50505050565b6000546001600160a01b03163314611a475760405162461bcd60e51b8152600401610c0690613374565b600b8190556040518181527fdbcebcd6964a2638bfaafdda260561a50e882a54e0fd344bf8b5599f94844e7f90602001610d9e565b6060611a89826001541190565b611aed5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c06565b6000611af7612855565b90506000815111611b175760405180602001604052806000815250611b42565b80611b2184612864565b604051602001611b329291906132d1565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611b735760405162461bcd60e51b8152600401610c0690613374565b60108190556040518181527f729c06cf89c894d7b3e47793773bd1f8dddb993fab815f9232569e4a14bf28f190602001610d9e565b6000546001600160a01b03163314611bd25760405162461bcd60e51b8152600401610c0690613374565b60178190556040518181527f2ca2a657d5face1bee00c3f97d8bb4b3923b5d7e2b89249abae8a20cb5ac747190602001610d9e565b323314611c2f57604051631f8ed9bd60e21b8152326004820152336024820152604401610c06565b6015544211611c5e57601554604051633420ce5d60e11b81524260048201526024810191909152604401610c06565b601754601554611c6e919061341e565b421115611ca85742601754601554611c86919061341e565b6040516365ed365d60e01b815260048101929092526024820152604401610c06565b6040516bffffffffffffffffffffffff193360601b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506000611d2b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150859050612962565b905080611d4b576040516334ce9a3d60e11b815260040160405180910390fd5b60125486601354611d5c919061341e565b1115611d955785601354611d70919061341e565b601254604051630888b21f60e41b815260048101929092526024820152604401610c06565b336000908152601960205260409020548590611db290889061341e565b1115611def5733600090815260196020526040902054611dd390879061341e565b6040516377a9565760e01b8152600401610c0691815260200190565b611e02333088600c5461119c919061344a565b33600090815260196020526040902054611e1d90879061341e565b33600090815260196020526040902055601354611e3b90879061341e565b601355611e48338761256a565b60408051338152602081018890527f7d0c4ec0ba68aef8dd2f60e9945b6c5dfefe3c8b99e11afd7ab5ac2afed58102910160405180910390a1505050505050565b6000546001600160a01b03163314611eb35760405162461bcd60e51b8152600401610c0690613374565b60095460405163a9059cbb60e01b815273e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c596004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b158015611f1357600080fd5b505af1158015611f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4b9190613118565b506040518181527fc82450a2de786f6e5ca1dc3755233aba938f1007a4824199fd09043c4e31d8d390602001610d9e565b601d8054611f89906134eb565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb5906134eb565b80156120025780601f10611fd757610100808354040283529160200191612002565b820191906000526020600020905b815481529060010190602001808311611fe557829003601f168201915b505050505081565b6000546001600160a01b031633146120345760405162461bcd60e51b8152600401610c0690613374565b6001600160a01b0381166120995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c06565b6120a2816126f7565b50565b6000546001600160a01b031633146120cf5760405162461bcd60e51b8152600401610c0690613374565b600c81905560646120e182607861344a565b6120eb9190613436565b600d556040518181527ff761bd36e928bbbd1419dc7bb263197c5651b1e5ff1041cf293201af8d3d93bd90602001610d9e565b6001600160a01b03163b151590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061219482612588565b80519091506000906001600160a01b0316336001600160a01b031614806121cb5750336121c084610b9b565b6001600160a01b0316145b806121dd575081516121dd9033610a01565b9050806122475760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c06565b846001600160a01b031682600001516001600160a01b0316146122bb5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c06565b6001600160a01b03841661231f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c06565b61232f600084846000015161212d565b6001600160a01b03851660009081526006602052604081208054600192906123619084906001600160801b0316613469565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260066020526040812080546001945090926123ad918591166133fc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561243584600161341e565b6000818152600560205260409020549091506001600160a01b03166124c75761245f816001541190565b156124c75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611a17908590612978565b612584828260405180602001604052806000815250612a4a565b5050565b60408051808201909152600080825260208201526125a7826001541190565b6126065760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c06565b6000600254831061262c5760025461261e9084613491565b61262990600161341e565b90505b825b818110612696576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561268357949350505050565b508061268e816134d4565b91505061262e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610c06565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561284957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061278b903390899088908890600401613300565b602060405180830381600087803b1580156127a557600080fd5b505af19250505080156127d5575060408051601f3d908101601f191682019092526127d29181019061316b565b60015b61282f573d808015612803576040519150601f19603f3d011682016040523d82523d6000602084013e612808565b606091505b5080516128275760405162461bcd60e51b8152600401610c06906133a9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061284d565b5060015b949350505050565b6060601d8054610b18906134eb565b6060816128885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128b2578061289c81613526565b91506128ab9050600a83613436565b915061288c565b60008167ffffffffffffffff8111156128cd576128cd613597565b6040519080825280601f01601f1916602001820160405280156128f7576020820181803683370190505b5090505b841561284d5761290c600183613491565b9150612919600a86613541565b61292490603061341e565b60f81b81838151811061293957612939613581565b60200101906001600160f81b031916908160001a90535061295b600a86613436565b94506128fb565b60008261296f8584612d07565b14949350505050565b60006129cd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d7b9092919063ffffffff16565b805190915015610d3e57808060200190518101906129eb9190613118565b610d3e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c06565b6001546001600160a01b038416612aad5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c06565b612ab8816001541190565b15612b055760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c06565b600254831115612b625760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c06565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612bbe9087906133fc565b6001600160801b03168152602001858360200151612bdc91906133fc565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612cfc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612cc06000888488612747565b612cdc5760405162461bcd60e51b8152600401610c06906133a9565b81612ce681613526565b9250508080612cf490613526565b915050612c73565b506001555050505050565b600081815b8451811015612d73576000858281518110612d2957612d29613581565b60200260200101519050808311612d4f5760008381526020829052604090209250612d60565b600081815260208490526040902092505b5080612d6b81613526565b915050612d0c565b509392505050565b606061284d8484600085856001600160a01b0385163b612ddd5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c06565b600080866001600160a01b03168587604051612df991906132b5565b60006040518083038185875af1925050503d8060008114612e36576040519150601f19603f3d011682016040523d82523d6000602084013e612e3b565b606091505b5091509150612e4b828286612e56565b979650505050505050565b60608315612e65575081611b42565b825115612e755782518084602001fd5b8160405162461bcd60e51b8152600401610c06919061333d565b828054612e9b906134eb565b90600052602060002090601f016020900481019282612ebd5760008555612f03565b82601f10612ed657805160ff1916838001178555612f03565b82800160010185558215612f03579182015b82811115612f03578251825591602001919060010190612ee8565b506113f79291505b808211156113f75760008155600101612f0b565b600067ffffffffffffffff80841115612f3a57612f3a613597565b604051601f8501601f19908116603f01168101908282118183101715612f6257612f62613597565b81604052809350858152868686011115612f7b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612fac57600080fd5b919050565b600060208284031215612fc357600080fd5b611b4282612f95565b60008060408385031215612fdf57600080fd5b612fe883612f95565b9150612ff660208401612f95565b90509250929050565b60008060006060848603121561301457600080fd5b61301d84612f95565b925061302b60208501612f95565b9150604084013590509250925092565b6000806000806080858703121561305157600080fd5b61305a85612f95565b935061306860208601612f95565b925060408501359150606085013567ffffffffffffffff81111561308b57600080fd5b8501601f8101871361309c57600080fd5b6130ab87823560208401612f1f565b91505092959194509250565b600080604083850312156130ca57600080fd5b6130d383612f95565b915060208301356130e3816135ad565b809150509250929050565b6000806040838503121561310157600080fd5b61310a83612f95565b946020939093013593505050565b60006020828403121561312a57600080fd5b8151611b42816135ad565b60006020828403121561314757600080fd5b5035919050565b60006020828403121561316057600080fd5b8135611b42816135bb565b60006020828403121561317d57600080fd5b8151611b42816135bb565b6000806040838503121561319b57600080fd5b823567ffffffffffffffff8111156131b257600080fd5b8301601f810185136131c357600080fd5b6131d285823560208401612f1f565b92505060208301356130e3816135ad565b600080600080606085870312156131f957600080fd5b8435935060208501359250604085013567ffffffffffffffff8082111561321f57600080fd5b818701915087601f83011261323357600080fd5b81358181111561324257600080fd5b8860208260051b850101111561325757600080fd5b95989497505060200194505050565b60006020828403121561327857600080fd5b813560ff81168114611b4257600080fd5b600081518084526132a18160208601602086016134a8565b601f01601f19169290920160200192915050565b600082516132c78184602087016134a8565b9190910192915050565b600083516132e38184602088016134a8565b8351908301906132f78183602088016134a8565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061333390830184613289565b9695505050505050565b602081526000611b426020830184613289565b6040815260006133636040830185613289565b905082151560208301529392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156132f7576132f7613555565b6000821982111561343157613431613555565b500190565b6000826134455761344561356b565b500490565b600081600019048311821515161561346457613464613555565b500290565b60006001600160801b038381169083168181101561348957613489613555565b039392505050565b6000828210156134a3576134a3613555565b500390565b60005b838110156134c35781810151838201526020016134ab565b83811115611a175750506000910152565b6000816134e3576134e3613555565b506000190190565b600181811c908216806134ff57607f821691505b6020821081141561352057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561353a5761353a613555565b5060010190565b6000826135505761355061356b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146120a257600080fd5b6001600160e01b0319811681146120a257600080fdfea26469706673582212203a0ccf11a4ecf30f9011176d5e15d443c5ecd933fdc7d27362dd28ac49f1c7bf64736f6c63430008060033455243373231413a207472616e7366657220746f206e6f6e204552433732315200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000062f98c806521a950807426b167608dba954dc602ca14c945c1bcb2a2089ba629419b683f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63346b77635769397936423642764b4148736b7a683459583269334859645042594d6263423675446950714e2f00000000000000000000

Deployed Bytecode

0x60806040526004361061038c5760003560e01c8063715018a6116101dc578063b88d4fde11610102578063d78276c6116100a0578063e985e9c51161006f578063e985e9c5146109e6578063f2fde38b14610a2f578063fa47a93c14610a4f578063fa776a5314610a6f57600080fd5b8063d78276c614610985578063d9a3f487146109a5578063dbddb26a146109bb578063e6552fdf146109d057600080fd5b8063c87c050b116100dc578063c87c050b1461090f578063cc3b92e81461092f578063d673b3681461094f578063d6cc0be41461096f57600080fd5b8063b88d4fde146108af578063bc7dce06146108cf578063c87b56dd146108ef57600080fd5b806395d89b411161017a578063aa848d8411610149578063aa848d841461084d578063aab3a69314610863578063ae7f4ee514610879578063b64b21ca1461088f57600080fd5b806395d89b41146107eb5780639ea2323a14610800578063a22cb46514610813578063a76a95871461083357600080fd5b80637d5287bb116101b65780637d5287bb1461076a5780637ebae654146107975780638da5cb5b146107ad57806390829347146107cb57600080fd5b8063715018a6146107205780637362377b146107355780637cb647591461074a57600080fd5b80633623c5ba116102c157806342842e0e1161025f5780635ff9ce671161022e5780635ff9ce67146106a05780636352211e146106c057806368debb19146106e057806370a082311461070057600080fd5b806342842e0e1461063457806348e23baf146106545780634f6ccce71461066a5780635d2702041461068a57600080fd5b80633e0a322d1161029b5780633e0a322d146105b15780633f296d49146105d157806341e2d16b146105e757806341ee05f71461061457600080fd5b80633623c5ba1461055b5780633948b8cc146105715780633abf54fa1461059157600080fd5b806318160ddd1161032e5780632c1bda62116103085780632c1bda62146104f95780632eb4a7ab1461050f5780632f745c591461052557806333083ad71461054557600080fd5b806318160ddd146104a457806318cc8f08146104b957806323b872dd146104d957600080fd5b8063081812fc1161036a578063081812fc14610428578063095ea7b3146104485780630e9e765a1461046a578063165df4e51461048e57600080fd5b806301ffc9a7146103915780630671b9af146103c657806306fdde0314610406575b600080fd5b34801561039d57600080fd5b506103b16103ac36600461314e565b610a9c565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103ee73e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c5981565b6040516001600160a01b0390911681526020016103bd565b34801561041257600080fd5b5061041b610b09565b6040516103bd919061333d565b34801561043457600080fd5b506103ee610443366004613135565b610b9b565b34801561045457600080fd5b506104686104633660046130ee565b610c2b565b005b34801561047657600080fd5b50610480600d5481565b6040519081526020016103bd565b34801561049a57600080fd5b5061048060125481565b3480156104b057600080fd5b50600154610480565b3480156104c557600080fd5b506104686104d4366004613135565b610d43565b3480156104e557600080fd5b506104686104f4366004612fff565b610da9565b34801561050557600080fd5b50610480600c5481565b34801561051b57600080fd5b50610480600a5481565b34801561053157600080fd5b506104806105403660046130ee565b610db4565b34801561055157600080fd5b5061048060155481565b34801561056757600080fd5b5061048060165481565b34801561057d57600080fd5b5061046861058c366004613135565b610f2d565b34801561059d57600080fd5b506104686105ac366004613266565b610f8c565b3480156105bd57600080fd5b506104686105cc366004613135565b611239565b3480156105dd57600080fd5b5061048060135481565b3480156105f357600080fd5b50610480610602366004612fb1565b601b6020526000908152604090205481565b34801561062057600080fd5b5061046861062f366004612fb1565b6112a8565b34801561064057600080fd5b5061046861064f366004612fff565b611377565b34801561066057600080fd5b50610480600f5481565b34801561067657600080fd5b50610480610685366004613135565b611392565b34801561069657600080fd5b50610480600e5481565b3480156106ac57600080fd5b506104686106bb3660046130ee565b6113fb565b3480156106cc57600080fd5b506103ee6106db366004613135565b6114d3565b3480156106ec57600080fd5b506104686106fb366004613135565b6114e5565b34801561070c57600080fd5b5061048061071b366004612fb1565b611544565b34801561072c57600080fd5b506104686115d5565b34801561074157600080fd5b5061046861160b565b34801561075657600080fd5b50610468610765366004613135565b6116a9565b34801561077657600080fd5b50610480610785366004612fb1565b601a6020526000908152604090205481565b3480156107a357600080fd5b5061048061271081565b3480156107b957600080fd5b506000546001600160a01b03166103ee565b3480156107d757600080fd5b506009546103ee906001600160a01b031681565b3480156107f757600080fd5b5061041b611708565b61046861080e366004613266565b611717565b34801561081f57600080fd5b5061046861082e3660046130b7565b6118a1565b34801561083f57600080fd5b50601c546103b19060ff1681565b34801561085957600080fd5b5061048060145481565b34801561086f57600080fd5b50610480600b5481565b34801561088557600080fd5b5061048060175481565b34801561089b57600080fd5b506104686108aa366004613188565b611966565b3480156108bb57600080fd5b506104686108ca36600461303b565b6119e4565b3480156108db57600080fd5b506104686108ea366004613135565b611a1d565b3480156108fb57600080fd5b5061041b61090a366004613135565b611a7c565b34801561091b57600080fd5b5061046861092a366004613135565b611b49565b34801561093b57600080fd5b5061046861094a366004613135565b611ba8565b34801561095b57600080fd5b5061046861096a3660046131e3565b611c07565b34801561097b57600080fd5b5061048060185481565b34801561099157600080fd5b506104686109a0366004613135565b611e89565b3480156109b157600080fd5b5061048060105481565b3480156109c757600080fd5b5061041b611f7c565b3480156109dc57600080fd5b5061048060115481565b3480156109f257600080fd5b506103b1610a01366004612fcc565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a3b57600080fd5b50610468610a4a366004612fb1565b61200a565b348015610a5b57600080fd5b50610468610a6a366004613135565b6120a5565b348015610a7b57600080fd5b50610480610a8a366004612fb1565b60196020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b1480610acd57506001600160e01b03198216635b5e139f60e01b145b80610ae857506001600160e01b0319821663780e9d6360e01b145b80610b0357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610b18906134eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b44906134eb565b8015610b915780601f10610b6657610100808354040283529160200191610b91565b820191906000526020600020905b815481529060010190602001808311610b7457829003601f168201915b5050505050905090565b6000610ba8826001541190565b610c0f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c36826114d3565b9050806001600160a01b0316836001600160a01b03161415610ca55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c06565b336001600160a01b0382161480610cc15750610cc18133610a01565b610d335760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c06565b610d3e83838361212d565b505050565b6000546001600160a01b03163314610d6d5760405162461bcd60e51b8152600401610c0690613374565b600f8190556040518181527faf20c2c5c7b0db0681d58d0207b6f9192e56970ccb2ade3bfd3e5eaa330227d4906020015b60405180910390a150565b610d3e838383612189565b6000610dbf83611544565b8210610e185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c06565b6000610e2360015490565b905060008060005b83811015610ecd576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610e7e57805192505b876001600160a01b0316836001600160a01b03161415610eba5786841415610eac57509350610b0392505050565b83610eb681613526565b9450505b5080610ec581613526565b915050610e2b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c06565b6000546001600160a01b03163314610f575760405162461bcd60e51b8152600401610c0690613374565b60128190556040518181527f192fc312f13514e18abf34e5a1dcf9aa7309375355cc66a8a216d56fd8d9e1a190602001610d9e565b323314610fb457604051631f8ed9bd60e21b8152326004820152336024820152604401610c06565b601654421015610fe457601654604051630262fc1760e21b81524260048201526024810191909152604401610c06565b601854601654610ff4919061341e565b42111561102e574260185460165461100c919061341e565b604051632ffedea360e21b815260048101929092526024820152604401610c06565b601254600e5461103e919061341e565b8160ff1661104b60015490565b611055919061341e565b111561109c576001545b81601254600e54611070919061341e565b6040516355753fff60e11b8152600481019390935260ff90911660248301526044820152606401610c06565b6012546011546110ac919061341e565b8160ff166013546014546110c0919061341e565b6110ca919061341e565b111561111d576013546014546110e0919061341e565b816012546011546110f1919061341e565b604051633cf5cf5360e01b8152600481019390935260ff90911660248301526044820152606401610c06565b600f54336000908152601b602052604090205461113e9060ff84169061341e565b111561118657336000908152601b60205260409081902054600f549151630bb0613960e41b8152600481019190915260ff831660248201526044810191909152606401610c06565b6111b033308360ff16600d5461119c919061344a565b6009546001600160a01b0316929190612510565b336000908152601b60205260408120805460ff841692906111d290849061341e565b925050819055508060ff16601460008282546111ee919061341e565b9091555061120190503360ff831661256a565b6040805133815260ff831660208201527f2405c1757de78e31ac0b3c35320a7ef92cb3560cc2d66cddef01537412a0bab09101610d9e565b6000546001600160a01b031633146112635760405162461bcd60e51b8152600401610c0690613374565b6015819055601754611275908261341e565b6016556040518181527f191dde3e99ae398f28f0457d7346866a4fa04805ac0b57190b944935b5aa755090602001610d9e565b6000546001600160a01b031633146112d25760405162461bcd60e51b8152600401610c0690613374565b6018546016546112e2919061341e565b42101561131c57426018546016546112fa919061341e565b604051637a5e949560e01b815260048101929092526024820152604401610c06565b600061132760015490565b61133390612710613491565b905061133f828261256a565b6040518181527f6dc41da7efc7f0e4ff3cc76df99542e60d74c16e8ec252c7bffb4e83a5dbafce906020015b60405180910390a15050565b610d3e838383604051806020016040528060008152506119e4565b600061139d60015490565b82106113f75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c06565b5090565b6000546001600160a01b031633146114255760405162461bcd60e51b8152600401610c0690613374565b601854601654611435919061341e565b42101561144d57426018546016546112fa919061341e565b600061145860015490565b61146490612710613491565b90508082111561149157604051630f5e1d1960e31b81526004810183905260248101829052604401610c06565b61149b838361256a565b6040518281527f6dc41da7efc7f0e4ff3cc76df99542e60d74c16e8ec252c7bffb4e83a5dbafce9060200160405180910390a1505050565b60006114de82612588565b5192915050565b6000546001600160a01b0316331461150f5760405162461bcd60e51b8152600401610c0690613374565b60188190556040518181527f8c02708f6fd8030eb8a72d2585ac6144fc3a03dc811a7f7c14f353e786c563de90602001610d9e565b60006001600160a01b0382166115b05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c06565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6000546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610c0690613374565b61160960006126f7565b565b6000546001600160a01b031633146116355760405162461bcd60e51b8152600401610c0690613374565b604051479073e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c599082156108fc029083906000818181858888f19350505050158015611678573d6000803e3d6000fd5b506040518181527f384db9fc3726c2d95cfec67f179bab3b5b3151fb5642ccb002fd2e5d3613863b90602001610d9e565b6000546001600160a01b031633146116d35760405162461bcd60e51b8152600401610c0690613374565b600a8190556040518181527f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a4690602001610d9e565b606060048054610b18906134eb565b32331461173f57604051631f8ed9bd60e21b8152326004820152336024820152604401610c06565b60165442101561176f57601654604051630262fc1760e21b81524260048201526024810191909152604401610c06565b60185460165461177f919061341e565b421115611797574260185460165461100c919061341e565b601254600e546117a7919061341e565b8160ff166117b460015490565b6117be919061341e565b11156117cc5760015461105f565b601054336000908152601a60205260409020546117ed9060ff84169061341e565b111561183557336000908152601a60205260409081902054601054915163f4b5029b60e01b8152600481019190915260ff831660248201526044810191909152606401610c06565b600b546118459060ff831661344a565b34101561187f5734600b548260ff1661185e919061344a565b6040516226b02d60e21b815260048101929092526024820152604401610c06565b336000908152601a60205260408120805460ff841692906111ee90849061341e565b6001600160a01b0382163314156118fa5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c06565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119905760405162461bcd60e51b8152600401610c0690613374565b81516119a390601d906020850190612e8f565b50601c805460ff19168215151790556040517fb939e4eec1be4c65f209c823721a954c35bd434a61d9e058d7fa1c1ffbfc8bb89061136b9084908490613350565b6119ef848484612189565b6119fb84848484612747565b611a175760405162461bcd60e51b8152600401610c06906133a9565b50505050565b6000546001600160a01b03163314611a475760405162461bcd60e51b8152600401610c0690613374565b600b8190556040518181527fdbcebcd6964a2638bfaafdda260561a50e882a54e0fd344bf8b5599f94844e7f90602001610d9e565b6060611a89826001541190565b611aed5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c06565b6000611af7612855565b90506000815111611b175760405180602001604052806000815250611b42565b80611b2184612864565b604051602001611b329291906132d1565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611b735760405162461bcd60e51b8152600401610c0690613374565b60108190556040518181527f729c06cf89c894d7b3e47793773bd1f8dddb993fab815f9232569e4a14bf28f190602001610d9e565b6000546001600160a01b03163314611bd25760405162461bcd60e51b8152600401610c0690613374565b60178190556040518181527f2ca2a657d5face1bee00c3f97d8bb4b3923b5d7e2b89249abae8a20cb5ac747190602001610d9e565b323314611c2f57604051631f8ed9bd60e21b8152326004820152336024820152604401610c06565b6015544211611c5e57601554604051633420ce5d60e11b81524260048201526024810191909152604401610c06565b601754601554611c6e919061341e565b421115611ca85742601754601554611c86919061341e565b6040516365ed365d60e01b815260048101929092526024820152604401610c06565b6040516bffffffffffffffffffffffff193360601b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506000611d2b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150859050612962565b905080611d4b576040516334ce9a3d60e11b815260040160405180910390fd5b60125486601354611d5c919061341e565b1115611d955785601354611d70919061341e565b601254604051630888b21f60e41b815260048101929092526024820152604401610c06565b336000908152601960205260409020548590611db290889061341e565b1115611def5733600090815260196020526040902054611dd390879061341e565b6040516377a9565760e01b8152600401610c0691815260200190565b611e02333088600c5461119c919061344a565b33600090815260196020526040902054611e1d90879061341e565b33600090815260196020526040902055601354611e3b90879061341e565b601355611e48338761256a565b60408051338152602081018890527f7d0c4ec0ba68aef8dd2f60e9945b6c5dfefe3c8b99e11afd7ab5ac2afed58102910160405180910390a1505050505050565b6000546001600160a01b03163314611eb35760405162461bcd60e51b8152600401610c0690613374565b60095460405163a9059cbb60e01b815273e19b5757b8c2dd0c9b0fc6d5df739d0d581d0c596004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b158015611f1357600080fd5b505af1158015611f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4b9190613118565b506040518181527fc82450a2de786f6e5ca1dc3755233aba938f1007a4824199fd09043c4e31d8d390602001610d9e565b601d8054611f89906134eb565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb5906134eb565b80156120025780601f10611fd757610100808354040283529160200191612002565b820191906000526020600020905b815481529060010190602001808311611fe557829003601f168201915b505050505081565b6000546001600160a01b031633146120345760405162461bcd60e51b8152600401610c0690613374565b6001600160a01b0381166120995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c06565b6120a2816126f7565b50565b6000546001600160a01b031633146120cf5760405162461bcd60e51b8152600401610c0690613374565b600c81905560646120e182607861344a565b6120eb9190613436565b600d556040518181527ff761bd36e928bbbd1419dc7bb263197c5651b1e5ff1041cf293201af8d3d93bd90602001610d9e565b6001600160a01b03163b151590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061219482612588565b80519091506000906001600160a01b0316336001600160a01b031614806121cb5750336121c084610b9b565b6001600160a01b0316145b806121dd575081516121dd9033610a01565b9050806122475760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c06565b846001600160a01b031682600001516001600160a01b0316146122bb5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c06565b6001600160a01b03841661231f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c06565b61232f600084846000015161212d565b6001600160a01b03851660009081526006602052604081208054600192906123619084906001600160801b0316613469565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260066020526040812080546001945090926123ad918591166133fc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526005909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561243584600161341e565b6000818152600560205260409020549091506001600160a01b03166124c75761245f816001541190565b156124c75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600590935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611a17908590612978565b612584828260405180602001604052806000815250612a4a565b5050565b60408051808201909152600080825260208201526125a7826001541190565b6126065760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c06565b6000600254831061262c5760025461261e9084613491565b61262990600161341e565b90505b825b818110612696576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561268357949350505050565b508061268e816134d4565b91505061262e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610c06565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561284957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061278b903390899088908890600401613300565b602060405180830381600087803b1580156127a557600080fd5b505af19250505080156127d5575060408051601f3d908101601f191682019092526127d29181019061316b565b60015b61282f573d808015612803576040519150601f19603f3d011682016040523d82523d6000602084013e612808565b606091505b5080516128275760405162461bcd60e51b8152600401610c06906133a9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061284d565b5060015b949350505050565b6060601d8054610b18906134eb565b6060816128885750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128b2578061289c81613526565b91506128ab9050600a83613436565b915061288c565b60008167ffffffffffffffff8111156128cd576128cd613597565b6040519080825280601f01601f1916602001820160405280156128f7576020820181803683370190505b5090505b841561284d5761290c600183613491565b9150612919600a86613541565b61292490603061341e565b60f81b81838151811061293957612939613581565b60200101906001600160f81b031916908160001a90535061295b600a86613436565b94506128fb565b60008261296f8584612d07565b14949350505050565b60006129cd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d7b9092919063ffffffff16565b805190915015610d3e57808060200190518101906129eb9190613118565b610d3e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c06565b6001546001600160a01b038416612aad5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c06565b612ab8816001541190565b15612b055760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c06565b600254831115612b625760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c06565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612bbe9087906133fc565b6001600160801b03168152602001858360200151612bdc91906133fc565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612cfc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612cc06000888488612747565b612cdc5760405162461bcd60e51b8152600401610c06906133a9565b81612ce681613526565b9250508080612cf490613526565b915050612c73565b506001555050505050565b600081815b8451811015612d73576000858281518110612d2957612d29613581565b60200260200101519050808311612d4f5760008381526020829052604090209250612d60565b600081815260208490526040902092505b5080612d6b81613526565b915050612d0c565b509392505050565b606061284d8484600085856001600160a01b0385163b612ddd5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c06565b600080866001600160a01b03168587604051612df991906132b5565b60006040518083038185875af1925050503d8060008114612e36576040519150601f19603f3d011682016040523d82523d6000602084013e612e3b565b606091505b5091509150612e4b828286612e56565b979650505050505050565b60608315612e65575081611b42565b825115612e755782518084602001fd5b8160405162461bcd60e51b8152600401610c06919061333d565b828054612e9b906134eb565b90600052602060002090601f016020900481019282612ebd5760008555612f03565b82601f10612ed657805160ff1916838001178555612f03565b82800160010185558215612f03579182015b82811115612f03578251825591602001919060010190612ee8565b506113f79291505b808211156113f75760008155600101612f0b565b600067ffffffffffffffff80841115612f3a57612f3a613597565b604051601f8501601f19908116603f01168101908282118183101715612f6257612f62613597565b81604052809350858152868686011115612f7b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612fac57600080fd5b919050565b600060208284031215612fc357600080fd5b611b4282612f95565b60008060408385031215612fdf57600080fd5b612fe883612f95565b9150612ff660208401612f95565b90509250929050565b60008060006060848603121561301457600080fd5b61301d84612f95565b925061302b60208501612f95565b9150604084013590509250925092565b6000806000806080858703121561305157600080fd5b61305a85612f95565b935061306860208601612f95565b925060408501359150606085013567ffffffffffffffff81111561308b57600080fd5b8501601f8101871361309c57600080fd5b6130ab87823560208401612f1f565b91505092959194509250565b600080604083850312156130ca57600080fd5b6130d383612f95565b915060208301356130e3816135ad565b809150509250929050565b6000806040838503121561310157600080fd5b61310a83612f95565b946020939093013593505050565b60006020828403121561312a57600080fd5b8151611b42816135ad565b60006020828403121561314757600080fd5b5035919050565b60006020828403121561316057600080fd5b8135611b42816135bb565b60006020828403121561317d57600080fd5b8151611b42816135bb565b6000806040838503121561319b57600080fd5b823567ffffffffffffffff8111156131b257600080fd5b8301601f810185136131c357600080fd5b6131d285823560208401612f1f565b92505060208301356130e3816135ad565b600080600080606085870312156131f957600080fd5b8435935060208501359250604085013567ffffffffffffffff8082111561321f57600080fd5b818701915087601f83011261323357600080fd5b81358181111561324257600080fd5b8860208260051b850101111561325757600080fd5b95989497505060200194505050565b60006020828403121561327857600080fd5b813560ff81168114611b4257600080fd5b600081518084526132a18160208601602086016134a8565b601f01601f19169290920160200192915050565b600082516132c78184602087016134a8565b9190910192915050565b600083516132e38184602088016134a8565b8351908301906132f78183602088016134a8565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061333390830184613289565b9695505050505050565b602081526000611b426020830184613289565b6040815260006133636040830185613289565b905082151560208301529392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156132f7576132f7613555565b6000821982111561343157613431613555565b500190565b6000826134455761344561356b565b500490565b600081600019048311821515161561346457613464613555565b500290565b60006001600160801b038381169083168181101561348957613489613555565b039392505050565b6000828210156134a3576134a3613555565b500390565b60005b838110156134c35781810151838201526020016134ab565b83811115611a175750506000910152565b6000816134e3576134e3613555565b506000190190565b600181811c908216806134ff57607f821691505b6020821081141561352057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561353a5761353a613555565b5060010190565b6000826135505761355061356b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146120a257600080fd5b6001600160e01b0319811681146120a257600080fdfea26469706673582212203a0ccf11a4ecf30f9011176d5e15d443c5ecd933fdc7d27362dd28ac49f1c7bf64736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000062f98c806521a950807426b167608dba954dc602ca14c945c1bcb2a2089ba629419b683f0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63346b77635769397936423642764b4148736b7a683459583269334859645042594d6263423675446950714e2f00000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): ipfs://Qmc4kwcWi9y6B6BvKAHskzh4YX2i3HYdPBYMbcB6uDiPqN/
Arg [1] : ts (uint256): 1660521600
Arg [2] : root (bytes32): 0x6521a950807426b167608dba954dc602ca14c945c1bcb2a2089ba629419b683f

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000062f98c80
Arg [2] : 6521a950807426b167608dba954dc602ca14c945c1bcb2a2089ba629419b683f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d63346b77635769397936423642764b4148736b7a683459
Arg [5] : 583269334859645042594d6263423675446950714e2f00000000000000000000


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.