ETH Price: $2,874.35 (-9.20%)
Gas: 11 Gwei

Token

Babylon Misfits (SBM)
 

Overview

Max Total Supply

1,355 SBM

Holders

599

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
justinchan.eth
Balance
2 SBM
0x4ddd9af5f091a11438f3c4f618f1257d6d660cb2
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:
BabylonMisfits

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 21 : BabylonMisfits.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/interfaces/IERC165.sol';
import '@openzeppelin/contracts/interfaces/IERC2981.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract BabylonMisfits is ERC721Enumerable, Ownable, Pausable, ReentrancyGuard, IERC2981 {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint8 public redeemedGiveaways;

    mapping(address => bool) public giveawayRedeemed;

    mapping(address => bool) public proxyRegistryAddress;

    bool public saleActive = false;
    string public PROVENANCE_HASH = "";
    string private baseURI;
    string private tokenSuffixURI;
    string private contractMetadata = 'contract.json';

    uint256 public constant SALE_PRICE = 68000000000000000; // 0.068 ETH
    uint8 public constant MINT_BATCH_LIMIT = 5; // Max number of Tokens minted in a single txn
    uint8 public constant RESERVED_GIVEAWAYS = 20; // Tokens reserved for giveaway list

    uint256 public saleStartsAt;
    uint256 public publicsaleStartsAt;
    uint256 public privatesaleStartsAt;
    uint256 public privatesaleEndsAt;

    uint16 public constant MAX_TOKENS = 1970; // Max number of token sold in  sale

    address[] private recipients;
    uint16[] private splits;
    uint16 public constant SPLIT_BASE = 10000;

    bytes32 public whitelistMerkleRoot;

    bytes32 public redeemMerkleRoot;

    event TokenMinted(
        address indexed owner, 
        uint256 indexed quantity
    );
    event SaleStatusChange(
        address indexed issuer, 
        bool indexed status
    );
    event ContractWithdraw(
        address indexed initiator,
        uint256 amount
    );
    event ContractWithdrawToken(
        address indexed initiator,
        address indexed token,
        uint256 amount
    );
    event ProvenanceHashSet(
        address indexed initiator,
        string previousHash,
        string newHash
    );
    event WithdrawAddressChanged(
        address indexed previousAddress, 
        address indexed newAddress
    );

    uint16 internal royalty = 500; // base 10000, 5%
    uint16 public constant BASE = 10000;

    constructor(
        uint256 _saleStartTime,
        uint256 _privateSaleEndsAt,
        uint256 _publicSaleStartsAt,
        string memory _baseContractURI,
        string memory _tokenSuffixURI,
        string memory _provenaceHash,
        address[] memory _recipients,
        uint16[] memory _splits,
        address _proxyAddress
    ) ERC721('Babylon Misfits', 'SBM') {
        baseURI = _baseContractURI;
        tokenSuffixURI = _tokenSuffixURI;
        saleStartsAt = _saleStartTime; // Unix Timestamp 
        privatesaleStartsAt = saleStartsAt; // Start Private Sale, 
        privatesaleEndsAt = _privateSaleEndsAt; // End of Private Sale
        publicsaleStartsAt = _publicSaleStartsAt; // Start of Public Sale
        PROVENANCE_HASH =  _provenaceHash;
        recipients = _recipients;
        splits = _splits;
        proxyRegistryAddress[_proxyAddress] = true;
    }

    function mintGiveawayNFT(bytes32[] memory proof, uint8 numTokens) public {
        require(block.timestamp >= saleStartsAt, 'Sale not active');
        require(!giveawayRedeemed[msg.sender], 'Already redeemed');
        require((numTokens + redeemedGiveaways) <= RESERVED_GIVEAWAYS, 'All Giveaways Redeemed');
        require(MerkleProof.verify(proof, redeemMerkleRoot, keccak256(abi.encodePacked(msg.sender,numTokens))), 'Restricted Access');
        giveawayRedeemed[msg.sender] = true;
        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            redeemedGiveaways++;
            _safeMint(msg.sender, _tokenIds.current());
        }
        emit TokenMinted(msg.sender, numTokens);
    }

    function setWhitelistMerkleRoot(bytes32 _root) onlyOwner external {
        whitelistMerkleRoot = _root;
    }

    function setRedeemMerkleRoot(bytes32 _root) onlyOwner external {
        redeemMerkleRoot = _root;
    }

    /**
     * @dev mints `numTokens` tokens and assigns it to
     * `msg.sender` by calling _safeMint function.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - Current timestamp must within period of private sale `privatesaleStartsAt` - `privatesaleEndsAt`.
     * - `msg.sender` is among whitelisted memebrs based on the merkle proof provided
     * - Ether amount sent greater or equal the base price multipled by `numTokens`.
     * - `numTokens` within limits of max number of tokens minted in single txn.
     * - Max number of tokens for the private sale not reahced
     * @param numTokens - Number of tokens to be minted
     * @param proof -The merkle proof for the whitelisted address
     */
    function mintPrivateSale(uint8 numTokens, bytes32[] memory proof) public payable {
        require(!Address.isContract(msg.sender), "Cannot mint to a contract");

        require(saleActive && block.timestamp >= saleStartsAt, 'Sale not active');
        uint256 time = (block.timestamp);
        require(time > privatesaleStartsAt && time < privatesaleEndsAt, 'Private sale over');
        
        // bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, whitelistMerkleRoot, keccak256(abi.encodePacked(msg.sender))), 'Restricted Access');

        require((_tokenIds.current() + numTokens  ) <= MAX_TOKENS + redeemedGiveaways, 'Private sale sold');

        require(msg.value >= SALE_PRICE * numTokens, 'Insufficient ETH');
        require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Invalid Num Token');

        for (uint256 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current() );
        }

        emit TokenMinted(msg.sender, numTokens);
    }

    /**
     * @dev mints `numTokens` tokens and assigns it to
     * `msg.sender` by calling _safeMint function.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - Current timestamp must within period of public sale `publicsaleStartsAt` - `publicsaleEndsAt`.
     * - Ether amount sent greater or equal the current price multipled by `numTokens`.
     * - `numTokens` within limits of max number of tokens minted in single txn.
     * - Max number of tokens for the sale not reahced
     * @param numTokens - Number of tokens to be minted
     */
    function mintPublicSale(uint8 numTokens) public payable {
        require(!Address.isContract(msg.sender), "Cannot mint to a contract");

        require(saleActive && block.timestamp >= publicsaleStartsAt, 'Sale not active');

        require(msg.value >= SALE_PRICE * numTokens, 'Insufficient ETH');
        require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Wrong Num Token');
        require((_tokenIds.current() + numTokens ) <= MAX_TOKENS + redeemedGiveaways, 'Public sale sold');
        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current() );
        }
        emit TokenMinted(msg.sender, numTokens);
    }

    function setBaseURI(string memory baseContractURI) public onlyOwner {
        baseURI = baseContractURI;
    }

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

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

    /**
     * @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 override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev returns the base contract metadata json object
     * this metadat file is used by OpenSea see {https://docs.opensea.io/docs/contract-level-metadata}
     *
     */
    function contractURI() public view returns (string memory) {
        string memory baseContractURI = _baseURI();
        return string(abi.encodePacked(baseContractURI, contractMetadata));
    }

    /**
     * @dev Changes the sale status 'saleActive' from active to not active and vice versa
     *
     * Only Contract Owner can execute
     *
     * Emits a {SaleStatusChange} event.
     */
    function changeSaleStatus() public onlyOwner {
        saleActive = !saleActive;
        emit SaleStatusChange(msg.sender, saleActive);
    }

    /**
     * @dev withdraws the contract balance and send it to the withdraw Addresses based on split ratio.
     *
     * Emits a {ContractWithdraw} event.
     */
    function withdraw() public nonReentrant onlyOwner {

        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < recipients.length; i++) {
            (bool sent, ) = payable(recipients[i]).call{value: (balance * splits[i]) / SPLIT_BASE}('');
            require(sent, 'Withdraw Failed.');
        }

        emit ContractWithdraw(msg.sender, balance);
    }

    /// @notice Calculate the royalty payment
    /// @param _salePrice the sale price of the token
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (address(this), (_salePrice * royalty) / BASE);
    }

    /// @dev set the royalty
    /// @param _royalty the royalty in base 10000, 500 = 5%
    function setRoyalty(uint16 _royalty) public onlyOwner {
        require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

        royalty = _royalty;
    }

    /// @dev withdraw ERC20 tokens divided by splits
    function withdrawTokens(address _tokenContract) external nonReentrant onlyOwner {

        IERC20 tokenContract = IERC20(_tokenContract);
        // transfer the token from address of Catbotica address
        uint256 balance = tokenContract.balanceOf(address(this));

        for (uint256 i = 0; i < recipients.length; i++) {
            tokenContract.transfer(recipients[i], (balance * splits[i]) / SPLIT_BASE);
        }

        emit ContractWithdrawToken(
            msg.sender,
            _tokenContract,
            balance
        );
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function changeWithdrawAddress(address _recipient) external {
        require(_recipient != address(0), "Cannot use zero address.");
        require(_recipient != address(this), 'Cannot use this contract address');
        require(!Address.isContract(_recipient), "Cannot set recipient to a contract address");

        // loop over all the recipients and update the address
        bool _found = false;
        for (uint256 i = 0; i < recipients.length; i++) {
            // if the sender matches one of the recipients, update the address
            if (recipients[i] == msg.sender) {
                recipients[i] = _recipient;
                _found = true;
                break;
            }
        }
        require(_found, 'The sender is not a recipient.');
        emit WithdrawAddressChanged(msg.sender, _recipient);
    }


    function getRemSaleSupply() public view returns (uint256) {
        // if (_tokenIds.current() >= MAX_TOKENS) return 0;
        return (MAX_TOKENS + RESERVED_GIVEAWAYS - _tokenIds.current());
    }


    /**
    * @dev sets `PROVENANCE_HASH`
    *
    * Only Contract Owner can execute
    *
    * @param provenanceHash the string for the metadata and images hash
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        emit ProvenanceHashSet(msg.sender,PROVENANCE_HASH,provenanceHash);
        PROVENANCE_HASH = provenanceHash;
        
    }

    receive() external payable {}

    /**
     * Override isApprovedForAll to whitelisted marketplaces to enable gas-free listings.
     *
     */
    function isApprovedForAll(address _owner, address _operator) public view override returns (bool isOperator) {
        // check if this is an approved marketplace
        if (proxyRegistryAddress[_operator]) {
            return true;
        }
        // otherwise, use the default ERC721 isApprovedForAll()
        return super.isApprovedForAll(_owner, _operator);
    }

    /*
     * Function to set status of proxy contracts addresses
     *
     */
    function setProxy(address _proxyAddress, bool _value) public onlyOwner {
        proxyRegistryAddress[_proxyAddress] = _value;
    }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 21 : 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 5 of 21 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 6 of 21 : 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 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 8 of 21 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 21 : 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 13 of 21 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

File 14 of 21 : 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 15 of 21 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 17 of 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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 18 of 21 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

File 19 of 21 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 20 of 21 : 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 21 of 21 : 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": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"uint256","name":"_privateSaleEndsAt","type":"uint256"},{"internalType":"uint256","name":"_publicSaleStartsAt","type":"uint256"},{"internalType":"string","name":"_baseContractURI","type":"string"},{"internalType":"string","name":"_tokenSuffixURI","type":"string"},{"internalType":"string","name":"_provenaceHash","type":"string"},{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint16[]","name":"_splits","type":"uint16[]"},{"internalType":"address","name":"_proxyAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdrawToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"previousHash","type":"string"},{"indexed":false,"internalType":"string","name":"newHash","type":"string"}],"name":"ProvenanceHashSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"SaleStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"WithdrawAddressChanged","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_BATCH_LIMIT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_GIVEAWAYS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPLIT_BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"changeSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"changeWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giveawayRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"proxyRegistryAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemedGiveaways","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseContractURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRedeemMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6010805460ff1916905560a060408190526000608081905262000025916011916200023c565b5060408051808201909152600d8082526c31b7b73a3930b1ba173539b7b760991b60209092019182526200005c916014916200023c565b50601d805461ffff19166101f41790553480156200007957600080fd5b50604051620043b5380380620043b58339810160408190526200009c91620005f1565b604080518082018252600f81526e426162796c6f6e204d69736669747360881b60208083019182528351808501909452600384526253424d60e81b908401528151919291620000ee916000916200023c565b508051620001049060019060208401906200023c565b505050620001216200011b620001e660201b60201c565b620001ea565b600a805460ff60a01b191690556001600b558551620001489060129060208901906200023c565b5084516200015e9060139060208801906200023c565b5060158990556017899055601888905560168790558351620001889060119060208701906200023c565b5082516200019e906019906020860190620002cb565b508151620001b490601a90602085019062000323565b506001600160a01b03166000908152600f60205260409020805460ff1916600117905550620007419650505050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200024a9062000704565b90600052602060002090601f0160209004810192826200026e5760008555620002b9565b82601f106200028957805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b95782518255916020019190600101906200029c565b50620002c7929150620003c9565b5090565b828054828255906000526020600020908101928215620002b9579160200282015b82811115620002b957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002ec565b82805482825590600052602060002090600f01601090048101928215620002b95791602002820160005b838211156200038f57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200034d565b8015620003bf5782816101000a81549061ffff02191690556002016020816001010492830192600103026200038f565b5050620002c79291505b5b80821115620002c75760008155600101620003ca565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004215762000421620003e0565b604052919050565b600082601f8301126200043b57600080fd5b81516001600160401b03811115620004575762000457620003e0565b60206200046d601f8301601f19168201620003f6565b82815285828487010111156200048257600080fd5b60005b83811015620004a257858101830151828201840152820162000485565b83811115620004b45760008385840101525b5095945050505050565b60006001600160401b03821115620004da57620004da620003e0565b5060051b60200190565b80516001600160a01b0381168114620004fc57600080fd5b919050565b600082601f8301126200051357600080fd5b815160206200052c6200052683620004be565b620003f6565b82815260059290921b840181019181810190868411156200054c57600080fd5b8286015b8481101562000572576200056481620004e4565b835291830191830162000550565b509695505050505050565b600082601f8301126200058f57600080fd5b81516020620005a26200052683620004be565b82815260059290921b84018101918181019086841115620005c257600080fd5b8286015b848110156200057257805161ffff81168114620005e35760008081fd5b8352918301918301620005c6565b60008060008060008060008060006101208a8c0312156200061157600080fd5b895160208b015160408c015160608d0151929b5090995097506001600160401b03808211156200064057600080fd5b6200064e8d838e0162000429565b975060808c01519150808211156200066557600080fd5b620006738d838e0162000429565b965060a08c01519150808211156200068a57600080fd5b620006988d838e0162000429565b955060c08c0151915080821115620006af57600080fd5b620006bd8d838e0162000501565b945060e08c0151915080821115620006d457600080fd5b50620006e38c828d016200057d565b925050620006f56101008b01620004e4565b90509295985092959850929598565b600181811c908216806200071957607f821691505b602082108114156200073b57634e487b7160e01b600052602260045260246000fd5b50919050565b613c6480620007516000396000f3fe60806040526004361061034e5760003560e01c806368428a1b116101bb578063bd32fb66116100f7578063e985e9c511610095578063f47c84c51161006f578063f47c84c514610943578063f891cf0314610959578063fc8ff57914610973578063ff1b65561461098957600080fd5b8063e985e9c514610903578063ec342ad014610867578063f2fde38b1461092357600080fd5b8063c87b56dd116100d1578063c87b56dd146108a3578063ca1d953c146108c3578063d61c943a146108d8578063e8a3d485146108ee57600080fd5b8063bd32fb6614610847578063c197b0f714610867578063c31f2d1d1461089057600080fd5b8063a22cb46511610164578063a785c40e1161013e578063a785c40e146107c1578063aa98e0c6146107f1578063b63e91f914610807578063b88d4fde1461082757600080fd5b8063a22cb46514610777578063a4b379b814610797578063a4cd6c61146107ac57600080fd5b80637f205a74116101955780637f205a74146107295780638da5cb5b1461074457806395d89b411461076257600080fd5b806368428a1b146106da57806370a08231146106f4578063715018a61461071457600080fd5b80632dc04e461161028a57806349df728c1161023357806355f804b31161020d57806355f804b314610654578063583e88ab146106745780635c975abb1461068a5780636352211e146106ba57600080fd5b806349df728c146105f45780634f6ccce71461061457806351a39a581461063457600080fd5b80633ccfd60b116102645780633ccfd60b146105a957806342842e0e146105be57806345763d0c146105de57600080fd5b80632dc04e46146105535780632f745c591461056957806336e79a5a1461058957600080fd5b80631453671d116102f757806323b872dd116102d157806323b872dd146104c1578063254687c3146104e1578063291bdd06146105015780632a55205a1461051457600080fd5b80631453671d1461045257806318160ddd146104725780631f3e1be91461049157600080fd5b8063095ea7b311610328578063095ea7b3146103e9578063109695231461040b578063143a3f921461042b57600080fd5b806301ffc9a71461035a57806306fdde031461038f578063081812fc146103b157600080fd5b3661035557005b600080fd5b34801561036657600080fd5b5061037a6103753660046133f9565b61099e565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a46109e2565b604051610386919061346e565b3480156103bd57600080fd5b506103d16103cc366004613481565b610a74565b6040516001600160a01b039091168152602001610386565b3480156103f557600080fd5b506104096104043660046134b6565b610b0e565b005b34801561041757600080fd5b5061040961042636600461357f565b610c40565b34801561043757600080fd5b50610440600581565b60405160ff9091168152602001610386565b34801561045e57600080fd5b5061040961046d3660046135c8565b610ce3565b34801561047e57600080fd5b506008545b604051908152602001610386565b34801561049d57600080fd5b5061037a6104ac3660046135c8565b600f6020526000908152604090205460ff1681565b3480156104cd57600080fd5b506104096104dc3660046135e3565b610f32565b3480156104ed57600080fd5b506104096104fc366004613481565b610fb9565b61040961050f3660046136b0565b611006565b34801561052057600080fd5b5061053461052f3660046136fe565b61134d565b604080516001600160a01b039093168352602083019190915201610386565b34801561055f57600080fd5b5061048360175481565b34801561057557600080fd5b506104836105843660046134b6565b61137e565b34801561059557600080fd5b506104096105a4366004613720565b611426565b3480156105b557600080fd5b50610409611502565b3480156105ca57600080fd5b506104096105d93660046135e3565b61170d565b3480156105ea57600080fd5b5061048360155481565b34801561060057600080fd5b5061040961060f3660046135c8565b611728565b34801561062057600080fd5b5061048361062f366004613481565b6119cf565b34801561064057600080fd5b5061040961064f366004613752565b611a73565b34801561066057600080fd5b5061040961066f36600461357f565b611ae6565b34801561068057600080fd5b5061048360165481565b34801561069657600080fd5b50600a5474010000000000000000000000000000000000000000900460ff1661037a565b3480156106c657600080fd5b506103d16106d5366004613481565b611b41565b3480156106e657600080fd5b5060105461037a9060ff1681565b34801561070057600080fd5b5061048361070f3660046135c8565b611bcc565b34801561072057600080fd5b50610409611c66565b34801561073557600080fd5b5061048366f195a3c4ba000081565b34801561075057600080fd5b50600a546001600160a01b03166103d1565b34801561076e57600080fd5b506103a4611cba565b34801561078357600080fd5b50610409610792366004613752565b611cc9565b3480156107a357600080fd5b50610483611cd4565b3480156107b857600080fd5b50610440601481565b3480156107cd57600080fd5b5061037a6107dc3660046135c8565b600e6020526000908152604090205460ff1681565b3480156107fd57600080fd5b50610483601b5481565b34801561081357600080fd5b50610409610822366004613789565b611cff565b34801561083357600080fd5b506104096108423660046137d7565b611f62565b34801561085357600080fd5b50610409610862366004613481565b611ff0565b34801561087357600080fd5b5061087d61271081565b60405161ffff9091168152602001610386565b61040961089e366004613853565b61203d565b3480156108af57600080fd5b506103a46108be366004613481565b612291565b3480156108cf57600080fd5b5061040961237d565b3480156108e457600080fd5b50610483601c5481565b3480156108fa57600080fd5b506103a461240c565b34801561090f57600080fd5b5061037a61091e36600461386e565b612443565b34801561092f57600080fd5b5061040961093e3660046135c8565b61249a565b34801561094f57600080fd5b5061087d6107b281565b34801561096557600080fd5b50600d546104409060ff1681565b34801561097f57600080fd5b5061048360185481565b34801561099557600080fd5b506103a461256a565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806109dc57506109dc826125f8565b92915050565b6060600080546109f190613898565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90613898565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610af25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b1982611b41565b9050806001600160a01b0316836001600160a01b03161415610ba35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b336001600160a01b0382161480610bbf5750610bbf8133612443565b610c315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ae9565b610c3b8383612636565b505050565b600a546001600160a01b03163314610c885760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c601183604051610cc49291906138d3565b60405180910390a28051610cdf90601190602084019061334a565b5050565b6001600160a01b038116610d395760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420757365207a65726f20616464726573732e00000000000000006044820152606401610ae9565b6001600160a01b038116301415610d925760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420757365207468697320636f6e747261637420616464726573736044820152606401610ae9565b803b15610e075760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f742073657420726563697069656e7420746f206120636f6e74726160448201527f63742061646472657373000000000000000000000000000000000000000000006064820152608401610ae9565b6000805b601954811015610eaa57336001600160a01b031660198281548110610e3257610e3261396c565b6000918252602090912001546001600160a01b03161415610e98578260198281548110610e6157610e6161396c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060019150610eaa565b80610ea281613998565b915050610e0b565b5080610ef85760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610ae9565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b610f3c33826126b1565b610fae5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b610c3b838383612788565b600a546001600160a01b031633146110015760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b601c55565b333b156110555760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610ae9565b60105460ff16801561106957506015544210155b6110a75760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610ae9565b6017544290811180156110bb575060185481105b6111075760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610ae9565b601b546040516bffffffffffffffffffffffff193360601b16602082015261114a9184916034015b6040516020818303038152906040528051906020012061296d565b6111965760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610ae9565b600d546111a89060ff166107b26139b3565b61ffff168360ff166111b9600c5490565b6111c391906139d9565b11156112115760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610ae9565b61122560ff841666f195a3c4ba00006139f1565b3410156112745760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ae9565b600560ff84161180159061128b575060008360ff16115b6112d75760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964204e756d20546f6b656e0000000000000000000000000000006044820152606401610ae9565b60005b8360ff16811015611317576112f3600c80546001019055565b61130533611300600c5490565b612983565b8061130f81613998565b9150506112da565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b601d5460009081903090612710906113699061ffff16866139f1565b6113739190613a26565b915091509250929050565b600061138983611bcc565b82106113fd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610ae9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461146e5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6103e88161ffff1611156114ea5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b601d805461ffff191661ffff92909216919091179055565b6002600b5414156115555760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae9565b6002600b55600a546001600160a01b031633146115a25760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b4760005b6019548110156116cf576000601982815481106115c5576115c561396c565b600091825260209091200154601a80546001600160a01b03909216916127109190859081106115f6576115f661396c565b6000918252602090912060108204015461162091600f166002026101000a900461ffff16866139f1565b61162a9190613a26565b604051600081818185875af1925050503d8060008114611666576040519150601f19603f3d011682016040523d82523d6000602084013e61166b565b606091505b50509050806116bc5760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610ae9565b50806116c781613998565b9150506115a6565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b610c3b83838360405180602001604052806000815250611f62565b6002600b54141561177b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae9565b6002600b55600a546001600160a01b031633146117c85760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561182557600080fd5b505afa158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d9190613a3a565b905060005b60195481101561198457826001600160a01b031663a9059cbb6019838154811061188e5761188e61396c565b600091825260209091200154601a80546001600160a01b03909216916127109190869081106118bf576118bf61396c565b600091825260209091206010820401546118e991600f166002026101000a900461ffff16876139f1565b6118f39190613a26565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561193957600080fd5b505af115801561194d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119719190613a53565b508061197c81613998565b915050611862565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b60006119da60085490565b8210611a4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610ae9565b60088281548110611a6157611a6161396c565b90600052602060002001549050919050565b600a546001600160a01b03163314611abb5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314611b2e5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b8051610cdf90601290602084019061334a565b6000818152600260205260408120546001600160a01b0316806109dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ae9565b60006001600160a01b038216611c4a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ae9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cae5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b611cb8600061299d565b565b6060600180546109f190613898565b610cdf3383836129fc565b6000611cdf600c5490565b611cec60146107b26139b3565b61ffff16611cfa9190613a70565b905090565b601554421015611d435760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610ae9565b336000908152600e602052604090205460ff1615611da35760405162461bcd60e51b815260206004820152601060248201527f416c72656164792072656465656d6564000000000000000000000000000000006044820152606401610ae9565b600d54601490611db69060ff1683613a87565b60ff161115611e075760405162461bcd60e51b815260206004820152601660248201527f416c6c204769766561776179732052656465656d6564000000000000000000006044820152606401610ae9565b601c546040516bffffffffffffffffffffffff193360601b1660208201527fff0000000000000000000000000000000000000000000000000000000000000060f884901b166034820152611e5f91849160350161112f565b611eab5760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610ae9565b336000908152600e60205260408120805460ff191660011790555b8160ff168160ff161015611f2d57611ee2600c80546001019055565b600d805460ff16906000611ef583613aac565b91906101000a81548160ff021916908360ff16021790555050611f1b33611300600c5490565b80611f2581613aac565b915050611ec6565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b611f6c33836126b1565b611fde5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b611fea84848484612acb565b50505050565b600a546001600160a01b031633146120385760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b601b55565b333b1561208c5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610ae9565b60105460ff1680156120a057506016544210155b6120de5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610ae9565b6120f260ff821666f195a3c4ba00006139f1565b3410156121415760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ae9565b600560ff821611801590612158575060008160ff16115b6121a45760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610ae9565b600d546121b69060ff166107b26139b3565b61ffff168160ff166121c7600c5490565b6121d191906139d9565b111561221f5760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610ae9565b60005b8160ff168160ff16101561225d5761223e600c80546001019055565b61224b33611300600c5490565b8061225581613aac565b915050612222565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b6000818152600260205260409020546060906001600160a01b031661231e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ae9565b6000612328612b49565b905060008151116123485760405180602001604052806000815250612376565b8061235284612b58565b601360405160200161236693929190613b3b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146123c55760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6010805460ff19811660ff91821615908117909255604051911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b60606000612418612b49565b905080601460405160200161242e929190613b6d565b60405160208183030381529060405291505090565b6001600160a01b0381166000908152600f602052604081205460ff161561246c575060016109dc565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16612376565b600a546001600160a01b031633146124e25760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6001600160a01b03811661255e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae9565b6125678161299d565b50565b6011805461257790613898565b80601f01602080910402602001604051908101604052809291908181526020018280546125a390613898565b80156125f05780601f106125c5576101008083540402835291602001916125f0565b820191906000526020600020905b8154815290600101906020018083116125d357829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109dc57506109dc82612c8a565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061267882611b41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661272a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ae9565b600061273583611b41565b9050806001600160a01b0316846001600160a01b031614806127705750836001600160a01b031661276584610a74565b6001600160a01b0316145b8061278057506127808185612443565b949350505050565b826001600160a01b031661279b82611b41565b6001600160a01b0316146128175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ae9565b6001600160a01b0382166128925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b61289d838383612d25565b6128a8600082612636565b6001600160a01b03831660009081526003602052604081208054600192906128d1908490613a70565b90915550506001600160a01b03821660009081526003602052604081208054600192906128ff9084906139d9565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261297a8584612ddd565b14949350505050565b610cdf828260405180602001604052806000815250612e89565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612a5e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ae9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ad6848484612788565b612ae284848484612f07565b611fea5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ae9565b6060601280546109f190613898565b606081612b9857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bc25780612bac81613998565b9150612bbb9050600a83613a26565b9150612b9c565b60008167ffffffffffffffff811115612bdd57612bdd6134e0565b6040519080825280601f01601f191660200182016040528015612c07576020820181803683370190505b5090505b841561278057612c1c600183613a70565b9150612c29600a86613b8b565b612c349060306139d9565b60f81b818381518110612c4957612c4961396c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c83600a86613a26565b9450612c0b565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612ced57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109dc57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109dc565b6001600160a01b038316612d8057612d7b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612da3565b816001600160a01b0316836001600160a01b031614612da357612da3838261305f565b6001600160a01b038216612dba57610c3b816130fc565b826001600160a01b0316826001600160a01b031614610c3b57610c3b82826131ab565b600081815b8451811015612e81576000858281518110612dff57612dff61396c565b60200260200101519050808311612e41576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612e6e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612e7981613998565b915050612de2565b509392505050565b612e9383836131ef565b612ea06000848484612f07565b610c3b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ae9565b60006001600160a01b0384163b1561305457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f4b903390899088908890600401613b9f565b602060405180830381600087803b158015612f6557600080fd5b505af1925050508015612f95575060408051601f3d908101601f19168201909252612f9291810190613bdb565b60015b61303a573d808015612fc3576040519150601f19603f3d011682016040523d82523d6000602084013e612fc8565b606091505b5080516130325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ae9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612780565b506001949350505050565b6000600161306c84611bcc565b6130769190613a70565b6000838152600760205260409020549091508082146130c9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061310e90600190613a70565b600083815260096020526040812054600880549394509092849081106131365761313661396c565b9060005260206000200154905080600883815481106131575761315761396c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061318f5761318f613bf8565b6001900381819060005260206000200160009055905550505050565b60006131b683611bcc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166132455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ae9565b6000818152600260205260409020546001600160a01b0316156132aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ae9565b6132b660008383612d25565b6001600160a01b03821660009081526003602052604081208054600192906132df9084906139d9565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461335690613898565b90600052602060002090601f01602090048101928261337857600085556133be565b82601f1061339157805160ff19168380011785556133be565b828001600101855582156133be579182015b828111156133be5782518255916020019190600101906133a3565b506133ca9291506133ce565b5090565b5b808211156133ca57600081556001016133cf565b6001600160e01b03198116811461256757600080fd5b60006020828403121561340b57600080fd5b8135612376816133e3565b60005b83811015613431578181015183820152602001613419565b83811115611fea5750506000910152565b6000815180845261345a816020860160208601613416565b601f01601f19169290920160200192915050565b6020815260006123766020830184613442565b60006020828403121561349357600080fd5b5035919050565b80356001600160a01b03811681146134b157600080fd5b919050565b600080604083850312156134c957600080fd5b6134d28361349a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561351f5761351f6134e0565b604052919050565b600067ffffffffffffffff831115613541576135416134e0565b613554601f8401601f19166020016134f6565b905082815283838301111561356857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561359157600080fd5b813567ffffffffffffffff8111156135a857600080fd5b8201601f810184136135b957600080fd5b61278084823560208401613527565b6000602082840312156135da57600080fd5b6123768261349a565b6000806000606084860312156135f857600080fd5b6136018461349a565b925061360f6020850161349a565b9150604084013590509250925092565b803560ff811681146134b157600080fd5b600082601f83011261364157600080fd5b8135602067ffffffffffffffff82111561365d5761365d6134e0565b8160051b61366c8282016134f6565b928352848101820192828101908785111561368657600080fd5b83870192505b848310156136a55782358252918301919083019061368c565b979650505050505050565b600080604083850312156136c357600080fd5b6136cc8361361f565b9150602083013567ffffffffffffffff8111156136e857600080fd5b6136f485828601613630565b9150509250929050565b6000806040838503121561371157600080fd5b50508035926020909101359150565b60006020828403121561373257600080fd5b813561ffff8116811461237657600080fd5b801515811461256757600080fd5b6000806040838503121561376557600080fd5b61376e8361349a565b9150602083013561377e81613744565b809150509250929050565b6000806040838503121561379c57600080fd5b823567ffffffffffffffff8111156137b357600080fd5b6137bf85828601613630565b9250506137ce6020840161361f565b90509250929050565b600080600080608085870312156137ed57600080fd5b6137f68561349a565b93506138046020860161349a565b925060408501359150606085013567ffffffffffffffff81111561382757600080fd5b8501601f8101871361383857600080fd5b61384787823560208401613527565b91505092959194509250565b60006020828403121561386557600080fd5b6123768261361f565b6000806040838503121561388157600080fd5b61388a8361349a565b91506137ce6020840161349a565b600181811c908216806138ac57607f821691505b602082108114156138cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6040815260008084546138e581613898565b8060408601526060600180841660008114613907576001811461391b5761394c565b60ff1985168884015260808801955061394c565b8960005260208060002060005b868110156139435781548b8201870152908401908201613928565b8a018501975050505b505050505082810360208401526139638185613442565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156139ac576139ac613982565b5060010190565b600061ffff8083168185168083038211156139d0576139d0613982565b01949350505050565b600082198211156139ec576139ec613982565b500190565b6000816000190483118215151615613a0b57613a0b613982565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a3557613a35613a10565b500490565b600060208284031215613a4c57600080fd5b5051919050565b600060208284031215613a6557600080fd5b815161237681613744565b600082821015613a8257613a82613982565b500390565b600060ff821660ff84168060ff03821115613aa457613aa4613982565b019392505050565b600060ff821660ff811415613ac357613ac3613982565b60010192915050565b60008154613ad981613898565b60018281168015613af15760018114613b0257613b31565b60ff19841687528287019450613b31565b8560005260208060002060005b85811015613b285781548a820152908401908201613b0f565b50505082870194505b5050505092915050565b60008451613b4d818460208901613416565b845190830190613b61818360208901613416565b6136a581830186613acc565b60008351613b7f818460208801613416565b61396381840185613acc565b600082613b9a57613b9a613a10565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613bd16080830184613442565b9695505050505050565b600060208284031215613bed57600080fd5b8151612376816133e3565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220201a337c4264d9b2886b052a232b71df80a181cb32b195316eed1affc82ddcae64736f6c634300080900330000000000000000000000000000000000000000000000000000000062029380000000000000000000000000000000000000000000000000000000006203e500000000000000000000000000000000000000000000000000000000006203e500000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6e667467656e2e6d7970696e6174612e636c6f75642f697066732f516d6368736272656d6755554658345034525250556438464d5861765a5847426448535751576f7763735a6477352f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040313132646632373162393536646238663061303563643761623030663634303836393662386162346139366565636561646237663261666236316335383831360000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a5f58f34cc7c3fb51d8116dff77ad9fa46f530f300000000000000000000000022048acc1a30310d9fc727d01b6ef750990806e0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000001d4c

Deployed Bytecode

0x60806040526004361061034e5760003560e01c806368428a1b116101bb578063bd32fb66116100f7578063e985e9c511610095578063f47c84c51161006f578063f47c84c514610943578063f891cf0314610959578063fc8ff57914610973578063ff1b65561461098957600080fd5b8063e985e9c514610903578063ec342ad014610867578063f2fde38b1461092357600080fd5b8063c87b56dd116100d1578063c87b56dd146108a3578063ca1d953c146108c3578063d61c943a146108d8578063e8a3d485146108ee57600080fd5b8063bd32fb6614610847578063c197b0f714610867578063c31f2d1d1461089057600080fd5b8063a22cb46511610164578063a785c40e1161013e578063a785c40e146107c1578063aa98e0c6146107f1578063b63e91f914610807578063b88d4fde1461082757600080fd5b8063a22cb46514610777578063a4b379b814610797578063a4cd6c61146107ac57600080fd5b80637f205a74116101955780637f205a74146107295780638da5cb5b1461074457806395d89b411461076257600080fd5b806368428a1b146106da57806370a08231146106f4578063715018a61461071457600080fd5b80632dc04e461161028a57806349df728c1161023357806355f804b31161020d57806355f804b314610654578063583e88ab146106745780635c975abb1461068a5780636352211e146106ba57600080fd5b806349df728c146105f45780634f6ccce71461061457806351a39a581461063457600080fd5b80633ccfd60b116102645780633ccfd60b146105a957806342842e0e146105be57806345763d0c146105de57600080fd5b80632dc04e46146105535780632f745c591461056957806336e79a5a1461058957600080fd5b80631453671d116102f757806323b872dd116102d157806323b872dd146104c1578063254687c3146104e1578063291bdd06146105015780632a55205a1461051457600080fd5b80631453671d1461045257806318160ddd146104725780631f3e1be91461049157600080fd5b8063095ea7b311610328578063095ea7b3146103e9578063109695231461040b578063143a3f921461042b57600080fd5b806301ffc9a71461035a57806306fdde031461038f578063081812fc146103b157600080fd5b3661035557005b600080fd5b34801561036657600080fd5b5061037a6103753660046133f9565b61099e565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a46109e2565b604051610386919061346e565b3480156103bd57600080fd5b506103d16103cc366004613481565b610a74565b6040516001600160a01b039091168152602001610386565b3480156103f557600080fd5b506104096104043660046134b6565b610b0e565b005b34801561041757600080fd5b5061040961042636600461357f565b610c40565b34801561043757600080fd5b50610440600581565b60405160ff9091168152602001610386565b34801561045e57600080fd5b5061040961046d3660046135c8565b610ce3565b34801561047e57600080fd5b506008545b604051908152602001610386565b34801561049d57600080fd5b5061037a6104ac3660046135c8565b600f6020526000908152604090205460ff1681565b3480156104cd57600080fd5b506104096104dc3660046135e3565b610f32565b3480156104ed57600080fd5b506104096104fc366004613481565b610fb9565b61040961050f3660046136b0565b611006565b34801561052057600080fd5b5061053461052f3660046136fe565b61134d565b604080516001600160a01b039093168352602083019190915201610386565b34801561055f57600080fd5b5061048360175481565b34801561057557600080fd5b506104836105843660046134b6565b61137e565b34801561059557600080fd5b506104096105a4366004613720565b611426565b3480156105b557600080fd5b50610409611502565b3480156105ca57600080fd5b506104096105d93660046135e3565b61170d565b3480156105ea57600080fd5b5061048360155481565b34801561060057600080fd5b5061040961060f3660046135c8565b611728565b34801561062057600080fd5b5061048361062f366004613481565b6119cf565b34801561064057600080fd5b5061040961064f366004613752565b611a73565b34801561066057600080fd5b5061040961066f36600461357f565b611ae6565b34801561068057600080fd5b5061048360165481565b34801561069657600080fd5b50600a5474010000000000000000000000000000000000000000900460ff1661037a565b3480156106c657600080fd5b506103d16106d5366004613481565b611b41565b3480156106e657600080fd5b5060105461037a9060ff1681565b34801561070057600080fd5b5061048361070f3660046135c8565b611bcc565b34801561072057600080fd5b50610409611c66565b34801561073557600080fd5b5061048366f195a3c4ba000081565b34801561075057600080fd5b50600a546001600160a01b03166103d1565b34801561076e57600080fd5b506103a4611cba565b34801561078357600080fd5b50610409610792366004613752565b611cc9565b3480156107a357600080fd5b50610483611cd4565b3480156107b857600080fd5b50610440601481565b3480156107cd57600080fd5b5061037a6107dc3660046135c8565b600e6020526000908152604090205460ff1681565b3480156107fd57600080fd5b50610483601b5481565b34801561081357600080fd5b50610409610822366004613789565b611cff565b34801561083357600080fd5b506104096108423660046137d7565b611f62565b34801561085357600080fd5b50610409610862366004613481565b611ff0565b34801561087357600080fd5b5061087d61271081565b60405161ffff9091168152602001610386565b61040961089e366004613853565b61203d565b3480156108af57600080fd5b506103a46108be366004613481565b612291565b3480156108cf57600080fd5b5061040961237d565b3480156108e457600080fd5b50610483601c5481565b3480156108fa57600080fd5b506103a461240c565b34801561090f57600080fd5b5061037a61091e36600461386e565b612443565b34801561092f57600080fd5b5061040961093e3660046135c8565b61249a565b34801561094f57600080fd5b5061087d6107b281565b34801561096557600080fd5b50600d546104409060ff1681565b34801561097f57600080fd5b5061048360185481565b34801561099557600080fd5b506103a461256a565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806109dc57506109dc826125f8565b92915050565b6060600080546109f190613898565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90613898565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610af25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b1982611b41565b9050806001600160a01b0316836001600160a01b03161415610ba35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b336001600160a01b0382161480610bbf5750610bbf8133612443565b610c315760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ae9565b610c3b8383612636565b505050565b600a546001600160a01b03163314610c885760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c601183604051610cc49291906138d3565b60405180910390a28051610cdf90601190602084019061334a565b5050565b6001600160a01b038116610d395760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420757365207a65726f20616464726573732e00000000000000006044820152606401610ae9565b6001600160a01b038116301415610d925760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420757365207468697320636f6e747261637420616464726573736044820152606401610ae9565b803b15610e075760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f742073657420726563697069656e7420746f206120636f6e74726160448201527f63742061646472657373000000000000000000000000000000000000000000006064820152608401610ae9565b6000805b601954811015610eaa57336001600160a01b031660198281548110610e3257610e3261396c565b6000918252602090912001546001600160a01b03161415610e98578260198281548110610e6157610e6161396c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060019150610eaa565b80610ea281613998565b915050610e0b565b5080610ef85760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610ae9565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b610f3c33826126b1565b610fae5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b610c3b838383612788565b600a546001600160a01b031633146110015760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b601c55565b333b156110555760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610ae9565b60105460ff16801561106957506015544210155b6110a75760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610ae9565b6017544290811180156110bb575060185481105b6111075760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610ae9565b601b546040516bffffffffffffffffffffffff193360601b16602082015261114a9184916034015b6040516020818303038152906040528051906020012061296d565b6111965760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610ae9565b600d546111a89060ff166107b26139b3565b61ffff168360ff166111b9600c5490565b6111c391906139d9565b11156112115760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610ae9565b61122560ff841666f195a3c4ba00006139f1565b3410156112745760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ae9565b600560ff84161180159061128b575060008360ff16115b6112d75760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964204e756d20546f6b656e0000000000000000000000000000006044820152606401610ae9565b60005b8360ff16811015611317576112f3600c80546001019055565b61130533611300600c5490565b612983565b8061130f81613998565b9150506112da565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b601d5460009081903090612710906113699061ffff16866139f1565b6113739190613a26565b915091509250929050565b600061138983611bcc565b82106113fd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610ae9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461146e5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6103e88161ffff1611156114ea5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b601d805461ffff191661ffff92909216919091179055565b6002600b5414156115555760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae9565b6002600b55600a546001600160a01b031633146115a25760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b4760005b6019548110156116cf576000601982815481106115c5576115c561396c565b600091825260209091200154601a80546001600160a01b03909216916127109190859081106115f6576115f661396c565b6000918252602090912060108204015461162091600f166002026101000a900461ffff16866139f1565b61162a9190613a26565b604051600081818185875af1925050503d8060008114611666576040519150601f19603f3d011682016040523d82523d6000602084013e61166b565b606091505b50509050806116bc5760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610ae9565b50806116c781613998565b9150506115a6565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b610c3b83838360405180602001604052806000815250611f62565b6002600b54141561177b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae9565b6002600b55600a546001600160a01b031633146117c85760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561182557600080fd5b505afa158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d9190613a3a565b905060005b60195481101561198457826001600160a01b031663a9059cbb6019838154811061188e5761188e61396c565b600091825260209091200154601a80546001600160a01b03909216916127109190869081106118bf576118bf61396c565b600091825260209091206010820401546118e991600f166002026101000a900461ffff16876139f1565b6118f39190613a26565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561193957600080fd5b505af115801561194d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119719190613a53565b508061197c81613998565b915050611862565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b60006119da60085490565b8210611a4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610ae9565b60088281548110611a6157611a6161396c565b90600052602060002001549050919050565b600a546001600160a01b03163314611abb5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314611b2e5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b8051610cdf90601290602084019061334a565b6000818152600260205260408120546001600160a01b0316806109dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ae9565b60006001600160a01b038216611c4a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ae9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611cae5760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b611cb8600061299d565b565b6060600180546109f190613898565b610cdf3383836129fc565b6000611cdf600c5490565b611cec60146107b26139b3565b61ffff16611cfa9190613a70565b905090565b601554421015611d435760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610ae9565b336000908152600e602052604090205460ff1615611da35760405162461bcd60e51b815260206004820152601060248201527f416c72656164792072656465656d6564000000000000000000000000000000006044820152606401610ae9565b600d54601490611db69060ff1683613a87565b60ff161115611e075760405162461bcd60e51b815260206004820152601660248201527f416c6c204769766561776179732052656465656d6564000000000000000000006044820152606401610ae9565b601c546040516bffffffffffffffffffffffff193360601b1660208201527fff0000000000000000000000000000000000000000000000000000000000000060f884901b166034820152611e5f91849160350161112f565b611eab5760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564204163636573730000000000000000000000000000006044820152606401610ae9565b336000908152600e60205260408120805460ff191660011790555b8160ff168160ff161015611f2d57611ee2600c80546001019055565b600d805460ff16906000611ef583613aac565b91906101000a81548160ff021916908360ff16021790555050611f1b33611300600c5490565b80611f2581613aac565b915050611ec6565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a35050565b611f6c33836126b1565b611fde5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ae9565b611fea84848484612acb565b50505050565b600a546001600160a01b031633146120385760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b601b55565b333b1561208c5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e7420746f206120636f6e7472616374000000000000006044820152606401610ae9565b60105460ff1680156120a057506016544210155b6120de5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610ae9565b6120f260ff821666f195a3c4ba00006139f1565b3410156121415760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ae9565b600560ff821611801590612158575060008160ff16115b6121a45760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610ae9565b600d546121b69060ff166107b26139b3565b61ffff168160ff166121c7600c5490565b6121d191906139d9565b111561221f5760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610ae9565b60005b8160ff168160ff16101561225d5761223e600c80546001019055565b61224b33611300600c5490565b8061225581613aac565b915050612222565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b6000818152600260205260409020546060906001600160a01b031661231e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ae9565b6000612328612b49565b905060008151116123485760405180602001604052806000815250612376565b8061235284612b58565b601360405160200161236693929190613b3b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146123c55760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6010805460ff19811660ff91821615908117909255604051911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b60606000612418612b49565b905080601460405160200161242e929190613b6d565b60405160208183030381529060405291505090565b6001600160a01b0381166000908152600f602052604081205460ff161561246c575060016109dc565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16612376565b600a546001600160a01b031633146124e25760405162461bcd60e51b81526020600482018190526024820152600080516020613c0f8339815191526044820152606401610ae9565b6001600160a01b03811661255e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae9565b6125678161299d565b50565b6011805461257790613898565b80601f01602080910402602001604051908101604052809291908181526020018280546125a390613898565b80156125f05780601f106125c5576101008083540402835291602001916125f0565b820191906000526020600020905b8154815290600101906020018083116125d357829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109dc57506109dc82612c8a565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061267882611b41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661272a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ae9565b600061273583611b41565b9050806001600160a01b0316846001600160a01b031614806127705750836001600160a01b031661276584610a74565b6001600160a01b0316145b8061278057506127808185612443565b949350505050565b826001600160a01b031661279b82611b41565b6001600160a01b0316146128175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ae9565b6001600160a01b0382166128925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae9565b61289d838383612d25565b6128a8600082612636565b6001600160a01b03831660009081526003602052604081208054600192906128d1908490613a70565b90915550506001600160a01b03821660009081526003602052604081208054600192906128ff9084906139d9565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261297a8584612ddd565b14949350505050565b610cdf828260405180602001604052806000815250612e89565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415612a5e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ae9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ad6848484612788565b612ae284848484612f07565b611fea5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ae9565b6060601280546109f190613898565b606081612b9857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bc25780612bac81613998565b9150612bbb9050600a83613a26565b9150612b9c565b60008167ffffffffffffffff811115612bdd57612bdd6134e0565b6040519080825280601f01601f191660200182016040528015612c07576020820181803683370190505b5090505b841561278057612c1c600183613a70565b9150612c29600a86613b8b565b612c349060306139d9565b60f81b818381518110612c4957612c4961396c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c83600a86613a26565b9450612c0b565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612ced57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109dc57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109dc565b6001600160a01b038316612d8057612d7b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612da3565b816001600160a01b0316836001600160a01b031614612da357612da3838261305f565b6001600160a01b038216612dba57610c3b816130fc565b826001600160a01b0316826001600160a01b031614610c3b57610c3b82826131ab565b600081815b8451811015612e81576000858281518110612dff57612dff61396c565b60200260200101519050808311612e41576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612e6e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612e7981613998565b915050612de2565b509392505050565b612e9383836131ef565b612ea06000848484612f07565b610c3b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ae9565b60006001600160a01b0384163b1561305457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f4b903390899088908890600401613b9f565b602060405180830381600087803b158015612f6557600080fd5b505af1925050508015612f95575060408051601f3d908101601f19168201909252612f9291810190613bdb565b60015b61303a573d808015612fc3576040519150601f19603f3d011682016040523d82523d6000602084013e612fc8565b606091505b5080516130325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ae9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612780565b506001949350505050565b6000600161306c84611bcc565b6130769190613a70565b6000838152600760205260409020549091508082146130c9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061310e90600190613a70565b600083815260096020526040812054600880549394509092849081106131365761313661396c565b9060005260206000200154905080600883815481106131575761315761396c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061318f5761318f613bf8565b6001900381819060005260206000200160009055905550505050565b60006131b683611bcc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166132455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ae9565b6000818152600260205260409020546001600160a01b0316156132aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ae9565b6132b660008383612d25565b6001600160a01b03821660009081526003602052604081208054600192906132df9084906139d9565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461335690613898565b90600052602060002090601f01602090048101928261337857600085556133be565b82601f1061339157805160ff19168380011785556133be565b828001600101855582156133be579182015b828111156133be5782518255916020019190600101906133a3565b506133ca9291506133ce565b5090565b5b808211156133ca57600081556001016133cf565b6001600160e01b03198116811461256757600080fd5b60006020828403121561340b57600080fd5b8135612376816133e3565b60005b83811015613431578181015183820152602001613419565b83811115611fea5750506000910152565b6000815180845261345a816020860160208601613416565b601f01601f19169290920160200192915050565b6020815260006123766020830184613442565b60006020828403121561349357600080fd5b5035919050565b80356001600160a01b03811681146134b157600080fd5b919050565b600080604083850312156134c957600080fd5b6134d28361349a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561351f5761351f6134e0565b604052919050565b600067ffffffffffffffff831115613541576135416134e0565b613554601f8401601f19166020016134f6565b905082815283838301111561356857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561359157600080fd5b813567ffffffffffffffff8111156135a857600080fd5b8201601f810184136135b957600080fd5b61278084823560208401613527565b6000602082840312156135da57600080fd5b6123768261349a565b6000806000606084860312156135f857600080fd5b6136018461349a565b925061360f6020850161349a565b9150604084013590509250925092565b803560ff811681146134b157600080fd5b600082601f83011261364157600080fd5b8135602067ffffffffffffffff82111561365d5761365d6134e0565b8160051b61366c8282016134f6565b928352848101820192828101908785111561368657600080fd5b83870192505b848310156136a55782358252918301919083019061368c565b979650505050505050565b600080604083850312156136c357600080fd5b6136cc8361361f565b9150602083013567ffffffffffffffff8111156136e857600080fd5b6136f485828601613630565b9150509250929050565b6000806040838503121561371157600080fd5b50508035926020909101359150565b60006020828403121561373257600080fd5b813561ffff8116811461237657600080fd5b801515811461256757600080fd5b6000806040838503121561376557600080fd5b61376e8361349a565b9150602083013561377e81613744565b809150509250929050565b6000806040838503121561379c57600080fd5b823567ffffffffffffffff8111156137b357600080fd5b6137bf85828601613630565b9250506137ce6020840161361f565b90509250929050565b600080600080608085870312156137ed57600080fd5b6137f68561349a565b93506138046020860161349a565b925060408501359150606085013567ffffffffffffffff81111561382757600080fd5b8501601f8101871361383857600080fd5b61384787823560208401613527565b91505092959194509250565b60006020828403121561386557600080fd5b6123768261361f565b6000806040838503121561388157600080fd5b61388a8361349a565b91506137ce6020840161349a565b600181811c908216806138ac57607f821691505b602082108114156138cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6040815260008084546138e581613898565b8060408601526060600180841660008114613907576001811461391b5761394c565b60ff1985168884015260808801955061394c565b8960005260208060002060005b868110156139435781548b8201870152908401908201613928565b8a018501975050505b505050505082810360208401526139638185613442565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156139ac576139ac613982565b5060010190565b600061ffff8083168185168083038211156139d0576139d0613982565b01949350505050565b600082198211156139ec576139ec613982565b500190565b6000816000190483118215151615613a0b57613a0b613982565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a3557613a35613a10565b500490565b600060208284031215613a4c57600080fd5b5051919050565b600060208284031215613a6557600080fd5b815161237681613744565b600082821015613a8257613a82613982565b500390565b600060ff821660ff84168060ff03821115613aa457613aa4613982565b019392505050565b600060ff821660ff811415613ac357613ac3613982565b60010192915050565b60008154613ad981613898565b60018281168015613af15760018114613b0257613b31565b60ff19841687528287019450613b31565b8560005260208060002060005b85811015613b285781548a820152908401908201613b0f565b50505082870194505b5050505092915050565b60008451613b4d818460208901613416565b845190830190613b61818360208901613416565b6136a581830186613acc565b60008351613b7f818460208801613416565b61396381840185613acc565b600082613b9a57613b9a613a10565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613bd16080830184613442565b9695505050505050565b600060208284031215613bed57600080fd5b8151612376816133e3565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220201a337c4264d9b2886b052a232b71df80a181cb32b195316eed1affc82ddcae64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000062029380000000000000000000000000000000000000000000000000000000006203e500000000000000000000000000000000000000000000000000000000006203e500000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6e667467656e2e6d7970696e6174612e636c6f75642f697066732f516d6368736272656d6755554658345034525250556438464d5861765a5847426448535751576f7763735a6477352f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040313132646632373162393536646238663061303563643761623030663634303836393662386162346139366565636561646237663261666236316335383831360000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a5f58f34cc7c3fb51d8116dff77ad9fa46f530f300000000000000000000000022048acc1a30310d9fc727d01b6ef750990806e0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000000001d4c

-----Decoded View---------------
Arg [0] : _saleStartTime (uint256): 1644336000
Arg [1] : _privateSaleEndsAt (uint256): 1644422400
Arg [2] : _publicSaleStartsAt (uint256): 1644422400
Arg [3] : _baseContractURI (string): https://nftgen.mypinata.cloud/ipfs/QmchsbremgUUFX4P4RRPUd8FMXavZXGBdHSWQWowcsZdw5/
Arg [4] : _tokenSuffixURI (string): .json
Arg [5] : _provenaceHash (string): 112df271b956db8f0a05cd7ab00f6408696b8ab4a96eeceadb7f2afb61c58816
Arg [6] : _recipients (address[]): 0xa5f58F34cc7C3Fb51d8116DFf77aD9fa46F530F3,0x22048acc1A30310D9fC727d01b6Ef750990806e0
Arg [7] : _splits (uint16[]): 2500,7500
Arg [8] : _proxyAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
24 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000062029380
Arg [1] : 000000000000000000000000000000000000000000000000000000006203e500
Arg [2] : 000000000000000000000000000000000000000000000000000000006203e500
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [7] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [8] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [10] : 68747470733a2f2f6e667467656e2e6d7970696e6174612e636c6f75642f6970
Arg [11] : 66732f516d6368736272656d6755554658345034525250556438464d5861765a
Arg [12] : 5847426448535751576f7763735a6477352f0000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [14] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [16] : 3131326466323731623935366462386630613035636437616230306636343038
Arg [17] : 3639366238616234613936656563656164623766326166623631633538383136
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 000000000000000000000000a5f58f34cc7c3fb51d8116dff77ad9fa46f530f3
Arg [20] : 00000000000000000000000022048acc1a30310d9fc727d01b6ef750990806e0
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [22] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [23] : 0000000000000000000000000000000000000000000000000000000000001d4c


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.