ETH Price: $3,106.62 (+0.28%)
Gas: 2 Gwei

Token

MiniMoo (Moo)
 

Overview

Max Total Supply

9,850 Moo

Holders

590

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Moo
0xaf03aaf662b1e0c07e90894453b3d24a34393ee8
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:
MiniMoo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

interface IERC20 {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function transfer(address recipient, uint256 amount) external returns (bool);

}



contract MiniMoo is ERC721A, Ownable,ReentrancyGuard {
    using Strings for uint256;

    //Basic Configs
    uint256 public maxSupply = 10000;
    uint256 public _price = 0.02 ether;
    

    //Reveal/NonReveal
    string public _baseTokenURI;
    string public _baseTokenEXT;
    string public notRevealedUri = "https://ipfs.io/ipfs/QmTjDe8WhY1rAjHKbng9sY9xTCmoA5GPahX7XJNqWSnvPJ";
    bool public revealed = false;
    bool public _paused = true;
    uint256 public _reserved = 150;
    uint256 public airDropCount =0;


    //PRESALE MODES
    uint256 public whitelistMaxMint = 10;
    bytes32 public merkleRoot = 0x4c640570a0581d3bed72fb50ac1287c67251a7016ae513b8361e3a061cc1f5b6;
    bytes32 public freeeMintMerkle = 0x4c640570a0581d3bed72fb50ac1287c67251a7016ae513b8361e3a061cc1f5b6;
    bool public whitelistSale = true;
    uint256 public whitelistPrice = 0.04 ether;

    //APECOIN Config
    uint256 public ercCost = 1 ether;
    uint256 public ercWhitelistCost = 0.5 ether;
    address public tokenAddress = 0x4d224452801ACEd8B2F0aebE155379bb5D594381;


    struct MintTracker{
        uint256 _whitelist;
        uint256 _freemint;
    }
    mapping(address => MintTracker) public _totalMinted;

    constructor() ERC721A("MiniMoo", "Moo") {}

    function mint(uint256 _mintAmount,uint256 paymentMode) public payable nonReentrant {
        require(tx.origin == msg.sender,"Contract Calls Not Allowed");
        require(!_paused,"Contract Minting Paused");
        require(!whitelistSale, ": Cannot Mint During Whitelist Sale");
        require(_mintAmount > 0, ": Amount should be greater than 0.");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply - _reserved , ": No more NFTs to mint, decrease the quantity or check out OpenSea.");
        if(paymentMode == 0){
            require(msg.value >= _price * _mintAmount,"Insufficient FUnd");
        }
        else {
            IERC20 erc20Coin  = IERC20(tokenAddress);
            require(erc20Coin.balanceOf(msg.sender) >= _mintAmount * ercCost ,"You do not have enough ApeCoin.");
            require(erc20Coin.allowance(msg.sender,address(this)) >= _mintAmount * ercCost,"Please Approve Contract to Spend Some of Your Ape Coins");
            erc20Coin.transferFrom(msg.sender, address(this), _mintAmount * ercCost);
        }
        _safeMint(msg.sender, _mintAmount);
    }
    
    function whiteListMint( uint256 _mintAmount,bytes32[] calldata _merkleProof,uint256 paymentMode) public payable nonReentrant {
        require(tx.origin == msg.sender,"Contract Calls Not Allowed");
        require(!_paused,"Contract Minting Paused");
        require(whitelistSale, ": Whitelist is paused.");
        require(_mintAmount > 0, ": Amount should be greater than 0.");
        require(_mintAmount+_totalMinted[msg.sender]._whitelist <= whitelistMaxMint ,"You cant mint more,Decrease MintAmount or Wait For Public Mint" );
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "You are Not whitelisted");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply -_reserved , ": No more NFTs to mint, decrease the quantity or check out OpenSea.");
        if(paymentMode == 0){
            require(msg.value >= whitelistPrice * _mintAmount,"Insufficient FUnd");
        }
        else {
            IERC20 erc20Coin  = IERC20(tokenAddress);
            require(erc20Coin.balanceOf(msg.sender) >= _mintAmount * ercWhitelistCost ,"You do not have enough ApeCoin.");
            require(erc20Coin.allowance(msg.sender,address(this)) >= _mintAmount * ercWhitelistCost,"Please Approve Contract to Spend Some of Your Ape Coins");
            erc20Coin.transferFrom(msg.sender, address(this), _mintAmount * ercWhitelistCost);
        }
        _safeMint(msg.sender, _mintAmount);
        _totalMinted[msg.sender]._whitelist+=_mintAmount;
    }


    function freeMint(bytes32[] calldata _merkleProof) public payable nonReentrant{
        require(tx.origin == msg.sender,"Contract Calls Not Allowed");
        require(!_paused,"Contract Minting Paused");
        require(whitelistSale, ": Whitelist is paused.");
        require(_totalMinted[msg.sender]._freemint < 1 ,"You cant mint more,Decrease MintAmount or Wait For Public Mint" );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, freeeMintMerkle, leaf), "You are Not whitelisted");
        uint256 supply = totalSupply();
        require(supply + 1 <= maxSupply -_reserved , ": No more NFTs to mint, decrease the quantity or check out OpenSea.");
        _safeMint(msg.sender, 1);
        _totalMinted[msg.sender]._freemint+=1;
    }

    function _airdrop(uint256 amount,address _address) public onlyOwner {
        require(airDropCount+amount <= _reserved , "Airdrop Limit Drained!");
        _safeMint(_address, amount);
        airDropCount+=amount;
    }


    function startPublicSale() public onlyOwner{
        _paused = false;
        whitelistSale = false;
    }



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


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        } else {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),_baseTokenEXT)) : "";
        }
    }

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

    function toogleWhiteList() public onlyOwner{
        whitelistSale = !whitelistSale;

    }
    function toogleReveal() public onlyOwner{
        revealed = !revealed;
    }

    function tooglePause() public onlyOwner{
        _paused = !_paused;
    }

    function changeURLParams(string memory _nURL, string memory _nBaseExt) public onlyOwner {
        _baseTokenURI = _nURL;
        _baseTokenEXT = _nBaseExt;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        _price = newPrice;
    }

    function setWLPrice(uint256 newPrice) public onlyOwner {
        whitelistPrice = newPrice;
    }

    function setMerkleRoot(bytes32 merkleHash) public onlyOwner {
        merkleRoot = merkleHash;
    }

    function setFreeMintMerkle(bytes32 merkleHash) public onlyOwner {
        freeeMintMerkle = merkleHash;
    }

    function ercBalance() public view returns(uint256) {
        return IERC20(tokenAddress).balanceOf(address(this));
    }
    

    function withdrawMoney(address _sendto) external onlyOwner nonReentrant {
        (bool success, ) =_sendto.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function setErcPaymentConfig(uint256 _publicCost , uint256 _whitelistCost,address erc20Address) external onlyOwner {
        ercCost = _publicCost;
        ercWhitelistCost = _whitelistCost;
        tokenAddress = erc20Address;
    }

    function withdrawErc(address _sendto) external onlyOwner nonReentrant {
        uint256 balance = ercBalance();
        require( balance > 0,"Insufficient Fund");
        IERC20(tokenAddress).transfer(_sendto,balance);
    }
    
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"_airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_baseTokenEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMinted","outputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_freemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airDropCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_nURL","type":"string"},{"internalType":"string","name":"_nBaseExt","type":"string"}],"name":"changeURLParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ercBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ercCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ercWhitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeeMintMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"paymentMode","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicCost","type":"uint256"},{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"address","name":"erc20Address","type":"address"}],"name":"setErcPaymentConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleHash","type":"bytes32"}],"name":"setFreeMintMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleHash","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tooglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toogleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toogleWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"paymentMode","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMaxMint","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":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sendto","type":"address"}],"name":"withdrawErc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sendto","type":"address"}],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600a5566470de4df820000600b55604051806080016040528060438152602001620062f660439139600e90805190602001906200004692919062000332565b506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555060966010556000601155600a6012557f4c640570a0581d3bed72fb50ac1287c67251a7016ae513b8361e3a061cc1f5b660001b6013557f4c640570a0581d3bed72fb50ac1287c67251a7016ae513b8361e3a061cc1f5b660001b6014556001601560006101000a81548160ff021916908315150217905550668e1bc9bf040000601655670de0b6b3a76400006017556706f05b59d3b20000601855734d224452801aced8b2f0aebe155379bb5d594381601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017a57600080fd5b506040518060400160405280600781526020017f4d696e694d6f6f000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d6f6f00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001ff92919062000332565b5080600390805190602001906200021892919062000332565b50620002296200025f60201b60201c565b600081905550505062000251620002456200026460201b60201c565b6200026c60201b60201c565b600160098190555062000447565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200034090620003e2565b90600052602060002090601f016020900481019282620003645760008555620003b0565b82601f106200037f57805160ff1916838001178555620003b0565b82800160010185558215620003b0579182015b82811115620003af57825182559160200191906001019062000392565b5b509050620003bf9190620003c3565b5090565b5b80821115620003de576000816000905550600101620003c4565b5090565b60006002820490506001821680620003fb57607f821691505b6020821081141562000412576200041162000418565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615e9f80620004576000396000f3fe60806040526004361061031a5760003560e01c806385fee168116101ab578063bbc27564116100f7578063e7d166eb11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b2e578063f2fde38b14610b57578063f6a5b8e614610b80578063fc1a1c3614610ba95761031a565b8063e7d166eb14610ab1578063e985e9c514610ac8578063f064870314610b055761031a565b8063d56ad458116100d1578063d56ad45814610a19578063d5abeb0114610a44578063d621a77614610a6f578063d846d69c14610a865761031a565b8063bbc2756414610973578063c87b56dd146109b1578063cfc86f7b146109ee5761031a565b80639d6c8b9c11610164578063a5b865111161013e578063a5b86511146108e1578063a8edbdc51461090a578063b459976d14610921578063b88d4fde1461094a5761031a565b80639d6c8b9c146108625780639d76ea581461088d578063a22cb465146108b85761031a565b806385fee1681461077357806388d15d501461079e5780638da5cb5b146107ba57806391b7f5ed146107e557806395d89b411461080e5780639cb8be62146108395761031a565b80632f9710291161026a5780636aaa571d11610223578063722e141d116101fd578063722e141d146106cb578063748477ef146106f6578063783fd922146107215780637cb647591461074a5761031a565b80636aaa571d1461064c57806370a0823114610677578063715018a6146106b45761031a565b80632f9710291461054b57806331ffd6f11461057457806342842e0e1461059f57806351830227146105c85780636352211e146105f35780636a455a97146106305761031a565b8063159c24ca116102d75780631b2ef1ca116102b15780631b2ef1ca146104b0578063235b6ea1146104cc57806323b872dd146104f75780632eb4a7ab146105205761031a565b8063159c24ca1461042f57806316c61ccc1461045a57806318160ddd146104855761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063081c8c44146103c4578063095ea7b3146103ef5780630c1c972a14610418575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190614a03565b610bd4565b604051610353919061521e565b60405180910390f35b34801561036857600080fd5b50610371610cb6565b60405161037e9190615254565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190614b1e565b610d48565b6040516103bb919061512e565b60405180910390f35b3480156103d057600080fd5b506103d9610dc4565b6040516103e69190615254565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061491c565b610e52565b005b34801561042457600080fd5b5061042d610f57565b005b34801561043b57600080fd5b5061044461100b565b6040516104519190615239565b60405180910390f35b34801561046657600080fd5b5061046f611011565b60405161047c919061521e565b60405180910390f35b34801561049157600080fd5b5061049a611024565b6040516104a791906154b6565b60405180910390f35b6104ca60048036038101906104c59190614c2c565b61103b565b005b3480156104d857600080fd5b506104e1611530565b6040516104ee91906154b6565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190614806565b611536565b005b34801561052c57600080fd5b50610535611546565b6040516105429190615239565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190614799565b61154c565b005b34801561058057600080fd5b506105896116ce565b604051610596919061521e565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190614806565b6116e1565b005b3480156105d457600080fd5b506105dd611701565b6040516105ea919061521e565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190614b1e565b611714565b604051610627919061512e565b60405180910390f35b61064a60048036038101906106459190614bb8565b61172a565b005b34801561065857600080fd5b50610661611dc4565b60405161066e91906154b6565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190614799565b611dca565b6040516106ab91906154b6565b60405180910390f35b3480156106c057600080fd5b506106c9611e9a565b005b3480156106d757600080fd5b506106e0611f22565b6040516106ed91906154b6565b60405180910390f35b34801561070257600080fd5b5061070b611f28565b60405161071891906154b6565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190614aa6565b611f2e565b005b34801561075657600080fd5b50610771600480360381019061076c91906149d6565b611fdc565b005b34801561077f57600080fd5b50610788612062565b6040516107959190615254565b60405180910390f35b6107b860048036038101906107b3919061495c565b6120f0565b005b3480156107c657600080fd5b506107cf612465565b6040516107dc919061512e565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190614b1e565b61248f565b005b34801561081a57600080fd5b50610823612515565b6040516108309190615254565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190614c6c565b6125a7565b005b34801561086e57600080fd5b50610877612677565b60405161088491906154b6565b60405180910390f35b34801561089957600080fd5b506108a2612729565b6040516108af919061512e565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da91906148dc565b61274f565b005b3480156108ed57600080fd5b5061090860048036038101906109039190614b78565b6128c7565b005b34801561091657600080fd5b5061091f6129bc565b005b34801561092d57600080fd5b5061094860048036038101906109439190614799565b612a64565b005b34801561095657600080fd5b50610971600480360381019061096c9190614859565b612c39565b005b34801561097f57600080fd5b5061099a60048036038101906109959190614799565b612cb1565b6040516109a89291906154d1565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190614b1e565b612cd5565b6040516109e59190615254565b60405180910390f35b3480156109fa57600080fd5b50610a03612e2e565b604051610a109190615254565b60405180910390f35b348015610a2557600080fd5b50610a2e612ebc565b604051610a3b91906154b6565b60405180910390f35b348015610a5057600080fd5b50610a59612ec2565b604051610a6691906154b6565b60405180910390f35b348015610a7b57600080fd5b50610a84612ec8565b005b348015610a9257600080fd5b50610a9b612f70565b604051610aa891906154b6565b60405180910390f35b348015610abd57600080fd5b50610ac6612f76565b005b348015610ad457600080fd5b50610aef6004803603810190610aea91906147c6565b61301e565b604051610afc919061521e565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b2791906149d6565b6130b2565b005b348015610b3a57600080fd5b50610b556004803603810190610b509190614a5d565b613138565b005b348015610b6357600080fd5b50610b7e6004803603810190610b799190614799565b6131ce565b005b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614b1e565b6132c6565b005b348015610bb557600080fd5b50610bbe61334c565b604051610bcb91906154b6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caf5750610cae82613352565b5b9050919050565b606060028054610cc5906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf1906157b9565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d53826133bc565b610d89576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610dd1906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfd906157b9565b8015610e4a5780601f10610e1f57610100808354040283529160200191610e4a565b820191906000526020600020905b815481529060010190602001808311610e2d57829003601f168201915b505050505081565b6000610e5d82611714565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee461340a565b73ffffffffffffffffffffffffffffffffffffffff1614610f4757610f1081610f0b61340a565b61301e565b610f46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610f52838383613412565b505050565b610f5f61340a565b73ffffffffffffffffffffffffffffffffffffffff16610f7d612465565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90615336565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506000601560006101000a81548160ff021916908315150217905550565b60145481565b600f60019054906101000a900460ff1681565b600061102e6134c4565b6001546000540303905090565b60026009541415611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890615456565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90615496565b60405180910390fd5b600f60019054906101000a900460ff1615611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906153b6565b60405180910390fd5b601560009054906101000a900460ff1615611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90615356565b60405180910390fd5b600082116111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190615316565b60405180910390fd5b60006111e4611024565b9050601054600a546111f691906156c5565b838261120291906155e4565b1115611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906152f6565b60405180910390fd5b60008214156112a15782600b5461125a919061566b565b34101561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390615416565b60405180910390fd5b611519565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601754846112d6919061566b565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161130f919061512e565b60206040518083038186803b15801561132757600080fd5b505afa15801561133b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135f9190614b4b565b10156113a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611397906153d6565b60405180910390fd5b601754846113ae919061566b565b8173ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016113e9929190615149565b60206040518083038186803b15801561140157600080fd5b505afa158015611415573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114399190614b4b565b101561147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190615376565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330601754886114a6919061566b565b6040518463ffffffff1660e01b81526004016114c493929190615172565b602060405180830381600087803b1580156114de57600080fd5b505af11580156114f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151691906149a9565b50505b61152333846134c9565b5060016009819055505050565b600b5481565b6115418383836134e7565b505050565b60135481565b61155461340a565b73ffffffffffffffffffffffffffffffffffffffff16611572612465565b73ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90615336565b60405180910390fd5b6002600954141561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590615456565b60405180910390fd5b600260098190555060008173ffffffffffffffffffffffffffffffffffffffff164760405161163c90615119565b60006040518083038185875af1925050503d8060008114611679576040519150601f19603f3d011682016040523d82523d6000602084013e61167e565b606091505b50509050806116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906153f6565b60405180910390fd5b50600160098190555050565b601560009054906101000a900460ff1681565b6116fc83838360405180602001604052806000815250612c39565b505050565b600f60009054906101000a900460ff1681565b600061171f8261399d565b600001519050919050565b60026009541415611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790615456565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90615496565b60405180910390fd5b600f60019054906101000a900460ff1615611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d906153b6565b60405180910390fd5b601560009054906101000a900460ff16611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90615436565b60405180910390fd5b600084116118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90615316565b60405180910390fd5b601254601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001548561191991906155e4565b111561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190615276565b60405180910390fd5b60003360405160200161196d91906150cd565b6040516020818303038152906040528051906020012090506119d3848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483613c28565b611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a09906152d6565b60405180910390fd5b6000611a1c611024565b9050601054600a54611a2e91906156c5565b8682611a3a91906155e4565b1115611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906152f6565b60405180910390fd5b6000831415611ad95785601654611a92919061566b565b341015611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90615416565b60405180910390fd5b611d51565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060185487611b0e919061566b565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611b47919061512e565b60206040518083038186803b158015611b5f57600080fd5b505afa158015611b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b979190614b4b565b1015611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906153d6565b60405180910390fd5b60185487611be6919061566b565b8173ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611c21929190615149565b60206040518083038186803b158015611c3957600080fd5b505afa158015611c4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c719190614b4b565b1015611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990615376565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd33306018548b611cde919061566b565b6040518463ffffffff1660e01b8152600401611cfc93929190615172565b602060405180830381600087803b158015611d1657600080fd5b505af1158015611d2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4e91906149a9565b50505b611d5b33876134c9565b85601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000828254611dad91906155e4565b925050819055505050600160098190555050505050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ea261340a565b73ffffffffffffffffffffffffffffffffffffffff16611ec0612465565b73ffffffffffffffffffffffffffffffffffffffff1614611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90615336565b60405180910390fd5b611f206000613c3f565b565b60125481565b60185481565b611f3661340a565b73ffffffffffffffffffffffffffffffffffffffff16611f54612465565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190615336565b60405180910390fd5b81600c9080519060200190611fc09291906144d5565b5080600d9080519060200190611fd79291906144d5565b505050565b611fe461340a565b73ffffffffffffffffffffffffffffffffffffffff16612002612465565b73ffffffffffffffffffffffffffffffffffffffff1614612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90615336565b60405180910390fd5b8060138190555050565b600d805461206f906157b9565b80601f016020809104026020016040519081016040528092919081815260200182805461209b906157b9565b80156120e85780601f106120bd576101008083540402835291602001916120e8565b820191906000526020600020905b8154815290600101906020018083116120cb57829003601f168201915b505050505081565b60026009541415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90615456565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390615496565b60405180910390fd5b600f60019054906101000a900460ff16156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f3906153b6565b60405180910390fd5b601560009054906101000a900460ff1661224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290615436565b60405180910390fd5b6001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154106122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790615276565b60405180910390fd5b6000336040516020016122e391906150cd565b604051602081830303815290604052805190602001209050612349838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483613c28565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906152d6565b60405180910390fd5b6000612392611024565b9050601054600a546123a491906156c5565b6001826123b191906155e4565b11156123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e9906152f6565b60405180910390fd5b6123fd3360016134c9565b6001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101600082825461245091906155e4565b92505081905550505060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61249761340a565b73ffffffffffffffffffffffffffffffffffffffff166124b5612465565b73ffffffffffffffffffffffffffffffffffffffff161461250b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250290615336565b60405180910390fd5b80600b8190555050565b606060038054612524906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612550906157b9565b801561259d5780601f106125725761010080835404028352916020019161259d565b820191906000526020600020905b81548152906001019060200180831161258057829003601f168201915b5050505050905090565b6125af61340a565b73ffffffffffffffffffffffffffffffffffffffff166125cd612465565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a90615336565b60405180910390fd5b826017819055508160188190555080601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126d4919061512e565b60206040518083038186803b1580156126ec57600080fd5b505afa158015612700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127249190614b4b565b905090565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61275761340a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006127c961340a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661287661340a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128bb919061521e565b60405180910390a35050565b6128cf61340a565b73ffffffffffffffffffffffffffffffffffffffff166128ed612465565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90615336565b60405180910390fd5b6010548260115461295491906155e4565b1115612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c906152b6565b60405180910390fd5b61299f81836134c9565b81601160008282546129b191906155e4565b925050819055505050565b6129c461340a565b73ffffffffffffffffffffffffffffffffffffffff166129e2612465565b73ffffffffffffffffffffffffffffffffffffffff1614612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90615336565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b612a6c61340a565b73ffffffffffffffffffffffffffffffffffffffff16612a8a612465565b73ffffffffffffffffffffffffffffffffffffffff1614612ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad790615336565b60405180910390fd5b60026009541415612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d90615456565b60405180910390fd5b60026009819055506000612b38612677565b905060008111612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7490615476565b60405180910390fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612bda9291906151f5565b602060405180830381600087803b158015612bf457600080fd5b505af1158015612c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2c91906149a9565b5050600160098190555050565b612c448484846134e7565b612c638373ffffffffffffffffffffffffffffffffffffffff16613d05565b15612cab57612c7484848484613d28565b612caa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601a6020528060005260406000206000915090508060000154908060010154905082565b6060612ce0826133bc565b612d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1690615396565b60405180910390fd5b60001515600f60009054906101000a900460ff1615151415612dcd57600e8054612d48906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612d74906157b9565b8015612dc15780601f10612d9657610100808354040283529160200191612dc1565b820191906000526020600020905b815481529060010190602001808311612da457829003601f168201915b50505050509050612e29565b6000612dd7613e88565b90506000815111612df75760405180602001604052806000815250612e25565b80612e0184613f1a565b600d604051602001612e15939291906150e8565b6040516020818303038152906040525b9150505b919050565b600c8054612e3b906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612e67906157b9565b8015612eb45780601f10612e8957610100808354040283529160200191612eb4565b820191906000526020600020905b815481529060010190602001808311612e9757829003601f168201915b505050505081565b60115481565b600a5481565b612ed061340a565b73ffffffffffffffffffffffffffffffffffffffff16612eee612465565b73ffffffffffffffffffffffffffffffffffffffff1614612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b90615336565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60175481565b612f7e61340a565b73ffffffffffffffffffffffffffffffffffffffff16612f9c612465565b73ffffffffffffffffffffffffffffffffffffffff1614612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe990615336565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6130ba61340a565b73ffffffffffffffffffffffffffffffffffffffff166130d8612465565b73ffffffffffffffffffffffffffffffffffffffff161461312e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312590615336565b60405180910390fd5b8060148190555050565b61314061340a565b73ffffffffffffffffffffffffffffffffffffffff1661315e612465565b73ffffffffffffffffffffffffffffffffffffffff16146131b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ab90615336565b60405180910390fd5b80600e90805190602001906131ca9291906144d5565b5050565b6131d661340a565b73ffffffffffffffffffffffffffffffffffffffff166131f4612465565b73ffffffffffffffffffffffffffffffffffffffff161461324a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324190615336565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b190615296565b60405180910390fd5b6132c381613c3f565b50565b6132ce61340a565b73ffffffffffffffffffffffffffffffffffffffff166132ec612465565b73ffffffffffffffffffffffffffffffffffffffff1614613342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333990615336565b60405180910390fd5b8060168190555050565b60165481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816133c76134c4565b111580156133d6575060005482105b8015613403575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6134e382826040518060200160405280600081525061407b565b5050565b60006134f28261399d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461355d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661357e61340a565b73ffffffffffffffffffffffffffffffffffffffff1614806135ad57506135ac856135a761340a565b61301e565b5b806135f257506135bb61340a565b73ffffffffffffffffffffffffffffffffffffffff166135da84610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061362b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613692576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61369f858585600161443d565b6136ab60008487613412565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561392b57600054821461392a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139968585856001614443565b5050505050565b6139a561455b565b6000829050806139b36134c4565b11613bf157600054811015613bf0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613bee57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613ad2578092505050613c23565b5b600115613bed57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613be8578092505050613c23565b613ad3565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600082613c358584614449565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d4e61340a565b8786866040518563ffffffff1660e01b8152600401613d7094939291906151a9565b602060405180830381600087803b158015613d8a57600080fd5b505af1925050508015613dbb57506040513d601f19601f82011682018060405250810190613db89190614a30565b60015b613e35573d8060008114613deb576040519150601f19603f3d011682016040523d82523d6000602084013e613df0565b606091505b50600081511415613e2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054613e97906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054613ec3906157b9565b8015613f105780601f10613ee557610100808354040283529160200191613f10565b820191906000526020600020905b815481529060010190602001808311613ef357829003601f168201915b5050505050905090565b60606000821415613f62576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614076565b600082905060005b60008214613f94578080613f7d9061581c565b915050600a82613f8d919061563a565b9150613f6a565b60008167ffffffffffffffff811115613fb057613faf615976565b5b6040519080825280601f01601f191660200182016040528015613fe25781602001600182028036833780820191505090505b5090505b6000851461406f57600182613ffb91906156c5565b9150600a8561400a9190615889565b603061401691906155e4565b60f81b81838151811061402c5761402b615947565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85614068919061563a565b9450613fe6565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156140e8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415614123576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b614130600085838661443d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506142f18673ffffffffffffffffffffffffffffffffffffffff16613d05565b156143b6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143666000878480600101955087613d28565b61439c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106142f75782600054146143b157600080fd5b614421565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106143b7575b8160008190555050506144376000858386614443565b50505050565b50505050565b50505050565b60008082905060005b84518110156144b35760008582815181106144705761446f615947565b5b602002602001015190508083116144925761448b83826144be565b925061449f565b61449c81846144be565b92505b5080806144ab9061581c565b915050614452565b508091505092915050565b600082600052816020526040600020905092915050565b8280546144e1906157b9565b90600052602060002090601f016020900481019282614503576000855561454a565b82601f1061451c57805160ff191683800117855561454a565b8280016001018555821561454a579182015b8281111561454957825182559160200191906001019061452e565b5b509050614557919061459e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156145b757600081600090555060010161459f565b5090565b60006145ce6145c98461551f565b6154fa565b9050828152602081018484840111156145ea576145e96159b4565b5b6145f5848285615777565b509392505050565b600061461061460b84615550565b6154fa565b90508281526020810184848401111561462c5761462b6159b4565b5b614637848285615777565b509392505050565b60008135905061464e81615df6565b92915050565b60008083601f84011261466a576146696159aa565b5b8235905067ffffffffffffffff811115614687576146866159a5565b5b6020830191508360208202830111156146a3576146a26159af565b5b9250929050565b6000813590506146b981615e0d565b92915050565b6000815190506146ce81615e0d565b92915050565b6000813590506146e381615e24565b92915050565b6000813590506146f881615e3b565b92915050565b60008151905061470d81615e3b565b92915050565b600082601f830112614728576147276159aa565b5b81356147388482602086016145bb565b91505092915050565b600082601f830112614756576147556159aa565b5b81356147668482602086016145fd565b91505092915050565b60008135905061477e81615e52565b92915050565b60008151905061479381615e52565b92915050565b6000602082840312156147af576147ae6159be565b5b60006147bd8482850161463f565b91505092915050565b600080604083850312156147dd576147dc6159be565b5b60006147eb8582860161463f565b92505060206147fc8582860161463f565b9150509250929050565b60008060006060848603121561481f5761481e6159be565b5b600061482d8682870161463f565b935050602061483e8682870161463f565b925050604061484f8682870161476f565b9150509250925092565b60008060008060808587031215614873576148726159be565b5b60006148818782880161463f565b94505060206148928782880161463f565b93505060406148a38782880161476f565b925050606085013567ffffffffffffffff8111156148c4576148c36159b9565b5b6148d087828801614713565b91505092959194509250565b600080604083850312156148f3576148f26159be565b5b60006149018582860161463f565b9250506020614912858286016146aa565b9150509250929050565b60008060408385031215614933576149326159be565b5b60006149418582860161463f565b92505060206149528582860161476f565b9150509250929050565b60008060208385031215614973576149726159be565b5b600083013567ffffffffffffffff811115614991576149906159b9565b5b61499d85828601614654565b92509250509250929050565b6000602082840312156149bf576149be6159be565b5b60006149cd848285016146bf565b91505092915050565b6000602082840312156149ec576149eb6159be565b5b60006149fa848285016146d4565b91505092915050565b600060208284031215614a1957614a186159be565b5b6000614a27848285016146e9565b91505092915050565b600060208284031215614a4657614a456159be565b5b6000614a54848285016146fe565b91505092915050565b600060208284031215614a7357614a726159be565b5b600082013567ffffffffffffffff811115614a9157614a906159b9565b5b614a9d84828501614741565b91505092915050565b60008060408385031215614abd57614abc6159be565b5b600083013567ffffffffffffffff811115614adb57614ada6159b9565b5b614ae785828601614741565b925050602083013567ffffffffffffffff811115614b0857614b076159b9565b5b614b1485828601614741565b9150509250929050565b600060208284031215614b3457614b336159be565b5b6000614b428482850161476f565b91505092915050565b600060208284031215614b6157614b606159be565b5b6000614b6f84828501614784565b91505092915050565b60008060408385031215614b8f57614b8e6159be565b5b6000614b9d8582860161476f565b9250506020614bae8582860161463f565b9150509250929050565b60008060008060608587031215614bd257614bd16159be565b5b6000614be08782880161476f565b945050602085013567ffffffffffffffff811115614c0157614c006159b9565b5b614c0d87828801614654565b93509350506040614c208782880161476f565b91505092959194509250565b60008060408385031215614c4357614c426159be565b5b6000614c518582860161476f565b9250506020614c628582860161476f565b9150509250929050565b600080600060608486031215614c8557614c846159be565b5b6000614c938682870161476f565b9350506020614ca48682870161476f565b9250506040614cb58682870161463f565b9150509250925092565b614cc8816156f9565b82525050565b614cdf614cda826156f9565b615865565b82525050565b614cee8161570b565b82525050565b614cfd81615717565b82525050565b6000614d0e82615596565b614d1881856155ac565b9350614d28818560208601615786565b614d31816159c3565b840191505092915050565b6000614d47826155a1565b614d5181856155c8565b9350614d61818560208601615786565b614d6a816159c3565b840191505092915050565b6000614d80826155a1565b614d8a81856155d9565b9350614d9a818560208601615786565b80840191505092915050565b60008154614db3816157b9565b614dbd81866155d9565b94506001821660008114614dd85760018114614de957614e1c565b60ff19831686528186019350614e1c565b614df285615581565b60005b83811015614e1457815481890152600182019150602081019050614df5565b838801955050505b50505092915050565b6000614e32603e836155c8565b9150614e3d826159e1565b604082019050919050565b6000614e556026836155c8565b9150614e6082615a30565b604082019050919050565b6000614e786016836155c8565b9150614e8382615a7f565b602082019050919050565b6000614e9b6017836155c8565b9150614ea682615aa8565b602082019050919050565b6000614ebe6043836155c8565b9150614ec982615ad1565b606082019050919050565b6000614ee16022836155c8565b9150614eec82615b46565b604082019050919050565b6000614f046020836155c8565b9150614f0f82615b95565b602082019050919050565b6000614f276023836155c8565b9150614f3282615bbe565b604082019050919050565b6000614f4a6037836155c8565b9150614f5582615c0d565b604082019050919050565b6000614f6d602f836155c8565b9150614f7882615c5c565b604082019050919050565b6000614f906017836155c8565b9150614f9b82615cab565b602082019050919050565b6000614fb3601f836155c8565b9150614fbe82615cd4565b602082019050919050565b6000614fd66000836155bd565b9150614fe182615cfd565b600082019050919050565b6000614ff96010836155c8565b915061500482615d00565b602082019050919050565b600061501c6011836155c8565b915061502782615d29565b602082019050919050565b600061503f6016836155c8565b915061504a82615d52565b602082019050919050565b6000615062601f836155c8565b915061506d82615d7b565b602082019050919050565b60006150856011836155c8565b915061509082615da4565b602082019050919050565b60006150a8601a836155c8565b91506150b382615dcd565b602082019050919050565b6150c78161576d565b82525050565b60006150d98284614cce565b60148201915081905092915050565b60006150f48286614d75565b91506151008285614d75565b915061510c8284614da6565b9150819050949350505050565b600061512482614fc9565b9150819050919050565b60006020820190506151436000830184614cbf565b92915050565b600060408201905061515e6000830185614cbf565b61516b6020830184614cbf565b9392505050565b60006060820190506151876000830186614cbf565b6151946020830185614cbf565b6151a160408301846150be565b949350505050565b60006080820190506151be6000830187614cbf565b6151cb6020830186614cbf565b6151d860408301856150be565b81810360608301526151ea8184614d03565b905095945050505050565b600060408201905061520a6000830185614cbf565b61521760208301846150be565b9392505050565b60006020820190506152336000830184614ce5565b92915050565b600060208201905061524e6000830184614cf4565b92915050565b6000602082019050818103600083015261526e8184614d3c565b905092915050565b6000602082019050818103600083015261528f81614e25565b9050919050565b600060208201905081810360008301526152af81614e48565b9050919050565b600060208201905081810360008301526152cf81614e6b565b9050919050565b600060208201905081810360008301526152ef81614e8e565b9050919050565b6000602082019050818103600083015261530f81614eb1565b9050919050565b6000602082019050818103600083015261532f81614ed4565b9050919050565b6000602082019050818103600083015261534f81614ef7565b9050919050565b6000602082019050818103600083015261536f81614f1a565b9050919050565b6000602082019050818103600083015261538f81614f3d565b9050919050565b600060208201905081810360008301526153af81614f60565b9050919050565b600060208201905081810360008301526153cf81614f83565b9050919050565b600060208201905081810360008301526153ef81614fa6565b9050919050565b6000602082019050818103600083015261540f81614fec565b9050919050565b6000602082019050818103600083015261542f8161500f565b9050919050565b6000602082019050818103600083015261544f81615032565b9050919050565b6000602082019050818103600083015261546f81615055565b9050919050565b6000602082019050818103600083015261548f81615078565b9050919050565b600060208201905081810360008301526154af8161509b565b9050919050565b60006020820190506154cb60008301846150be565b92915050565b60006040820190506154e660008301856150be565b6154f360208301846150be565b9392505050565b6000615504615515565b905061551082826157eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561553a57615539615976565b5b615543826159c3565b9050602081019050919050565b600067ffffffffffffffff82111561556b5761556a615976565b5b615574826159c3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155ef8261576d565b91506155fa8361576d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561562f5761562e6158ba565b5b828201905092915050565b60006156458261576d565b91506156508361576d565b9250826156605761565f6158e9565b5b828204905092915050565b60006156768261576d565b91506156818361576d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156156ba576156b96158ba565b5b828202905092915050565b60006156d08261576d565b91506156db8361576d565b9250828210156156ee576156ed6158ba565b5b828203905092915050565b60006157048261574d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156157a4578082015181840152602081019050615789565b838111156157b3576000848401525b50505050565b600060028204905060018216806157d157607f821691505b602082108114156157e5576157e4615918565b5b50919050565b6157f4826159c3565b810181811067ffffffffffffffff8211171561581357615812615976565b5b80604052505050565b60006158278261576d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585a576158596158ba565b5b600182019050919050565b600061587082615877565b9050919050565b6000615882826159d4565b9050919050565b60006158948261576d565b915061589f8361576d565b9250826158af576158ae6158e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f752063616e74206d696e74206d6f72652c4465637265617365204d696e7460008201527f416d6f756e74206f72205761697420466f72205075626c6963204d696e740000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f41697264726f70204c696d697420447261696e65642100000000000000000000600082015250565b7f596f7520617265204e6f742077686974656c6973746564000000000000000000600082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c20646563726561736560008201527f20746865207175616e74697479206f7220636865636b206f7574204f70656e5360208201527f65612e0000000000000000000000000000000000000000000000000000000000604082015250565b7f3a20416d6f756e742073686f756c642062652067726561746572207468616e2060008201527f302e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f3a2043616e6e6f74204d696e7420447572696e672057686974656c697374205360008201527f616c650000000000000000000000000000000000000000000000000000000000602082015250565b7f506c6561736520417070726f766520436f6e747261637420746f205370656e6460008201527f20536f6d65206f6620596f75722041706520436f696e73000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374204d696e74696e6720506175736564000000000000000000600082015250565b7f596f7520646f206e6f74206861766520656e6f75676820417065436f696e2e00600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e73756666696369656e742046556e64000000000000000000000000000000600082015250565b7f3a2057686974656c697374206973207061757365642e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742046756e64000000000000000000000000000000600082015250565b7f436f6e74726163742043616c6c73204e6f7420416c6c6f776564000000000000600082015250565b615dff816156f9565b8114615e0a57600080fd5b50565b615e168161570b565b8114615e2157600080fd5b50565b615e2d81615717565b8114615e3857600080fd5b50565b615e4481615721565b8114615e4f57600080fd5b50565b615e5b8161576d565b8114615e6657600080fd5b5056fea2646970667358221220b44369dd1da3a9c5dceba0ea4199c61b17d3fe724e53aba61829fc728752896364736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d546a4465385768593172416a484b626e67397359397854436d6f4135475061685837584a4e7157536e76504a

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806385fee168116101ab578063bbc27564116100f7578063e7d166eb11610095578063f2c4ce1e1161006f578063f2c4ce1e14610b2e578063f2fde38b14610b57578063f6a5b8e614610b80578063fc1a1c3614610ba95761031a565b8063e7d166eb14610ab1578063e985e9c514610ac8578063f064870314610b055761031a565b8063d56ad458116100d1578063d56ad45814610a19578063d5abeb0114610a44578063d621a77614610a6f578063d846d69c14610a865761031a565b8063bbc2756414610973578063c87b56dd146109b1578063cfc86f7b146109ee5761031a565b80639d6c8b9c11610164578063a5b865111161013e578063a5b86511146108e1578063a8edbdc51461090a578063b459976d14610921578063b88d4fde1461094a5761031a565b80639d6c8b9c146108625780639d76ea581461088d578063a22cb465146108b85761031a565b806385fee1681461077357806388d15d501461079e5780638da5cb5b146107ba57806391b7f5ed146107e557806395d89b411461080e5780639cb8be62146108395761031a565b80632f9710291161026a5780636aaa571d11610223578063722e141d116101fd578063722e141d146106cb578063748477ef146106f6578063783fd922146107215780637cb647591461074a5761031a565b80636aaa571d1461064c57806370a0823114610677578063715018a6146106b45761031a565b80632f9710291461054b57806331ffd6f11461057457806342842e0e1461059f57806351830227146105c85780636352211e146105f35780636a455a97146106305761031a565b8063159c24ca116102d75780631b2ef1ca116102b15780631b2ef1ca146104b0578063235b6ea1146104cc57806323b872dd146104f75780632eb4a7ab146105205761031a565b8063159c24ca1461042f57806316c61ccc1461045a57806318160ddd146104855761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063081c8c44146103c4578063095ea7b3146103ef5780630c1c972a14610418575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190614a03565b610bd4565b604051610353919061521e565b60405180910390f35b34801561036857600080fd5b50610371610cb6565b60405161037e9190615254565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190614b1e565b610d48565b6040516103bb919061512e565b60405180910390f35b3480156103d057600080fd5b506103d9610dc4565b6040516103e69190615254565b60405180910390f35b3480156103fb57600080fd5b506104166004803603810190610411919061491c565b610e52565b005b34801561042457600080fd5b5061042d610f57565b005b34801561043b57600080fd5b5061044461100b565b6040516104519190615239565b60405180910390f35b34801561046657600080fd5b5061046f611011565b60405161047c919061521e565b60405180910390f35b34801561049157600080fd5b5061049a611024565b6040516104a791906154b6565b60405180910390f35b6104ca60048036038101906104c59190614c2c565b61103b565b005b3480156104d857600080fd5b506104e1611530565b6040516104ee91906154b6565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190614806565b611536565b005b34801561052c57600080fd5b50610535611546565b6040516105429190615239565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190614799565b61154c565b005b34801561058057600080fd5b506105896116ce565b604051610596919061521e565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190614806565b6116e1565b005b3480156105d457600080fd5b506105dd611701565b6040516105ea919061521e565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190614b1e565b611714565b604051610627919061512e565b60405180910390f35b61064a60048036038101906106459190614bb8565b61172a565b005b34801561065857600080fd5b50610661611dc4565b60405161066e91906154b6565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190614799565b611dca565b6040516106ab91906154b6565b60405180910390f35b3480156106c057600080fd5b506106c9611e9a565b005b3480156106d757600080fd5b506106e0611f22565b6040516106ed91906154b6565b60405180910390f35b34801561070257600080fd5b5061070b611f28565b60405161071891906154b6565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190614aa6565b611f2e565b005b34801561075657600080fd5b50610771600480360381019061076c91906149d6565b611fdc565b005b34801561077f57600080fd5b50610788612062565b6040516107959190615254565b60405180910390f35b6107b860048036038101906107b3919061495c565b6120f0565b005b3480156107c657600080fd5b506107cf612465565b6040516107dc919061512e565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190614b1e565b61248f565b005b34801561081a57600080fd5b50610823612515565b6040516108309190615254565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190614c6c565b6125a7565b005b34801561086e57600080fd5b50610877612677565b60405161088491906154b6565b60405180910390f35b34801561089957600080fd5b506108a2612729565b6040516108af919061512e565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da91906148dc565b61274f565b005b3480156108ed57600080fd5b5061090860048036038101906109039190614b78565b6128c7565b005b34801561091657600080fd5b5061091f6129bc565b005b34801561092d57600080fd5b5061094860048036038101906109439190614799565b612a64565b005b34801561095657600080fd5b50610971600480360381019061096c9190614859565b612c39565b005b34801561097f57600080fd5b5061099a60048036038101906109959190614799565b612cb1565b6040516109a89291906154d1565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190614b1e565b612cd5565b6040516109e59190615254565b60405180910390f35b3480156109fa57600080fd5b50610a03612e2e565b604051610a109190615254565b60405180910390f35b348015610a2557600080fd5b50610a2e612ebc565b604051610a3b91906154b6565b60405180910390f35b348015610a5057600080fd5b50610a59612ec2565b604051610a6691906154b6565b60405180910390f35b348015610a7b57600080fd5b50610a84612ec8565b005b348015610a9257600080fd5b50610a9b612f70565b604051610aa891906154b6565b60405180910390f35b348015610abd57600080fd5b50610ac6612f76565b005b348015610ad457600080fd5b50610aef6004803603810190610aea91906147c6565b61301e565b604051610afc919061521e565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b2791906149d6565b6130b2565b005b348015610b3a57600080fd5b50610b556004803603810190610b509190614a5d565b613138565b005b348015610b6357600080fd5b50610b7e6004803603810190610b799190614799565b6131ce565b005b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614b1e565b6132c6565b005b348015610bb557600080fd5b50610bbe61334c565b604051610bcb91906154b6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caf5750610cae82613352565b5b9050919050565b606060028054610cc5906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf1906157b9565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d53826133bc565b610d89576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610dd1906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfd906157b9565b8015610e4a5780601f10610e1f57610100808354040283529160200191610e4a565b820191906000526020600020905b815481529060010190602001808311610e2d57829003601f168201915b505050505081565b6000610e5d82611714565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee461340a565b73ffffffffffffffffffffffffffffffffffffffff1614610f4757610f1081610f0b61340a565b61301e565b610f46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610f52838383613412565b505050565b610f5f61340a565b73ffffffffffffffffffffffffffffffffffffffff16610f7d612465565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90615336565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506000601560006101000a81548160ff021916908315150217905550565b60145481565b600f60019054906101000a900460ff1681565b600061102e6134c4565b6001546000540303905090565b60026009541415611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890615456565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90615496565b60405180910390fd5b600f60019054906101000a900460ff1615611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906153b6565b60405180910390fd5b601560009054906101000a900460ff1615611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90615356565b60405180910390fd5b600082116111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190615316565b60405180910390fd5b60006111e4611024565b9050601054600a546111f691906156c5565b838261120291906155e4565b1115611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906152f6565b60405180910390fd5b60008214156112a15782600b5461125a919061566b565b34101561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390615416565b60405180910390fd5b611519565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601754846112d6919061566b565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161130f919061512e565b60206040518083038186803b15801561132757600080fd5b505afa15801561133b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135f9190614b4b565b10156113a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611397906153d6565b60405180910390fd5b601754846113ae919061566b565b8173ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016113e9929190615149565b60206040518083038186803b15801561140157600080fd5b505afa158015611415573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114399190614b4b565b101561147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190615376565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330601754886114a6919061566b565b6040518463ffffffff1660e01b81526004016114c493929190615172565b602060405180830381600087803b1580156114de57600080fd5b505af11580156114f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151691906149a9565b50505b61152333846134c9565b5060016009819055505050565b600b5481565b6115418383836134e7565b505050565b60135481565b61155461340a565b73ffffffffffffffffffffffffffffffffffffffff16611572612465565b73ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90615336565b60405180910390fd5b6002600954141561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590615456565b60405180910390fd5b600260098190555060008173ffffffffffffffffffffffffffffffffffffffff164760405161163c90615119565b60006040518083038185875af1925050503d8060008114611679576040519150601f19603f3d011682016040523d82523d6000602084013e61167e565b606091505b50509050806116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906153f6565b60405180910390fd5b50600160098190555050565b601560009054906101000a900460ff1681565b6116fc83838360405180602001604052806000815250612c39565b505050565b600f60009054906101000a900460ff1681565b600061171f8261399d565b600001519050919050565b60026009541415611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790615456565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90615496565b60405180910390fd5b600f60019054906101000a900460ff1615611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d906153b6565b60405180910390fd5b601560009054906101000a900460ff16611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90615436565b60405180910390fd5b600084116118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90615316565b60405180910390fd5b601254601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001548561191991906155e4565b111561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190615276565b60405180910390fd5b60003360405160200161196d91906150cd565b6040516020818303038152906040528051906020012090506119d3848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483613c28565b611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a09906152d6565b60405180910390fd5b6000611a1c611024565b9050601054600a54611a2e91906156c5565b8682611a3a91906155e4565b1115611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906152f6565b60405180910390fd5b6000831415611ad95785601654611a92919061566b565b341015611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb90615416565b60405180910390fd5b611d51565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060185487611b0e919061566b565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611b47919061512e565b60206040518083038186803b158015611b5f57600080fd5b505afa158015611b73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b979190614b4b565b1015611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906153d6565b60405180910390fd5b60185487611be6919061566b565b8173ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611c21929190615149565b60206040518083038186803b158015611c3957600080fd5b505afa158015611c4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c719190614b4b565b1015611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990615376565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd33306018548b611cde919061566b565b6040518463ffffffff1660e01b8152600401611cfc93929190615172565b602060405180830381600087803b158015611d1657600080fd5b505af1158015611d2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4e91906149a9565b50505b611d5b33876134c9565b85601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000828254611dad91906155e4565b925050819055505050600160098190555050505050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ea261340a565b73ffffffffffffffffffffffffffffffffffffffff16611ec0612465565b73ffffffffffffffffffffffffffffffffffffffff1614611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90615336565b60405180910390fd5b611f206000613c3f565b565b60125481565b60185481565b611f3661340a565b73ffffffffffffffffffffffffffffffffffffffff16611f54612465565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190615336565b60405180910390fd5b81600c9080519060200190611fc09291906144d5565b5080600d9080519060200190611fd79291906144d5565b505050565b611fe461340a565b73ffffffffffffffffffffffffffffffffffffffff16612002612465565b73ffffffffffffffffffffffffffffffffffffffff1614612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90615336565b60405180910390fd5b8060138190555050565b600d805461206f906157b9565b80601f016020809104026020016040519081016040528092919081815260200182805461209b906157b9565b80156120e85780601f106120bd576101008083540402835291602001916120e8565b820191906000526020600020905b8154815290600101906020018083116120cb57829003601f168201915b505050505081565b60026009541415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90615456565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390615496565b60405180910390fd5b600f60019054906101000a900460ff16156121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f3906153b6565b60405180910390fd5b601560009054906101000a900460ff1661224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290615436565b60405180910390fd5b6001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154106122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790615276565b60405180910390fd5b6000336040516020016122e391906150cd565b604051602081830303815290604052805190602001209050612349838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483613c28565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906152d6565b60405180910390fd5b6000612392611024565b9050601054600a546123a491906156c5565b6001826123b191906155e4565b11156123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e9906152f6565b60405180910390fd5b6123fd3360016134c9565b6001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101600082825461245091906155e4565b92505081905550505060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61249761340a565b73ffffffffffffffffffffffffffffffffffffffff166124b5612465565b73ffffffffffffffffffffffffffffffffffffffff161461250b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250290615336565b60405180910390fd5b80600b8190555050565b606060038054612524906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612550906157b9565b801561259d5780601f106125725761010080835404028352916020019161259d565b820191906000526020600020905b81548152906001019060200180831161258057829003601f168201915b5050505050905090565b6125af61340a565b73ffffffffffffffffffffffffffffffffffffffff166125cd612465565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a90615336565b60405180910390fd5b826017819055508160188190555080601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126d4919061512e565b60206040518083038186803b1580156126ec57600080fd5b505afa158015612700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127249190614b4b565b905090565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61275761340a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006127c961340a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661287661340a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128bb919061521e565b60405180910390a35050565b6128cf61340a565b73ffffffffffffffffffffffffffffffffffffffff166128ed612465565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90615336565b60405180910390fd5b6010548260115461295491906155e4565b1115612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c906152b6565b60405180910390fd5b61299f81836134c9565b81601160008282546129b191906155e4565b925050819055505050565b6129c461340a565b73ffffffffffffffffffffffffffffffffffffffff166129e2612465565b73ffffffffffffffffffffffffffffffffffffffff1614612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90615336565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b612a6c61340a565b73ffffffffffffffffffffffffffffffffffffffff16612a8a612465565b73ffffffffffffffffffffffffffffffffffffffff1614612ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad790615336565b60405180910390fd5b60026009541415612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d90615456565b60405180910390fd5b60026009819055506000612b38612677565b905060008111612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7490615476565b60405180910390fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612bda9291906151f5565b602060405180830381600087803b158015612bf457600080fd5b505af1158015612c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2c91906149a9565b5050600160098190555050565b612c448484846134e7565b612c638373ffffffffffffffffffffffffffffffffffffffff16613d05565b15612cab57612c7484848484613d28565b612caa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601a6020528060005260406000206000915090508060000154908060010154905082565b6060612ce0826133bc565b612d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1690615396565b60405180910390fd5b60001515600f60009054906101000a900460ff1615151415612dcd57600e8054612d48906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612d74906157b9565b8015612dc15780601f10612d9657610100808354040283529160200191612dc1565b820191906000526020600020905b815481529060010190602001808311612da457829003601f168201915b50505050509050612e29565b6000612dd7613e88565b90506000815111612df75760405180602001604052806000815250612e25565b80612e0184613f1a565b600d604051602001612e15939291906150e8565b6040516020818303038152906040525b9150505b919050565b600c8054612e3b906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612e67906157b9565b8015612eb45780601f10612e8957610100808354040283529160200191612eb4565b820191906000526020600020905b815481529060010190602001808311612e9757829003601f168201915b505050505081565b60115481565b600a5481565b612ed061340a565b73ffffffffffffffffffffffffffffffffffffffff16612eee612465565b73ffffffffffffffffffffffffffffffffffffffff1614612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b90615336565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60175481565b612f7e61340a565b73ffffffffffffffffffffffffffffffffffffffff16612f9c612465565b73ffffffffffffffffffffffffffffffffffffffff1614612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe990615336565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6130ba61340a565b73ffffffffffffffffffffffffffffffffffffffff166130d8612465565b73ffffffffffffffffffffffffffffffffffffffff161461312e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312590615336565b60405180910390fd5b8060148190555050565b61314061340a565b73ffffffffffffffffffffffffffffffffffffffff1661315e612465565b73ffffffffffffffffffffffffffffffffffffffff16146131b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ab90615336565b60405180910390fd5b80600e90805190602001906131ca9291906144d5565b5050565b6131d661340a565b73ffffffffffffffffffffffffffffffffffffffff166131f4612465565b73ffffffffffffffffffffffffffffffffffffffff161461324a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324190615336565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b190615296565b60405180910390fd5b6132c381613c3f565b50565b6132ce61340a565b73ffffffffffffffffffffffffffffffffffffffff166132ec612465565b73ffffffffffffffffffffffffffffffffffffffff1614613342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333990615336565b60405180910390fd5b8060168190555050565b60165481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816133c76134c4565b111580156133d6575060005482105b8015613403575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6134e382826040518060200160405280600081525061407b565b5050565b60006134f28261399d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461355d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661357e61340a565b73ffffffffffffffffffffffffffffffffffffffff1614806135ad57506135ac856135a761340a565b61301e565b5b806135f257506135bb61340a565b73ffffffffffffffffffffffffffffffffffffffff166135da84610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061362b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613692576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61369f858585600161443d565b6136ab60008487613412565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561392b57600054821461392a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139968585856001614443565b5050505050565b6139a561455b565b6000829050806139b36134c4565b11613bf157600054811015613bf0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613bee57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613ad2578092505050613c23565b5b600115613bed57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613be8578092505050613c23565b613ad3565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600082613c358584614449565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d4e61340a565b8786866040518563ffffffff1660e01b8152600401613d7094939291906151a9565b602060405180830381600087803b158015613d8a57600080fd5b505af1925050508015613dbb57506040513d601f19601f82011682018060405250810190613db89190614a30565b60015b613e35573d8060008114613deb576040519150601f19603f3d011682016040523d82523d6000602084013e613df0565b606091505b50600081511415613e2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054613e97906157b9565b80601f0160208091040260200160405190810160405280929190818152602001828054613ec3906157b9565b8015613f105780601f10613ee557610100808354040283529160200191613f10565b820191906000526020600020905b815481529060010190602001808311613ef357829003601f168201915b5050505050905090565b60606000821415613f62576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614076565b600082905060005b60008214613f94578080613f7d9061581c565b915050600a82613f8d919061563a565b9150613f6a565b60008167ffffffffffffffff811115613fb057613faf615976565b5b6040519080825280601f01601f191660200182016040528015613fe25781602001600182028036833780820191505090505b5090505b6000851461406f57600182613ffb91906156c5565b9150600a8561400a9190615889565b603061401691906155e4565b60f81b81838151811061402c5761402b615947565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85614068919061563a565b9450613fe6565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156140e8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415614123576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b614130600085838661443d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506142f18673ffffffffffffffffffffffffffffffffffffffff16613d05565b156143b6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143666000878480600101955087613d28565b61439c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106142f75782600054146143b157600080fd5b614421565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106143b7575b8160008190555050506144376000858386614443565b50505050565b50505050565b50505050565b60008082905060005b84518110156144b35760008582815181106144705761446f615947565b5b602002602001015190508083116144925761448b83826144be565b925061449f565b61449c81846144be565b92505b5080806144ab9061581c565b915050614452565b508091505092915050565b600082600052816020526040600020905092915050565b8280546144e1906157b9565b90600052602060002090601f016020900481019282614503576000855561454a565b82601f1061451c57805160ff191683800117855561454a565b8280016001018555821561454a579182015b8281111561454957825182559160200191906001019061452e565b5b509050614557919061459e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156145b757600081600090555060010161459f565b5090565b60006145ce6145c98461551f565b6154fa565b9050828152602081018484840111156145ea576145e96159b4565b5b6145f5848285615777565b509392505050565b600061461061460b84615550565b6154fa565b90508281526020810184848401111561462c5761462b6159b4565b5b614637848285615777565b509392505050565b60008135905061464e81615df6565b92915050565b60008083601f84011261466a576146696159aa565b5b8235905067ffffffffffffffff811115614687576146866159a5565b5b6020830191508360208202830111156146a3576146a26159af565b5b9250929050565b6000813590506146b981615e0d565b92915050565b6000815190506146ce81615e0d565b92915050565b6000813590506146e381615e24565b92915050565b6000813590506146f881615e3b565b92915050565b60008151905061470d81615e3b565b92915050565b600082601f830112614728576147276159aa565b5b81356147388482602086016145bb565b91505092915050565b600082601f830112614756576147556159aa565b5b81356147668482602086016145fd565b91505092915050565b60008135905061477e81615e52565b92915050565b60008151905061479381615e52565b92915050565b6000602082840312156147af576147ae6159be565b5b60006147bd8482850161463f565b91505092915050565b600080604083850312156147dd576147dc6159be565b5b60006147eb8582860161463f565b92505060206147fc8582860161463f565b9150509250929050565b60008060006060848603121561481f5761481e6159be565b5b600061482d8682870161463f565b935050602061483e8682870161463f565b925050604061484f8682870161476f565b9150509250925092565b60008060008060808587031215614873576148726159be565b5b60006148818782880161463f565b94505060206148928782880161463f565b93505060406148a38782880161476f565b925050606085013567ffffffffffffffff8111156148c4576148c36159b9565b5b6148d087828801614713565b91505092959194509250565b600080604083850312156148f3576148f26159be565b5b60006149018582860161463f565b9250506020614912858286016146aa565b9150509250929050565b60008060408385031215614933576149326159be565b5b60006149418582860161463f565b92505060206149528582860161476f565b9150509250929050565b60008060208385031215614973576149726159be565b5b600083013567ffffffffffffffff811115614991576149906159b9565b5b61499d85828601614654565b92509250509250929050565b6000602082840312156149bf576149be6159be565b5b60006149cd848285016146bf565b91505092915050565b6000602082840312156149ec576149eb6159be565b5b60006149fa848285016146d4565b91505092915050565b600060208284031215614a1957614a186159be565b5b6000614a27848285016146e9565b91505092915050565b600060208284031215614a4657614a456159be565b5b6000614a54848285016146fe565b91505092915050565b600060208284031215614a7357614a726159be565b5b600082013567ffffffffffffffff811115614a9157614a906159b9565b5b614a9d84828501614741565b91505092915050565b60008060408385031215614abd57614abc6159be565b5b600083013567ffffffffffffffff811115614adb57614ada6159b9565b5b614ae785828601614741565b925050602083013567ffffffffffffffff811115614b0857614b076159b9565b5b614b1485828601614741565b9150509250929050565b600060208284031215614b3457614b336159be565b5b6000614b428482850161476f565b91505092915050565b600060208284031215614b6157614b606159be565b5b6000614b6f84828501614784565b91505092915050565b60008060408385031215614b8f57614b8e6159be565b5b6000614b9d8582860161476f565b9250506020614bae8582860161463f565b9150509250929050565b60008060008060608587031215614bd257614bd16159be565b5b6000614be08782880161476f565b945050602085013567ffffffffffffffff811115614c0157614c006159b9565b5b614c0d87828801614654565b93509350506040614c208782880161476f565b91505092959194509250565b60008060408385031215614c4357614c426159be565b5b6000614c518582860161476f565b9250506020614c628582860161476f565b9150509250929050565b600080600060608486031215614c8557614c846159be565b5b6000614c938682870161476f565b9350506020614ca48682870161476f565b9250506040614cb58682870161463f565b9150509250925092565b614cc8816156f9565b82525050565b614cdf614cda826156f9565b615865565b82525050565b614cee8161570b565b82525050565b614cfd81615717565b82525050565b6000614d0e82615596565b614d1881856155ac565b9350614d28818560208601615786565b614d31816159c3565b840191505092915050565b6000614d47826155a1565b614d5181856155c8565b9350614d61818560208601615786565b614d6a816159c3565b840191505092915050565b6000614d80826155a1565b614d8a81856155d9565b9350614d9a818560208601615786565b80840191505092915050565b60008154614db3816157b9565b614dbd81866155d9565b94506001821660008114614dd85760018114614de957614e1c565b60ff19831686528186019350614e1c565b614df285615581565b60005b83811015614e1457815481890152600182019150602081019050614df5565b838801955050505b50505092915050565b6000614e32603e836155c8565b9150614e3d826159e1565b604082019050919050565b6000614e556026836155c8565b9150614e6082615a30565b604082019050919050565b6000614e786016836155c8565b9150614e8382615a7f565b602082019050919050565b6000614e9b6017836155c8565b9150614ea682615aa8565b602082019050919050565b6000614ebe6043836155c8565b9150614ec982615ad1565b606082019050919050565b6000614ee16022836155c8565b9150614eec82615b46565b604082019050919050565b6000614f046020836155c8565b9150614f0f82615b95565b602082019050919050565b6000614f276023836155c8565b9150614f3282615bbe565b604082019050919050565b6000614f4a6037836155c8565b9150614f5582615c0d565b604082019050919050565b6000614f6d602f836155c8565b9150614f7882615c5c565b604082019050919050565b6000614f906017836155c8565b9150614f9b82615cab565b602082019050919050565b6000614fb3601f836155c8565b9150614fbe82615cd4565b602082019050919050565b6000614fd66000836155bd565b9150614fe182615cfd565b600082019050919050565b6000614ff96010836155c8565b915061500482615d00565b602082019050919050565b600061501c6011836155c8565b915061502782615d29565b602082019050919050565b600061503f6016836155c8565b915061504a82615d52565b602082019050919050565b6000615062601f836155c8565b915061506d82615d7b565b602082019050919050565b60006150856011836155c8565b915061509082615da4565b602082019050919050565b60006150a8601a836155c8565b91506150b382615dcd565b602082019050919050565b6150c78161576d565b82525050565b60006150d98284614cce565b60148201915081905092915050565b60006150f48286614d75565b91506151008285614d75565b915061510c8284614da6565b9150819050949350505050565b600061512482614fc9565b9150819050919050565b60006020820190506151436000830184614cbf565b92915050565b600060408201905061515e6000830185614cbf565b61516b6020830184614cbf565b9392505050565b60006060820190506151876000830186614cbf565b6151946020830185614cbf565b6151a160408301846150be565b949350505050565b60006080820190506151be6000830187614cbf565b6151cb6020830186614cbf565b6151d860408301856150be565b81810360608301526151ea8184614d03565b905095945050505050565b600060408201905061520a6000830185614cbf565b61521760208301846150be565b9392505050565b60006020820190506152336000830184614ce5565b92915050565b600060208201905061524e6000830184614cf4565b92915050565b6000602082019050818103600083015261526e8184614d3c565b905092915050565b6000602082019050818103600083015261528f81614e25565b9050919050565b600060208201905081810360008301526152af81614e48565b9050919050565b600060208201905081810360008301526152cf81614e6b565b9050919050565b600060208201905081810360008301526152ef81614e8e565b9050919050565b6000602082019050818103600083015261530f81614eb1565b9050919050565b6000602082019050818103600083015261532f81614ed4565b9050919050565b6000602082019050818103600083015261534f81614ef7565b9050919050565b6000602082019050818103600083015261536f81614f1a565b9050919050565b6000602082019050818103600083015261538f81614f3d565b9050919050565b600060208201905081810360008301526153af81614f60565b9050919050565b600060208201905081810360008301526153cf81614f83565b9050919050565b600060208201905081810360008301526153ef81614fa6565b9050919050565b6000602082019050818103600083015261540f81614fec565b9050919050565b6000602082019050818103600083015261542f8161500f565b9050919050565b6000602082019050818103600083015261544f81615032565b9050919050565b6000602082019050818103600083015261546f81615055565b9050919050565b6000602082019050818103600083015261548f81615078565b9050919050565b600060208201905081810360008301526154af8161509b565b9050919050565b60006020820190506154cb60008301846150be565b92915050565b60006040820190506154e660008301856150be565b6154f360208301846150be565b9392505050565b6000615504615515565b905061551082826157eb565b919050565b6000604051905090565b600067ffffffffffffffff82111561553a57615539615976565b5b615543826159c3565b9050602081019050919050565b600067ffffffffffffffff82111561556b5761556a615976565b5b615574826159c3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006155ef8261576d565b91506155fa8361576d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561562f5761562e6158ba565b5b828201905092915050565b60006156458261576d565b91506156508361576d565b9250826156605761565f6158e9565b5b828204905092915050565b60006156768261576d565b91506156818361576d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156156ba576156b96158ba565b5b828202905092915050565b60006156d08261576d565b91506156db8361576d565b9250828210156156ee576156ed6158ba565b5b828203905092915050565b60006157048261574d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156157a4578082015181840152602081019050615789565b838111156157b3576000848401525b50505050565b600060028204905060018216806157d157607f821691505b602082108114156157e5576157e4615918565b5b50919050565b6157f4826159c3565b810181811067ffffffffffffffff8211171561581357615812615976565b5b80604052505050565b60006158278261576d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585a576158596158ba565b5b600182019050919050565b600061587082615877565b9050919050565b6000615882826159d4565b9050919050565b60006158948261576d565b915061589f8361576d565b9250826158af576158ae6158e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f752063616e74206d696e74206d6f72652c4465637265617365204d696e7460008201527f416d6f756e74206f72205761697420466f72205075626c6963204d696e740000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f41697264726f70204c696d697420447261696e65642100000000000000000000600082015250565b7f596f7520617265204e6f742077686974656c6973746564000000000000000000600082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c20646563726561736560008201527f20746865207175616e74697479206f7220636865636b206f7574204f70656e5360208201527f65612e0000000000000000000000000000000000000000000000000000000000604082015250565b7f3a20416d6f756e742073686f756c642062652067726561746572207468616e2060008201527f302e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f3a2043616e6e6f74204d696e7420447572696e672057686974656c697374205360008201527f616c650000000000000000000000000000000000000000000000000000000000602082015250565b7f506c6561736520417070726f766520436f6e747261637420746f205370656e6460008201527f20536f6d65206f6620596f75722041706520436f696e73000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374204d696e74696e6720506175736564000000000000000000600082015250565b7f596f7520646f206e6f74206861766520656e6f75676820417065436f696e2e00600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e73756666696369656e742046556e64000000000000000000000000000000600082015250565b7f3a2057686974656c697374206973207061757365642e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742046756e64000000000000000000000000000000600082015250565b7f436f6e74726163742043616c6c73204e6f7420416c6c6f776564000000000000600082015250565b615dff816156f9565b8114615e0a57600080fd5b50565b615e168161570b565b8114615e2157600080fd5b50565b615e2d81615717565b8114615e3857600080fd5b50565b615e4481615721565b8114615e4f57600080fd5b50565b615e5b8161576d565b8114615e6657600080fd5b5056fea2646970667358221220b44369dd1da3a9c5dceba0ea4199c61b17d3fe724e53aba61829fc728752896364736f6c63430008070033

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.