ETH Price: $3,436.28 (+5.55%)
Gas: 10 Gwei

Token

EtherYeezClub (EYC)
 

Overview

Max Total Supply

174 EYC

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nosk8fx.eth
Balance
3 EYC
0xd2b41b2209de76ed2b6224e9204248d055ee20c8
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:
EtherYeezClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : EtherYeezClub.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract EtherYeezClub is ERC721, Ownable, ERC721URIStorage, ERC721Enumerable, Pausable {
    using Counters for Counters.Counter;
    using SafeMath for uint256;
    
    Counters.Counter private _tokenIdCounter;
    
    uint256 public maxSupply = 8888;
    
    bool public preSaleIsActive = true;
    uint256 public preSaleMaxSupply = 8888;
    
    bool public saleIsActive = false;
    
    uint256 public LOW_TIER_PRICE  = 40000000000000000;
    uint256 public MID_TIER_PRICE  = 35000000000000000;
    uint256 public HIGH_TIER_PRICE = 30000000000000000;

    uint public MIN_MINTABLE = 1;
    uint public MAX_MINTABLE = 9;

    uint public BONUS_MINTABLE = 1;

    string public finalDataMapURL;
    
    string private metaBaseURL;

    event PermanentURI(string _value, uint256 indexed _id);
    
    constructor(string memory _metaBaseURL) ERC721("EtherYeezClub", "EYC") {
        metaBaseURL = _metaBaseURL;
        _performMint(36);
    }
    
    function mintTokens(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale in inactive");
        require(numberOfTokens >= MIN_MINTABLE, "Minumum mintable amount is invalid");
        require(numberOfTokens <= MAX_MINTABLE, "Maximum mintable amount is invalid");
        require(SafeMath.add(totalSupply(), numberOfTokens) <= maxSupply, "Not enough tokens left");
        require(msg.value >= SafeMath.mul(calculateTokenPrice(numberOfTokens), numberOfTokens), "Amount of Ether sent is not correct.");
        
        _performMint(numberOfTokens);
    }

    function preMintTokens(uint numberOfTokens) public payable {
        require(preSaleIsActive, "Pre sale in inactive");
        require(numberOfTokens >= MIN_MINTABLE, "Minumum mintable amount is invalid");
        require(numberOfTokens <= MAX_MINTABLE, "Maximum mintable amount is invalid");
        require(msg.value >= SafeMath.mul(calculateTokenPrice(numberOfTokens), numberOfTokens), "Amount of Ether sent is not correct.");

        if (numberOfTokens == MAX_MINTABLE) {
            numberOfTokens = numberOfTokens + BONUS_MINTABLE;
        }

        require(SafeMath.add(totalSupply(), numberOfTokens) <= preSaleMaxSupply, "Not enough tokens left");
        _performMint(numberOfTokens);
    }

    function _performMint(uint numberOfTokens) private {
        for (uint i = 0; i < numberOfTokens; i++) {
            _tokenIdCounter.increment();
            uint256 id = totalSupply();
            _safeMint(msg.sender, id);
        }
    }

    function mintTokensToWallet(uint numberOfTokens, address walletAddress) public onlyOwner {
        require(SafeMath.add(totalSupply(), numberOfTokens) <= maxSupply, "Not enough tokens left");

        for (uint i = 0; i < numberOfTokens; i++) {
            _tokenIdCounter.increment();
            uint256 id = totalSupply();
            _safeMint(walletAddress, id);
        }
    }

    function calculateTokenPrice(uint numberOfTokens) public view returns (uint256) {
        uint256 tokenPrice = LOW_TIER_PRICE;

        if (numberOfTokens > MIN_MINTABLE && numberOfTokens < MAX_MINTABLE) {
            tokenPrice = MID_TIER_PRICE;
        } else if (numberOfTokens >= MAX_MINTABLE) {
            tokenPrice = HIGH_TIER_PRICE;
        }

        return tokenPrice; 
    }

    function setDataMap(string memory url) public onlyOwner { finalDataMapURL = url; }
    function setPermanentURI(string memory uri, uint256 tokenId) public onlyOwner { emit PermanentURI(uri, tokenId); }
    function updateLowTierPrice(uint256 newPrice) public onlyOwner { LOW_TIER_PRICE = newPrice; }
    function updateMidTierPrice(uint256 newPrice) public onlyOwner { MID_TIER_PRICE = newPrice; }
    function updateHighTierPrice(uint256 newPrice) public onlyOwner { HIGH_TIER_PRICE = newPrice; }
    function updateMinMintable(uint value) public onlyOwner { MIN_MINTABLE = value; }
    function updateMaxMintable(uint value) public onlyOwner { MAX_MINTABLE = value; }
    function updateBonusMintable(uint value) public onlyOwner { BONUS_MINTABLE = value; }
    function updatePreSaleMaxSupply(uint256 newMax) public onlyOwner { preSaleMaxSupply = newMax; }
    function activateSale() public onlyOwner { saleIsActive = true; }
    function deactivateSale() public onlyOwner { saleIsActive = false; }
    function activatePreSale() public onlyOwner { preSaleIsActive = true; }
    function deactivatePreSale() public onlyOwner { preSaleIsActive = false; }
    
    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    
    function pause() public onlyOwner { _pause(); }
    function unpause() public onlyOwner { _unpause(); }
    
    function totalSupply() public view override returns (uint256) {
        return _tokenIdCounter.current();
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function setBaseURI(string memory baseURL) public onlyOwner { metaBaseURL = baseURL; }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return metaBaseURL;
    }
    
    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "Nothing to withdraw");
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 17 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 7 of 17 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 11 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 17 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 14 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_metaBaseURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BONUS_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HIGH_TIER_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOW_TIER_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MID_TIER_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activatePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"calculateTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivatePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalDataMapURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"mintTokensToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"preMintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURL","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setDataMap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setPermanentURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateBonusMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateHighTierPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateLowTierPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateMaxMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateMidTierPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateMinMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updatePreSaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600e556001600f60006101000a81548160ff0219169083151502179055506122b86010556000601160006101000a81548160ff021916908315150217905550668e1bc9bf040000601255667c585087238000601355666a94d74f4300006014556001601555600960165560016017553480156200008357600080fd5b5060405162006b9938038062006b998339818101604052810190620000a9919062000f10565b6040518060400160405280600d81526020017f45746865725965657a436c7562000000000000000000000000000000000000008152506040518060400160405280600381526020017f455943000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012d92919062000d99565b5080600190805190602001906200014692919062000d99565b505050620001696200015d620001b660201b60201c565b620001be60201b60201c565b6000600c60006101000a81548160ff02191690831515021790555080601990805190602001906200019c92919062000d99565b50620001af60246200028460201b60201c565b5062001646565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015620002e457620002a7600d620002e860201b6200252e1760201c565b6000620002b9620002fe60201b60201c565b9050620002cd33826200031c60201b60201c565b508080620002db90620013b5565b91505062000287565b5050565b6001816000016000828254019250508190555050565b600062000317600d6200034260201b620025441760201c565b905090565b6200033e8282604051806020016040528060008152506200035060201b60201c565b5050565b600081600001549050919050565b620003628383620003be60201b60201c565b620003776000848484620005a460201b60201c565b620003b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b090620010db565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004289062001163565b60405180910390fd5b62000442816200075e60201b60201c565b1562000485576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047c90620010fd565b60405180910390fd5b6200049960008383620007ca60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004eb919062001211565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005d28473ffffffffffffffffffffffffffffffffffffffff166200083a60201b620025521760201c565b1562000751578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000604620001b660201b60201c565b8786866040518563ffffffff1660e01b815260040162000628949392919062001087565b602060405180830381600087803b1580156200064357600080fd5b505af19250505080156200067757506040513d601f19601f8201168201806040525081019062000674919062000ede565b60015b62000700573d8060008114620006aa576040519150601f19603f3d011682016040523d82523d6000602084013e620006af565b606091505b50600081511415620006f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ef90620010db565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000756565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007da6200084d60201b60201c565b156200081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000814906200111f565b60405180910390fd5b620008358383836200086460201b620025651760201c565b505050565b600080823b905060008111915050919050565b6000600c60009054906101000a900460ff16905090565b6200087c838383620009ab60201b620026791760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008c957620008c381620009b060201b60201c565b62000911565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000910576200090f8382620009f960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200095e57620009588162000b7660201b60201c565b620009a6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009a557620009a4828262000c5260201b60201c565b5b5b505050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a138462000cde60201b620017631760201c565b62000a1f91906200126e565b905060006009600084815260200190815260200160002054905081811462000b05576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905062000b8c91906200126e565b90506000600b60008481526020019081526020016000205490506000600a838154811062000bbf5762000bbe62001490565b5b9060005260206000200154905080600a838154811062000be45762000be362001490565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548062000c365762000c3562001461565b5b6001900381819060005260206000200160009055905550505050565b600062000c6a8362000cde60201b620017631760201c565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d499062001141565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000da79062001349565b90600052602060002090601f01602090048101928262000dcb576000855562000e17565b82601f1062000de657805160ff191683800117855562000e17565b8280016001018555821562000e17579182015b8281111562000e1657825182559160200191906001019062000df9565b5b50905062000e26919062000e2a565b5090565b5b8082111562000e4557600081600090555060010162000e2b565b5090565b600062000e6062000e5a84620011ae565b62001185565b90508281526020810184848401111562000e7f5762000e7e620014f3565b5b62000e8c84828562001313565b509392505050565b60008151905062000ea5816200162c565b92915050565b600082601f83011262000ec35762000ec2620014ee565b5b815162000ed584826020860162000e49565b91505092915050565b60006020828403121562000ef75762000ef6620014fd565b5b600062000f078482850162000e94565b91505092915050565b60006020828403121562000f295762000f28620014fd565b5b600082015167ffffffffffffffff81111562000f4a5762000f49620014f8565b5b62000f588482850162000eab565b91505092915050565b62000f6c81620012a9565b82525050565b600062000f7f82620011e4565b62000f8b8185620011ef565b935062000f9d81856020860162001313565b62000fa88162001502565b840191505092915050565b600062000fc260328362001200565b915062000fcf8262001513565b604082019050919050565b600062000fe9601c8362001200565b915062000ff68262001562565b602082019050919050565b60006200101060108362001200565b91506200101d826200158b565b602082019050919050565b600062001037602a8362001200565b91506200104482620015b4565b604082019050919050565b60006200105e60208362001200565b91506200106b8262001603565b602082019050919050565b620010818162001309565b82525050565b60006080820190506200109e600083018762000f61565b620010ad602083018662000f61565b620010bc604083018562001076565b8181036060830152620010d0818462000f72565b905095945050505050565b60006020820190508181036000830152620010f68162000fb3565b9050919050565b60006020820190508181036000830152620011188162000fda565b9050919050565b600060208201905081810360008301526200113a8162001001565b9050919050565b600060208201905081810360008301526200115c8162001028565b9050919050565b600060208201905081810360008301526200117e816200104f565b9050919050565b600062001191620011a4565b90506200119f82826200137f565b919050565b6000604051905090565b600067ffffffffffffffff821115620011cc57620011cb620014bf565b5b620011d78262001502565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200121e8262001309565b91506200122b8362001309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001263576200126262001403565b5b828201905092915050565b60006200127b8262001309565b9150620012888362001309565b9250828210156200129e576200129d62001403565b5b828203905092915050565b6000620012b682620012e9565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200133357808201518184015260208101905062001316565b8381111562001343576000848401525b50505050565b600060028204905060018216806200136257607f821691505b6020821081141562001379576200137862001432565b5b50919050565b6200138a8262001502565b810181811067ffffffffffffffff82111715620013ac57620013ab620014bf565b5b80604052505050565b6000620013c28262001309565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620013f857620013f762001403565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200163781620012bd565b81146200164357600080fd5b50565b61554380620016566000396000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063c87b56dd116100dc578063e5f4d77111610095578063eb8d24441161006f578063eb8d244414610adc578063ef4fb01614610b07578063f2fde38b14610b30578063f6d90a5f14610b59576102ff565b8063e5f4d77114610a5d578063e985e9c514610a74578063ea81808014610ab1576102ff565b8063c87b56dd1461094d578063ceb833ea1461098a578063d322b963146109b3578063d5abeb01146109de578063d75d0e0214610a09578063d8d04ec114610a34576102ff565b80639ecbc6ee11610149578063a22cb46511610123578063a22cb465146108bb578063aff5f815146108e4578063b88d4fde1461090d578063c721f08d14610936576102ff565b80639ecbc6ee1461083c5780639f9dc2ad14610865578063a18116f114610890576102ff565b8063715018a6146107735780637a7800c71461078a5780638456cb59146107b35780638da5cb5b146107ca57806395d89b41146107f557806397304ced14610820576102ff565b80633ccfd60b1161024f578063564c539c11610208578063616d0dfd116101e2578063616d0dfd146106b95780636352211e146106d057806366baeadc1461070d57806370a0823114610736576102ff565b8063564c539c1461063a5780635c975abb146106655780635d597c3514610690576102ff565b80633ccfd60b146105525780633f4ba83a146105695780633f879faf1461058057806342842e0e146105ab5780634f6ccce7146105d457806355f804b314610611576102ff565b8063095ea7b3116102bc5780631f0234d8116102965780631f0234d814610496578063203eb1c6146104c157806323b872dd146104ec5780632f745c5914610515576102ff565b8063095ea7b31461042b5780631307bb001461045457806318160ddd1461046b576102ff565b806301ffc9a71461030457806302b7f6711461034157806306fdde031461035d578063072de7f314610388578063081812fc146103c55780630845cc7214610402575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613e65565b610b82565b6040516103389190614500565b60405180910390f35b61035b60048036038101906103569190613f64565b610b94565b005b34801561036957600080fd5b50610372610d3d565b60405161037f919061451b565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613f64565b610dcf565b6040516103bc91906148bd565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e79190613f64565b610e11565b6040516103f99190614499565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613f64565b610e96565b005b34801561043757600080fd5b50610452600480360381019061044d9190613e25565b610f1c565b005b34801561046057600080fd5b50610469611034565b005b34801561047757600080fd5b506104806110cd565b60405161048d91906148bd565b60405180910390f35b3480156104a257600080fd5b506104ab6110de565b6040516104b89190614500565b60405180910390f35b3480156104cd57600080fd5b506104d66110f1565b6040516104e391906148bd565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613d0f565b6110f7565b005b34801561052157600080fd5b5061053c60048036038101906105379190613e25565b611157565b60405161054991906148bd565b60405180910390f35b34801561055e57600080fd5b506105676111fc565b005b34801561057557600080fd5b5061057e61130a565b005b34801561058c57600080fd5b50610595611390565b6040516105a291906148bd565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613d0f565b611396565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190613f64565b6113b6565b60405161060891906148bd565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613ebf565b611427565b005b34801561064657600080fd5b5061064f6114bd565b60405161065c91906148bd565b60405180910390f35b34801561067157600080fd5b5061067a6114c3565b6040516106879190614500565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613f64565b6114da565b005b3480156106c557600080fd5b506106ce611560565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613f64565b6115f9565b6040516107049190614499565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613f08565b6116ab565b005b34801561074257600080fd5b5061075d60048036038101906107589190613ca2565b611763565b60405161076a91906148bd565b60405180910390f35b34801561077f57600080fd5b5061078861181b565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613ebf565b6118a3565b005b3480156107bf57600080fd5b506107c8611939565b005b3480156107d657600080fd5b506107df6119bf565b6040516107ec9190614499565b60405180910390f35b34801561080157600080fd5b5061080a6119e9565b604051610817919061451b565b60405180910390f35b61083a60048036038101906108359190613f64565b611a7b565b005b34801561084857600080fd5b50610863600480360381019061085e9190613f64565b611c09565b005b34801561087157600080fd5b5061087a611c8f565b60405161088791906148bd565b60405180910390f35b34801561089c57600080fd5b506108a5611c95565b6040516108b291906148bd565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613de5565b611c9b565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613f91565b611e1c565b005b34801561091957600080fd5b50610934600480360381019061092f9190613d62565b611f31565b005b34801561094257600080fd5b5061094b611f93565b005b34801561095957600080fd5b50610974600480360381019061096f9190613f64565b61202c565b604051610981919061451b565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190613f64565b61203e565b005b3480156109bf57600080fd5b506109c86120c4565b6040516109d591906148bd565b60405180910390f35b3480156109ea57600080fd5b506109f36120ca565b604051610a0091906148bd565b60405180910390f35b348015610a1557600080fd5b50610a1e6120d0565b604051610a2b91906148bd565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613f64565b6120d6565b005b348015610a6957600080fd5b50610a7261215c565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190613ccf565b6121f5565b604051610aa89190614500565b60405180910390f35b348015610abd57600080fd5b50610ac6612289565b604051610ad3919061451b565b60405180910390f35b348015610ae857600080fd5b50610af1612317565b604051610afe9190614500565b60405180910390f35b348015610b1357600080fd5b50610b2e6004803603810190610b299190613f64565b61232a565b005b348015610b3c57600080fd5b50610b576004803603810190610b529190613ca2565b6123b0565b005b348015610b6557600080fd5b50610b806004803603810190610b7b9190613f64565b6124a8565b005b6000610b8d8261267e565b9050919050565b600f60009054906101000a900460ff16610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906145bd565b60405180910390fd5b601554811015610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f9061477d565b60405180910390fd5b601654811115610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c649061489d565b60405180910390fd5b610c7f610c7982610dcf565b826126f8565b341015610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb89061455d565b60405180910390fd5b601654811415610cdc5760175481610cd991906149a2565b90505b601054610cf0610cea6110cd565b8361270e565b1115610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d289061471d565b60405180910390fd5b610d3a81612724565b50565b606060008054610d4c90614b6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7890614b6d565b8015610dc55780601f10610d9a57610100808354040283529160200191610dc5565b820191906000526020600020905b815481529060010190602001808311610da857829003601f168201915b5050505050905090565b600080601254905060155483118015610de9575060165483105b15610df8576013549050610e08565b6016548310610e075760145490505b5b80915050919050565b6000610e1c82612767565b610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e529061479d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e9e6127d3565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906147bd565b60405180910390fd5b8060138190555050565b6000610f27826115f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f9061481d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fb76127d3565b73ffffffffffffffffffffffffffffffffffffffff161480610fe65750610fe581610fe06127d3565b6121f5565b5b611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c906146bd565b60405180910390fd5b61102f83836127db565b505050565b61103c6127d3565b73ffffffffffffffffffffffffffffffffffffffff1661105a6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a7906147bd565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b60006110d9600d612544565b905090565b600f60009054906101000a900460ff1681565b60155481565b6111086111026127d3565b82612894565b611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e9061483d565b60405180910390fd5b611152838383612972565b505050565b600061116283611763565b82106111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061459d565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112046127d3565b73ffffffffffffffffffffffffffffffffffffffff166112226119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906147bd565b60405180910390fd5b600047116112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b29061457d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611306573d6000803e3d6000fd5b5050565b6113126127d3565b73ffffffffffffffffffffffffffffffffffffffff166113306119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906147bd565b60405180910390fd5b61138e612bce565b565b60165481565b6113b183838360405180602001604052806000815250611f31565b505050565b60006113c0612c70565b8210611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f89061485d565b60405180910390fd5b600a828154811061141557611414614d06565b5b90600052602060002001549050919050565b61142f6127d3565b73ffffffffffffffffffffffffffffffffffffffff1661144d6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a906147bd565b60405180910390fd5b80601990805190602001906114b9929190613ab6565b5050565b60145481565b6000600c60009054906101000a900460ff16905090565b6114e26127d3565b73ffffffffffffffffffffffffffffffffffffffff166115006119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906147bd565b60405180910390fd5b8060178190555050565b6115686127d3565b73ffffffffffffffffffffffffffffffffffffffff166115866119bf565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906147bd565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611699906146fd565b60405180910390fd5b80915050919050565b6116b36127d3565b73ffffffffffffffffffffffffffffffffffffffff166116d16119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906147bd565b60405180910390fd5b807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720783604051611757919061451b565b60405180910390a25050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb906146dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118236127d3565b73ffffffffffffffffffffffffffffffffffffffff166118416119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e906147bd565b60405180910390fd5b6118a16000612c7d565b565b6118ab6127d3565b73ffffffffffffffffffffffffffffffffffffffff166118c96119bf565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906147bd565b60405180910390fd5b8060189080519060200190611935929190613ab6565b5050565b6119416127d3565b73ffffffffffffffffffffffffffffffffffffffff1661195f6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac906147bd565b60405180910390fd5b6119bd612d43565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119f890614b6d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2490614b6d565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b5050505050905090565b601160009054906101000a900460ff16611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac19061487d565b60405180910390fd5b601554811015611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b069061477d565b60405180910390fd5b601654811115611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b9061489d565b60405180910390fd5b600e54611b68611b626110cd565b8361270e565b1115611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061471d565b60405180910390fd5b611bbb611bb582610dcf565b826126f8565b341015611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf49061455d565b60405180910390fd5b611c0681612724565b50565b611c116127d3565b73ffffffffffffffffffffffffffffffffffffffff16611c2f6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906147bd565b60405180910390fd5b8060158190555050565b60175481565b60105481565b611ca36127d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d089061465d565b60405180910390fd5b8060056000611d1e6127d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dcb6127d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e109190614500565b60405180910390a35050565b611e246127d3565b73ffffffffffffffffffffffffffffffffffffffff16611e426119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f906147bd565b60405180910390fd5b600e54611eac611ea66110cd565b8461270e565b1115611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee49061471d565b60405180910390fd5b60005b82811015611f2c57611f02600d61252e565b6000611f0c6110cd565b9050611f188382612de6565b508080611f2490614bd0565b915050611ef0565b505050565b611f42611f3c6127d3565b83612894565b611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f789061483d565b60405180910390fd5b611f8d84848484612e04565b50505050565b611f9b6127d3565b73ffffffffffffffffffffffffffffffffffffffff16611fb96119bf565b73ffffffffffffffffffffffffffffffffffffffff161461200f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612006906147bd565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b606061203782612e60565b9050919050565b6120466127d3565b73ffffffffffffffffffffffffffffffffffffffff166120646119bf565b73ffffffffffffffffffffffffffffffffffffffff16146120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906147bd565b60405180910390fd5b8060108190555050565b60135481565b600e5481565b60125481565b6120de6127d3565b73ffffffffffffffffffffffffffffffffffffffff166120fc6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612149906147bd565b60405180910390fd5b8060128190555050565b6121646127d3565b73ffffffffffffffffffffffffffffffffffffffff166121826119bf565b73ffffffffffffffffffffffffffffffffffffffff16146121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf906147bd565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6018805461229690614b6d565b80601f01602080910402602001604051908101604052809291908181526020018280546122c290614b6d565b801561230f5780601f106122e45761010080835404028352916020019161230f565b820191906000526020600020905b8154815290600101906020018083116122f257829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b6123326127d3565b73ffffffffffffffffffffffffffffffffffffffff166123506119bf565b73ffffffffffffffffffffffffffffffffffffffff16146123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d906147bd565b60405180910390fd5b8060168190555050565b6123b86127d3565b73ffffffffffffffffffffffffffffffffffffffff166123d66119bf565b73ffffffffffffffffffffffffffffffffffffffff161461242c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612423906147bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561249c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612493906145fd565b60405180910390fd5b6124a581612c7d565b50565b6124b06127d3565b73ffffffffffffffffffffffffffffffffffffffff166124ce6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b906147bd565b60405180910390fd5b8060148190555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b612570838383612679565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b3576125ae81612fb2565b6125f2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125f1576125f08382612ffb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126355761263081613168565b612674565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612673576126728282613239565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126f157506126f0826132b8565b5b9050919050565b600081836127069190614a29565b905092915050565b6000818361271c91906149a2565b905092915050565b60005b8181101561276357612739600d61252e565b60006127436110cd565b905061274f3382612de6565b50808061275b90614bd0565b915050612727565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661284e836115f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061289f82612767565b6128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d59061467d565b60405180910390fd5b60006128e9836115f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061295857508373ffffffffffffffffffffffffffffffffffffffff1661294084610e11565b73ffffffffffffffffffffffffffffffffffffffff16145b80612969575061296881856121f5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612992826115f9565b73ffffffffffffffffffffffffffffffffffffffff16146129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df906147dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f9061463d565b60405180910390fd5b612a6383838361339a565b612a6e6000826127db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612abe9190614a83565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1591906149a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612bd66114c3565b612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c9061453d565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c596127d3565b604051612c669190614499565b60405180910390a1565b6000600a80549050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d4b6114c3565b15612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d829061469d565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612dcf6127d3565b604051612ddc9190614499565b60405180910390a1565b612e008282604051806020016040528060008152506133f2565b5050565b612e0f848484612972565b612e1b8484848461344d565b612e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e51906145dd565b60405180910390fd5b50505050565b6060612e6b82612767565b612eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea19061475d565b60405180910390fd5b6000600760008481526020019081526020016000208054612eca90614b6d565b80601f0160208091040260200160405190810160405280929190818152602001828054612ef690614b6d565b8015612f435780601f10612f1857610100808354040283529160200191612f43565b820191906000526020600020905b815481529060010190602001808311612f2657829003601f168201915b505050505090506000612f546135e4565b9050600081511415612f6a578192505050612fad565b600082511115612f9f578082604051602001612f87929190614475565b60405160208183030381529060405292505050612fad565b612fa884613676565b925050505b919050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161300884611763565b6130129190614a83565b90506000600960008481526020019081526020016000205490508181146130f7576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061317c9190614a83565b90506000600b60008481526020019081526020016000205490506000600a83815481106131ac576131ab614d06565b5b9060005260206000200154905080600a83815481106131ce576131cd614d06565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061321d5761321c614cd7565b5b6001900381819060005260206000200160009055905550505050565b600061324483611763565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061338357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061339357506133928261371d565b5b9050919050565b6133a26114c3565b156133e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d99061469d565b60405180910390fd5b6133ed838383612565565b505050565b6133fc8383613787565b613409600084848461344d565b613448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343f906145dd565b60405180910390fd5b505050565b600061346e8473ffffffffffffffffffffffffffffffffffffffff16612552565b156135d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134976127d3565b8786866040518563ffffffff1660e01b81526004016134b994939291906144b4565b602060405180830381600087803b1580156134d357600080fd5b505af192505050801561350457506040513d601f19601f820116820180604052508101906135019190613e92565b60015b613587573d8060008114613534576040519150601f19603f3d011682016040523d82523d6000602084013e613539565b606091505b5060008151141561357f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613576906145dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135dc565b600190505b949350505050565b6060601980546135f390614b6d565b80601f016020809104026020016040519081016040528092919081815260200182805461361f90614b6d565b801561366c5780601f106136415761010080835404028352916020019161366c565b820191906000526020600020905b81548152906001019060200180831161364f57829003601f168201915b5050505050905090565b606061368182612767565b6136c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136b7906147fd565b60405180910390fd5b60006136ca6135e4565b905060008151116136ea5760405180602001604052806000815250613715565b806136f484613955565b604051602001613705929190614475565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ee9061473d565b60405180910390fd5b61380081612767565b15613840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138379061461d565b60405180910390fd5b61384c6000838361339a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461389c91906149a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060600082141561399d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613ab1565b600082905060005b600082146139cf5780806139b890614bd0565b915050600a826139c891906149f8565b91506139a5565b60008167ffffffffffffffff8111156139eb576139ea614d35565b5b6040519080825280601f01601f191660200182016040528015613a1d5781602001600182028036833780820191505090505b5090505b60008514613aaa57600182613a369190614a83565b9150600a85613a459190614c19565b6030613a5191906149a2565b60f81b818381518110613a6757613a66614d06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613aa391906149f8565b9450613a21565b8093505050505b919050565b828054613ac290614b6d565b90600052602060002090601f016020900481019282613ae45760008555613b2b565b82601f10613afd57805160ff1916838001178555613b2b565b82800160010185558215613b2b579182015b82811115613b2a578251825591602001919060010190613b0f565b5b509050613b389190613b3c565b5090565b5b80821115613b55576000816000905550600101613b3d565b5090565b6000613b6c613b67846148fd565b6148d8565b905082815260208101848484011115613b8857613b87614d69565b5b613b93848285614b2b565b509392505050565b6000613bae613ba98461492e565b6148d8565b905082815260208101848484011115613bca57613bc9614d69565b5b613bd5848285614b2b565b509392505050565b600081359050613bec816154b1565b92915050565b600081359050613c01816154c8565b92915050565b600081359050613c16816154df565b92915050565b600081519050613c2b816154df565b92915050565b600082601f830112613c4657613c45614d64565b5b8135613c56848260208601613b59565b91505092915050565b600082601f830112613c7457613c73614d64565b5b8135613c84848260208601613b9b565b91505092915050565b600081359050613c9c816154f6565b92915050565b600060208284031215613cb857613cb7614d73565b5b6000613cc684828501613bdd565b91505092915050565b60008060408385031215613ce657613ce5614d73565b5b6000613cf485828601613bdd565b9250506020613d0585828601613bdd565b9150509250929050565b600080600060608486031215613d2857613d27614d73565b5b6000613d3686828701613bdd565b9350506020613d4786828701613bdd565b9250506040613d5886828701613c8d565b9150509250925092565b60008060008060808587031215613d7c57613d7b614d73565b5b6000613d8a87828801613bdd565b9450506020613d9b87828801613bdd565b9350506040613dac87828801613c8d565b925050606085013567ffffffffffffffff811115613dcd57613dcc614d6e565b5b613dd987828801613c31565b91505092959194509250565b60008060408385031215613dfc57613dfb614d73565b5b6000613e0a85828601613bdd565b9250506020613e1b85828601613bf2565b9150509250929050565b60008060408385031215613e3c57613e3b614d73565b5b6000613e4a85828601613bdd565b9250506020613e5b85828601613c8d565b9150509250929050565b600060208284031215613e7b57613e7a614d73565b5b6000613e8984828501613c07565b91505092915050565b600060208284031215613ea857613ea7614d73565b5b6000613eb684828501613c1c565b91505092915050565b600060208284031215613ed557613ed4614d73565b5b600082013567ffffffffffffffff811115613ef357613ef2614d6e565b5b613eff84828501613c5f565b91505092915050565b60008060408385031215613f1f57613f1e614d73565b5b600083013567ffffffffffffffff811115613f3d57613f3c614d6e565b5b613f4985828601613c5f565b9250506020613f5a85828601613c8d565b9150509250929050565b600060208284031215613f7a57613f79614d73565b5b6000613f8884828501613c8d565b91505092915050565b60008060408385031215613fa857613fa7614d73565b5b6000613fb685828601613c8d565b9250506020613fc785828601613bdd565b9150509250929050565b613fda81614ab7565b82525050565b613fe981614ac9565b82525050565b6000613ffa8261495f565b6140048185614975565b9350614014818560208601614b3a565b61401d81614d78565b840191505092915050565b60006140338261496a565b61403d8185614986565b935061404d818560208601614b3a565b61405681614d78565b840191505092915050565b600061406c8261496a565b6140768185614997565b9350614086818560208601614b3a565b80840191505092915050565b600061409f601483614986565b91506140aa82614d89565b602082019050919050565b60006140c2602483614986565b91506140cd82614db2565b604082019050919050565b60006140e5601383614986565b91506140f082614e01565b602082019050919050565b6000614108602b83614986565b915061411382614e2a565b604082019050919050565b600061412b601483614986565b915061413682614e79565b602082019050919050565b600061414e603283614986565b915061415982614ea2565b604082019050919050565b6000614171602683614986565b915061417c82614ef1565b604082019050919050565b6000614194601c83614986565b915061419f82614f40565b602082019050919050565b60006141b7602483614986565b91506141c282614f69565b604082019050919050565b60006141da601983614986565b91506141e582614fb8565b602082019050919050565b60006141fd602c83614986565b915061420882614fe1565b604082019050919050565b6000614220601083614986565b915061422b82615030565b602082019050919050565b6000614243603883614986565b915061424e82615059565b604082019050919050565b6000614266602a83614986565b9150614271826150a8565b604082019050919050565b6000614289602983614986565b9150614294826150f7565b604082019050919050565b60006142ac601683614986565b91506142b782615146565b602082019050919050565b60006142cf602083614986565b91506142da8261516f565b602082019050919050565b60006142f2603183614986565b91506142fd82615198565b604082019050919050565b6000614315602283614986565b9150614320826151e7565b604082019050919050565b6000614338602c83614986565b915061434382615236565b604082019050919050565b600061435b602083614986565b915061436682615285565b602082019050919050565b600061437e602983614986565b9150614389826152ae565b604082019050919050565b60006143a1602f83614986565b91506143ac826152fd565b604082019050919050565b60006143c4602183614986565b91506143cf8261534c565b604082019050919050565b60006143e7603183614986565b91506143f28261539b565b604082019050919050565b600061440a602c83614986565b9150614415826153ea565b604082019050919050565b600061442d601083614986565b915061443882615439565b602082019050919050565b6000614450602283614986565b915061445b82615462565b604082019050919050565b61446f81614b21565b82525050565b60006144818285614061565b915061448d8284614061565b91508190509392505050565b60006020820190506144ae6000830184613fd1565b92915050565b60006080820190506144c96000830187613fd1565b6144d66020830186613fd1565b6144e36040830185614466565b81810360608301526144f58184613fef565b905095945050505050565b60006020820190506145156000830184613fe0565b92915050565b600060208201905081810360008301526145358184614028565b905092915050565b6000602082019050818103600083015261455681614092565b9050919050565b60006020820190508181036000830152614576816140b5565b9050919050565b60006020820190508181036000830152614596816140d8565b9050919050565b600060208201905081810360008301526145b6816140fb565b9050919050565b600060208201905081810360008301526145d68161411e565b9050919050565b600060208201905081810360008301526145f681614141565b9050919050565b6000602082019050818103600083015261461681614164565b9050919050565b6000602082019050818103600083015261463681614187565b9050919050565b60006020820190508181036000830152614656816141aa565b9050919050565b60006020820190508181036000830152614676816141cd565b9050919050565b60006020820190508181036000830152614696816141f0565b9050919050565b600060208201905081810360008301526146b681614213565b9050919050565b600060208201905081810360008301526146d681614236565b9050919050565b600060208201905081810360008301526146f681614259565b9050919050565b600060208201905081810360008301526147168161427c565b9050919050565b600060208201905081810360008301526147368161429f565b9050919050565b60006020820190508181036000830152614756816142c2565b9050919050565b60006020820190508181036000830152614776816142e5565b9050919050565b6000602082019050818103600083015261479681614308565b9050919050565b600060208201905081810360008301526147b68161432b565b9050919050565b600060208201905081810360008301526147d68161434e565b9050919050565b600060208201905081810360008301526147f681614371565b9050919050565b6000602082019050818103600083015261481681614394565b9050919050565b60006020820190508181036000830152614836816143b7565b9050919050565b60006020820190508181036000830152614856816143da565b9050919050565b60006020820190508181036000830152614876816143fd565b9050919050565b6000602082019050818103600083015261489681614420565b9050919050565b600060208201905081810360008301526148b681614443565b9050919050565b60006020820190506148d26000830184614466565b92915050565b60006148e26148f3565b90506148ee8282614b9f565b919050565b6000604051905090565b600067ffffffffffffffff82111561491857614917614d35565b5b61492182614d78565b9050602081019050919050565b600067ffffffffffffffff82111561494957614948614d35565b5b61495282614d78565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149ad82614b21565b91506149b883614b21565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149ed576149ec614c4a565b5b828201905092915050565b6000614a0382614b21565b9150614a0e83614b21565b925082614a1e57614a1d614c79565b5b828204905092915050565b6000614a3482614b21565b9150614a3f83614b21565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a7857614a77614c4a565b5b828202905092915050565b6000614a8e82614b21565b9150614a9983614b21565b925082821015614aac57614aab614c4a565b5b828203905092915050565b6000614ac282614b01565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b58578082015181840152602081019050614b3d565b83811115614b67576000848401525b50505050565b60006002820490506001821680614b8557607f821691505b60208210811415614b9957614b98614ca8565b5b50919050565b614ba882614d78565b810181811067ffffffffffffffff82111715614bc757614bc6614d35565b5b80604052505050565b6000614bdb82614b21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0e57614c0d614c4a565b5b600182019050919050565b6000614c2482614b21565b9150614c2f83614b21565b925082614c3f57614c3e614c79565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008201527f6563742e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f5072652073616c6520696e20696e616374697665000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4d696e756d756d206d696e7461626c6520616d6f756e7420697320696e76616c60008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520696e20696e61637469766500000000000000000000000000000000600082015250565b7f4d6178696d756d206d696e7461626c6520616d6f756e7420697320696e76616c60008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b6154ba81614ab7565b81146154c557600080fd5b50565b6154d181614ac9565b81146154dc57600080fd5b50565b6154e881614ad5565b81146154f357600080fd5b50565b6154ff81614b21565b811461550a57600080fd5b5056fea264697066735822122058a24bc4c9c5377393d2cb5f603b521e9aa8c6157de6348809a767402b8b3bca64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f7965657a2d6170692e65746865727965657a636c75622e636f6d2f6170692f76312f746f6b656e2f00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715018a611610190578063c87b56dd116100dc578063e5f4d77111610095578063eb8d24441161006f578063eb8d244414610adc578063ef4fb01614610b07578063f2fde38b14610b30578063f6d90a5f14610b59576102ff565b8063e5f4d77114610a5d578063e985e9c514610a74578063ea81808014610ab1576102ff565b8063c87b56dd1461094d578063ceb833ea1461098a578063d322b963146109b3578063d5abeb01146109de578063d75d0e0214610a09578063d8d04ec114610a34576102ff565b80639ecbc6ee11610149578063a22cb46511610123578063a22cb465146108bb578063aff5f815146108e4578063b88d4fde1461090d578063c721f08d14610936576102ff565b80639ecbc6ee1461083c5780639f9dc2ad14610865578063a18116f114610890576102ff565b8063715018a6146107735780637a7800c71461078a5780638456cb59146107b35780638da5cb5b146107ca57806395d89b41146107f557806397304ced14610820576102ff565b80633ccfd60b1161024f578063564c539c11610208578063616d0dfd116101e2578063616d0dfd146106b95780636352211e146106d057806366baeadc1461070d57806370a0823114610736576102ff565b8063564c539c1461063a5780635c975abb146106655780635d597c3514610690576102ff565b80633ccfd60b146105525780633f4ba83a146105695780633f879faf1461058057806342842e0e146105ab5780634f6ccce7146105d457806355f804b314610611576102ff565b8063095ea7b3116102bc5780631f0234d8116102965780631f0234d814610496578063203eb1c6146104c157806323b872dd146104ec5780632f745c5914610515576102ff565b8063095ea7b31461042b5780631307bb001461045457806318160ddd1461046b576102ff565b806301ffc9a71461030457806302b7f6711461034157806306fdde031461035d578063072de7f314610388578063081812fc146103c55780630845cc7214610402575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613e65565b610b82565b6040516103389190614500565b60405180910390f35b61035b60048036038101906103569190613f64565b610b94565b005b34801561036957600080fd5b50610372610d3d565b60405161037f919061451b565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613f64565b610dcf565b6040516103bc91906148bd565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e79190613f64565b610e11565b6040516103f99190614499565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613f64565b610e96565b005b34801561043757600080fd5b50610452600480360381019061044d9190613e25565b610f1c565b005b34801561046057600080fd5b50610469611034565b005b34801561047757600080fd5b506104806110cd565b60405161048d91906148bd565b60405180910390f35b3480156104a257600080fd5b506104ab6110de565b6040516104b89190614500565b60405180910390f35b3480156104cd57600080fd5b506104d66110f1565b6040516104e391906148bd565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613d0f565b6110f7565b005b34801561052157600080fd5b5061053c60048036038101906105379190613e25565b611157565b60405161054991906148bd565b60405180910390f35b34801561055e57600080fd5b506105676111fc565b005b34801561057557600080fd5b5061057e61130a565b005b34801561058c57600080fd5b50610595611390565b6040516105a291906148bd565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190613d0f565b611396565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190613f64565b6113b6565b60405161060891906148bd565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613ebf565b611427565b005b34801561064657600080fd5b5061064f6114bd565b60405161065c91906148bd565b60405180910390f35b34801561067157600080fd5b5061067a6114c3565b6040516106879190614500565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613f64565b6114da565b005b3480156106c557600080fd5b506106ce611560565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613f64565b6115f9565b6040516107049190614499565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613f08565b6116ab565b005b34801561074257600080fd5b5061075d60048036038101906107589190613ca2565b611763565b60405161076a91906148bd565b60405180910390f35b34801561077f57600080fd5b5061078861181b565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613ebf565b6118a3565b005b3480156107bf57600080fd5b506107c8611939565b005b3480156107d657600080fd5b506107df6119bf565b6040516107ec9190614499565b60405180910390f35b34801561080157600080fd5b5061080a6119e9565b604051610817919061451b565b60405180910390f35b61083a60048036038101906108359190613f64565b611a7b565b005b34801561084857600080fd5b50610863600480360381019061085e9190613f64565b611c09565b005b34801561087157600080fd5b5061087a611c8f565b60405161088791906148bd565b60405180910390f35b34801561089c57600080fd5b506108a5611c95565b6040516108b291906148bd565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613de5565b611c9b565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613f91565b611e1c565b005b34801561091957600080fd5b50610934600480360381019061092f9190613d62565b611f31565b005b34801561094257600080fd5b5061094b611f93565b005b34801561095957600080fd5b50610974600480360381019061096f9190613f64565b61202c565b604051610981919061451b565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190613f64565b61203e565b005b3480156109bf57600080fd5b506109c86120c4565b6040516109d591906148bd565b60405180910390f35b3480156109ea57600080fd5b506109f36120ca565b604051610a0091906148bd565b60405180910390f35b348015610a1557600080fd5b50610a1e6120d0565b604051610a2b91906148bd565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613f64565b6120d6565b005b348015610a6957600080fd5b50610a7261215c565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190613ccf565b6121f5565b604051610aa89190614500565b60405180910390f35b348015610abd57600080fd5b50610ac6612289565b604051610ad3919061451b565b60405180910390f35b348015610ae857600080fd5b50610af1612317565b604051610afe9190614500565b60405180910390f35b348015610b1357600080fd5b50610b2e6004803603810190610b299190613f64565b61232a565b005b348015610b3c57600080fd5b50610b576004803603810190610b529190613ca2565b6123b0565b005b348015610b6557600080fd5b50610b806004803603810190610b7b9190613f64565b6124a8565b005b6000610b8d8261267e565b9050919050565b600f60009054906101000a900460ff16610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906145bd565b60405180910390fd5b601554811015610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f9061477d565b60405180910390fd5b601654811115610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c649061489d565b60405180910390fd5b610c7f610c7982610dcf565b826126f8565b341015610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb89061455d565b60405180910390fd5b601654811415610cdc5760175481610cd991906149a2565b90505b601054610cf0610cea6110cd565b8361270e565b1115610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d289061471d565b60405180910390fd5b610d3a81612724565b50565b606060008054610d4c90614b6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7890614b6d565b8015610dc55780601f10610d9a57610100808354040283529160200191610dc5565b820191906000526020600020905b815481529060010190602001808311610da857829003601f168201915b5050505050905090565b600080601254905060155483118015610de9575060165483105b15610df8576013549050610e08565b6016548310610e075760145490505b5b80915050919050565b6000610e1c82612767565b610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e529061479d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e9e6127d3565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906147bd565b60405180910390fd5b8060138190555050565b6000610f27826115f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f9061481d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fb76127d3565b73ffffffffffffffffffffffffffffffffffffffff161480610fe65750610fe581610fe06127d3565b6121f5565b5b611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c906146bd565b60405180910390fd5b61102f83836127db565b505050565b61103c6127d3565b73ffffffffffffffffffffffffffffffffffffffff1661105a6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a7906147bd565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b60006110d9600d612544565b905090565b600f60009054906101000a900460ff1681565b60155481565b6111086111026127d3565b82612894565b611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e9061483d565b60405180910390fd5b611152838383612972565b505050565b600061116283611763565b82106111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061459d565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112046127d3565b73ffffffffffffffffffffffffffffffffffffffff166112226119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906147bd565b60405180910390fd5b600047116112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b29061457d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611306573d6000803e3d6000fd5b5050565b6113126127d3565b73ffffffffffffffffffffffffffffffffffffffff166113306119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906147bd565b60405180910390fd5b61138e612bce565b565b60165481565b6113b183838360405180602001604052806000815250611f31565b505050565b60006113c0612c70565b8210611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f89061485d565b60405180910390fd5b600a828154811061141557611414614d06565b5b90600052602060002001549050919050565b61142f6127d3565b73ffffffffffffffffffffffffffffffffffffffff1661144d6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a906147bd565b60405180910390fd5b80601990805190602001906114b9929190613ab6565b5050565b60145481565b6000600c60009054906101000a900460ff16905090565b6114e26127d3565b73ffffffffffffffffffffffffffffffffffffffff166115006119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906147bd565b60405180910390fd5b8060178190555050565b6115686127d3565b73ffffffffffffffffffffffffffffffffffffffff166115866119bf565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906147bd565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611699906146fd565b60405180910390fd5b80915050919050565b6116b36127d3565b73ffffffffffffffffffffffffffffffffffffffff166116d16119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906147bd565b60405180910390fd5b807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720783604051611757919061451b565b60405180910390a25050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb906146dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118236127d3565b73ffffffffffffffffffffffffffffffffffffffff166118416119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e906147bd565b60405180910390fd5b6118a16000612c7d565b565b6118ab6127d3565b73ffffffffffffffffffffffffffffffffffffffff166118c96119bf565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906147bd565b60405180910390fd5b8060189080519060200190611935929190613ab6565b5050565b6119416127d3565b73ffffffffffffffffffffffffffffffffffffffff1661195f6119bf565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac906147bd565b60405180910390fd5b6119bd612d43565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119f890614b6d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2490614b6d565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b5050505050905090565b601160009054906101000a900460ff16611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac19061487d565b60405180910390fd5b601554811015611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b069061477d565b60405180910390fd5b601654811115611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b9061489d565b60405180910390fd5b600e54611b68611b626110cd565b8361270e565b1115611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061471d565b60405180910390fd5b611bbb611bb582610dcf565b826126f8565b341015611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf49061455d565b60405180910390fd5b611c0681612724565b50565b611c116127d3565b73ffffffffffffffffffffffffffffffffffffffff16611c2f6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906147bd565b60405180910390fd5b8060158190555050565b60175481565b60105481565b611ca36127d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d089061465d565b60405180910390fd5b8060056000611d1e6127d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dcb6127d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e109190614500565b60405180910390a35050565b611e246127d3565b73ffffffffffffffffffffffffffffffffffffffff16611e426119bf565b73ffffffffffffffffffffffffffffffffffffffff1614611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f906147bd565b60405180910390fd5b600e54611eac611ea66110cd565b8461270e565b1115611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee49061471d565b60405180910390fd5b60005b82811015611f2c57611f02600d61252e565b6000611f0c6110cd565b9050611f188382612de6565b508080611f2490614bd0565b915050611ef0565b505050565b611f42611f3c6127d3565b83612894565b611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f789061483d565b60405180910390fd5b611f8d84848484612e04565b50505050565b611f9b6127d3565b73ffffffffffffffffffffffffffffffffffffffff16611fb96119bf565b73ffffffffffffffffffffffffffffffffffffffff161461200f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612006906147bd565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b606061203782612e60565b9050919050565b6120466127d3565b73ffffffffffffffffffffffffffffffffffffffff166120646119bf565b73ffffffffffffffffffffffffffffffffffffffff16146120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906147bd565b60405180910390fd5b8060108190555050565b60135481565b600e5481565b60125481565b6120de6127d3565b73ffffffffffffffffffffffffffffffffffffffff166120fc6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612149906147bd565b60405180910390fd5b8060128190555050565b6121646127d3565b73ffffffffffffffffffffffffffffffffffffffff166121826119bf565b73ffffffffffffffffffffffffffffffffffffffff16146121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf906147bd565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6018805461229690614b6d565b80601f01602080910402602001604051908101604052809291908181526020018280546122c290614b6d565b801561230f5780601f106122e45761010080835404028352916020019161230f565b820191906000526020600020905b8154815290600101906020018083116122f257829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b6123326127d3565b73ffffffffffffffffffffffffffffffffffffffff166123506119bf565b73ffffffffffffffffffffffffffffffffffffffff16146123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d906147bd565b60405180910390fd5b8060168190555050565b6123b86127d3565b73ffffffffffffffffffffffffffffffffffffffff166123d66119bf565b73ffffffffffffffffffffffffffffffffffffffff161461242c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612423906147bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561249c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612493906145fd565b60405180910390fd5b6124a581612c7d565b50565b6124b06127d3565b73ffffffffffffffffffffffffffffffffffffffff166124ce6119bf565b73ffffffffffffffffffffffffffffffffffffffff1614612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b906147bd565b60405180910390fd5b8060148190555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b612570838383612679565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b3576125ae81612fb2565b6125f2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125f1576125f08382612ffb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126355761263081613168565b612674565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612673576126728282613239565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126f157506126f0826132b8565b5b9050919050565b600081836127069190614a29565b905092915050565b6000818361271c91906149a2565b905092915050565b60005b8181101561276357612739600d61252e565b60006127436110cd565b905061274f3382612de6565b50808061275b90614bd0565b915050612727565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661284e836115f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061289f82612767565b6128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d59061467d565b60405180910390fd5b60006128e9836115f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061295857508373ffffffffffffffffffffffffffffffffffffffff1661294084610e11565b73ffffffffffffffffffffffffffffffffffffffff16145b80612969575061296881856121f5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612992826115f9565b73ffffffffffffffffffffffffffffffffffffffff16146129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df906147dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f9061463d565b60405180910390fd5b612a6383838361339a565b612a6e6000826127db565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612abe9190614a83565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1591906149a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612bd66114c3565b612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c9061453d565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c596127d3565b604051612c669190614499565b60405180910390a1565b6000600a80549050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d4b6114c3565b15612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d829061469d565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612dcf6127d3565b604051612ddc9190614499565b60405180910390a1565b612e008282604051806020016040528060008152506133f2565b5050565b612e0f848484612972565b612e1b8484848461344d565b612e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e51906145dd565b60405180910390fd5b50505050565b6060612e6b82612767565b612eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea19061475d565b60405180910390fd5b6000600760008481526020019081526020016000208054612eca90614b6d565b80601f0160208091040260200160405190810160405280929190818152602001828054612ef690614b6d565b8015612f435780601f10612f1857610100808354040283529160200191612f43565b820191906000526020600020905b815481529060010190602001808311612f2657829003601f168201915b505050505090506000612f546135e4565b9050600081511415612f6a578192505050612fad565b600082511115612f9f578082604051602001612f87929190614475565b60405160208183030381529060405292505050612fad565b612fa884613676565b925050505b919050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161300884611763565b6130129190614a83565b90506000600960008481526020019081526020016000205490508181146130f7576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061317c9190614a83565b90506000600b60008481526020019081526020016000205490506000600a83815481106131ac576131ab614d06565b5b9060005260206000200154905080600a83815481106131ce576131cd614d06565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061321d5761321c614cd7565b5b6001900381819060005260206000200160009055905550505050565b600061324483611763565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061338357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061339357506133928261371d565b5b9050919050565b6133a26114c3565b156133e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d99061469d565b60405180910390fd5b6133ed838383612565565b505050565b6133fc8383613787565b613409600084848461344d565b613448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343f906145dd565b60405180910390fd5b505050565b600061346e8473ffffffffffffffffffffffffffffffffffffffff16612552565b156135d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134976127d3565b8786866040518563ffffffff1660e01b81526004016134b994939291906144b4565b602060405180830381600087803b1580156134d357600080fd5b505af192505050801561350457506040513d601f19601f820116820180604052508101906135019190613e92565b60015b613587573d8060008114613534576040519150601f19603f3d011682016040523d82523d6000602084013e613539565b606091505b5060008151141561357f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613576906145dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135dc565b600190505b949350505050565b6060601980546135f390614b6d565b80601f016020809104026020016040519081016040528092919081815260200182805461361f90614b6d565b801561366c5780601f106136415761010080835404028352916020019161366c565b820191906000526020600020905b81548152906001019060200180831161364f57829003601f168201915b5050505050905090565b606061368182612767565b6136c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136b7906147fd565b60405180910390fd5b60006136ca6135e4565b905060008151116136ea5760405180602001604052806000815250613715565b806136f484613955565b604051602001613705929190614475565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ee9061473d565b60405180910390fd5b61380081612767565b15613840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138379061461d565b60405180910390fd5b61384c6000838361339a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461389c91906149a2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060600082141561399d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613ab1565b600082905060005b600082146139cf5780806139b890614bd0565b915050600a826139c891906149f8565b91506139a5565b60008167ffffffffffffffff8111156139eb576139ea614d35565b5b6040519080825280601f01601f191660200182016040528015613a1d5781602001600182028036833780820191505090505b5090505b60008514613aaa57600182613a369190614a83565b9150600a85613a459190614c19565b6030613a5191906149a2565b60f81b818381518110613a6757613a66614d06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613aa391906149f8565b9450613a21565b8093505050505b919050565b828054613ac290614b6d565b90600052602060002090601f016020900481019282613ae45760008555613b2b565b82601f10613afd57805160ff1916838001178555613b2b565b82800160010185558215613b2b579182015b82811115613b2a578251825591602001919060010190613b0f565b5b509050613b389190613b3c565b5090565b5b80821115613b55576000816000905550600101613b3d565b5090565b6000613b6c613b67846148fd565b6148d8565b905082815260208101848484011115613b8857613b87614d69565b5b613b93848285614b2b565b509392505050565b6000613bae613ba98461492e565b6148d8565b905082815260208101848484011115613bca57613bc9614d69565b5b613bd5848285614b2b565b509392505050565b600081359050613bec816154b1565b92915050565b600081359050613c01816154c8565b92915050565b600081359050613c16816154df565b92915050565b600081519050613c2b816154df565b92915050565b600082601f830112613c4657613c45614d64565b5b8135613c56848260208601613b59565b91505092915050565b600082601f830112613c7457613c73614d64565b5b8135613c84848260208601613b9b565b91505092915050565b600081359050613c9c816154f6565b92915050565b600060208284031215613cb857613cb7614d73565b5b6000613cc684828501613bdd565b91505092915050565b60008060408385031215613ce657613ce5614d73565b5b6000613cf485828601613bdd565b9250506020613d0585828601613bdd565b9150509250929050565b600080600060608486031215613d2857613d27614d73565b5b6000613d3686828701613bdd565b9350506020613d4786828701613bdd565b9250506040613d5886828701613c8d565b9150509250925092565b60008060008060808587031215613d7c57613d7b614d73565b5b6000613d8a87828801613bdd565b9450506020613d9b87828801613bdd565b9350506040613dac87828801613c8d565b925050606085013567ffffffffffffffff811115613dcd57613dcc614d6e565b5b613dd987828801613c31565b91505092959194509250565b60008060408385031215613dfc57613dfb614d73565b5b6000613e0a85828601613bdd565b9250506020613e1b85828601613bf2565b9150509250929050565b60008060408385031215613e3c57613e3b614d73565b5b6000613e4a85828601613bdd565b9250506020613e5b85828601613c8d565b9150509250929050565b600060208284031215613e7b57613e7a614d73565b5b6000613e8984828501613c07565b91505092915050565b600060208284031215613ea857613ea7614d73565b5b6000613eb684828501613c1c565b91505092915050565b600060208284031215613ed557613ed4614d73565b5b600082013567ffffffffffffffff811115613ef357613ef2614d6e565b5b613eff84828501613c5f565b91505092915050565b60008060408385031215613f1f57613f1e614d73565b5b600083013567ffffffffffffffff811115613f3d57613f3c614d6e565b5b613f4985828601613c5f565b9250506020613f5a85828601613c8d565b9150509250929050565b600060208284031215613f7a57613f79614d73565b5b6000613f8884828501613c8d565b91505092915050565b60008060408385031215613fa857613fa7614d73565b5b6000613fb685828601613c8d565b9250506020613fc785828601613bdd565b9150509250929050565b613fda81614ab7565b82525050565b613fe981614ac9565b82525050565b6000613ffa8261495f565b6140048185614975565b9350614014818560208601614b3a565b61401d81614d78565b840191505092915050565b60006140338261496a565b61403d8185614986565b935061404d818560208601614b3a565b61405681614d78565b840191505092915050565b600061406c8261496a565b6140768185614997565b9350614086818560208601614b3a565b80840191505092915050565b600061409f601483614986565b91506140aa82614d89565b602082019050919050565b60006140c2602483614986565b91506140cd82614db2565b604082019050919050565b60006140e5601383614986565b91506140f082614e01565b602082019050919050565b6000614108602b83614986565b915061411382614e2a565b604082019050919050565b600061412b601483614986565b915061413682614e79565b602082019050919050565b600061414e603283614986565b915061415982614ea2565b604082019050919050565b6000614171602683614986565b915061417c82614ef1565b604082019050919050565b6000614194601c83614986565b915061419f82614f40565b602082019050919050565b60006141b7602483614986565b91506141c282614f69565b604082019050919050565b60006141da601983614986565b91506141e582614fb8565b602082019050919050565b60006141fd602c83614986565b915061420882614fe1565b604082019050919050565b6000614220601083614986565b915061422b82615030565b602082019050919050565b6000614243603883614986565b915061424e82615059565b604082019050919050565b6000614266602a83614986565b9150614271826150a8565b604082019050919050565b6000614289602983614986565b9150614294826150f7565b604082019050919050565b60006142ac601683614986565b91506142b782615146565b602082019050919050565b60006142cf602083614986565b91506142da8261516f565b602082019050919050565b60006142f2603183614986565b91506142fd82615198565b604082019050919050565b6000614315602283614986565b9150614320826151e7565b604082019050919050565b6000614338602c83614986565b915061434382615236565b604082019050919050565b600061435b602083614986565b915061436682615285565b602082019050919050565b600061437e602983614986565b9150614389826152ae565b604082019050919050565b60006143a1602f83614986565b91506143ac826152fd565b604082019050919050565b60006143c4602183614986565b91506143cf8261534c565b604082019050919050565b60006143e7603183614986565b91506143f28261539b565b604082019050919050565b600061440a602c83614986565b9150614415826153ea565b604082019050919050565b600061442d601083614986565b915061443882615439565b602082019050919050565b6000614450602283614986565b915061445b82615462565b604082019050919050565b61446f81614b21565b82525050565b60006144818285614061565b915061448d8284614061565b91508190509392505050565b60006020820190506144ae6000830184613fd1565b92915050565b60006080820190506144c96000830187613fd1565b6144d66020830186613fd1565b6144e36040830185614466565b81810360608301526144f58184613fef565b905095945050505050565b60006020820190506145156000830184613fe0565b92915050565b600060208201905081810360008301526145358184614028565b905092915050565b6000602082019050818103600083015261455681614092565b9050919050565b60006020820190508181036000830152614576816140b5565b9050919050565b60006020820190508181036000830152614596816140d8565b9050919050565b600060208201905081810360008301526145b6816140fb565b9050919050565b600060208201905081810360008301526145d68161411e565b9050919050565b600060208201905081810360008301526145f681614141565b9050919050565b6000602082019050818103600083015261461681614164565b9050919050565b6000602082019050818103600083015261463681614187565b9050919050565b60006020820190508181036000830152614656816141aa565b9050919050565b60006020820190508181036000830152614676816141cd565b9050919050565b60006020820190508181036000830152614696816141f0565b9050919050565b600060208201905081810360008301526146b681614213565b9050919050565b600060208201905081810360008301526146d681614236565b9050919050565b600060208201905081810360008301526146f681614259565b9050919050565b600060208201905081810360008301526147168161427c565b9050919050565b600060208201905081810360008301526147368161429f565b9050919050565b60006020820190508181036000830152614756816142c2565b9050919050565b60006020820190508181036000830152614776816142e5565b9050919050565b6000602082019050818103600083015261479681614308565b9050919050565b600060208201905081810360008301526147b68161432b565b9050919050565b600060208201905081810360008301526147d68161434e565b9050919050565b600060208201905081810360008301526147f681614371565b9050919050565b6000602082019050818103600083015261481681614394565b9050919050565b60006020820190508181036000830152614836816143b7565b9050919050565b60006020820190508181036000830152614856816143da565b9050919050565b60006020820190508181036000830152614876816143fd565b9050919050565b6000602082019050818103600083015261489681614420565b9050919050565b600060208201905081810360008301526148b681614443565b9050919050565b60006020820190506148d26000830184614466565b92915050565b60006148e26148f3565b90506148ee8282614b9f565b919050565b6000604051905090565b600067ffffffffffffffff82111561491857614917614d35565b5b61492182614d78565b9050602081019050919050565b600067ffffffffffffffff82111561494957614948614d35565b5b61495282614d78565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149ad82614b21565b91506149b883614b21565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149ed576149ec614c4a565b5b828201905092915050565b6000614a0382614b21565b9150614a0e83614b21565b925082614a1e57614a1d614c79565b5b828204905092915050565b6000614a3482614b21565b9150614a3f83614b21565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a7857614a77614c4a565b5b828202905092915050565b6000614a8e82614b21565b9150614a9983614b21565b925082821015614aac57614aab614c4a565b5b828203905092915050565b6000614ac282614b01565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b58578082015181840152602081019050614b3d565b83811115614b67576000848401525b50505050565b60006002820490506001821680614b8557607f821691505b60208210811415614b9957614b98614ca8565b5b50919050565b614ba882614d78565b810181811067ffffffffffffffff82111715614bc757614bc6614d35565b5b80604052505050565b6000614bdb82614b21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0e57614c0d614c4a565b5b600182019050919050565b6000614c2482614b21565b9150614c2f83614b21565b925082614c3f57614c3e614c79565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008201527f6563742e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f5072652073616c6520696e20696e616374697665000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4d696e756d756d206d696e7461626c6520616d6f756e7420697320696e76616c60008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520696e20696e61637469766500000000000000000000000000000000600082015250565b7f4d6178696d756d206d696e7461626c6520616d6f756e7420697320696e76616c60008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b6154ba81614ab7565b81146154c557600080fd5b50565b6154d181614ac9565b81146154dc57600080fd5b50565b6154e881614ad5565b81146154f357600080fd5b50565b6154ff81614b21565b811461550a57600080fd5b5056fea264697066735822122058a24bc4c9c5377393d2cb5f603b521e9aa8c6157de6348809a767402b8b3bca64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f7965657a2d6170692e65746865727965657a636c75622e636f6d2f6170692f76312f746f6b656e2f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _metaBaseURL (string): https://yeez-api.etheryeezclub.com/api/v1/token/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [2] : 68747470733a2f2f7965657a2d6170692e65746865727965657a636c75622e63
Arg [3] : 6f6d2f6170692f76312f746f6b656e2f00000000000000000000000000000000


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.