ETH Price: $2,343.83 (+2.23%)

Token

Litte Mami Pass NFT (Litte Mami Pass NFT)
 

Overview

Max Total Supply

1,100 Litte Mami Pass NFT

Holders

570

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Litte Mami Pass NFT
0x5b1ad67c61d84a5586075eb7f720a84dbfdf5a71
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : LittleMamiPass.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(18, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(12, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(6, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

abstract contract ERC721PausableAndEnumerable is ERC721Enumerable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

contract NFT is ERC721PausableAndEnumerable, Ownable, ReentrancyGuard {
    uint256 public maxSupply;
    string public baseURI;
    uint256 public maxBatch;
    string public defaultURI;
    bytes32 public root;

    uint256 public presalePrice;

    uint256 public whitelistPrice;

    uint256 public presaleStartTime;

    uint256 public presaleEndTime;

    uint256 public whitelistStartTime;

    uint256 public whitelistEndTime;

    uint256 public presaleNum;

    uint256 public whitelistNum;

    uint256 public maxPresaleNum;

    uint256 public maxWhitelistNum;

    uint256 public reservedNum;

    uint256 public maxReservedNum;

    mapping(address => bool) public whitelistMined;

    mapping(address => bool) public presaleMined;

    using Strings for uint256;

    constructor(
        string memory _baseURI,
        string memory _defaultURI,
        bool _isPause,
        bytes32 _root
    ) public ERC721("Litte Mami Pass NFT", "Litte Mami Pass NFT") {
        uint256 _maxBatch = 3;
        uint256 _maxSupply = 1100;
        setBaseURI(_baseURI);
        pause(_isPause);
        setMaxBatch(_maxBatch);
        maxSupply = _maxSupply;
        defaultURI = _defaultURI;
        root = _root;
        maxReservedNum = 1;
        maxWhitelistNum = 100;
        maxPresaleNum = 999;
        whitelistStartTime = 1655722800;
        whitelistEndTime = 1655895600;
        whitelistPrice = 0.5 ether;
        presaleStartTime = 1655730000;
        presaleEndTime = 1655902800;
        presalePrice = 0.55 ether;
    }

    function setPrice(uint256 _presalePrice, uint256 _whitelistPrice)
        external
        onlyOwner
    {
        presalePrice = _presalePrice;
        whitelistPrice = _whitelistPrice;
    }

    function setPresaleTime(
        uint256 _presaleStartTime,
        uint256 _presaleEndTime,
        uint256 _whitelistStartTime,
        uint256 _whitelistEndTime
    ) external onlyOwner {
        require(_whitelistEndTime > _whitelistStartTime);
        require(_presaleEndTime > _presaleStartTime);
        presaleStartTime = _presaleStartTime;
        presaleEndTime = _presaleEndTime;
        whitelistStartTime = _whitelistStartTime;
        whitelistEndTime = _whitelistEndTime;
    }

    function setMaxNum(
        uint256 _maxPresaleNum,
        uint256 _maxWhitelistNum,
        uint256 _maxReservedNum
    ) external onlyOwner {
        maxPresaleNum = _maxPresaleNum;
        maxWhitelistNum = _maxWhitelistNum;
        maxReservedNum = _maxReservedNum;
    }

    function mint(address _addresss, uint256 _num) internal nonReentrant {
        require(
            _num <= maxBatch && _num > 0,
            "Num must greater 0 and lower maxBatch"
        );
        require(totalSupply() + _num <= maxSupply, "Num must lower maxSupply");
        for (uint256 i = 0; i < _num; i++) {
            _safeMint(_addresss, totalSupply() + 1);
        }
    }

    function mintReserved(address _address, uint256 _num) external onlyOwner {
        require(
            reservedNum + _num <= maxReservedNum,
            "reservedNum must lower maxReservedNum"
        );
        mint(_address, _num);
        reservedNum += _num;
    }

    function presaleWhitelist(uint256 _num, bytes32[] memory _proof)
        external
        payable
    {
        require(_num == 1, "Num must be 1");
        require(!whitelistMined[msg.sender], "Already whitelist mined");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_proof, root, leaf), "Verification failed");
        require(
            msg.value == whitelistPrice * _num,
            "Value must eq whitelistPrice*num"
        );
        require(
            whitelistStartTime <= block.timestamp,
            "Whitelist pre-sale has not started yet"
        );
        require(
            whitelistEndTime > block.timestamp,
            "Whitelist pre-sale has ended"
        );
        require(
            whitelistNum + _num <= maxWhitelistNum,
            "Num must lower maxWhitelistNum"
        );
        mint(msg.sender, _num);
        whitelistNum += _num;
        whitelistMined[msg.sender] = true;
    }

    function presale(uint256 _num) external payable {
        require(!presaleMined[msg.sender], "Already presale mined");
        require(
            msg.value == presalePrice * _num,
            "Value must eq presalePrice1*num"
        );
        require(
            presaleStartTime <= block.timestamp,
            "Pre-sale has not started yet"
        );
        require(presaleEndTime > block.timestamp, "Pre-sale has ended");
        require(
            presaleNum + _num <= maxPresaleNum,
            "Num must lower maxPresaleNum"
        );
        mint(msg.sender, _num);
        presaleNum += _num;
        presaleMined[msg.sender] = true;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function setMaxBatch(uint256 _maxBatch) public onlyOwner {
        maxBatch = _maxBatch;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function pause(bool _isPause) public onlyOwner {
        if (paused() != _isPause) {
            if (_isPause) {
                _pause();
            } else {
                _unpause();
            }
        }
    }

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

    function setDefaultURI(string memory _defaultURI) public onlyOwner {
        defaultURI = _defaultURI;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory imageURI = bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, _tokenId.toString()))
            : defaultURI;

        return imageURI;
    }
}

File 2 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 5 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 6 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 7 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 8 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

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 10 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 11 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 12 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 16 : Context.sol
// SPDX-License-Identifier: MIT

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 14 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 15 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 16 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

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":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"bool","name":"_isPause","type":"bool"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReservedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPause","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMined","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"presaleWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBatch","type":"uint256"}],"name":"setMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPresaleNum","type":"uint256"},{"internalType":"uint256","name":"_maxWhitelistNum","type":"uint256"},{"internalType":"uint256","name":"_maxReservedNum","type":"uint256"}],"name":"setMaxNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleStartTime","type":"uint256"},{"internalType":"uint256","name":"_presaleEndTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistStartTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistEndTime","type":"uint256"}],"name":"setPresaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presalePrice","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","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":"whitelistEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMined","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620066be380380620066be8339818101604052810190620000379190620007ea565b6040518060400160405280601381526020017f4c69747465204d616d692050617373204e4654000000000000000000000000008152506040518060400160405280601381526020017f4c69747465204d616d692050617373204e4654000000000000000000000000008152508160009080519060200190620000bb9291906200068e565b508060019080519060200190620000d49291906200068e565b5050506000600a60006101000a81548160ff0219169083151502179055506200011262000106620001f060201b60201c565b620001f860201b60201c565b6001600b81905550600060039050600061044c90506200013886620002be60201b60201c565b62000149846200036960201b60201c565b6200015a826200044560201b60201c565b80600c8190555084600f9080519060200190620001799291906200068e565b50826010819055506001601c819055506064601a819055506103e76019819055506362b053306015819055506362b2f6306016819055506706f05b59d3b200006012819055506362b06f506013819055506362b312506014819055506707a1fe160277000060118190555050505050505062000c31565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ce620001f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f4620004de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003449062000981565b60405180910390fd5b80600d9080519060200190620003659291906200068e565b5050565b62000379620001f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200039f620004de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ef9062000981565b60405180910390fd5b8015156200040b6200050860201b60201c565b1515146200044257801562000430576200042a6200051f60201b60201c565b62000441565b62000440620005d760201b60201c565b5b5b50565b62000455620001f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200047b620004de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cb9062000981565b60405180910390fd5b80600e8190555050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900460ff16905090565b6200052f6200050860201b60201c565b1562000572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000569906200095f565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620005be620001f060201b60201c565b604051620005cd919062000920565b60405180910390a1565b620005e76200050860201b60201c565b62000629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000620906200093d565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa62000675620001f060201b60201c565b60405162000684919062000920565b60405180910390a1565b8280546200069c9062000a93565b90600052602060002090601f016020900481019282620006c057600085556200070c565b82601f10620006db57805160ff19168380011785556200070c565b828001600101855582156200070c579182015b828111156200070b578251825591602001919060010190620006ee565b5b5090506200071b91906200071f565b5090565b5b808211156200073a57600081600090555060010162000720565b5090565b6000620007556200074f84620009cc565b620009a3565b90508281526020810184848401111562000774576200077362000b62565b5b6200078184828562000a5d565b509392505050565b6000815190506200079a8162000bfd565b92915050565b600081519050620007b18162000c17565b92915050565b600082601f830112620007cf57620007ce62000b5d565b5b8151620007e18482602086016200073e565b91505092915050565b6000806000806080858703121562000807576200080662000b6c565b5b600085015167ffffffffffffffff81111562000828576200082762000b67565b5b6200083687828801620007b7565b945050602085015167ffffffffffffffff8111156200085a576200085962000b67565b5b6200086887828801620007b7565b93505060406200087b8782880162000789565b92505060606200088e87828801620007a0565b91505092959194509250565b620008a58162000a13565b82525050565b6000620008ba60148362000a02565b9150620008c78262000b82565b602082019050919050565b6000620008e160108362000a02565b9150620008ee8262000bab565b602082019050919050565b60006200090860208362000a02565b9150620009158262000bd4565b602082019050919050565b60006020820190506200093760008301846200089a565b92915050565b600060208201905081810360008301526200095881620008ab565b9050919050565b600060208201905081810360008301526200097a81620008d2565b9050919050565b600060208201905081810360008301526200099c81620008f9565b9050919050565b6000620009af620009c2565b9050620009bd828262000ac9565b919050565b6000604051905090565b600067ffffffffffffffff821115620009ea57620009e962000b2e565b5b620009f58262000b71565b9050602081019050919050565b600082825260208201905092915050565b600062000a208262000a3d565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b8381101562000a7d57808201518184015260208101905062000a60565b8381111562000a8d576000848401525b50505050565b6000600282049050600182168062000aac57607f821691505b6020821081141562000ac35762000ac262000aff565b5b50919050565b62000ad48262000b71565b810181811067ffffffffffffffff8211171562000af65762000af562000b2e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000c088162000a27565b811462000c1457600080fd5b50565b62000c228162000a33565b811462000c2e57600080fd5b50565b615a7d8062000c416000396000f3fe6080604052600436106102e25760003560e01c80636f15ea4c11610190578063d5abeb01116100dc578063ebdfd72211610095578063f7d975771161006f578063f7d9757714610b1e578063f95b5b9914610b47578063fc1a1c3614610b72578063ff3fbf1414610b9d576102e2565b8063ebdfd72214610a9f578063ebf0c71714610aca578063f2fde38b14610af5576102e2565b8063d5abeb011461099e578063d89c6888146109c9578063da1b9e08146109f4578063dab5f34014610a1d578063e6ab143414610a46578063e985e9c514610a62576102e2565b80639292caaf11610149578063a22cb46511610123578063a22cb465146108e4578063a82524b21461090d578063b88d4fde14610938578063c87b56dd14610961576102e2565b80639292caaf1461087257806395d89b411461089d5780639fc1e079146108c8576102e2565b80636f15ea4c1461076457806370a08231146107a1578063715018a6146107de5780637de55fe1146107f5578063806a2e531461081e5780638da5cb5b14610847576102e2565b806331b21e401161024f57806355f804b3116102085780635c975abb116101e25780635c975abb146106a65780636352211e146106d157806367765b871461070e5780636c0360eb14610739576102e2565b806355f804b31461061757806357b96db2146106405780635c94781014610669576102e2565b806331b21e40146105195780633a367a67146105445780633ccfd60b1461056f57806342842e0e146105865780634f6ccce7146105af578063517430c9146105ec576102e2565b8063095ea7b3116102a1578063095ea7b31461040b57806318160ddd1461043457806323b872dd1461045f578063249b7c19146104885780632f745c59146104b3578063300b23d8146104f0576102e2565b80620e7fa8146102e75780621617311461031257806301ffc9a71461033d57806302329a291461037a57806306fdde03146103a3578063081812fc146103ce575b600080fd5b3480156102f357600080fd5b506102fc610bc8565b6040516103099190614be4565b60405180910390f35b34801561031e57600080fd5b50610327610bce565b6040516103349190614be4565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613d59565b610bd4565b60405161037191906146ec565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613cff565b610c4e565b005b3480156103af57600080fd5b506103b8610cfc565b6040516103c59190614722565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613dfc565b610d8e565b6040516104029190614685565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190613cbf565b610e13565b005b34801561044057600080fd5b50610449610f2b565b6040516104569190614be4565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613ba9565b610f38565b005b34801561049457600080fd5b5061049d610f98565b6040516104aa9190614be4565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613cbf565b610f9e565b6040516104e79190614be4565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613dfc565b611043565b005b34801561052557600080fd5b5061052e6110c9565b60405161053b9190614be4565b60405180910390f35b34801561055057600080fd5b506105596110cf565b6040516105669190614722565b60405180910390f35b34801561057b57600080fd5b5061058461115d565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613ba9565b611222565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613dfc565b611242565b6040516105e39190614be4565b60405180910390f35b3480156105f857600080fd5b506106016112b3565b60405161060e9190614be4565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613db3565b6112b9565b005b34801561064c57600080fd5b5061066760048036038101906106629190613ec5565b61134f565b005b34801561067557600080fd5b50610690600480360381019061068b9190613b3c565b6113e5565b60405161069d91906146ec565b60405180910390f35b3480156106b257600080fd5b506106bb611405565b6040516106c891906146ec565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613dfc565b61141c565b6040516107059190614685565b60405180910390f35b34801561071a57600080fd5b506107236114ce565b6040516107309190614be4565b60405180910390f35b34801561074557600080fd5b5061074e6114d4565b60405161075b9190614722565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190613b3c565b611562565b60405161079891906146ec565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613b3c565b611582565b6040516107d59190614be4565b60405180910390f35b3480156107ea57600080fd5b506107f361163a565b005b34801561080157600080fd5b5061081c60048036038101906108179190613cbf565b6116c2565b005b34801561082a57600080fd5b5061084560048036038101906108409190613f18565b6117b7565b005b34801561085357600080fd5b5061085c61186d565b6040516108699190614685565b60405180910390f35b34801561087e57600080fd5b50610887611897565b6040516108949190614be4565b60405180910390f35b3480156108a957600080fd5b506108b261189d565b6040516108bf9190614722565b60405180910390f35b6108e260048036038101906108dd9190613e29565b61192f565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613c7f565b611c20565b005b34801561091957600080fd5b50610922611da1565b60405161092f9190614be4565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a9190613bfc565b611da7565b005b34801561096d57600080fd5b5061098860048036038101906109839190613dfc565b611e09565b6040516109959190614722565b60405180910390f35b3480156109aa57600080fd5b506109b3611f31565b6040516109c09190614be4565b60405180910390f35b3480156109d557600080fd5b506109de611f37565b6040516109eb9190614be4565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a169190613db3565b611f3d565b005b348015610a2957600080fd5b50610a446004803603810190610a3f9190613d2c565b611fd3565b005b610a606004803603810190610a5b9190613dfc565b612059565b005b348015610a6e57600080fd5b50610a896004803603810190610a849190613b69565b61228e565b604051610a9691906146ec565b60405180910390f35b348015610aab57600080fd5b50610ab4612322565b604051610ac19190614be4565b60405180910390f35b348015610ad657600080fd5b50610adf612328565b604051610aec9190614707565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b179190613b3c565b61232e565b005b348015610b2a57600080fd5b50610b456004803603810190610b409190613e85565b612426565b005b348015610b5357600080fd5b50610b5c6124b4565b604051610b699190614be4565b60405180910390f35b348015610b7e57600080fd5b50610b876124ba565b604051610b949190614be4565b60405180910390f35b348015610ba957600080fd5b50610bb26124c0565b604051610bbf9190614be4565b60405180910390f35b60115481565b60195481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c475750610c46826124c6565b5b9050919050565b610c566125a8565b73ffffffffffffffffffffffffffffffffffffffff16610c7461186d565b73ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190614a24565b60405180910390fd5b801515610cd5611405565b151514610cf9578015610cef57610cea6125b0565b610cf8565b610cf7612653565b5b5b50565b606060008054610d0b90614edf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3790614edf565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126f5565b610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906149e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e1e8261141c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614ae4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eae6125a8565b73ffffffffffffffffffffffffffffffffffffffff161480610edd5750610edc81610ed76125a8565b61228e565b5b610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390614924565b60405180910390fd5b610f268383612761565b505050565b6000600880549050905090565b610f49610f436125a8565b8261281a565b610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614b24565b60405180910390fd5b610f938383836128f8565b505050565b60145481565b6000610fa983611582565b8210610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614784565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61104b6125a8565b73ffffffffffffffffffffffffffffffffffffffff1661106961186d565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690614a24565b60405180910390fd5b80600e8190555050565b601c5481565b600f80546110dc90614edf565b80601f016020809104026020016040519081016040528092919081815260200182805461110890614edf565b80156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050505081565b6111656125a8565b73ffffffffffffffffffffffffffffffffffffffff1661118361186d565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090614a24565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561121f573d6000803e3d6000fd5b50565b61123d83838360405180602001604052806000815250611da7565b505050565b600061124c610f2b565b821061128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490614b44565b60405180910390fd5b600882815481106112a1576112a06150a6565b5b90600052602060002001549050919050565b601a5481565b6112c16125a8565b73ffffffffffffffffffffffffffffffffffffffff166112df61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614a24565b60405180910390fd5b80600d908051906020019061134b92919061389d565b5050565b6113576125a8565b73ffffffffffffffffffffffffffffffffffffffff1661137561186d565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614a24565b60405180910390fd5b8260198190555081601a8190555080601c81905550505050565b601d6020528060005260406000206000915054906101000a900460ff1681565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614964565b60405180910390fd5b80915050919050565b600e5481565b600d80546114e190614edf565b80601f016020809104026020016040519081016040528092919081815260200182805461150d90614edf565b801561155a5780601f1061152f5761010080835404028352916020019161155a565b820191906000526020600020905b81548152906001019060200180831161153d57829003601f168201915b505050505081565b601e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614944565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116426125a8565b73ffffffffffffffffffffffffffffffffffffffff1661166061186d565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614a24565b60405180910390fd5b6116c06000612b54565b565b6116ca6125a8565b73ffffffffffffffffffffffffffffffffffffffff166116e861186d565b73ffffffffffffffffffffffffffffffffffffffff161461173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590614a24565b60405180910390fd5b601c5481601b5461174f9190614d0a565b1115611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790614aa4565b60405180910390fd5b61179a8282612c1a565b80601b60008282546117ac9190614d0a565b925050819055505050565b6117bf6125a8565b73ffffffffffffffffffffffffffffffffffffffff166117dd61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614a24565b60405180910390fd5b81811161183f57600080fd5b83831161184b57600080fd5b8360138190555082601481905550816015819055508060168190555050505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6060600180546118ac90614edf565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890614edf565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b5050505050905090565b60018214611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990614984565b60405180910390fd5b601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614bc4565b60405180910390fd5b600033604051602001611a12919061461a565b604051602081830303815290604052805190602001209050611a378260105483612d58565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90614884565b60405180910390fd5b82601254611a849190614d91565b3414611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906148c4565b60405180910390fd5b426015541115611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614a84565b60405180910390fd5b4260165411611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590614804565b60405180910390fd5b601a5483601854611b5f9190614d0a565b1115611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614b04565b60405180910390fd5b611baa3384612c1a565b8260186000828254611bbc9190614d0a565b925050819055506001601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611c286125a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614844565b60405180910390fd5b8060056000611ca36125a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d506125a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9591906146ec565b60405180910390a35050565b60135481565b611db8611db26125a8565b8361281a565b611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90614b24565b60405180910390fd5b611e0384848484612e0e565b50505050565b6060611e14826126f5565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614a64565b60405180910390fd5b600080600d8054611e6390614edf565b905011611efa57600f8054611e7790614edf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea390614edf565b8015611ef05780601f10611ec557610100808354040283529160200191611ef0565b820191906000526020600020905b815481529060010190602001808311611ed357829003601f168201915b5050505050611f26565b600d611f0584612e6a565b604051602001611f16929190614661565b6040516020818303038152906040525b905080915050919050565b600c5481565b601b5481565b611f456125a8565b73ffffffffffffffffffffffffffffffffffffffff16611f6361186d565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090614a24565b60405180910390fd5b80600f9080519060200190611fcf92919061389d565b5050565b611fdb6125a8565b73ffffffffffffffffffffffffffffffffffffffff16611ff961186d565b73ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614a24565b60405180910390fd5b8060108190555050565b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614a04565b60405180910390fd5b806011546120f49190614d91565b3414612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90614864565b60405180910390fd5b42601354111561217a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217190614b84565b60405180910390fd5b42601454116121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b5906149c4565b60405180910390fd5b601954816017546121cf9190614d0a565b1115612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614ac4565b60405180910390fd5b61221a3382612c1a565b806017600082825461222c9190614d0a565b925050819055506001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60165481565b60105481565b6123366125a8565b73ffffffffffffffffffffffffffffffffffffffff1661235461186d565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190614a24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561241a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612411906147c4565b60405180910390fd5b61242381612b54565b50565b61242e6125a8565b73ffffffffffffffffffffffffffffffffffffffff1661244c61186d565b73ffffffffffffffffffffffffffffffffffffffff16146124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990614a24565b60405180910390fd5b81601181905550806012819055505050565b60185481565b60125481565b60175481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125a157506125a082612fcb565b5b9050919050565b600033905090565b6125b8611405565b156125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef90614904565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861263c6125a8565b6040516126499190614685565b60405180910390a1565b61265b611405565b61269a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269190614764565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126de6125a8565b6040516126eb9190614685565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127d48361141c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612825826126f5565b612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b906148a4565b60405180910390fd5b600061286f8361141c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128de57508373ffffffffffffffffffffffffffffffffffffffff166128c684610d8e565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ef57506128ee818561228e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129188261141c565b73ffffffffffffffffffffffffffffffffffffffff161461296e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296590614a44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d590614824565b60405180910390fd5b6129e9838383613035565b6129f4600082612761565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a449190614deb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9b9190614d0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b541415612c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5790614ba4565b60405180910390fd5b6002600b81905550600e548111158015612c7a5750600081115b612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb090614b64565b60405180910390fd5b600c5481612cc5610f2b565b612ccf9190614d0a565b1115612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d07906148e4565b60405180910390fd5b60005b81811015612d4b57612d38836001612d29610f2b565b612d339190614d0a565b61308d565b8080612d4390614f42565b915050612d13565b506001600b819055505050565b60008082905060005b8551811015612e00576000868281518110612d7f57612d7e6150a6565b5b60200260200101519050808311612dc0578281604051602001612da3929190614635565b604051602081830303815290604052805190602001209250612dec565b8083604051602001612dd3929190614635565b6040516020818303038152906040528051906020012092505b508080612df890614f42565b915050612d61565b508381149150509392505050565b612e198484846128f8565b612e25848484846130ab565b612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b906147a4565b60405180910390fd5b50505050565b60606000821415612eb2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc6565b600082905060005b60008214612ee4578080612ecd90614f42565b915050600a82612edd9190614d60565b9150612eba565b60008167ffffffffffffffff811115612f0057612eff6150d5565b5b6040519080825280601f01601f191660200182016040528015612f325781602001600182028036833780820191505090505b5090505b60008514612fbf57600182612f4b9190614deb565b9150600a85612f5a9190614fb9565b6030612f669190614d0a565b60f81b818381518110612f7c57612f7b6150a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb89190614d60565b9450612f36565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613040838383613242565b613048611405565b15613088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307f90614744565b60405180910390fd5b505050565b6130a7828260405180602001604052806000815250613356565b5050565b60006130cc8473ffffffffffffffffffffffffffffffffffffffff166133b1565b15613235578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f56125a8565b8786866040518563ffffffff1660e01b815260040161311794939291906146a0565b602060405180830381600087803b15801561313157600080fd5b505af192505050801561316257506040513d601f19601f8201168201806040525081019061315f9190613d86565b60015b6131e5573d8060008114613192576040519150601f19603f3d011682016040523d82523d6000602084013e613197565b606091505b506000815114156131dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d4906147a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061323a565b600190505b949350505050565b61324d8383836133c4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132905761328b816133c9565b6132cf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132ce576132cd8382613412565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133125761330d8161357f565b613351565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133505761334f8282613650565b5b5b505050565b61336083836136cf565b61336d60008484846130ab565b6133ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a3906147a4565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161341f84611582565b6134299190614deb565b905060006007600084815260200190815260200160002054905081811461350e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135939190614deb565b90506000600960008481526020019081526020016000205490506000600883815481106135c3576135c26150a6565b5b9060005260206000200154905080600883815481106135e5576135e46150a6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061363457613633615077565b5b6001900381819060005260206000200160009055905550505050565b600061365b83611582565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613736906149a4565b60405180910390fd5b613748816126f5565b15613788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377f906147e4565b60405180910390fd5b61379460008383613035565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137e49190614d0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546138a990614edf565b90600052602060002090601f0160209004810192826138cb5760008555613912565b82601f106138e457805160ff1916838001178555613912565b82800160010185558215613912579182015b828111156139115782518255916020019190600101906138f6565b5b50905061391f9190613923565b5090565b5b8082111561393c576000816000905550600101613924565b5090565b600061395361394e84614c24565b614bff565b9050808382526020820190508285602086028201111561397657613975615109565b5b60005b858110156139a6578161398c8882613a8c565b845260208401935060208301925050600181019050613979565b5050509392505050565b60006139c36139be84614c50565b614bff565b9050828152602081018484840111156139df576139de61510e565b5b6139ea848285614e9d565b509392505050565b6000613a05613a0084614c81565b614bff565b905082815260208101848484011115613a2157613a2061510e565b5b613a2c848285614e9d565b509392505050565b600081359050613a43816159d4565b92915050565b600082601f830112613a5e57613a5d615104565b5b8135613a6e848260208601613940565b91505092915050565b600081359050613a86816159eb565b92915050565b600081359050613a9b81615a02565b92915050565b600081359050613ab081615a19565b92915050565b600081519050613ac581615a19565b92915050565b600082601f830112613ae057613adf615104565b5b8135613af08482602086016139b0565b91505092915050565b600082601f830112613b0e57613b0d615104565b5b8135613b1e8482602086016139f2565b91505092915050565b600081359050613b3681615a30565b92915050565b600060208284031215613b5257613b51615118565b5b6000613b6084828501613a34565b91505092915050565b60008060408385031215613b8057613b7f615118565b5b6000613b8e85828601613a34565b9250506020613b9f85828601613a34565b9150509250929050565b600080600060608486031215613bc257613bc1615118565b5b6000613bd086828701613a34565b9350506020613be186828701613a34565b9250506040613bf286828701613b27565b9150509250925092565b60008060008060808587031215613c1657613c15615118565b5b6000613c2487828801613a34565b9450506020613c3587828801613a34565b9350506040613c4687828801613b27565b925050606085013567ffffffffffffffff811115613c6757613c66615113565b5b613c7387828801613acb565b91505092959194509250565b60008060408385031215613c9657613c95615118565b5b6000613ca485828601613a34565b9250506020613cb585828601613a77565b9150509250929050565b60008060408385031215613cd657613cd5615118565b5b6000613ce485828601613a34565b9250506020613cf585828601613b27565b9150509250929050565b600060208284031215613d1557613d14615118565b5b6000613d2384828501613a77565b91505092915050565b600060208284031215613d4257613d41615118565b5b6000613d5084828501613a8c565b91505092915050565b600060208284031215613d6f57613d6e615118565b5b6000613d7d84828501613aa1565b91505092915050565b600060208284031215613d9c57613d9b615118565b5b6000613daa84828501613ab6565b91505092915050565b600060208284031215613dc957613dc8615118565b5b600082013567ffffffffffffffff811115613de757613de6615113565b5b613df384828501613af9565b91505092915050565b600060208284031215613e1257613e11615118565b5b6000613e2084828501613b27565b91505092915050565b60008060408385031215613e4057613e3f615118565b5b6000613e4e85828601613b27565b925050602083013567ffffffffffffffff811115613e6f57613e6e615113565b5b613e7b85828601613a49565b9150509250929050565b60008060408385031215613e9c57613e9b615118565b5b6000613eaa85828601613b27565b9250506020613ebb85828601613b27565b9150509250929050565b600080600060608486031215613ede57613edd615118565b5b6000613eec86828701613b27565b9350506020613efd86828701613b27565b9250506040613f0e86828701613b27565b9150509250925092565b60008060008060808587031215613f3257613f31615118565b5b6000613f4087828801613b27565b9450506020613f5187828801613b27565b9350506040613f6287828801613b27565b9250506060613f7387828801613b27565b91505092959194509250565b613f8881614e1f565b82525050565b613f9f613f9a82614e1f565b614f8b565b82525050565b613fae81614e31565b82525050565b613fbd81614e3d565b82525050565b613fd4613fcf82614e3d565b614f9d565b82525050565b6000613fe582614cc7565b613fef8185614cdd565b9350613fff818560208601614eac565b6140088161511d565b840191505092915050565b600061401e82614cd2565b6140288185614cee565b9350614038818560208601614eac565b6140418161511d565b840191505092915050565b600061405782614cd2565b6140618185614cff565b9350614071818560208601614eac565b80840191505092915050565b6000815461408a81614edf565b6140948186614cff565b945060018216600081146140af57600181146140c0576140f3565b60ff198316865281860193506140f3565b6140c985614cb2565b60005b838110156140eb578154818901526001820191506020810190506140cc565b838801955050505b50505092915050565b6000614109602b83614cee565b91506141148261513b565b604082019050919050565b600061412c601483614cee565b91506141378261518a565b602082019050919050565b600061414f602b83614cee565b915061415a826151b3565b604082019050919050565b6000614172603283614cee565b915061417d82615202565b604082019050919050565b6000614195602683614cee565b91506141a082615251565b604082019050919050565b60006141b8601c83614cee565b91506141c3826152a0565b602082019050919050565b60006141db601c83614cee565b91506141e6826152c9565b602082019050919050565b60006141fe602483614cee565b9150614209826152f2565b604082019050919050565b6000614221601983614cee565b915061422c82615341565b602082019050919050565b6000614244601f83614cee565b915061424f8261536a565b602082019050919050565b6000614267601383614cee565b915061427282615393565b602082019050919050565b600061428a602c83614cee565b9150614295826153bc565b604082019050919050565b60006142ad602083614cee565b91506142b88261540b565b602082019050919050565b60006142d0601883614cee565b91506142db82615434565b602082019050919050565b60006142f3601083614cee565b91506142fe8261545d565b602082019050919050565b6000614316603883614cee565b915061432182615486565b604082019050919050565b6000614339602a83614cee565b9150614344826154d5565b604082019050919050565b600061435c602983614cee565b915061436782615524565b604082019050919050565b600061437f600d83614cee565b915061438a82615573565b602082019050919050565b60006143a2602083614cee565b91506143ad8261559c565b602082019050919050565b60006143c5601283614cee565b91506143d0826155c5565b602082019050919050565b60006143e8602c83614cee565b91506143f3826155ee565b604082019050919050565b600061440b601583614cee565b91506144168261563d565b602082019050919050565b600061442e602083614cee565b915061443982615666565b602082019050919050565b6000614451602983614cee565b915061445c8261568f565b604082019050919050565b6000614474602f83614cee565b915061447f826156de565b604082019050919050565b6000614497602683614cee565b91506144a28261572d565b604082019050919050565b60006144ba602583614cee565b91506144c58261577c565b604082019050919050565b60006144dd601c83614cee565b91506144e8826157cb565b602082019050919050565b6000614500602183614cee565b915061450b826157f4565b604082019050919050565b6000614523601e83614cee565b915061452e82615843565b602082019050919050565b6000614546603183614cee565b91506145518261586c565b604082019050919050565b6000614569602c83614cee565b9150614574826158bb565b604082019050919050565b600061458c602583614cee565b91506145978261590a565b604082019050919050565b60006145af601c83614cee565b91506145ba82615959565b602082019050919050565b60006145d2601f83614cee565b91506145dd82615982565b602082019050919050565b60006145f5601783614cee565b9150614600826159ab565b602082019050919050565b61461481614e93565b82525050565b60006146268284613f8e565b60148201915081905092915050565b60006146418285613fc3565b6020820191506146518284613fc3565b6020820191508190509392505050565b600061466d828561407d565b9150614679828461404c565b91508190509392505050565b600060208201905061469a6000830184613f7f565b92915050565b60006080820190506146b56000830187613f7f565b6146c26020830186613f7f565b6146cf604083018561460b565b81810360608301526146e18184613fda565b905095945050505050565b60006020820190506147016000830184613fa5565b92915050565b600060208201905061471c6000830184613fb4565b92915050565b6000602082019050818103600083015261473c8184614013565b905092915050565b6000602082019050818103600083015261475d816140fc565b9050919050565b6000602082019050818103600083015261477d8161411f565b9050919050565b6000602082019050818103600083015261479d81614142565b9050919050565b600060208201905081810360008301526147bd81614165565b9050919050565b600060208201905081810360008301526147dd81614188565b9050919050565b600060208201905081810360008301526147fd816141ab565b9050919050565b6000602082019050818103600083015261481d816141ce565b9050919050565b6000602082019050818103600083015261483d816141f1565b9050919050565b6000602082019050818103600083015261485d81614214565b9050919050565b6000602082019050818103600083015261487d81614237565b9050919050565b6000602082019050818103600083015261489d8161425a565b9050919050565b600060208201905081810360008301526148bd8161427d565b9050919050565b600060208201905081810360008301526148dd816142a0565b9050919050565b600060208201905081810360008301526148fd816142c3565b9050919050565b6000602082019050818103600083015261491d816142e6565b9050919050565b6000602082019050818103600083015261493d81614309565b9050919050565b6000602082019050818103600083015261495d8161432c565b9050919050565b6000602082019050818103600083015261497d8161434f565b9050919050565b6000602082019050818103600083015261499d81614372565b9050919050565b600060208201905081810360008301526149bd81614395565b9050919050565b600060208201905081810360008301526149dd816143b8565b9050919050565b600060208201905081810360008301526149fd816143db565b9050919050565b60006020820190508181036000830152614a1d816143fe565b9050919050565b60006020820190508181036000830152614a3d81614421565b9050919050565b60006020820190508181036000830152614a5d81614444565b9050919050565b60006020820190508181036000830152614a7d81614467565b9050919050565b60006020820190508181036000830152614a9d8161448a565b9050919050565b60006020820190508181036000830152614abd816144ad565b9050919050565b60006020820190508181036000830152614add816144d0565b9050919050565b60006020820190508181036000830152614afd816144f3565b9050919050565b60006020820190508181036000830152614b1d81614516565b9050919050565b60006020820190508181036000830152614b3d81614539565b9050919050565b60006020820190508181036000830152614b5d8161455c565b9050919050565b60006020820190508181036000830152614b7d8161457f565b9050919050565b60006020820190508181036000830152614b9d816145a2565b9050919050565b60006020820190508181036000830152614bbd816145c5565b9050919050565b60006020820190508181036000830152614bdd816145e8565b9050919050565b6000602082019050614bf9600083018461460b565b92915050565b6000614c09614c1a565b9050614c158282614f11565b919050565b6000604051905090565b600067ffffffffffffffff821115614c3f57614c3e6150d5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c6b57614c6a6150d5565b5b614c748261511d565b9050602081019050919050565b600067ffffffffffffffff821115614c9c57614c9b6150d5565b5b614ca58261511d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1582614e93565b9150614d2083614e93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5557614d54614fea565b5b828201905092915050565b6000614d6b82614e93565b9150614d7683614e93565b925082614d8657614d85615019565b5b828204905092915050565b6000614d9c82614e93565b9150614da783614e93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de057614ddf614fea565b5b828202905092915050565b6000614df682614e93565b9150614e0183614e93565b925082821015614e1457614e13614fea565b5b828203905092915050565b6000614e2a82614e73565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614eca578082015181840152602081019050614eaf565b83811115614ed9576000848401525b50505050565b60006002820490506001821680614ef757607f821691505b60208210811415614f0b57614f0a615048565b5b50919050565b614f1a8261511d565b810181811067ffffffffffffffff82111715614f3957614f386150d5565b5b80604052505050565b6000614f4d82614e93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8057614f7f614fea565b5b600182019050919050565b6000614f9682614fa7565b9050919050565b6000819050919050565b6000614fb28261512e565b9050919050565b6000614fc482614e93565b9150614fcf83614e93565b925082614fdf57614fde615019565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57686974656c697374207072652d73616c652068617320656e64656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f56616c7565206d7573742065712070726573616c655072696365312a6e756d00600082015250565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f56616c7565206d7573742065712077686974656c69737450726963652a6e756d600082015250565b7f4e756d206d757374206c6f776572206d6178537570706c790000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206265203100000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5072652d73616c652068617320656e6465640000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416c72656164792070726573616c65206d696e65640000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374207072652d73616c6520686173206e6f7420737461727460008201527f6564207965740000000000000000000000000000000000000000000000000000602082015250565b7f72657365727665644e756d206d757374206c6f776572206d617852657365727660008201527f65644e756d000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c6f776572206d617850726573616c654e756d00000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c6f776572206d617857686974656c6973744e756d0000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e756d206d7573742067726561746572203020616e64206c6f776572206d617860008201527f4261746368000000000000000000000000000000000000000000000000000000602082015250565b7f5072652d73616c6520686173206e6f7420737461727465642079657400000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416c72656164792077686974656c697374206d696e6564000000000000000000600082015250565b6159dd81614e1f565b81146159e857600080fd5b50565b6159f481614e31565b81146159ff57600080fd5b50565b615a0b81614e3d565b8114615a1657600080fd5b50565b615a2281614e47565b8114615a2d57600080fd5b50565b615a3981614e93565b8114615a4457600080fd5b5056fea264697066735822122028098fdd4af4464f4f25fc62d09a21ee7ee95d5c25fbf8f59ea30ca5056458d664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000001240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e5660000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5177694a334350764e39316e6a596a42534457366f6158357556384569347a6a43374a43373454395556674b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e25760003560e01c80636f15ea4c11610190578063d5abeb01116100dc578063ebdfd72211610095578063f7d975771161006f578063f7d9757714610b1e578063f95b5b9914610b47578063fc1a1c3614610b72578063ff3fbf1414610b9d576102e2565b8063ebdfd72214610a9f578063ebf0c71714610aca578063f2fde38b14610af5576102e2565b8063d5abeb011461099e578063d89c6888146109c9578063da1b9e08146109f4578063dab5f34014610a1d578063e6ab143414610a46578063e985e9c514610a62576102e2565b80639292caaf11610149578063a22cb46511610123578063a22cb465146108e4578063a82524b21461090d578063b88d4fde14610938578063c87b56dd14610961576102e2565b80639292caaf1461087257806395d89b411461089d5780639fc1e079146108c8576102e2565b80636f15ea4c1461076457806370a08231146107a1578063715018a6146107de5780637de55fe1146107f5578063806a2e531461081e5780638da5cb5b14610847576102e2565b806331b21e401161024f57806355f804b3116102085780635c975abb116101e25780635c975abb146106a65780636352211e146106d157806367765b871461070e5780636c0360eb14610739576102e2565b806355f804b31461061757806357b96db2146106405780635c94781014610669576102e2565b806331b21e40146105195780633a367a67146105445780633ccfd60b1461056f57806342842e0e146105865780634f6ccce7146105af578063517430c9146105ec576102e2565b8063095ea7b3116102a1578063095ea7b31461040b57806318160ddd1461043457806323b872dd1461045f578063249b7c19146104885780632f745c59146104b3578063300b23d8146104f0576102e2565b80620e7fa8146102e75780621617311461031257806301ffc9a71461033d57806302329a291461037a57806306fdde03146103a3578063081812fc146103ce575b600080fd5b3480156102f357600080fd5b506102fc610bc8565b6040516103099190614be4565b60405180910390f35b34801561031e57600080fd5b50610327610bce565b6040516103349190614be4565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613d59565b610bd4565b60405161037191906146ec565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613cff565b610c4e565b005b3480156103af57600080fd5b506103b8610cfc565b6040516103c59190614722565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613dfc565b610d8e565b6040516104029190614685565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190613cbf565b610e13565b005b34801561044057600080fd5b50610449610f2b565b6040516104569190614be4565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613ba9565b610f38565b005b34801561049457600080fd5b5061049d610f98565b6040516104aa9190614be4565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613cbf565b610f9e565b6040516104e79190614be4565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613dfc565b611043565b005b34801561052557600080fd5b5061052e6110c9565b60405161053b9190614be4565b60405180910390f35b34801561055057600080fd5b506105596110cf565b6040516105669190614722565b60405180910390f35b34801561057b57600080fd5b5061058461115d565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613ba9565b611222565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613dfc565b611242565b6040516105e39190614be4565b60405180910390f35b3480156105f857600080fd5b506106016112b3565b60405161060e9190614be4565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613db3565b6112b9565b005b34801561064c57600080fd5b5061066760048036038101906106629190613ec5565b61134f565b005b34801561067557600080fd5b50610690600480360381019061068b9190613b3c565b6113e5565b60405161069d91906146ec565b60405180910390f35b3480156106b257600080fd5b506106bb611405565b6040516106c891906146ec565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613dfc565b61141c565b6040516107059190614685565b60405180910390f35b34801561071a57600080fd5b506107236114ce565b6040516107309190614be4565b60405180910390f35b34801561074557600080fd5b5061074e6114d4565b60405161075b9190614722565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190613b3c565b611562565b60405161079891906146ec565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613b3c565b611582565b6040516107d59190614be4565b60405180910390f35b3480156107ea57600080fd5b506107f361163a565b005b34801561080157600080fd5b5061081c60048036038101906108179190613cbf565b6116c2565b005b34801561082a57600080fd5b5061084560048036038101906108409190613f18565b6117b7565b005b34801561085357600080fd5b5061085c61186d565b6040516108699190614685565b60405180910390f35b34801561087e57600080fd5b50610887611897565b6040516108949190614be4565b60405180910390f35b3480156108a957600080fd5b506108b261189d565b6040516108bf9190614722565b60405180910390f35b6108e260048036038101906108dd9190613e29565b61192f565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613c7f565b611c20565b005b34801561091957600080fd5b50610922611da1565b60405161092f9190614be4565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a9190613bfc565b611da7565b005b34801561096d57600080fd5b5061098860048036038101906109839190613dfc565b611e09565b6040516109959190614722565b60405180910390f35b3480156109aa57600080fd5b506109b3611f31565b6040516109c09190614be4565b60405180910390f35b3480156109d557600080fd5b506109de611f37565b6040516109eb9190614be4565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a169190613db3565b611f3d565b005b348015610a2957600080fd5b50610a446004803603810190610a3f9190613d2c565b611fd3565b005b610a606004803603810190610a5b9190613dfc565b612059565b005b348015610a6e57600080fd5b50610a896004803603810190610a849190613b69565b61228e565b604051610a9691906146ec565b60405180910390f35b348015610aab57600080fd5b50610ab4612322565b604051610ac19190614be4565b60405180910390f35b348015610ad657600080fd5b50610adf612328565b604051610aec9190614707565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b179190613b3c565b61232e565b005b348015610b2a57600080fd5b50610b456004803603810190610b409190613e85565b612426565b005b348015610b5357600080fd5b50610b5c6124b4565b604051610b699190614be4565b60405180910390f35b348015610b7e57600080fd5b50610b876124ba565b604051610b949190614be4565b60405180910390f35b348015610ba957600080fd5b50610bb26124c0565b604051610bbf9190614be4565b60405180910390f35b60115481565b60195481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c475750610c46826124c6565b5b9050919050565b610c566125a8565b73ffffffffffffffffffffffffffffffffffffffff16610c7461186d565b73ffffffffffffffffffffffffffffffffffffffff1614610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190614a24565b60405180910390fd5b801515610cd5611405565b151514610cf9578015610cef57610cea6125b0565b610cf8565b610cf7612653565b5b5b50565b606060008054610d0b90614edf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3790614edf565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126f5565b610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906149e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e1e8261141c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614ae4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eae6125a8565b73ffffffffffffffffffffffffffffffffffffffff161480610edd5750610edc81610ed76125a8565b61228e565b5b610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390614924565b60405180910390fd5b610f268383612761565b505050565b6000600880549050905090565b610f49610f436125a8565b8261281a565b610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614b24565b60405180910390fd5b610f938383836128f8565b505050565b60145481565b6000610fa983611582565b8210610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190614784565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61104b6125a8565b73ffffffffffffffffffffffffffffffffffffffff1661106961186d565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690614a24565b60405180910390fd5b80600e8190555050565b601c5481565b600f80546110dc90614edf565b80601f016020809104026020016040519081016040528092919081815260200182805461110890614edf565b80156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050505081565b6111656125a8565b73ffffffffffffffffffffffffffffffffffffffff1661118361186d565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090614a24565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561121f573d6000803e3d6000fd5b50565b61123d83838360405180602001604052806000815250611da7565b505050565b600061124c610f2b565b821061128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490614b44565b60405180910390fd5b600882815481106112a1576112a06150a6565b5b90600052602060002001549050919050565b601a5481565b6112c16125a8565b73ffffffffffffffffffffffffffffffffffffffff166112df61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614a24565b60405180910390fd5b80600d908051906020019061134b92919061389d565b5050565b6113576125a8565b73ffffffffffffffffffffffffffffffffffffffff1661137561186d565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614a24565b60405180910390fd5b8260198190555081601a8190555080601c81905550505050565b601d6020528060005260406000206000915054906101000a900460ff1681565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614964565b60405180910390fd5b80915050919050565b600e5481565b600d80546114e190614edf565b80601f016020809104026020016040519081016040528092919081815260200182805461150d90614edf565b801561155a5780601f1061152f5761010080835404028352916020019161155a565b820191906000526020600020905b81548152906001019060200180831161153d57829003601f168201915b505050505081565b601e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614944565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116426125a8565b73ffffffffffffffffffffffffffffffffffffffff1661166061186d565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614a24565b60405180910390fd5b6116c06000612b54565b565b6116ca6125a8565b73ffffffffffffffffffffffffffffffffffffffff166116e861186d565b73ffffffffffffffffffffffffffffffffffffffff161461173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590614a24565b60405180910390fd5b601c5481601b5461174f9190614d0a565b1115611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790614aa4565b60405180910390fd5b61179a8282612c1a565b80601b60008282546117ac9190614d0a565b925050819055505050565b6117bf6125a8565b73ffffffffffffffffffffffffffffffffffffffff166117dd61186d565b73ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614a24565b60405180910390fd5b81811161183f57600080fd5b83831161184b57600080fd5b8360138190555082601481905550816015819055508060168190555050505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6060600180546118ac90614edf565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890614edf565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b5050505050905090565b60018214611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990614984565b60405180910390fd5b601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614bc4565b60405180910390fd5b600033604051602001611a12919061461a565b604051602081830303815290604052805190602001209050611a378260105483612d58565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90614884565b60405180910390fd5b82601254611a849190614d91565b3414611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906148c4565b60405180910390fd5b426015541115611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614a84565b60405180910390fd5b4260165411611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590614804565b60405180910390fd5b601a5483601854611b5f9190614d0a565b1115611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614b04565b60405180910390fd5b611baa3384612c1a565b8260186000828254611bbc9190614d0a565b925050819055506001601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611c286125a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8d90614844565b60405180910390fd5b8060056000611ca36125a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d506125a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9591906146ec565b60405180910390a35050565b60135481565b611db8611db26125a8565b8361281a565b611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90614b24565b60405180910390fd5b611e0384848484612e0e565b50505050565b6060611e14826126f5565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614a64565b60405180910390fd5b600080600d8054611e6390614edf565b905011611efa57600f8054611e7790614edf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea390614edf565b8015611ef05780601f10611ec557610100808354040283529160200191611ef0565b820191906000526020600020905b815481529060010190602001808311611ed357829003601f168201915b5050505050611f26565b600d611f0584612e6a565b604051602001611f16929190614661565b6040516020818303038152906040525b905080915050919050565b600c5481565b601b5481565b611f456125a8565b73ffffffffffffffffffffffffffffffffffffffff16611f6361186d565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090614a24565b60405180910390fd5b80600f9080519060200190611fcf92919061389d565b5050565b611fdb6125a8565b73ffffffffffffffffffffffffffffffffffffffff16611ff961186d565b73ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614a24565b60405180910390fd5b8060108190555050565b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd90614a04565b60405180910390fd5b806011546120f49190614d91565b3414612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90614864565b60405180910390fd5b42601354111561217a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217190614b84565b60405180910390fd5b42601454116121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b5906149c4565b60405180910390fd5b601954816017546121cf9190614d0a565b1115612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614ac4565b60405180910390fd5b61221a3382612c1a565b806017600082825461222c9190614d0a565b925050819055506001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60165481565b60105481565b6123366125a8565b73ffffffffffffffffffffffffffffffffffffffff1661235461186d565b73ffffffffffffffffffffffffffffffffffffffff16146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190614a24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561241a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612411906147c4565b60405180910390fd5b61242381612b54565b50565b61242e6125a8565b73ffffffffffffffffffffffffffffffffffffffff1661244c61186d565b73ffffffffffffffffffffffffffffffffffffffff16146124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990614a24565b60405180910390fd5b81601181905550806012819055505050565b60185481565b60125481565b60175481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125a157506125a082612fcb565b5b9050919050565b600033905090565b6125b8611405565b156125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef90614904565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861263c6125a8565b6040516126499190614685565b60405180910390a1565b61265b611405565b61269a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269190614764565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126de6125a8565b6040516126eb9190614685565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127d48361141c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612825826126f5565b612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b906148a4565b60405180910390fd5b600061286f8361141c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128de57508373ffffffffffffffffffffffffffffffffffffffff166128c684610d8e565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ef57506128ee818561228e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129188261141c565b73ffffffffffffffffffffffffffffffffffffffff161461296e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296590614a44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d590614824565b60405180910390fd5b6129e9838383613035565b6129f4600082612761565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a449190614deb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9b9190614d0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b541415612c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5790614ba4565b60405180910390fd5b6002600b81905550600e548111158015612c7a5750600081115b612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb090614b64565b60405180910390fd5b600c5481612cc5610f2b565b612ccf9190614d0a565b1115612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d07906148e4565b60405180910390fd5b60005b81811015612d4b57612d38836001612d29610f2b565b612d339190614d0a565b61308d565b8080612d4390614f42565b915050612d13565b506001600b819055505050565b60008082905060005b8551811015612e00576000868281518110612d7f57612d7e6150a6565b5b60200260200101519050808311612dc0578281604051602001612da3929190614635565b604051602081830303815290604052805190602001209250612dec565b8083604051602001612dd3929190614635565b6040516020818303038152906040528051906020012092505b508080612df890614f42565b915050612d61565b508381149150509392505050565b612e198484846128f8565b612e25848484846130ab565b612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b906147a4565b60405180910390fd5b50505050565b60606000821415612eb2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc6565b600082905060005b60008214612ee4578080612ecd90614f42565b915050600a82612edd9190614d60565b9150612eba565b60008167ffffffffffffffff811115612f0057612eff6150d5565b5b6040519080825280601f01601f191660200182016040528015612f325781602001600182028036833780820191505090505b5090505b60008514612fbf57600182612f4b9190614deb565b9150600a85612f5a9190614fb9565b6030612f669190614d0a565b60f81b818381518110612f7c57612f7b6150a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb89190614d60565b9450612f36565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613040838383613242565b613048611405565b15613088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307f90614744565b60405180910390fd5b505050565b6130a7828260405180602001604052806000815250613356565b5050565b60006130cc8473ffffffffffffffffffffffffffffffffffffffff166133b1565b15613235578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f56125a8565b8786866040518563ffffffff1660e01b815260040161311794939291906146a0565b602060405180830381600087803b15801561313157600080fd5b505af192505050801561316257506040513d601f19601f8201168201806040525081019061315f9190613d86565b60015b6131e5573d8060008114613192576040519150601f19603f3d011682016040523d82523d6000602084013e613197565b606091505b506000815114156131dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d4906147a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061323a565b600190505b949350505050565b61324d8383836133c4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132905761328b816133c9565b6132cf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132ce576132cd8382613412565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133125761330d8161357f565b613351565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133505761334f8282613650565b5b5b505050565b61336083836136cf565b61336d60008484846130ab565b6133ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a3906147a4565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161341f84611582565b6134299190614deb565b905060006007600084815260200190815260200160002054905081811461350e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135939190614deb565b90506000600960008481526020019081526020016000205490506000600883815481106135c3576135c26150a6565b5b9060005260206000200154905080600883815481106135e5576135e46150a6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061363457613633615077565b5b6001900381819060005260206000200160009055905550505050565b600061365b83611582565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613736906149a4565b60405180910390fd5b613748816126f5565b15613788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377f906147e4565b60405180910390fd5b61379460008383613035565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137e49190614d0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546138a990614edf565b90600052602060002090601f0160209004810192826138cb5760008555613912565b82601f106138e457805160ff1916838001178555613912565b82800160010185558215613912579182015b828111156139115782518255916020019190600101906138f6565b5b50905061391f9190613923565b5090565b5b8082111561393c576000816000905550600101613924565b5090565b600061395361394e84614c24565b614bff565b9050808382526020820190508285602086028201111561397657613975615109565b5b60005b858110156139a6578161398c8882613a8c565b845260208401935060208301925050600181019050613979565b5050509392505050565b60006139c36139be84614c50565b614bff565b9050828152602081018484840111156139df576139de61510e565b5b6139ea848285614e9d565b509392505050565b6000613a05613a0084614c81565b614bff565b905082815260208101848484011115613a2157613a2061510e565b5b613a2c848285614e9d565b509392505050565b600081359050613a43816159d4565b92915050565b600082601f830112613a5e57613a5d615104565b5b8135613a6e848260208601613940565b91505092915050565b600081359050613a86816159eb565b92915050565b600081359050613a9b81615a02565b92915050565b600081359050613ab081615a19565b92915050565b600081519050613ac581615a19565b92915050565b600082601f830112613ae057613adf615104565b5b8135613af08482602086016139b0565b91505092915050565b600082601f830112613b0e57613b0d615104565b5b8135613b1e8482602086016139f2565b91505092915050565b600081359050613b3681615a30565b92915050565b600060208284031215613b5257613b51615118565b5b6000613b6084828501613a34565b91505092915050565b60008060408385031215613b8057613b7f615118565b5b6000613b8e85828601613a34565b9250506020613b9f85828601613a34565b9150509250929050565b600080600060608486031215613bc257613bc1615118565b5b6000613bd086828701613a34565b9350506020613be186828701613a34565b9250506040613bf286828701613b27565b9150509250925092565b60008060008060808587031215613c1657613c15615118565b5b6000613c2487828801613a34565b9450506020613c3587828801613a34565b9350506040613c4687828801613b27565b925050606085013567ffffffffffffffff811115613c6757613c66615113565b5b613c7387828801613acb565b91505092959194509250565b60008060408385031215613c9657613c95615118565b5b6000613ca485828601613a34565b9250506020613cb585828601613a77565b9150509250929050565b60008060408385031215613cd657613cd5615118565b5b6000613ce485828601613a34565b9250506020613cf585828601613b27565b9150509250929050565b600060208284031215613d1557613d14615118565b5b6000613d2384828501613a77565b91505092915050565b600060208284031215613d4257613d41615118565b5b6000613d5084828501613a8c565b91505092915050565b600060208284031215613d6f57613d6e615118565b5b6000613d7d84828501613aa1565b91505092915050565b600060208284031215613d9c57613d9b615118565b5b6000613daa84828501613ab6565b91505092915050565b600060208284031215613dc957613dc8615118565b5b600082013567ffffffffffffffff811115613de757613de6615113565b5b613df384828501613af9565b91505092915050565b600060208284031215613e1257613e11615118565b5b6000613e2084828501613b27565b91505092915050565b60008060408385031215613e4057613e3f615118565b5b6000613e4e85828601613b27565b925050602083013567ffffffffffffffff811115613e6f57613e6e615113565b5b613e7b85828601613a49565b9150509250929050565b60008060408385031215613e9c57613e9b615118565b5b6000613eaa85828601613b27565b9250506020613ebb85828601613b27565b9150509250929050565b600080600060608486031215613ede57613edd615118565b5b6000613eec86828701613b27565b9350506020613efd86828701613b27565b9250506040613f0e86828701613b27565b9150509250925092565b60008060008060808587031215613f3257613f31615118565b5b6000613f4087828801613b27565b9450506020613f5187828801613b27565b9350506040613f6287828801613b27565b9250506060613f7387828801613b27565b91505092959194509250565b613f8881614e1f565b82525050565b613f9f613f9a82614e1f565b614f8b565b82525050565b613fae81614e31565b82525050565b613fbd81614e3d565b82525050565b613fd4613fcf82614e3d565b614f9d565b82525050565b6000613fe582614cc7565b613fef8185614cdd565b9350613fff818560208601614eac565b6140088161511d565b840191505092915050565b600061401e82614cd2565b6140288185614cee565b9350614038818560208601614eac565b6140418161511d565b840191505092915050565b600061405782614cd2565b6140618185614cff565b9350614071818560208601614eac565b80840191505092915050565b6000815461408a81614edf565b6140948186614cff565b945060018216600081146140af57600181146140c0576140f3565b60ff198316865281860193506140f3565b6140c985614cb2565b60005b838110156140eb578154818901526001820191506020810190506140cc565b838801955050505b50505092915050565b6000614109602b83614cee565b91506141148261513b565b604082019050919050565b600061412c601483614cee565b91506141378261518a565b602082019050919050565b600061414f602b83614cee565b915061415a826151b3565b604082019050919050565b6000614172603283614cee565b915061417d82615202565b604082019050919050565b6000614195602683614cee565b91506141a082615251565b604082019050919050565b60006141b8601c83614cee565b91506141c3826152a0565b602082019050919050565b60006141db601c83614cee565b91506141e6826152c9565b602082019050919050565b60006141fe602483614cee565b9150614209826152f2565b604082019050919050565b6000614221601983614cee565b915061422c82615341565b602082019050919050565b6000614244601f83614cee565b915061424f8261536a565b602082019050919050565b6000614267601383614cee565b915061427282615393565b602082019050919050565b600061428a602c83614cee565b9150614295826153bc565b604082019050919050565b60006142ad602083614cee565b91506142b88261540b565b602082019050919050565b60006142d0601883614cee565b91506142db82615434565b602082019050919050565b60006142f3601083614cee565b91506142fe8261545d565b602082019050919050565b6000614316603883614cee565b915061432182615486565b604082019050919050565b6000614339602a83614cee565b9150614344826154d5565b604082019050919050565b600061435c602983614cee565b915061436782615524565b604082019050919050565b600061437f600d83614cee565b915061438a82615573565b602082019050919050565b60006143a2602083614cee565b91506143ad8261559c565b602082019050919050565b60006143c5601283614cee565b91506143d0826155c5565b602082019050919050565b60006143e8602c83614cee565b91506143f3826155ee565b604082019050919050565b600061440b601583614cee565b91506144168261563d565b602082019050919050565b600061442e602083614cee565b915061443982615666565b602082019050919050565b6000614451602983614cee565b915061445c8261568f565b604082019050919050565b6000614474602f83614cee565b915061447f826156de565b604082019050919050565b6000614497602683614cee565b91506144a28261572d565b604082019050919050565b60006144ba602583614cee565b91506144c58261577c565b604082019050919050565b60006144dd601c83614cee565b91506144e8826157cb565b602082019050919050565b6000614500602183614cee565b915061450b826157f4565b604082019050919050565b6000614523601e83614cee565b915061452e82615843565b602082019050919050565b6000614546603183614cee565b91506145518261586c565b604082019050919050565b6000614569602c83614cee565b9150614574826158bb565b604082019050919050565b600061458c602583614cee565b91506145978261590a565b604082019050919050565b60006145af601c83614cee565b91506145ba82615959565b602082019050919050565b60006145d2601f83614cee565b91506145dd82615982565b602082019050919050565b60006145f5601783614cee565b9150614600826159ab565b602082019050919050565b61461481614e93565b82525050565b60006146268284613f8e565b60148201915081905092915050565b60006146418285613fc3565b6020820191506146518284613fc3565b6020820191508190509392505050565b600061466d828561407d565b9150614679828461404c565b91508190509392505050565b600060208201905061469a6000830184613f7f565b92915050565b60006080820190506146b56000830187613f7f565b6146c26020830186613f7f565b6146cf604083018561460b565b81810360608301526146e18184613fda565b905095945050505050565b60006020820190506147016000830184613fa5565b92915050565b600060208201905061471c6000830184613fb4565b92915050565b6000602082019050818103600083015261473c8184614013565b905092915050565b6000602082019050818103600083015261475d816140fc565b9050919050565b6000602082019050818103600083015261477d8161411f565b9050919050565b6000602082019050818103600083015261479d81614142565b9050919050565b600060208201905081810360008301526147bd81614165565b9050919050565b600060208201905081810360008301526147dd81614188565b9050919050565b600060208201905081810360008301526147fd816141ab565b9050919050565b6000602082019050818103600083015261481d816141ce565b9050919050565b6000602082019050818103600083015261483d816141f1565b9050919050565b6000602082019050818103600083015261485d81614214565b9050919050565b6000602082019050818103600083015261487d81614237565b9050919050565b6000602082019050818103600083015261489d8161425a565b9050919050565b600060208201905081810360008301526148bd8161427d565b9050919050565b600060208201905081810360008301526148dd816142a0565b9050919050565b600060208201905081810360008301526148fd816142c3565b9050919050565b6000602082019050818103600083015261491d816142e6565b9050919050565b6000602082019050818103600083015261493d81614309565b9050919050565b6000602082019050818103600083015261495d8161432c565b9050919050565b6000602082019050818103600083015261497d8161434f565b9050919050565b6000602082019050818103600083015261499d81614372565b9050919050565b600060208201905081810360008301526149bd81614395565b9050919050565b600060208201905081810360008301526149dd816143b8565b9050919050565b600060208201905081810360008301526149fd816143db565b9050919050565b60006020820190508181036000830152614a1d816143fe565b9050919050565b60006020820190508181036000830152614a3d81614421565b9050919050565b60006020820190508181036000830152614a5d81614444565b9050919050565b60006020820190508181036000830152614a7d81614467565b9050919050565b60006020820190508181036000830152614a9d8161448a565b9050919050565b60006020820190508181036000830152614abd816144ad565b9050919050565b60006020820190508181036000830152614add816144d0565b9050919050565b60006020820190508181036000830152614afd816144f3565b9050919050565b60006020820190508181036000830152614b1d81614516565b9050919050565b60006020820190508181036000830152614b3d81614539565b9050919050565b60006020820190508181036000830152614b5d8161455c565b9050919050565b60006020820190508181036000830152614b7d8161457f565b9050919050565b60006020820190508181036000830152614b9d816145a2565b9050919050565b60006020820190508181036000830152614bbd816145c5565b9050919050565b60006020820190508181036000830152614bdd816145e8565b9050919050565b6000602082019050614bf9600083018461460b565b92915050565b6000614c09614c1a565b9050614c158282614f11565b919050565b6000604051905090565b600067ffffffffffffffff821115614c3f57614c3e6150d5565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c6b57614c6a6150d5565b5b614c748261511d565b9050602081019050919050565b600067ffffffffffffffff821115614c9c57614c9b6150d5565b5b614ca58261511d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1582614e93565b9150614d2083614e93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5557614d54614fea565b5b828201905092915050565b6000614d6b82614e93565b9150614d7683614e93565b925082614d8657614d85615019565b5b828204905092915050565b6000614d9c82614e93565b9150614da783614e93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de057614ddf614fea565b5b828202905092915050565b6000614df682614e93565b9150614e0183614e93565b925082821015614e1457614e13614fea565b5b828203905092915050565b6000614e2a82614e73565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614eca578082015181840152602081019050614eaf565b83811115614ed9576000848401525b50505050565b60006002820490506001821680614ef757607f821691505b60208210811415614f0b57614f0a615048565b5b50919050565b614f1a8261511d565b810181811067ffffffffffffffff82111715614f3957614f386150d5565b5b80604052505050565b6000614f4d82614e93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8057614f7f614fea565b5b600182019050919050565b6000614f9682614fa7565b9050919050565b6000819050919050565b6000614fb28261512e565b9050919050565b6000614fc482614e93565b9150614fcf83614e93565b925082614fdf57614fde615019565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57686974656c697374207072652d73616c652068617320656e64656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f56616c7565206d7573742065712070726573616c655072696365312a6e756d00600082015250565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f56616c7565206d7573742065712077686974656c69737450726963652a6e756d600082015250565b7f4e756d206d757374206c6f776572206d6178537570706c790000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206265203100000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5072652d73616c652068617320656e6465640000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416c72656164792070726573616c65206d696e65640000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374207072652d73616c6520686173206e6f7420737461727460008201527f6564207965740000000000000000000000000000000000000000000000000000602082015250565b7f72657365727665644e756d206d757374206c6f776572206d617852657365727660008201527f65644e756d000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c6f776572206d617850726573616c654e756d00000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c6f776572206d617857686974656c6973744e756d0000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e756d206d7573742067726561746572203020616e64206c6f776572206d617860008201527f4261746368000000000000000000000000000000000000000000000000000000602082015250565b7f5072652d73616c6520686173206e6f7420737461727465642079657400000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416c72656164792077686974656c697374206d696e6564000000000000000000600082015250565b6159dd81614e1f565b81146159e857600080fd5b50565b6159f481614e31565b81146159ff57600080fd5b50565b615a0b81614e3d565b8114615a1657600080fd5b50565b615a2281614e47565b8114615a2d57600080fd5b50565b615a3981614e93565b8114615a4457600080fd5b5056fea264697066735822122028098fdd4af4464f4f25fc62d09a21ee7ee95d5c25fbf8f59ea30ca5056458d664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000001240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e5660000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5177694a334350764e39316e6a596a42534457366f6158357556384569347a6a43374a43373454395556674b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmQwiJ3CPvN91njYjBSDW6oaX5uV8Ei4zjC7JC74T9UVgK/
Arg [1] : _defaultURI (string):
Arg [2] : _isPause (bool): False
Arg [3] : _root (bytes32): 0x01240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e566

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 01240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e566
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d5177694a334350764e39316e6a596a42534457366f6158
Arg [6] : 357556384569347a6a43374a43373454395556674b2f00000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


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.