ETH Price: $3,467.93 (+2.18%)
Gas: 14 Gwei

Token

Lord Universe (LU)
 

Overview

Max Total Supply

7,768 LU

Holders

1,876

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 LU
0xc4210bfd73206c3208ae1f0854ee146ed8f1271b
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:
LordUniverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : LordUniverse.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract LordUniverse is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using SafeMath for uint256;
    using SafeMath for uint8;

    uint256 public constant mintLimit = 3;
    uint256 public constant mintLimitForWL = 2;
    uint256 public constant giveawaySupply = 77;
    uint256 public constant maxSupply = 7777;
    uint256 public mintPrice = 0.08 ether;
    uint256 public maxPerAddressDuringMint;

    bool public saleStarted = false;
    bool public presaleStarted = false;
    bool public revealed = false;

    string private baseExtension = ".json";
    string private baseURI;
    string private notRevealedURI;

    bytes32 private _merkleRoot;

    // Team wallet
    address[] private _royaltyAddresses = [
        0xC1d8eAD34882129f7F439855B336D23053D9e793, // Wallet 1 address
        0xb20F2a4601aED75B886CC5B84E28a0D65a7Bfd48 // Wallet 2 address
    ];

    mapping(address => uint256) private _royaltyShares;

    constructor(
        uint256 maxBatchSize_,
        string memory baseURI_,
        string memory notRevealedURI_
    ) ERC721A("Lord Universe", "LU") {
        maxPerAddressDuringMint = maxBatchSize_;
        baseURI = baseURI_;
        notRevealedURI = notRevealedURI_;

        _royaltyShares[_royaltyAddresses[0]] = 97; // Royalty for Wallet 1
        _royaltyShares[_royaltyAddresses[1]] = 3; // Royalty for Wallet 2
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Mint NFTs for giveway
     */
    function mintForGiveaway() external onlyOwner {
        require(totalSupply() == 0, "Mint already started");

        uint256 numChunks = giveawaySupply / maxPerAddressDuringMint;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(_royaltyAddresses[0], maxPerAddressDuringMint);
        }

        uint256 numModules = giveawaySupply % maxPerAddressDuringMint;
        if (numModules > 0) {
            _safeMint(_royaltyAddresses[0], numModules);
        }
    }

    /**
     * @dev   Admin mint for allocated NFTs
     * @param _amount Number of NFTs to mint
     * @param _to NFT receiver
     */
    function mintAdmin(uint256 _amount, address _to) external onlyOwner {
        require(totalSupply() >= giveawaySupply, "Giveaway not minted");
        require(totalSupply() + _amount <= maxSupply, "Max supply reached");

        uint256 numChunks = _amount / maxPerAddressDuringMint;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(_to, maxPerAddressDuringMint);
        }

        uint256 numModules = _amount % maxPerAddressDuringMint;
        if (numModules > 0) {
            _safeMint(_to, numModules);
        }
    }

    /**
     * @param _account Leaf for MerkleTree
     */
    function _leaf(address _account) private pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verifyWhitelist(bytes32 leaf, bytes32[] memory _proof)
        private
        view
        returns (bool)
    {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < _proof.length; i++) {
            bytes32 proofElement = _proof[i];

            if (computedHash < proofElement) {
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }

        return computedHash == _merkleRoot;
    }

    /**
     * @param _amount Number of nfts to mint for whitelist
     * @param _proof Array of values generated by Merkle tree
     */
    function mintWL(uint256 _amount, bytes32[] memory _proof) external payable {
        require(presaleStarted, "Not started presale mint");
        require(totalSupply() >= giveawaySupply, "Giveaway not minted");
        require(
            _verifyWhitelist(_leaf(msg.sender), _proof) == true,
            "Invalid Address"
        );
        require(
            _amount > 0 && numberMinted(msg.sender) + _amount <= mintLimitForWL,
            "Max limit per wallet exceeded"
        );
        if (msg.sender != owner()) {
            require(msg.value >= mintPrice * _amount, "Need to send more ETH");
        }

        _safeMint(msg.sender, _amount);
        _refundIfOver(mintPrice * _amount);
    }

    /**
     * @param _amount numbers of NFT to mint for public sale
     */
    function mintPublicSale(uint256 _amount) external payable callerIsUser {
        require(saleStarted, "Not started public mint");
        require(totalSupply() >= giveawaySupply, "Giveaway not minted");
        require(totalSupply() + _amount <= maxSupply, "Reached max supply");
        require(_amount <= mintLimit, "Exceeds max mint limit");

        if (msg.sender != owner()) {
            require(msg.value >= mintPrice * _amount, "Need to send more ETH");
        }

        uint256 numChunks = _amount / maxPerAddressDuringMint;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxPerAddressDuringMint);
        }

        uint256 numModules = _amount % maxPerAddressDuringMint;
        if (numModules > 0) {
            _safeMint(msg.sender, numModules);
        }
        _refundIfOver(mintPrice * _amount);
    }

    function _refundIfOver(uint256 _price) private {
        if (msg.value > _price) {
            payable(msg.sender).transfer(msg.value - _price);
        }
    }

    /**
     * Override tokenURI
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Not exist token");

        if (revealed == false) {
            return notRevealedURI;
        } else {
            string memory currentBaseURI = _baseURI();
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            _tokenId.toString(),
                            baseExtension
                        )
                    )
                    : "";
        }
    }

    function withdraw() external onlyOwner nonReentrant {
        require(address(this).balance > 0, "Empty balance");
        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < _royaltyAddresses.length; i++) {
            payable(_royaltyAddresses[i]).transfer(
                balance.div(100).mul(_royaltyShares[_royaltyAddresses[i]])
            );
        }
    }

    function setSaleStarted(bool _hasStarted) external onlyOwner {
        require(saleStarted != _hasStarted, "Already initialized");
        saleStarted = _hasStarted;
    }

    function setPresaleStarted(bool _hasStarted) external onlyOwner {
        require(presaleStarted != _hasStarted, "Already initialized");
        presaleStarted = _hasStarted;
    }

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

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }

    function setMerkleRoot(bytes32 _merkleRootValue)
        external
        onlyOwner
        returns (bytes32)
    {
        _merkleRoot = _merkleRootValue;
        return _merkleRoot;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 14 : 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 4 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

    // Contract Owner
    address private _owner;

    constructor(string memory name_, string memory symbol_) {
        _owner = msg.sender;
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 14 : 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 6 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 14 : 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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"notRevealedURI_","type":"string"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawaySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimitForWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootValue","type":"bytes32"}],"name":"setMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setPresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setSaleStarted","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e080000600a556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000ae929190620004b1565b50604051806040016040528073c1d8ead34882129f7f439855b336d23053d9e79373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173b20f2a4601aed75b886cc5b84e28a0d65a7bfd4873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060119060026200015692919062000542565b503480156200016457600080fd5b50604051620062d2380380620062d283398181016040528101906200018a919062000685565b6040518060400160405280600d81526020017f4c6f726420556e697665727365000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c5500000000000000000000000000000000000000000000000000000000000081525033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600190805190602001906200024f929190620004b1565b50806002908051906020019062000268929190620004b1565b5050506200028b6200027f620003e360201b60201c565b620003eb60201b60201c565b600160098190555082600b8190555081600e9080519060200190620002b2929190620004b1565b5080600f9080519060200190620002cb929190620004b1565b506061601260006011600081548110620002ea57620002e962000859565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360126000601160018154811062000371576200037062000859565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050620008f6565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004bf90620007be565b90600052602060002090601f016020900481019282620004e357600085556200052f565b82601f10620004fe57805160ff19168380011785556200052f565b828001600101855582156200052f579182015b828111156200052e57825182559160200191906001019062000511565b5b5090506200053e9190620005d1565b5090565b828054828255906000526020600020908101928215620005be579160200282015b82811115620005bd5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000563565b5b509050620005cd9190620005d1565b5090565b5b80821115620005ec576000816000905550600101620005d2565b5090565b600062000607620006018462000748565b6200071f565b905082815260208101848484011115620006265762000625620008bc565b5b6200063384828562000788565b509392505050565b600082601f830112620006535762000652620008b7565b5b815162000665848260208601620005f0565b91505092915050565b6000815190506200067f81620008dc565b92915050565b600080600060608486031215620006a157620006a0620008c6565b5b6000620006b1868287016200066e565b935050602084015167ffffffffffffffff811115620006d557620006d4620008c1565b5b620006e3868287016200063b565b925050604084015167ffffffffffffffff811115620007075762000706620008c1565b5b62000715868287016200063b565b9150509250925092565b60006200072b6200073e565b9050620007398282620007f4565b919050565b6000604051905090565b600067ffffffffffffffff82111562000766576200076562000888565b5b6200077182620008cb565b9050602081019050919050565b6000819050919050565b60005b83811015620007a85780820151818401526020810190506200078b565b83811115620007b8576000848401525b50505050565b60006002820490506001821680620007d757607f821691505b60208210811415620007ee57620007ed6200082a565b5b50919050565b620007ff82620008cb565b810181811067ffffffffffffffff8211171562000821576200082062000888565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620008e7816200077e565b8114620008f357600080fd5b50565b6159cc80620009066000396000f3fe6080604052600436106102515760003560e01c80637b6236f811610139578063a854ffba116100b6578063dc33e6811161007a578063dc33e68114610884578063e288e733146108c1578063e985e9c5146108ec578063f2c4ce1e14610929578063f2fde38b14610952578063f4a0a5281461097b57610251565b8063a854ffba146107ae578063b88d4fde146107d7578063c87b56dd14610800578063d0bfb8101461083d578063d5abeb011461085957610251565b806395d89b41116100fd57806395d89b41146106ef578063996517cf1461071a5780639d034fe914610745578063a22cb4651461076e578063a475b5dd1461079757610251565b80637b6236f8146106085780637cb647591461061f5780638bc35c2f1461065c5780638da5cb5b146106875780639231ab2a146106b257610251565b806342842e0e116101d25780635c474f9e116101965780635c474f9e146104f85780636352211e146105235780636817c76c146105605780636ecbac791461058b57806370a08231146105b4578063715018a6146105f157610251565b806342842e0e146104225780634f6ccce71461044b578063518302271461048857806355f804b3146104b35780635a5e5d58146104dc57610251565b806318160ddd1161021957806318160ddd1461034f57806323b872dd1461037a5780632f745c59146103a35780633ccfd60b146103e05780633d571ca2146103f757610251565b806301ffc9a71461025657806304549d6f1461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613e72565b6109a4565b60405161028a919061473c565b60405180910390f35b34801561029f57600080fd5b506102a8610aee565b6040516102b5919061473c565b60405180910390f35b3480156102ca57600080fd5b506102d3610b01565b6040516102e09190614772565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613f15565b610b93565b60405161031d91906146d5565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613dd8565b610c18565b005b34801561035b57600080fd5b50610364610d31565b6040516103719190614bef565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613cc2565b610d3a565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613dd8565b610d4a565b6040516103d79190614bef565b60405180910390f35b3480156103ec57600080fd5b506103f5610f3c565b005b34801561040357600080fd5b5061040c6111a4565b6040516104199190614bef565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613cc2565b6111a9565b005b34801561045757600080fd5b50610472600480360381019061046d9190613f15565b6111c9565b60405161047f9190614bef565b60405180910390f35b34801561049457600080fd5b5061049d61121c565b6040516104aa919061473c565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613ecc565b61122f565b005b6104f660048036038101906104f19190613f15565b6112c5565b005b34801561050457600080fd5b5061050d611571565b60405161051a919061473c565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613f15565b611584565b60405161055791906146d5565b60405180910390f35b34801561056c57600080fd5b5061057561159a565b6040516105829190614bef565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613e18565b6115a0565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613c55565b61168f565b6040516105e89190614bef565b60405180910390f35b3480156105fd57600080fd5b50610606611778565b005b34801561061457600080fd5b5061061d611800565b005b34801561062b57600080fd5b5061064660048036038101906106419190613e45565b6119ad565b6040516106539190614757565b60405180910390f35b34801561066857600080fd5b50610671611a3c565b60405161067e9190614bef565b60405180910390f35b34801561069357600080fd5b5061069c611a42565b6040516106a991906146d5565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613f15565b611a6c565b6040516106e69190614bd4565b60405180910390f35b3480156106fb57600080fd5b50610704611a84565b6040516107119190614772565b60405180910390f35b34801561072657600080fd5b5061072f611b16565b60405161073c9190614bef565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613f42565b611b1b565b005b34801561077a57600080fd5b5061079560048036038101906107909190613d98565b611ca2565b005b3480156107a357600080fd5b506107ac611e23565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613e18565b611ebc565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190613d15565b611fab565b005b34801561080c57600080fd5b5061082760048036038101906108229190613f15565b612007565b6040516108349190614772565b60405180910390f35b61085760048036038101906108529190613f82565b612160565b005b34801561086557600080fd5b5061086e612364565b60405161087b9190614bef565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190613c55565b61236a565b6040516108b89190614bef565b60405180910390f35b3480156108cd57600080fd5b506108d661237c565b6040516108e39190614bef565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613c82565b612381565b604051610920919061473c565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613ecc565b612415565b005b34801561095e57600080fd5b5061097960048036038101906109749190613c55565b6124ab565b005b34801561098757600080fd5b506109a2600480360381019061099d9190613f15565b6125a3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae75750610ae682612629565b5b9050919050565b600c60019054906101000a900460ff1681565b606060018054610b1090614efe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c90614efe565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b5050505050905090565b6000610b9e82612693565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490614bb4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2382611584565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90614a14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb36126a0565b73ffffffffffffffffffffffffffffffffffffffff161480610ce25750610ce181610cdc6126a0565b612381565b5b610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890614934565b60405180910390fd5b610d2c8383836126a8565b505050565b60008054905090565b610d4583838361275a565b505050565b6000610d558361168f565b8210610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90614794565b60405180910390fd5b6000610da0610d31565b905060008060005b83811015610efa576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eec5786841415610ee3578195505050505050610f36565b83806001019450505b508080600101915050610da8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614b34565b60405180910390fd5b92915050565b610f446126a0565b73ffffffffffffffffffffffffffffffffffffffff16610f62611a42565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614994565b60405180910390fd5b60026009541415610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614b74565b60405180910390fd5b600260098190555060004711611049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611040906147b4565b60405180910390fd5b600047905060005b601180549050811015611198576011818154811061107257611071615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61115960126000601186815481106110d1576110d0615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114b606487612c9a90919063ffffffff16565b612cb090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611184573d6000803e3d6000fd5b50808061119090614f61565b915050611051565b50506001600981905550565b600281565b6111c483838360405180602001604052806000815250611fab565b505050565b60006111d3610d31565b8210611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90614874565b60405180910390fd5b819050919050565b600c60029054906101000a900460ff1681565b6112376126a0565b73ffffffffffffffffffffffffffffffffffffffff16611255611a42565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614994565b60405180910390fd5b80600e90805190602001906112c192919061397c565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906148f4565b60405180910390fd5b600c60009054906101000a900460ff16611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990614814565b60405180910390fd5b604d61138c610d31565b10156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906147f4565b60405180910390fd5b611e61816113d9610d31565b6113e39190614d15565b1115611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614894565b60405180910390fd5b6003811115611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906147d4565b60405180910390fd5b611470611a42565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114f35780600a546114b09190614d9c565b3410156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990614a94565b60405180910390fd5b5b6000600b54826115039190614d6b565b905060005b8181101561152f5761151c33600b54612cc6565b808061152790614f61565b915050611508565b506000600b54836115409190614fd8565b90506000811115611556576115553382612cc6565b5b61156c83600a546115679190614d9c565b612ce4565b505050565b600c60009054906101000a900460ff1681565b600061158f82612d42565b600001519050919050565b600a5481565b6115a86126a0565b73ffffffffffffffffffffffffffffffffffffffff166115c6611a42565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614994565b60405180910390fd5b801515600c60019054906101000a900460ff1615151415611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990614ad4565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790614954565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117806126a0565b73ffffffffffffffffffffffffffffffffffffffff1661179e611a42565b73ffffffffffffffffffffffffffffffffffffffff16146117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90614994565b60405180910390fd5b6117fe6000612edc565b565b6118086126a0565b73ffffffffffffffffffffffffffffffffffffffff16611826611a42565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390614994565b60405180910390fd5b6000611886610d31565b146118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614b54565b60405180910390fd5b6000600b54604d6118d79190614d6b565b905060005b818110156119425761192f60116000815481106118fc576118fb615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b54612cc6565b808061193a90614f61565b9150506118dc565b506000600b54604d6119549190614fd8565b905060008111156119a9576119a8601160008154811061197757611976615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612cc6565b5b5050565b60006119b76126a0565b73ffffffffffffffffffffffffffffffffffffffff166119d5611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290614994565b60405180910390fd5b816010819055506010549050919050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a74613a02565b611a7d82612d42565b9050919050565b606060028054611a9390614efe565b80601f0160208091040260200160405190810160405280929190818152602001828054611abf90614efe565b8015611b0c5780601f10611ae157610100808354040283529160200191611b0c565b820191906000526020600020905b815481529060010190602001808311611aef57829003601f168201915b5050505050905090565b600381565b611b236126a0565b73ffffffffffffffffffffffffffffffffffffffff16611b41611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614994565b60405180910390fd5b604d611ba1610d31565b1015611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd9906147f4565b60405180910390fd5b611e6182611bee610d31565b611bf89190614d15565b1115611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614ab4565b60405180910390fd5b6000600b5483611c499190614d6b565b905060005b81811015611c7557611c6283600b54612cc6565b8080611c6d90614f61565b915050611c4e565b506000600b5484611c869190614fd8565b90506000811115611c9c57611c9b8382612cc6565b5b50505050565b611caa6126a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f906149b4565b60405180910390fd5b8060066000611d256126a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd26126a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e17919061473c565b60405180910390a35050565b611e2b6126a0565b73ffffffffffffffffffffffffffffffffffffffff16611e49611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690614994565b60405180910390fd5b6001600c60026101000a81548160ff021916908315150217905550565b611ec46126a0565b73ffffffffffffffffffffffffffffffffffffffff16611ee2611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90614994565b60405180910390fd5b801515600c60009054906101000a900460ff1615151415611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614ad4565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611fb684848461275a565b611fc284848484612fa2565b612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff890614a74565b60405180910390fd5b50505050565b606061201282612693565b612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890614a34565b60405180910390fd5b60001515600c60029054906101000a900460ff16151514156120ff57600f805461207a90614efe565b80601f01602080910402602001604051908101604052809291908181526020018280546120a690614efe565b80156120f35780601f106120c8576101008083540402835291602001916120f3565b820191906000526020600020905b8154815290600101906020018083116120d657829003601f168201915b5050505050905061215b565b60006121096131f9565b905060008151116121295760405180602001604052806000815250612157565b806121338461328b565b600d604051602001612147939291906146a4565b6040516020818303038152906040525b9150505b919050565b600c60019054906101000a900460ff166121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690614a54565b60405180910390fd5b604d6121b9610d31565b10156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f1906147f4565b60405180910390fd5b6001151561221061220a336133ec565b8361341c565b151514612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906149f4565b60405180910390fd5b60008211801561227657506002826122693361236a565b6122739190614d15565b11155b6122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac90614914565b60405180910390fd5b6122bd611a42565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123405781600a546122fd9190614d9c565b34101561233f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233690614a94565b60405180910390fd5b5b61234a3383612cc6565b61236082600a5461235b9190614d9c565b612ce4565b5050565b611e6181565b6000612375826134d4565b9050919050565b604d81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61241d6126a0565b73ffffffffffffffffffffffffffffffffffffffff1661243b611a42565b73ffffffffffffffffffffffffffffffffffffffff1614612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890614994565b60405180910390fd5b80600f90805190602001906124a792919061397c565b5050565b6124b36126a0565b73ffffffffffffffffffffffffffffffffffffffff166124d1611a42565b73ffffffffffffffffffffffffffffffffffffffff1614612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614994565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90614834565b60405180910390fd5b6125a081612edc565b50565b6125ab6126a0565b73ffffffffffffffffffffffffffffffffffffffff166125c9611a42565b73ffffffffffffffffffffffffffffffffffffffff161461261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614994565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061276582612d42565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661278c6126a0565b73ffffffffffffffffffffffffffffffffffffffff1614806127e857506127b16126a0565b73ffffffffffffffffffffffffffffffffffffffff166127d084610b93565b73ffffffffffffffffffffffffffffffffffffffff16145b80612804575061280382600001516127fe6126a0565b612381565b5b905080612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d906149d4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128af90614974565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906148b4565b60405180910390fd5b61293585858560016135bd565b61294560008484600001516126a8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c2a57612b8981612693565b15612c295782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9385858560016135c3565b5050505050565b60008183612ca89190614d6b565b905092915050565b60008183612cbe9190614d9c565b905092915050565b612ce08282604051806020016040528060008152506135c9565b5050565b80341115612d3f573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612d129190614df6565b9081150290604051600060405180830381858888f19350505050158015612d3d573d6000803e3d6000fd5b505b50565b612d4a613a02565b612d5382612693565b612d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8990614854565b60405180910390fd5b60008290505b60008110612e9b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e8c578092505050612ed7565b50808060019003915050612d98565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece90614b94565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612fc38473ffffffffffffffffffffffffffffffffffffffff166135db565b1561312c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fec6126a0565b8786866040518563ffffffff1660e01b815260040161300e94939291906146f0565b602060405180830381600087803b15801561302857600080fd5b505af192505050801561305957506040513d601f19601f820116820180604052508101906130569190613e9f565b60015b6130dc573d8060008114613089576040519150601f19603f3d011682016040523d82523d6000602084013e61308e565b606091505b506000815114156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90614a74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131f1565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156131ec57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156131ea573d6000803e3d6000fd5b505b600190505b949350505050565b6060600e805461320890614efe565b80601f016020809104026020016040519081016040528092919081815260200182805461323490614efe565b80156132815780601f1061325657610100808354040283529160200191613281565b820191906000526020600020905b81548152906001019060200180831161326457829003601f168201915b5050505050905090565b606060008214156132d3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133e7565b600082905060005b600082146133055780806132ee90614f61565b915050600a826132fe9190614d6b565b91506132db565b60008167ffffffffffffffff811115613321576133206150c5565b5b6040519080825280601f01601f1916602001820160405280156133535781602001600182028036833780820191505090505b5090505b600085146133e05760018261336c9190614df6565b9150600a8561337b9190614fd8565b60306133879190614d15565b60f81b81838151811061339d5761339c615096565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133d99190614d6b565b9450613357565b8093505050505b919050565b6000816040516020016133ff919061465d565b604051602081830303815290604052805190602001209050919050565b60008083905060005b83518110156134c557600084828151811061344357613442615096565b5b6020026020010151905080831015613485578281604051602001613468929190614678565b6040516020818303038152906040528051906020012092506134b1565b8083604051602001613498929190614678565b6040516020818303038152906040528051906020012092505b5080806134bd90614f61565b915050613425565b50601054811491505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353c906148d4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6135d683838360016135fe565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366b90614af4565b60405180910390fd5b60008414156136b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136af90614b14565b60405180910390fd5b6136c560008683876135bd565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561395f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561394a5761390a6000888488612fa2565b613949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394090614a74565b60405180910390fd5b5b81806001019250508080600101915050613893565b50806000819055505061397560008683876135c3565b5050505050565b82805461398890614efe565b90600052602060002090601f0160209004810192826139aa57600085556139f1565b82601f106139c357805160ff19168380011785556139f1565b828001600101855582156139f1579182015b828111156139f05782518255916020019190600101906139d5565b5b5090506139fe9190613a3c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a55576000816000905550600101613a3d565b5090565b6000613a6c613a6784614c2f565b614c0a565b90508083825260208201905082856020860282011115613a8f57613a8e6150f9565b5b60005b85811015613abf5781613aa58882613ba5565b845260208401935060208301925050600181019050613a92565b5050509392505050565b6000613adc613ad784614c5b565b614c0a565b905082815260208101848484011115613af857613af76150fe565b5b613b03848285614ebc565b509392505050565b6000613b1e613b1984614c8c565b614c0a565b905082815260208101848484011115613b3a57613b396150fe565b5b613b45848285614ebc565b509392505050565b600081359050613b5c81615923565b92915050565b600082601f830112613b7757613b766150f4565b5b8135613b87848260208601613a59565b91505092915050565b600081359050613b9f8161593a565b92915050565b600081359050613bb481615951565b92915050565b600081359050613bc981615968565b92915050565b600081519050613bde81615968565b92915050565b600082601f830112613bf957613bf86150f4565b5b8135613c09848260208601613ac9565b91505092915050565b600082601f830112613c2757613c266150f4565b5b8135613c37848260208601613b0b565b91505092915050565b600081359050613c4f8161597f565b92915050565b600060208284031215613c6b57613c6a615108565b5b6000613c7984828501613b4d565b91505092915050565b60008060408385031215613c9957613c98615108565b5b6000613ca785828601613b4d565b9250506020613cb885828601613b4d565b9150509250929050565b600080600060608486031215613cdb57613cda615108565b5b6000613ce986828701613b4d565b9350506020613cfa86828701613b4d565b9250506040613d0b86828701613c40565b9150509250925092565b60008060008060808587031215613d2f57613d2e615108565b5b6000613d3d87828801613b4d565b9450506020613d4e87828801613b4d565b9350506040613d5f87828801613c40565b925050606085013567ffffffffffffffff811115613d8057613d7f615103565b5b613d8c87828801613be4565b91505092959194509250565b60008060408385031215613daf57613dae615108565b5b6000613dbd85828601613b4d565b9250506020613dce85828601613b90565b9150509250929050565b60008060408385031215613def57613dee615108565b5b6000613dfd85828601613b4d565b9250506020613e0e85828601613c40565b9150509250929050565b600060208284031215613e2e57613e2d615108565b5b6000613e3c84828501613b90565b91505092915050565b600060208284031215613e5b57613e5a615108565b5b6000613e6984828501613ba5565b91505092915050565b600060208284031215613e8857613e87615108565b5b6000613e9684828501613bba565b91505092915050565b600060208284031215613eb557613eb4615108565b5b6000613ec384828501613bcf565b91505092915050565b600060208284031215613ee257613ee1615108565b5b600082013567ffffffffffffffff811115613f0057613eff615103565b5b613f0c84828501613c12565b91505092915050565b600060208284031215613f2b57613f2a615108565b5b6000613f3984828501613c40565b91505092915050565b60008060408385031215613f5957613f58615108565b5b6000613f6785828601613c40565b9250506020613f7885828601613b4d565b9150509250929050565b60008060408385031215613f9957613f98615108565b5b6000613fa785828601613c40565b925050602083013567ffffffffffffffff811115613fc857613fc7615103565b5b613fd485828601613b62565b9150509250929050565b613fe781614e2a565b82525050565b613ff681614e2a565b82525050565b61400d61400882614e2a565b614faa565b82525050565b61401c81614e3c565b82525050565b61402b81614e48565b82525050565b61404261403d82614e48565b614fbc565b82525050565b600061405382614cd2565b61405d8185614ce8565b935061406d818560208601614ecb565b6140768161510d565b840191505092915050565b600061408c82614cdd565b6140968185614cf9565b93506140a6818560208601614ecb565b6140af8161510d565b840191505092915050565b60006140c582614cdd565b6140cf8185614d0a565b93506140df818560208601614ecb565b80840191505092915050565b600081546140f881614efe565b6141028186614d0a565b9450600182166000811461411d576001811461412e57614161565b60ff19831686528186019350614161565b61413785614cbd565b60005b838110156141595781548189015260018201915060208101905061413a565b838801955050505b50505092915050565b6000614177602283614cf9565b91506141828261512b565b604082019050919050565b600061419a600d83614cf9565b91506141a58261517a565b602082019050919050565b60006141bd601683614cf9565b91506141c8826151a3565b602082019050919050565b60006141e0601383614cf9565b91506141eb826151cc565b602082019050919050565b6000614203601783614cf9565b915061420e826151f5565b602082019050919050565b6000614226602683614cf9565b91506142318261521e565b604082019050919050565b6000614249602a83614cf9565b91506142548261526d565b604082019050919050565b600061426c602383614cf9565b9150614277826152bc565b604082019050919050565b600061428f601283614cf9565b915061429a8261530b565b602082019050919050565b60006142b2602583614cf9565b91506142bd82615334565b604082019050919050565b60006142d5603183614cf9565b91506142e082615383565b604082019050919050565b60006142f8601e83614cf9565b9150614303826153d2565b602082019050919050565b600061431b601d83614cf9565b9150614326826153fb565b602082019050919050565b600061433e603983614cf9565b915061434982615424565b604082019050919050565b6000614361602b83614cf9565b915061436c82615473565b604082019050919050565b6000614384602683614cf9565b915061438f826154c2565b604082019050919050565b60006143a7602083614cf9565b91506143b282615511565b602082019050919050565b60006143ca601a83614cf9565b91506143d58261553a565b602082019050919050565b60006143ed603283614cf9565b91506143f882615563565b604082019050919050565b6000614410600f83614cf9565b915061441b826155b2565b602082019050919050565b6000614433602283614cf9565b915061443e826155db565b604082019050919050565b6000614456600f83614cf9565b91506144618261562a565b602082019050919050565b6000614479601883614cf9565b915061448482615653565b602082019050919050565b600061449c603383614cf9565b91506144a78261567c565b604082019050919050565b60006144bf601583614cf9565b91506144ca826156cb565b602082019050919050565b60006144e2601283614cf9565b91506144ed826156f4565b602082019050919050565b6000614505601383614cf9565b91506145108261571d565b602082019050919050565b6000614528602183614cf9565b915061453382615746565b604082019050919050565b600061454b602883614cf9565b915061455682615795565b604082019050919050565b600061456e602e83614cf9565b9150614579826157e4565b604082019050919050565b6000614591601483614cf9565b915061459c82615833565b602082019050919050565b60006145b4601f83614cf9565b91506145bf8261585c565b602082019050919050565b60006145d7602f83614cf9565b91506145e282615885565b604082019050919050565b60006145fa602d83614cf9565b9150614605826158d4565b604082019050919050565b6040820160008201516146266000850182613fde565b506020820151614639602085018261464e565b50505050565b61464881614e9e565b82525050565b61465781614ea8565b82525050565b60006146698284613ffc565b60148201915081905092915050565b60006146848285614031565b6020820191506146948284614031565b6020820191508190509392505050565b60006146b082866140ba565b91506146bc82856140ba565b91506146c882846140eb565b9150819050949350505050565b60006020820190506146ea6000830184613fed565b92915050565b60006080820190506147056000830187613fed565b6147126020830186613fed565b61471f604083018561463f565b81810360608301526147318184614048565b905095945050505050565b60006020820190506147516000830184614013565b92915050565b600060208201905061476c6000830184614022565b92915050565b6000602082019050818103600083015261478c8184614081565b905092915050565b600060208201905081810360008301526147ad8161416a565b9050919050565b600060208201905081810360008301526147cd8161418d565b9050919050565b600060208201905081810360008301526147ed816141b0565b9050919050565b6000602082019050818103600083015261480d816141d3565b9050919050565b6000602082019050818103600083015261482d816141f6565b9050919050565b6000602082019050818103600083015261484d81614219565b9050919050565b6000602082019050818103600083015261486d8161423c565b9050919050565b6000602082019050818103600083015261488d8161425f565b9050919050565b600060208201905081810360008301526148ad81614282565b9050919050565b600060208201905081810360008301526148cd816142a5565b9050919050565b600060208201905081810360008301526148ed816142c8565b9050919050565b6000602082019050818103600083015261490d816142eb565b9050919050565b6000602082019050818103600083015261492d8161430e565b9050919050565b6000602082019050818103600083015261494d81614331565b9050919050565b6000602082019050818103600083015261496d81614354565b9050919050565b6000602082019050818103600083015261498d81614377565b9050919050565b600060208201905081810360008301526149ad8161439a565b9050919050565b600060208201905081810360008301526149cd816143bd565b9050919050565b600060208201905081810360008301526149ed816143e0565b9050919050565b60006020820190508181036000830152614a0d81614403565b9050919050565b60006020820190508181036000830152614a2d81614426565b9050919050565b60006020820190508181036000830152614a4d81614449565b9050919050565b60006020820190508181036000830152614a6d8161446c565b9050919050565b60006020820190508181036000830152614a8d8161448f565b9050919050565b60006020820190508181036000830152614aad816144b2565b9050919050565b60006020820190508181036000830152614acd816144d5565b9050919050565b60006020820190508181036000830152614aed816144f8565b9050919050565b60006020820190508181036000830152614b0d8161451b565b9050919050565b60006020820190508181036000830152614b2d8161453e565b9050919050565b60006020820190508181036000830152614b4d81614561565b9050919050565b60006020820190508181036000830152614b6d81614584565b9050919050565b60006020820190508181036000830152614b8d816145a7565b9050919050565b60006020820190508181036000830152614bad816145ca565b9050919050565b60006020820190508181036000830152614bcd816145ed565b9050919050565b6000604082019050614be96000830184614610565b92915050565b6000602082019050614c04600083018461463f565b92915050565b6000614c14614c25565b9050614c208282614f30565b919050565b6000604051905090565b600067ffffffffffffffff821115614c4a57614c496150c5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c7657614c756150c5565b5b614c7f8261510d565b9050602081019050919050565b600067ffffffffffffffff821115614ca757614ca66150c5565b5b614cb08261510d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d2082614e9e565b9150614d2b83614e9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d6057614d5f615009565b5b828201905092915050565b6000614d7682614e9e565b9150614d8183614e9e565b925082614d9157614d90615038565b5b828204905092915050565b6000614da782614e9e565b9150614db283614e9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614deb57614dea615009565b5b828202905092915050565b6000614e0182614e9e565b9150614e0c83614e9e565b925082821015614e1f57614e1e615009565b5b828203905092915050565b6000614e3582614e7e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614ee9578082015181840152602081019050614ece565b83811115614ef8576000848401525b50505050565b60006002820490506001821680614f1657607f821691505b60208210811415614f2a57614f29615067565b5b50919050565b614f398261510d565b810181811067ffffffffffffffff82111715614f5857614f576150c5565b5b80604052505050565b6000614f6c82614e9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f9f57614f9e615009565b5b600182019050919050565b6000614fb582614fc6565b9050919050565b6000819050919050565b6000614fd18261511e565b9050919050565b6000614fe382614e9e565b9150614fee83614e9e565b925082614ffe57614ffd615038565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f456d7074792062616c616e636500000000000000000000000000000000000000600082015250565b7f45786365656473206d6178206d696e74206c696d697400000000000000000000600082015250565b7f4769766561776179206e6f74206d696e74656400000000000000000000000000600082015250565b7f4e6f742073746172746564207075626c6963206d696e74000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4d6178206c696d6974207065722077616c6c6574206578636565646564000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c696420416464726573730000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420657869737420746f6b656e0000000000000000000000000000000000600082015250565b7f4e6f7420737461727465642070726573616c65206d696e740000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554480000000000000000000000600082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4d696e7420616c72656164792073746172746564000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61592c81614e2a565b811461593757600080fd5b50565b61594381614e3c565b811461594e57600080fd5b50565b61595a81614e48565b811461596557600080fd5b50565b61597181614e52565b811461597c57600080fd5b50565b61598881614e9e565b811461599357600080fd5b5056fea2646970667358221220059c4f5c7edd896b594e4cea9792de20ac9d879a01f7fd56d8f8177beae15dd764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f6c6f7264756e6976657273652e6d7970696e6174612e636c6f75642f697066732f516d53634b374b4b6b7762767838676470505471626a7377533273466e786b6e5378396e663464585a6d676e51362f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637b6236f811610139578063a854ffba116100b6578063dc33e6811161007a578063dc33e68114610884578063e288e733146108c1578063e985e9c5146108ec578063f2c4ce1e14610929578063f2fde38b14610952578063f4a0a5281461097b57610251565b8063a854ffba146107ae578063b88d4fde146107d7578063c87b56dd14610800578063d0bfb8101461083d578063d5abeb011461085957610251565b806395d89b41116100fd57806395d89b41146106ef578063996517cf1461071a5780639d034fe914610745578063a22cb4651461076e578063a475b5dd1461079757610251565b80637b6236f8146106085780637cb647591461061f5780638bc35c2f1461065c5780638da5cb5b146106875780639231ab2a146106b257610251565b806342842e0e116101d25780635c474f9e116101965780635c474f9e146104f85780636352211e146105235780636817c76c146105605780636ecbac791461058b57806370a08231146105b4578063715018a6146105f157610251565b806342842e0e146104225780634f6ccce71461044b578063518302271461048857806355f804b3146104b35780635a5e5d58146104dc57610251565b806318160ddd1161021957806318160ddd1461034f57806323b872dd1461037a5780632f745c59146103a35780633ccfd60b146103e05780633d571ca2146103f757610251565b806301ffc9a71461025657806304549d6f1461029357806306fdde03146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613e72565b6109a4565b60405161028a919061473c565b60405180910390f35b34801561029f57600080fd5b506102a8610aee565b6040516102b5919061473c565b60405180910390f35b3480156102ca57600080fd5b506102d3610b01565b6040516102e09190614772565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613f15565b610b93565b60405161031d91906146d5565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613dd8565b610c18565b005b34801561035b57600080fd5b50610364610d31565b6040516103719190614bef565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613cc2565b610d3a565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613dd8565b610d4a565b6040516103d79190614bef565b60405180910390f35b3480156103ec57600080fd5b506103f5610f3c565b005b34801561040357600080fd5b5061040c6111a4565b6040516104199190614bef565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613cc2565b6111a9565b005b34801561045757600080fd5b50610472600480360381019061046d9190613f15565b6111c9565b60405161047f9190614bef565b60405180910390f35b34801561049457600080fd5b5061049d61121c565b6040516104aa919061473c565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613ecc565b61122f565b005b6104f660048036038101906104f19190613f15565b6112c5565b005b34801561050457600080fd5b5061050d611571565b60405161051a919061473c565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613f15565b611584565b60405161055791906146d5565b60405180910390f35b34801561056c57600080fd5b5061057561159a565b6040516105829190614bef565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613e18565b6115a0565b005b3480156105c057600080fd5b506105db60048036038101906105d69190613c55565b61168f565b6040516105e89190614bef565b60405180910390f35b3480156105fd57600080fd5b50610606611778565b005b34801561061457600080fd5b5061061d611800565b005b34801561062b57600080fd5b5061064660048036038101906106419190613e45565b6119ad565b6040516106539190614757565b60405180910390f35b34801561066857600080fd5b50610671611a3c565b60405161067e9190614bef565b60405180910390f35b34801561069357600080fd5b5061069c611a42565b6040516106a991906146d5565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613f15565b611a6c565b6040516106e69190614bd4565b60405180910390f35b3480156106fb57600080fd5b50610704611a84565b6040516107119190614772565b60405180910390f35b34801561072657600080fd5b5061072f611b16565b60405161073c9190614bef565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613f42565b611b1b565b005b34801561077a57600080fd5b5061079560048036038101906107909190613d98565b611ca2565b005b3480156107a357600080fd5b506107ac611e23565b005b3480156107ba57600080fd5b506107d560048036038101906107d09190613e18565b611ebc565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190613d15565b611fab565b005b34801561080c57600080fd5b5061082760048036038101906108229190613f15565b612007565b6040516108349190614772565b60405180910390f35b61085760048036038101906108529190613f82565b612160565b005b34801561086557600080fd5b5061086e612364565b60405161087b9190614bef565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190613c55565b61236a565b6040516108b89190614bef565b60405180910390f35b3480156108cd57600080fd5b506108d661237c565b6040516108e39190614bef565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613c82565b612381565b604051610920919061473c565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613ecc565b612415565b005b34801561095e57600080fd5b5061097960048036038101906109749190613c55565b6124ab565b005b34801561098757600080fd5b506109a2600480360381019061099d9190613f15565b6125a3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae75750610ae682612629565b5b9050919050565b600c60019054906101000a900460ff1681565b606060018054610b1090614efe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c90614efe565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b5050505050905090565b6000610b9e82612693565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490614bb4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2382611584565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90614a14565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb36126a0565b73ffffffffffffffffffffffffffffffffffffffff161480610ce25750610ce181610cdc6126a0565b612381565b5b610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890614934565b60405180910390fd5b610d2c8383836126a8565b505050565b60008054905090565b610d4583838361275a565b505050565b6000610d558361168f565b8210610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90614794565b60405180910390fd5b6000610da0610d31565b905060008060005b83811015610efa576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eec5786841415610ee3578195505050505050610f36565b83806001019450505b508080600101915050610da8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614b34565b60405180910390fd5b92915050565b610f446126a0565b73ffffffffffffffffffffffffffffffffffffffff16610f62611a42565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614994565b60405180910390fd5b60026009541415610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614b74565b60405180910390fd5b600260098190555060004711611049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611040906147b4565b60405180910390fd5b600047905060005b601180549050811015611198576011818154811061107257611071615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61115960126000601186815481106110d1576110d0615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114b606487612c9a90919063ffffffff16565b612cb090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611184573d6000803e3d6000fd5b50808061119090614f61565b915050611051565b50506001600981905550565b600281565b6111c483838360405180602001604052806000815250611fab565b505050565b60006111d3610d31565b8210611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90614874565b60405180910390fd5b819050919050565b600c60029054906101000a900460ff1681565b6112376126a0565b73ffffffffffffffffffffffffffffffffffffffff16611255611a42565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614994565b60405180910390fd5b80600e90805190602001906112c192919061397c565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906148f4565b60405180910390fd5b600c60009054906101000a900460ff16611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990614814565b60405180910390fd5b604d61138c610d31565b10156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906147f4565b60405180910390fd5b611e61816113d9610d31565b6113e39190614d15565b1115611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614894565b60405180910390fd5b6003811115611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906147d4565b60405180910390fd5b611470611a42565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114f35780600a546114b09190614d9c565b3410156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990614a94565b60405180910390fd5b5b6000600b54826115039190614d6b565b905060005b8181101561152f5761151c33600b54612cc6565b808061152790614f61565b915050611508565b506000600b54836115409190614fd8565b90506000811115611556576115553382612cc6565b5b61156c83600a546115679190614d9c565b612ce4565b505050565b600c60009054906101000a900460ff1681565b600061158f82612d42565b600001519050919050565b600a5481565b6115a86126a0565b73ffffffffffffffffffffffffffffffffffffffff166115c6611a42565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614994565b60405180910390fd5b801515600c60019054906101000a900460ff1615151415611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990614ad4565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790614954565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117806126a0565b73ffffffffffffffffffffffffffffffffffffffff1661179e611a42565b73ffffffffffffffffffffffffffffffffffffffff16146117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90614994565b60405180910390fd5b6117fe6000612edc565b565b6118086126a0565b73ffffffffffffffffffffffffffffffffffffffff16611826611a42565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390614994565b60405180910390fd5b6000611886610d31565b146118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614b54565b60405180910390fd5b6000600b54604d6118d79190614d6b565b905060005b818110156119425761192f60116000815481106118fc576118fb615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b54612cc6565b808061193a90614f61565b9150506118dc565b506000600b54604d6119549190614fd8565b905060008111156119a9576119a8601160008154811061197757611976615096565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612cc6565b5b5050565b60006119b76126a0565b73ffffffffffffffffffffffffffffffffffffffff166119d5611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290614994565b60405180910390fd5b816010819055506010549050919050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a74613a02565b611a7d82612d42565b9050919050565b606060028054611a9390614efe565b80601f0160208091040260200160405190810160405280929190818152602001828054611abf90614efe565b8015611b0c5780601f10611ae157610100808354040283529160200191611b0c565b820191906000526020600020905b815481529060010190602001808311611aef57829003601f168201915b5050505050905090565b600381565b611b236126a0565b73ffffffffffffffffffffffffffffffffffffffff16611b41611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614994565b60405180910390fd5b604d611ba1610d31565b1015611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd9906147f4565b60405180910390fd5b611e6182611bee610d31565b611bf89190614d15565b1115611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614ab4565b60405180910390fd5b6000600b5483611c499190614d6b565b905060005b81811015611c7557611c6283600b54612cc6565b8080611c6d90614f61565b915050611c4e565b506000600b5484611c869190614fd8565b90506000811115611c9c57611c9b8382612cc6565b5b50505050565b611caa6126a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f906149b4565b60405180910390fd5b8060066000611d256126a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd26126a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e17919061473c565b60405180910390a35050565b611e2b6126a0565b73ffffffffffffffffffffffffffffffffffffffff16611e49611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690614994565b60405180910390fd5b6001600c60026101000a81548160ff021916908315150217905550565b611ec46126a0565b73ffffffffffffffffffffffffffffffffffffffff16611ee2611a42565b73ffffffffffffffffffffffffffffffffffffffff1614611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90614994565b60405180910390fd5b801515600c60009054906101000a900460ff1615151415611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614ad4565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611fb684848461275a565b611fc284848484612fa2565b612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff890614a74565b60405180910390fd5b50505050565b606061201282612693565b612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890614a34565b60405180910390fd5b60001515600c60029054906101000a900460ff16151514156120ff57600f805461207a90614efe565b80601f01602080910402602001604051908101604052809291908181526020018280546120a690614efe565b80156120f35780601f106120c8576101008083540402835291602001916120f3565b820191906000526020600020905b8154815290600101906020018083116120d657829003601f168201915b5050505050905061215b565b60006121096131f9565b905060008151116121295760405180602001604052806000815250612157565b806121338461328b565b600d604051602001612147939291906146a4565b6040516020818303038152906040525b9150505b919050565b600c60019054906101000a900460ff166121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690614a54565b60405180910390fd5b604d6121b9610d31565b10156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f1906147f4565b60405180910390fd5b6001151561221061220a336133ec565b8361341c565b151514612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906149f4565b60405180910390fd5b60008211801561227657506002826122693361236a565b6122739190614d15565b11155b6122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ac90614914565b60405180910390fd5b6122bd611a42565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123405781600a546122fd9190614d9c565b34101561233f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233690614a94565b60405180910390fd5b5b61234a3383612cc6565b61236082600a5461235b9190614d9c565b612ce4565b5050565b611e6181565b6000612375826134d4565b9050919050565b604d81565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61241d6126a0565b73ffffffffffffffffffffffffffffffffffffffff1661243b611a42565b73ffffffffffffffffffffffffffffffffffffffff1614612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890614994565b60405180910390fd5b80600f90805190602001906124a792919061397c565b5050565b6124b36126a0565b73ffffffffffffffffffffffffffffffffffffffff166124d1611a42565b73ffffffffffffffffffffffffffffffffffffffff1614612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614994565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90614834565b60405180910390fd5b6125a081612edc565b50565b6125ab6126a0565b73ffffffffffffffffffffffffffffffffffffffff166125c9611a42565b73ffffffffffffffffffffffffffffffffffffffff161461261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614994565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061276582612d42565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661278c6126a0565b73ffffffffffffffffffffffffffffffffffffffff1614806127e857506127b16126a0565b73ffffffffffffffffffffffffffffffffffffffff166127d084610b93565b73ffffffffffffffffffffffffffffffffffffffff16145b80612804575061280382600001516127fe6126a0565b612381565b5b905080612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d906149d4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128af90614974565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906148b4565b60405180910390fd5b61293585858560016135bd565b61294560008484600001516126a8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c2a57612b8981612693565b15612c295782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9385858560016135c3565b5050505050565b60008183612ca89190614d6b565b905092915050565b60008183612cbe9190614d9c565b905092915050565b612ce08282604051806020016040528060008152506135c9565b5050565b80341115612d3f573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612d129190614df6565b9081150290604051600060405180830381858888f19350505050158015612d3d573d6000803e3d6000fd5b505b50565b612d4a613a02565b612d5382612693565b612d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8990614854565b60405180910390fd5b60008290505b60008110612e9b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e8c578092505050612ed7565b50808060019003915050612d98565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece90614b94565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612fc38473ffffffffffffffffffffffffffffffffffffffff166135db565b1561312c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fec6126a0565b8786866040518563ffffffff1660e01b815260040161300e94939291906146f0565b602060405180830381600087803b15801561302857600080fd5b505af192505050801561305957506040513d601f19601f820116820180604052508101906130569190613e9f565b60015b6130dc573d8060008114613089576040519150601f19603f3d011682016040523d82523d6000602084013e61308e565b606091505b506000815114156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90614a74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131f1565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156131ec57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156131ea573d6000803e3d6000fd5b505b600190505b949350505050565b6060600e805461320890614efe565b80601f016020809104026020016040519081016040528092919081815260200182805461323490614efe565b80156132815780601f1061325657610100808354040283529160200191613281565b820191906000526020600020905b81548152906001019060200180831161326457829003601f168201915b5050505050905090565b606060008214156132d3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133e7565b600082905060005b600082146133055780806132ee90614f61565b915050600a826132fe9190614d6b565b91506132db565b60008167ffffffffffffffff811115613321576133206150c5565b5b6040519080825280601f01601f1916602001820160405280156133535781602001600182028036833780820191505090505b5090505b600085146133e05760018261336c9190614df6565b9150600a8561337b9190614fd8565b60306133879190614d15565b60f81b81838151811061339d5761339c615096565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133d99190614d6b565b9450613357565b8093505050505b919050565b6000816040516020016133ff919061465d565b604051602081830303815290604052805190602001209050919050565b60008083905060005b83518110156134c557600084828151811061344357613442615096565b5b6020026020010151905080831015613485578281604051602001613468929190614678565b6040516020818303038152906040528051906020012092506134b1565b8083604051602001613498929190614678565b6040516020818303038152906040528051906020012092505b5080806134bd90614f61565b915050613425565b50601054811491505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353c906148d4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6135d683838360016135fe565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366b90614af4565b60405180910390fd5b60008414156136b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136af90614b14565b60405180910390fd5b6136c560008683876135bd565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561395f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561394a5761390a6000888488612fa2565b613949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394090614a74565b60405180910390fd5b5b81806001019250508080600101915050613893565b50806000819055505061397560008683876135c3565b5050505050565b82805461398890614efe565b90600052602060002090601f0160209004810192826139aa57600085556139f1565b82601f106139c357805160ff19168380011785556139f1565b828001600101855582156139f1579182015b828111156139f05782518255916020019190600101906139d5565b5b5090506139fe9190613a3c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613a55576000816000905550600101613a3d565b5090565b6000613a6c613a6784614c2f565b614c0a565b90508083825260208201905082856020860282011115613a8f57613a8e6150f9565b5b60005b85811015613abf5781613aa58882613ba5565b845260208401935060208301925050600181019050613a92565b5050509392505050565b6000613adc613ad784614c5b565b614c0a565b905082815260208101848484011115613af857613af76150fe565b5b613b03848285614ebc565b509392505050565b6000613b1e613b1984614c8c565b614c0a565b905082815260208101848484011115613b3a57613b396150fe565b5b613b45848285614ebc565b509392505050565b600081359050613b5c81615923565b92915050565b600082601f830112613b7757613b766150f4565b5b8135613b87848260208601613a59565b91505092915050565b600081359050613b9f8161593a565b92915050565b600081359050613bb481615951565b92915050565b600081359050613bc981615968565b92915050565b600081519050613bde81615968565b92915050565b600082601f830112613bf957613bf86150f4565b5b8135613c09848260208601613ac9565b91505092915050565b600082601f830112613c2757613c266150f4565b5b8135613c37848260208601613b0b565b91505092915050565b600081359050613c4f8161597f565b92915050565b600060208284031215613c6b57613c6a615108565b5b6000613c7984828501613b4d565b91505092915050565b60008060408385031215613c9957613c98615108565b5b6000613ca785828601613b4d565b9250506020613cb885828601613b4d565b9150509250929050565b600080600060608486031215613cdb57613cda615108565b5b6000613ce986828701613b4d565b9350506020613cfa86828701613b4d565b9250506040613d0b86828701613c40565b9150509250925092565b60008060008060808587031215613d2f57613d2e615108565b5b6000613d3d87828801613b4d565b9450506020613d4e87828801613b4d565b9350506040613d5f87828801613c40565b925050606085013567ffffffffffffffff811115613d8057613d7f615103565b5b613d8c87828801613be4565b91505092959194509250565b60008060408385031215613daf57613dae615108565b5b6000613dbd85828601613b4d565b9250506020613dce85828601613b90565b9150509250929050565b60008060408385031215613def57613dee615108565b5b6000613dfd85828601613b4d565b9250506020613e0e85828601613c40565b9150509250929050565b600060208284031215613e2e57613e2d615108565b5b6000613e3c84828501613b90565b91505092915050565b600060208284031215613e5b57613e5a615108565b5b6000613e6984828501613ba5565b91505092915050565b600060208284031215613e8857613e87615108565b5b6000613e9684828501613bba565b91505092915050565b600060208284031215613eb557613eb4615108565b5b6000613ec384828501613bcf565b91505092915050565b600060208284031215613ee257613ee1615108565b5b600082013567ffffffffffffffff811115613f0057613eff615103565b5b613f0c84828501613c12565b91505092915050565b600060208284031215613f2b57613f2a615108565b5b6000613f3984828501613c40565b91505092915050565b60008060408385031215613f5957613f58615108565b5b6000613f6785828601613c40565b9250506020613f7885828601613b4d565b9150509250929050565b60008060408385031215613f9957613f98615108565b5b6000613fa785828601613c40565b925050602083013567ffffffffffffffff811115613fc857613fc7615103565b5b613fd485828601613b62565b9150509250929050565b613fe781614e2a565b82525050565b613ff681614e2a565b82525050565b61400d61400882614e2a565b614faa565b82525050565b61401c81614e3c565b82525050565b61402b81614e48565b82525050565b61404261403d82614e48565b614fbc565b82525050565b600061405382614cd2565b61405d8185614ce8565b935061406d818560208601614ecb565b6140768161510d565b840191505092915050565b600061408c82614cdd565b6140968185614cf9565b93506140a6818560208601614ecb565b6140af8161510d565b840191505092915050565b60006140c582614cdd565b6140cf8185614d0a565b93506140df818560208601614ecb565b80840191505092915050565b600081546140f881614efe565b6141028186614d0a565b9450600182166000811461411d576001811461412e57614161565b60ff19831686528186019350614161565b61413785614cbd565b60005b838110156141595781548189015260018201915060208101905061413a565b838801955050505b50505092915050565b6000614177602283614cf9565b91506141828261512b565b604082019050919050565b600061419a600d83614cf9565b91506141a58261517a565b602082019050919050565b60006141bd601683614cf9565b91506141c8826151a3565b602082019050919050565b60006141e0601383614cf9565b91506141eb826151cc565b602082019050919050565b6000614203601783614cf9565b915061420e826151f5565b602082019050919050565b6000614226602683614cf9565b91506142318261521e565b604082019050919050565b6000614249602a83614cf9565b91506142548261526d565b604082019050919050565b600061426c602383614cf9565b9150614277826152bc565b604082019050919050565b600061428f601283614cf9565b915061429a8261530b565b602082019050919050565b60006142b2602583614cf9565b91506142bd82615334565b604082019050919050565b60006142d5603183614cf9565b91506142e082615383565b604082019050919050565b60006142f8601e83614cf9565b9150614303826153d2565b602082019050919050565b600061431b601d83614cf9565b9150614326826153fb565b602082019050919050565b600061433e603983614cf9565b915061434982615424565b604082019050919050565b6000614361602b83614cf9565b915061436c82615473565b604082019050919050565b6000614384602683614cf9565b915061438f826154c2565b604082019050919050565b60006143a7602083614cf9565b91506143b282615511565b602082019050919050565b60006143ca601a83614cf9565b91506143d58261553a565b602082019050919050565b60006143ed603283614cf9565b91506143f882615563565b604082019050919050565b6000614410600f83614cf9565b915061441b826155b2565b602082019050919050565b6000614433602283614cf9565b915061443e826155db565b604082019050919050565b6000614456600f83614cf9565b91506144618261562a565b602082019050919050565b6000614479601883614cf9565b915061448482615653565b602082019050919050565b600061449c603383614cf9565b91506144a78261567c565b604082019050919050565b60006144bf601583614cf9565b91506144ca826156cb565b602082019050919050565b60006144e2601283614cf9565b91506144ed826156f4565b602082019050919050565b6000614505601383614cf9565b91506145108261571d565b602082019050919050565b6000614528602183614cf9565b915061453382615746565b604082019050919050565b600061454b602883614cf9565b915061455682615795565b604082019050919050565b600061456e602e83614cf9565b9150614579826157e4565b604082019050919050565b6000614591601483614cf9565b915061459c82615833565b602082019050919050565b60006145b4601f83614cf9565b91506145bf8261585c565b602082019050919050565b60006145d7602f83614cf9565b91506145e282615885565b604082019050919050565b60006145fa602d83614cf9565b9150614605826158d4565b604082019050919050565b6040820160008201516146266000850182613fde565b506020820151614639602085018261464e565b50505050565b61464881614e9e565b82525050565b61465781614ea8565b82525050565b60006146698284613ffc565b60148201915081905092915050565b60006146848285614031565b6020820191506146948284614031565b6020820191508190509392505050565b60006146b082866140ba565b91506146bc82856140ba565b91506146c882846140eb565b9150819050949350505050565b60006020820190506146ea6000830184613fed565b92915050565b60006080820190506147056000830187613fed565b6147126020830186613fed565b61471f604083018561463f565b81810360608301526147318184614048565b905095945050505050565b60006020820190506147516000830184614013565b92915050565b600060208201905061476c6000830184614022565b92915050565b6000602082019050818103600083015261478c8184614081565b905092915050565b600060208201905081810360008301526147ad8161416a565b9050919050565b600060208201905081810360008301526147cd8161418d565b9050919050565b600060208201905081810360008301526147ed816141b0565b9050919050565b6000602082019050818103600083015261480d816141d3565b9050919050565b6000602082019050818103600083015261482d816141f6565b9050919050565b6000602082019050818103600083015261484d81614219565b9050919050565b6000602082019050818103600083015261486d8161423c565b9050919050565b6000602082019050818103600083015261488d8161425f565b9050919050565b600060208201905081810360008301526148ad81614282565b9050919050565b600060208201905081810360008301526148cd816142a5565b9050919050565b600060208201905081810360008301526148ed816142c8565b9050919050565b6000602082019050818103600083015261490d816142eb565b9050919050565b6000602082019050818103600083015261492d8161430e565b9050919050565b6000602082019050818103600083015261494d81614331565b9050919050565b6000602082019050818103600083015261496d81614354565b9050919050565b6000602082019050818103600083015261498d81614377565b9050919050565b600060208201905081810360008301526149ad8161439a565b9050919050565b600060208201905081810360008301526149cd816143bd565b9050919050565b600060208201905081810360008301526149ed816143e0565b9050919050565b60006020820190508181036000830152614a0d81614403565b9050919050565b60006020820190508181036000830152614a2d81614426565b9050919050565b60006020820190508181036000830152614a4d81614449565b9050919050565b60006020820190508181036000830152614a6d8161446c565b9050919050565b60006020820190508181036000830152614a8d8161448f565b9050919050565b60006020820190508181036000830152614aad816144b2565b9050919050565b60006020820190508181036000830152614acd816144d5565b9050919050565b60006020820190508181036000830152614aed816144f8565b9050919050565b60006020820190508181036000830152614b0d8161451b565b9050919050565b60006020820190508181036000830152614b2d8161453e565b9050919050565b60006020820190508181036000830152614b4d81614561565b9050919050565b60006020820190508181036000830152614b6d81614584565b9050919050565b60006020820190508181036000830152614b8d816145a7565b9050919050565b60006020820190508181036000830152614bad816145ca565b9050919050565b60006020820190508181036000830152614bcd816145ed565b9050919050565b6000604082019050614be96000830184614610565b92915050565b6000602082019050614c04600083018461463f565b92915050565b6000614c14614c25565b9050614c208282614f30565b919050565b6000604051905090565b600067ffffffffffffffff821115614c4a57614c496150c5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c7657614c756150c5565b5b614c7f8261510d565b9050602081019050919050565b600067ffffffffffffffff821115614ca757614ca66150c5565b5b614cb08261510d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d2082614e9e565b9150614d2b83614e9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d6057614d5f615009565b5b828201905092915050565b6000614d7682614e9e565b9150614d8183614e9e565b925082614d9157614d90615038565b5b828204905092915050565b6000614da782614e9e565b9150614db283614e9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614deb57614dea615009565b5b828202905092915050565b6000614e0182614e9e565b9150614e0c83614e9e565b925082821015614e1f57614e1e615009565b5b828203905092915050565b6000614e3582614e7e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614ee9578082015181840152602081019050614ece565b83811115614ef8576000848401525b50505050565b60006002820490506001821680614f1657607f821691505b60208210811415614f2a57614f29615067565b5b50919050565b614f398261510d565b810181811067ffffffffffffffff82111715614f5857614f576150c5565b5b80604052505050565b6000614f6c82614e9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f9f57614f9e615009565b5b600182019050919050565b6000614fb582614fc6565b9050919050565b6000819050919050565b6000614fd18261511e565b9050919050565b6000614fe382614e9e565b9150614fee83614e9e565b925082614ffe57614ffd615038565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f456d7074792062616c616e636500000000000000000000000000000000000000600082015250565b7f45786365656473206d6178206d696e74206c696d697400000000000000000000600082015250565b7f4769766561776179206e6f74206d696e74656400000000000000000000000000600082015250565b7f4e6f742073746172746564207075626c6963206d696e74000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4d6178206c696d6974207065722077616c6c6574206578636565646564000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c696420416464726573730000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420657869737420746f6b656e0000000000000000000000000000000000600082015250565b7f4e6f7420737461727465642070726573616c65206d696e740000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554480000000000000000000000600082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4d696e7420616c72656164792073746172746564000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61592c81614e2a565b811461593757600080fd5b50565b61594381614e3c565b811461594e57600080fd5b50565b61595a81614e48565b811461596557600080fd5b50565b61597181614e52565b811461597c57600080fd5b50565b61598881614e9e565b811461599357600080fd5b5056fea2646970667358221220059c4f5c7edd896b594e4cea9792de20ac9d879a01f7fd56d8f8177beae15dd764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f6c6f7264756e6976657273652e6d7970696e6174612e636c6f75642f697066732f516d53634b374b4b6b7762767838676470505471626a7377533273466e786b6e5378396e663464585a6d676e51362f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : baseURI_ (string):
Arg [2] : notRevealedURI_ (string): https://lorduniverse.mypinata.cloud/ipfs/QmScK7KKkwbvx8gdpPTqbjswS2sFnxknSx9nf4dXZmgnQ6/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [5] : 68747470733a2f2f6c6f7264756e6976657273652e6d7970696e6174612e636c
Arg [6] : 6f75642f697066732f516d53634b374b4b6b7762767838676470505471626a73
Arg [7] : 77533273466e786b6e5378396e663464585a6d676e51362f68696464656e2e6a
Arg [8] : 736f6e0000000000000000000000000000000000000000000000000000000000


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.