ETH Price: $3,391.67 (-1.62%)
Gas: 6 Gwei

Token

DOGE DASH (DOGEDASH)
 

Overview

Max Total Supply

4,120 DOGEDASH

Holders

1,555

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DOGEDASH
0x2cBfB6E19Ec316c46aE2A777C8fFFE91BdCD334E
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:
DogeDash

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : DogeDash.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/*

                      ..                 -=+-         .-=++++=   
                    =++++++=-:.      -==+++*====+. .=+++++++++=  
                   -+++++++++++++=-.=+++++++++*+--++++++++++++*  
                   =++++**+++++++++++++++++++++++*+++++++***+++: 
                   =+++*=--=++++++++++++++++++++++++++++=--+*++- 
                   -++++....:=*++++++++++++++++++++++++:. .-+++- 
                   .+++*:...=*+++++++++++++++++++++*###*-..=+++- 
                    +++++:-*+++++++*%@@@%#+++++++%@+---*%*+*+++: 
                    -+++***+++++++%%=:..:+@#++++#*....   ##++++. 
                     ++++*+++++++##   .:..:##+++%-*#.-+.  %++++  
                     -+++====++++@.  :+%+*@=%+++#-@@@@@-  +.:+:  
       .              =+:   .:=++%   -#@@@@**+-=*=*@@@@-  -  :.  
   .:.....:.::        .-        :+:  :+@@@@=+:  .--=-+-  .    .  
  :-..       ..-:                 -.  .-.+-:.      .           . 
 .=-:.           ::                ..          -+##*+           . 
 =--:.     .      -.                           .=*#+:           .
 =--:..::=:-:.... .-                        ..       ..      ..  
 =-::==+++++++-.-.-:    ....                  ..    .      ..    
 :=++**++++++++--.         .::::...                    ..:.      
  -******+++++++++-:.:-==+++=+=-::::::::.......    ..::.         
   :+********+++++++++++=++++++**++==--------::::::-=            
     :+*********+++++========+++********+==----::::::.           
          :-=+*****++++==========++++**=-::::............          
                ++++++++=========++++::....                      
               :++++++++++=======++++=..                         
               -++++++++++*=====+++++=.                 .        
               +++++++++++*+++++*++++==                 ..       
            .-+++++++++++++*+++#**++++=-               ..        
            ***+++++++++++++::-***++++++             :- .        
            ****++++++++++*+-:-***+++++*.        .:-++           
            +*****++++++++#***+#**++++++=----===++++++-          
            :******+*==-. =****#***+++++*.   ++++++++++.         
             ==--::..-     **+++#+++++==+=    +*+++++++=         
              :.     -     .+...:=::..  ..:    ==--::..:         
               .:   .-      .-    --.    .-     .:     :         
                 ....         ::::. ::::::        ......   


Doge Dash NFTS are 10,000 unique, cute, fun pieces of art, each with a distinct personality
and style. Holders will be able to play as their NFT in the Doge Dash Play-To-Earn Game just 
by holding it in their wallets. A lucky few will also be granted special abilities such as 
extra lives, super jump, and even double rewards.

*/
                                       
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract DogeDash is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string private _tokenBaseURI;

    uint256 public giftedSupply = 100;
    uint256 public preSaleSupply = 1000;
    uint256 public publicSupply = 8900;
    uint256 public collectionSupply = giftedSupply + preSaleSupply + publicSupply;
    uint256 public price = 0.07 ether;
    uint256 public maxMint = 20;
    uint256 public publicAmountMinted;
    uint256 public privateAmountMinted;
    uint256 public preSaleMaxMint = 3;

    bool public presaleLive;
    bool public saleLive;
    bool public locked;

    address public wallet1 = 0x7eA92fcA35aC6DAe33a693726779fEdAA85Ba96a;
    address public wallet2 = 0xfe5D07eCCB883532206224C72D36A9b9BFC8C89c;

    mapping(address => bool) public presalerList;
    mapping(address => uint256) public presalerListPurchases;

    constructor() ERC721("DOGE DASH", "DOGEDASH") { }
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    
    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!presalerList[entry], "DUPLICATE_ENTRY");

            presalerList[entry] = true;
        }   
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            
            presalerList[entry] = false;
        }
    }
    
    function buy(uint256 tokenQuantity) external payable {
        require(saleLive, "sale closed");
        require(!presaleLive, "disable presale");
        require(totalSupply() < collectionSupply, "collection sold out");
        require(publicAmountMinted + tokenQuantity <= publicSupply, "exceeded public supply");
        require(tokenQuantity <= maxMint, "exceeded max limit per mint");
        require(price * tokenQuantity <= msg.value, "insufficient eth");
        for(uint256 i = 0; i < tokenQuantity; i++) {
            publicAmountMinted++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }
    
    function presaleBuy(uint256 tokenQuantity) external payable {
        require(!saleLive && presaleLive, "presale closed");
        require(presalerList[msg.sender], "address not in presale");
        require(totalSupply() < collectionSupply, "collection sold out");
        require(privateAmountMinted + tokenQuantity <= preSaleSupply, "exceeded presale supply");
        require(presalerListPurchases[msg.sender] + tokenQuantity <= preSaleMaxMint, "exceeded presale mint allocation");
        require(price * tokenQuantity <= msg.value, "insufficient eth");
        
        for (uint256 i = 0; i < tokenQuantity; i++) {
            privateAmountMinted++;
            presalerListPurchases[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }
    
    function gift() external onlyOwner {
        require(totalSupply() + giftedSupply <= collectionSupply, "MAX_MINT");
        
        for (uint256 i = 0; i < giftedSupply; i++) {
            _safeMint(wallet2, totalSupply() + 1);
        }
    } 

    function withdraw() external onlyOwner {
        (bool success1,) = wallet1.call{value : (address(this).balance)*10/100}("");
        (bool success2,) = wallet2.call{value : (address(this).balance)}("");
        require(success1, "Transfer failed.");
        require(success2, "Transfer failed.");
    }
    
    function isPresaler(address addr) external view returns (bool) {
        return presalerList[addr];
    }
    
    function presalePurchasedCount(address addr) external view returns (uint256) {
        return presalerListPurchases[addr];
    }
    
    function togglePresaleStatus() external onlyOwner {
        presaleLive = !presaleLive;
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","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":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"collectionSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"preSaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","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":"saleLive","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":"wallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600c556103e8600d556122c4600e55600e54600d54600c546200002a91906200034a565b6200003691906200034a565b600f5566f8b0a10e47000060105560146011556003601455737ea92fca35ac6dae33a693726779fedaa85ba96a601560036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fe5d07eccb883532206224c72d36a9b9bfc8c89c601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010557600080fd5b506040518060400160405280600981526020017f444f4745204441534800000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f444f47454441534800000000000000000000000000000000000000000000000081525081600090805190602001906200018a9291906200029a565b508060019080519060200190620001a39291906200029a565b505050620001c6620001ba620001cc60201b60201c565b620001d460201b60201c565b62000445565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a890620003b1565b90600052602060002090601f016020900481019282620002cc576000855562000318565b82601f10620002e757805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000317578251825591602001919060010190620002fa565b5b5090506200032791906200032b565b5090565b5b80821115620003465760008160009055506001016200032c565b5090565b60006200035782620003a7565b91506200036483620003a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200039c576200039b620003e7565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003ca57607f821691505b60208210811415620003e157620003e062000416565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61529080620004556000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f5780639cf2e8d6116100c1578063c87b56dd1161007a578063c87b56dd1461096b578063cf309012146109a8578063d96a094a146109d3578063e081b781146109ef578063e985e9c514610a1a578063f2fde38b14610a575761027d565b80639cf2e8d61461084b5780639e273b2f14610888578063a035b1fe146108c5578063a22cb465146108f0578063b179e06014610919578063b88d4fde146109425761027d565b806383a9e0491161011357806383a9e0491461073757806383e89f19146107625780638da5cb5b1461078d578063940f1ada146107b857806395d89b41146107e35780639bf803161461080e5761027d565b8063715018a6146106995780637204a3c9146106b05780637501f741146106d95780637bffb4ce14610704578063815f7bbd1461071b5761027d565b80632e055bcc116101f357806359a12ad5116101ac57806359a12ad5146105615780635ce7af1f1461058c5780635e84d723146105c95780636352211e146105f45780636ab920861461063157806370a082311461065c5761027d565b80632e055bcc146104535780632f745c591461047e5780633ccfd60b146104bb57806342842e0e146104d25780634f6ccce7146104fb57806355f804b3146105385761027d565b80630b8d0a28116102455780630b8d0a2814610367578063171e9ede1461039257806318160ddd146103bd5780631a026c96146103e857806323b872dd1461041357806324b049051461043c5761027d565b806301ffc9a714610282578063049c5c49146102bf57806306fdde03146102d6578063081812fc14610301578063095ea7b31461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a13565b610a80565b6040516102b6919061417c565b60405180910390f35b3480156102cb57600080fd5b506102d4610afa565b005b3480156102e257600080fd5b506102eb610ba2565b6040516102f89190614197565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613aba565b610c34565b6040516103359190614115565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613986565b610cb9565b005b34801561037357600080fd5b5061037c610dd1565b6040516103899190614115565b60405180910390f35b34801561039e57600080fd5b506103a7610df7565b6040516103b491906145d9565b60405180910390f35b3480156103c957600080fd5b506103d2610dfd565b6040516103df91906145d9565b60405180910390f35b3480156103f457600080fd5b506103fd610e0a565b60405161040a9190614115565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613870565b610e30565b005b34801561044857600080fd5b50610451610e90565b005b34801561045f57600080fd5b50610468610fc7565b60405161047591906145d9565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613986565b610fcd565b6040516104b291906145d9565b60405180910390f35b3480156104c757600080fd5b506104d0611072565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613870565b6112a6565b005b34801561050757600080fd5b50610522600480360381019061051d9190613aba565b6112c6565b60405161052f91906145d9565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613a6d565b611337565b005b34801561056d57600080fd5b50610576611419565b60405161058391906145d9565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613803565b61141f565b6040516105c091906145d9565b60405180910390f35b3480156105d557600080fd5b506105de611468565b6040516105eb91906145d9565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613aba565b61146e565b6040516106289190614115565b60405180910390f35b34801561063d57600080fd5b50610646611520565b60405161065391906145d9565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613803565b611526565b60405161069091906145d9565b60405180910390f35b3480156106a557600080fd5b506106ae6115de565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906139c6565b611666565b005b3480156106e557600080fd5b506106ee61188a565b6040516106fb91906145d9565b60405180910390f35b34801561071057600080fd5b50610719611890565b005b61073560048036038101906107309190613aba565b611938565b005b34801561074357600080fd5b5061074c611c54565b604051610759919061417c565b60405180910390f35b34801561076e57600080fd5b50610777611c67565b60405161078491906145d9565b60405180910390f35b34801561079957600080fd5b506107a2611c6d565b6040516107af9190614115565b60405180910390f35b3480156107c457600080fd5b506107cd611c97565b6040516107da91906145d9565b60405180910390f35b3480156107ef57600080fd5b506107f8611c9d565b6040516108059190614197565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190613803565b611d2f565b60405161084291906145d9565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190613803565b611d47565b60405161087f919061417c565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613803565b611d67565b6040516108bc919061417c565b60405180910390f35b3480156108d157600080fd5b506108da611dbd565b6040516108e791906145d9565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613946565b611dc3565b005b34801561092557600080fd5b50610940600480360381019061093b91906139c6565b611dd9565b005b34801561094e57600080fd5b50610969600480360381019061096491906138c3565b611f70565b005b34801561097757600080fd5b50610992600480360381019061098d9190613aba565b611fd2565b60405161099f9190614197565b60405180910390f35b3480156109b457600080fd5b506109bd61204e565b6040516109ca919061417c565b60405180910390f35b6109ed60048036038101906109e89190613aba565b612061565b005b3480156109fb57600080fd5b50610a04612289565b604051610a11919061417c565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c9190613830565b61229c565b604051610a4e919061417c565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613803565b612330565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af35750610af282612428565b5b9050919050565b610b0261250a565b73ffffffffffffffffffffffffffffffffffffffff16610b20611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614499565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b606060008054610bb190614878565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdd90614878565b8015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b5050505050905090565b6000610c3f82612512565b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590614479565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc48261146e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90614539565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5461250a565b73ffffffffffffffffffffffffffffffffffffffff161480610d835750610d8281610d7d61250a565b61229c565b5b610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db9906143b9565b60405180910390fd5b610dcc838361257e565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600880549050905090565b601560039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e41610e3b61250a565b82612637565b610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790614599565b60405180910390fd5b610e8b838383612715565b505050565b610e9861250a565b73ffffffffffffffffffffffffffffffffffffffff16610eb6611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390614499565b60405180910390fd5b600f54600c54610f1a610dfd565b610f2491906146ad565b1115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90614419565b60405180910390fd5b60005b600c54811015610fc457610fb1601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610fa2610dfd565b610fac91906146ad565b612971565b8080610fbc906148db565b915050610f68565b50565b600d5481565b6000610fd883611526565b8210611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906141d9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61107a61250a565b73ffffffffffffffffffffffffffffffffffffffff16611098611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614499565b60405180910390fd5b6000601560039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476111389190614734565b6111429190614703565b60405161114e90614100565b60006040518083038185875af1925050503d806000811461118b576040519150601f19603f3d011682016040523d82523d6000602084013e611190565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516111dc90614100565b60006040518083038185875af1925050503d8060008114611219576040519150601f19603f3d011682016040523d82523d6000602084013e61121e565b606091505b5050905081611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990614579565b60405180910390fd5b806112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614579565b60405180910390fd5b5050565b6112c183838360405180602001604052806000815250611f70565b505050565b60006112d0610dfd565b8210611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906145b9565b60405180910390fd5b6008828154811061132557611324614a11565b5b90600052602060002001549050919050565b61133f61250a565b73ffffffffffffffffffffffffffffffffffffffff1661135d611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90614499565b60405180910390fd5b601560029054906101000a900460ff1615611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906144f9565b60405180910390fd5b8181600b91906114149291906135db565b505050565b60135481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906143f9565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e906143d9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115e661250a565b73ffffffffffffffffffffffffffffffffffffffff16611604611c6d565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614499565b60405180910390fd5b611664600061298f565b565b61166e61250a565b73ffffffffffffffffffffffffffffffffffffffff1661168c611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990614499565b60405180910390fd5b60005b8282905081101561188557600083838381811061170557611704614a11565b5b905060200201602081019061171a9190613803565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906141b9565b60405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090614359565b60405180910390fd5b6001601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061187d906148db565b9150506116e5565b505050565b60115481565b61189861250a565b73ffffffffffffffffffffffffffffffffffffffff166118b6611c6d565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614499565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b601560019054906101000a900460ff161580156119615750601560009054906101000a900460ff165b6119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790614259565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614459565b60405180910390fd5b600f54611a37610dfd565b10611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90614319565b60405180910390fd5b600d5481601354611a8891906146ad565b1115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac0906144d9565b60405180910390fd5b60145481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1791906146ad565b1115611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906142f9565b60405180910390fd5b3481601054611b679190614734565b1115611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90614379565b60405180910390fd5b60005b81811015611c505760136000815480929190611bc6906148db565b9190505550601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c1b906148db565b9190505550611c3d336001611c2e610dfd565b611c3891906146ad565b612971565b8080611c48906148db565b915050611bab565b5050565b601560009054906101000a900460ff1681565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b606060018054611cac90614878565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd890614878565b8015611d255780601f10611cfa57610100808354040283529160200191611d25565b820191906000526020600020905b815481529060010190602001808311611d0857829003601f168201915b5050505050905090565b60186020528060005260406000206000915090505481565b60176020528060005260406000206000915054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b611dd5611dce61250a565b8383612a55565b5050565b611de161250a565b73ffffffffffffffffffffffffffffffffffffffff16611dff611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90614499565b60405180910390fd5b60005b82829050811015611f6b576000838383818110611e7857611e77614a11565b5b9050602002016020810190611e8d9190613803565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906141b9565b60405180910390fd5b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611f63906148db565b915050611e58565b505050565b611f81611f7b61250a565b83612637565b611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614599565b60405180910390fd5b611fcc84848484612bc2565b50505050565b6060611fdd82612512565b61201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390614519565b60405180910390fd5b600b61202783612c1e565b6040516020016120389291906140dc565b6040516020818303038152906040529050919050565b601560029054906101000a900460ff1681565b601560019054906101000a900460ff166120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790614279565b60405180910390fd5b601560009054906101000a900460ff1615612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790614559565b60405180910390fd5b600f5461210b610dfd565b1061214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290614319565b60405180910390fd5b600e548160125461215c91906146ad565b111561219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219490614299565b60405180910390fd5b6011548111156121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990614399565b60405180910390fd5b34816010546121f19190614734565b1115612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990614379565b60405180910390fd5b60005b818110156122855760126000815480929190612250906148db565b9190505550612272336001612263610dfd565b61226d91906146ad565b612971565b808061227d906148db565b915050612235565b5050565b601560019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61233861250a565b73ffffffffffffffffffffffffffffffffffffffff16612356611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a390614499565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390614219565b60405180910390fd5b6124258161298f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612503575061250282612d7f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f18361146e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264282612512565b612681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267890614339565b60405180910390fd5b600061268c8361146e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126fb57508373ffffffffffffffffffffffffffffffffffffffff166126e384610c34565b73ffffffffffffffffffffffffffffffffffffffff16145b8061270c575061270b818561229c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127358261146e565b73ffffffffffffffffffffffffffffffffffffffff161461278b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612782906144b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f2906142b9565b60405180910390fd5b612806838383612de9565b61281160008261257e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612861919061478e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b891906146ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61298b828260405180602001604052806000815250612efd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb906142d9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb5919061417c565b60405180910390a3505050565b612bcd848484612715565b612bd984848484612f58565b612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f906141f9565b60405180910390fd5b50505050565b60606000821415612c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7a565b600082905060005b60008214612c98578080612c81906148db565b915050600a82612c919190614703565b9150612c6e565b60008167ffffffffffffffff811115612cb457612cb3614a40565b5b6040519080825280601f01601f191660200182016040528015612ce65781602001600182028036833780820191505090505b5090505b60008514612d7357600182612cff919061478e565b9150600a85612d0e9190614924565b6030612d1a91906146ad565b60f81b818381518110612d3057612d2f614a11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6c9190614703565b9450612cea565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612df48383836130ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e3757612e32816130f4565b612e76565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e7557612e74838261313d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eb957612eb4816132aa565b612ef8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ef757612ef6828261337b565b5b5b505050565b612f0783836133fa565b612f146000848484612f58565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a906141f9565b60405180910390fd5b505050565b6000612f798473ffffffffffffffffffffffffffffffffffffffff166135c8565b156130e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa261250a565b8786866040518563ffffffff1660e01b8152600401612fc49493929190614130565b602060405180830381600087803b158015612fde57600080fd5b505af192505050801561300f57506040513d601f19601f8201168201806040525081019061300c9190613a40565b60015b613092573d806000811461303f576040519150601f19603f3d011682016040523d82523d6000602084013e613044565b606091505b5060008151141561308a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613081906141f9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161314a84611526565b613154919061478e565b9050600060076000848152602001908152602001600020549050818114613239576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132be919061478e565b90506000600960008481526020019081526020016000205490506000600883815481106132ee576132ed614a11565b5b9060005260206000200154905080600883815481106133105761330f614a11565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061335f5761335e6149e2565b5b6001900381819060005260206000200160009055905550505050565b600061338683611526565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561346a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346190614439565b60405180910390fd5b61347381612512565b156134b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134aa90614239565b60405180910390fd5b6134bf60008383612de9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461350f91906146ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546135e790614878565b90600052602060002090601f0160209004810192826136095760008555613650565b82601f1061362257803560ff1916838001178555613650565b82800160010185558215613650579182015b8281111561364f578235825591602001919060010190613634565b5b50905061365d9190613661565b5090565b5b8082111561367a576000816000905550600101613662565b5090565b600061369161368c84614619565b6145f4565b9050828152602081018484840111156136ad576136ac614a7e565b5b6136b8848285614836565b509392505050565b6000813590506136cf816151fe565b92915050565b60008083601f8401126136eb576136ea614a74565b5b8235905067ffffffffffffffff81111561370857613707614a6f565b5b60208301915083602082028301111561372457613723614a79565b5b9250929050565b60008135905061373a81615215565b92915050565b60008135905061374f8161522c565b92915050565b6000815190506137648161522c565b92915050565b600082601f83011261377f5761377e614a74565b5b813561378f84826020860161367e565b91505092915050565b60008083601f8401126137ae576137ad614a74565b5b8235905067ffffffffffffffff8111156137cb576137ca614a6f565b5b6020830191508360018202830111156137e7576137e6614a79565b5b9250929050565b6000813590506137fd81615243565b92915050565b60006020828403121561381957613818614a88565b5b6000613827848285016136c0565b91505092915050565b6000806040838503121561384757613846614a88565b5b6000613855858286016136c0565b9250506020613866858286016136c0565b9150509250929050565b60008060006060848603121561388957613888614a88565b5b6000613897868287016136c0565b93505060206138a8868287016136c0565b92505060406138b9868287016137ee565b9150509250925092565b600080600080608085870312156138dd576138dc614a88565b5b60006138eb878288016136c0565b94505060206138fc878288016136c0565b935050604061390d878288016137ee565b925050606085013567ffffffffffffffff81111561392e5761392d614a83565b5b61393a8782880161376a565b91505092959194509250565b6000806040838503121561395d5761395c614a88565b5b600061396b858286016136c0565b925050602061397c8582860161372b565b9150509250929050565b6000806040838503121561399d5761399c614a88565b5b60006139ab858286016136c0565b92505060206139bc858286016137ee565b9150509250929050565b600080602083850312156139dd576139dc614a88565b5b600083013567ffffffffffffffff8111156139fb576139fa614a83565b5b613a07858286016136d5565b92509250509250929050565b600060208284031215613a2957613a28614a88565b5b6000613a3784828501613740565b91505092915050565b600060208284031215613a5657613a55614a88565b5b6000613a6484828501613755565b91505092915050565b60008060208385031215613a8457613a83614a88565b5b600083013567ffffffffffffffff811115613aa257613aa1614a83565b5b613aae85828601613798565b92509250509250929050565b600060208284031215613ad057613acf614a88565b5b6000613ade848285016137ee565b91505092915050565b613af0816147c2565b82525050565b613aff816147d4565b82525050565b6000613b108261465f565b613b1a8185614675565b9350613b2a818560208601614845565b613b3381614a8d565b840191505092915050565b6000613b498261466a565b613b538185614691565b9350613b63818560208601614845565b613b6c81614a8d565b840191505092915050565b6000613b828261466a565b613b8c81856146a2565b9350613b9c818560208601614845565b80840191505092915050565b60008154613bb581614878565b613bbf81866146a2565b94506001821660008114613bda5760018114613beb57613c1e565b60ff19831686528186019350613c1e565b613bf48561464a565b60005b83811015613c1657815481890152600182019150602081019050613bf7565b838801955050505b50505092915050565b6000613c34600c83614691565b9150613c3f82614a9e565b602082019050919050565b6000613c57602b83614691565b9150613c6282614ac7565b604082019050919050565b6000613c7a603283614691565b9150613c8582614b16565b604082019050919050565b6000613c9d602683614691565b9150613ca882614b65565b604082019050919050565b6000613cc0601c83614691565b9150613ccb82614bb4565b602082019050919050565b6000613ce3600e83614691565b9150613cee82614bdd565b602082019050919050565b6000613d06600b83614691565b9150613d1182614c06565b602082019050919050565b6000613d29601683614691565b9150613d3482614c2f565b602082019050919050565b6000613d4c602483614691565b9150613d5782614c58565b604082019050919050565b6000613d6f601983614691565b9150613d7a82614ca7565b602082019050919050565b6000613d92602083614691565b9150613d9d82614cd0565b602082019050919050565b6000613db5601383614691565b9150613dc082614cf9565b602082019050919050565b6000613dd8602c83614691565b9150613de382614d22565b604082019050919050565b6000613dfb600f83614691565b9150613e0682614d71565b602082019050919050565b6000613e1e601083614691565b9150613e2982614d9a565b602082019050919050565b6000613e41601b83614691565b9150613e4c82614dc3565b602082019050919050565b6000613e64603883614691565b9150613e6f82614dec565b604082019050919050565b6000613e87602a83614691565b9150613e9282614e3b565b604082019050919050565b6000613eaa602983614691565b9150613eb582614e8a565b604082019050919050565b6000613ecd600883614691565b9150613ed882614ed9565b602082019050919050565b6000613ef0602083614691565b9150613efb82614f02565b602082019050919050565b6000613f13601683614691565b9150613f1e82614f2b565b602082019050919050565b6000613f36602c83614691565b9150613f4182614f54565b604082019050919050565b6000613f59602083614691565b9150613f6482614fa3565b602082019050919050565b6000613f7c602983614691565b9150613f8782614fcc565b604082019050919050565b6000613f9f601783614691565b9150613faa8261501b565b602082019050919050565b6000613fc2602483614691565b9150613fcd82615044565b604082019050919050565b6000613fe5601f83614691565b9150613ff082615093565b602082019050919050565b6000614008602183614691565b9150614013826150bc565b604082019050919050565b600061402b600f83614691565b91506140368261510b565b602082019050919050565b600061404e600083614686565b915061405982615134565b600082019050919050565b6000614071601083614691565b915061407c82615137565b602082019050919050565b6000614094603183614691565b915061409f82615160565b604082019050919050565b60006140b7602c83614691565b91506140c2826151af565b604082019050919050565b6140d68161482c565b82525050565b60006140e88285613ba8565b91506140f48284613b77565b91508190509392505050565b600061410b82614041565b9150819050919050565b600060208201905061412a6000830184613ae7565b92915050565b60006080820190506141456000830187613ae7565b6141526020830186613ae7565b61415f60408301856140cd565b81810360608301526141718184613b05565b905095945050505050565b60006020820190506141916000830184613af6565b92915050565b600060208201905081810360008301526141b18184613b3e565b905092915050565b600060208201905081810360008301526141d281613c27565b9050919050565b600060208201905081810360008301526141f281613c4a565b9050919050565b6000602082019050818103600083015261421281613c6d565b9050919050565b6000602082019050818103600083015261423281613c90565b9050919050565b6000602082019050818103600083015261425281613cb3565b9050919050565b6000602082019050818103600083015261427281613cd6565b9050919050565b6000602082019050818103600083015261429281613cf9565b9050919050565b600060208201905081810360008301526142b281613d1c565b9050919050565b600060208201905081810360008301526142d281613d3f565b9050919050565b600060208201905081810360008301526142f281613d62565b9050919050565b6000602082019050818103600083015261431281613d85565b9050919050565b6000602082019050818103600083015261433281613da8565b9050919050565b6000602082019050818103600083015261435281613dcb565b9050919050565b6000602082019050818103600083015261437281613dee565b9050919050565b6000602082019050818103600083015261439281613e11565b9050919050565b600060208201905081810360008301526143b281613e34565b9050919050565b600060208201905081810360008301526143d281613e57565b9050919050565b600060208201905081810360008301526143f281613e7a565b9050919050565b6000602082019050818103600083015261441281613e9d565b9050919050565b6000602082019050818103600083015261443281613ec0565b9050919050565b6000602082019050818103600083015261445281613ee3565b9050919050565b6000602082019050818103600083015261447281613f06565b9050919050565b6000602082019050818103600083015261449281613f29565b9050919050565b600060208201905081810360008301526144b281613f4c565b9050919050565b600060208201905081810360008301526144d281613f6f565b9050919050565b600060208201905081810360008301526144f281613f92565b9050919050565b6000602082019050818103600083015261451281613fb5565b9050919050565b6000602082019050818103600083015261453281613fd8565b9050919050565b6000602082019050818103600083015261455281613ffb565b9050919050565b600060208201905081810360008301526145728161401e565b9050919050565b6000602082019050818103600083015261459281614064565b9050919050565b600060208201905081810360008301526145b281614087565b9050919050565b600060208201905081810360008301526145d2816140aa565b9050919050565b60006020820190506145ee60008301846140cd565b92915050565b60006145fe61460f565b905061460a82826148aa565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a40565b5b61463d82614a8d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146b88261482c565b91506146c38361482c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146f8576146f7614955565b5b828201905092915050565b600061470e8261482c565b91506147198361482c565b92508261472957614728614984565b5b828204905092915050565b600061473f8261482c565b915061474a8361482c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478357614782614955565b5b828202905092915050565b60006147998261482c565b91506147a48361482c565b9250828210156147b7576147b6614955565b5b828203905092915050565b60006147cd8261480c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614863578082015181840152602081019050614848565b83811115614872576000848401525b50505050565b6000600282049050600182168061489057607f821691505b602082108114156148a4576148a36149b3565b5b50919050565b6148b382614a8d565b810181811067ffffffffffffffff821117156148d2576148d1614a40565b5b80604052505050565b60006148e68261482c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491957614918614955565b5b600182019050919050565b600061492f8261482c565b915061493a8361482c565b92508261494a57614949614984565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f70726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f73616c6520636c6f736564000000000000000000000000000000000000000000600082015250565b7f6578636565646564207075626c696320737570706c7900000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f65786365656465642070726573616c65206d696e7420616c6c6f636174696f6e600082015250565b7f636f6c6c656374696f6e20736f6c64206f757400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f696e73756666696369656e742065746800000000000000000000000000000000600082015250565b7f6578636565646564206d6178206c696d697420706572206d696e740000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d41585f4d494e54000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f61646472657373206e6f7420696e2070726573616c6500000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f65786365656465642070726573616c6520737570706c79000000000000000000600082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f64697361626c652070726573616c650000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b615207816147c2565b811461521257600080fd5b50565b61521e816147d4565b811461522957600080fd5b50565b615235816147e0565b811461524057600080fd5b50565b61524c8161482c565b811461525757600080fd5b5056fea2646970667358221220d85fbe35918e509e0b9e5baf8ef4927abec7350776043956f47b0bf412d497d164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f5780639cf2e8d6116100c1578063c87b56dd1161007a578063c87b56dd1461096b578063cf309012146109a8578063d96a094a146109d3578063e081b781146109ef578063e985e9c514610a1a578063f2fde38b14610a575761027d565b80639cf2e8d61461084b5780639e273b2f14610888578063a035b1fe146108c5578063a22cb465146108f0578063b179e06014610919578063b88d4fde146109425761027d565b806383a9e0491161011357806383a9e0491461073757806383e89f19146107625780638da5cb5b1461078d578063940f1ada146107b857806395d89b41146107e35780639bf803161461080e5761027d565b8063715018a6146106995780637204a3c9146106b05780637501f741146106d95780637bffb4ce14610704578063815f7bbd1461071b5761027d565b80632e055bcc116101f357806359a12ad5116101ac57806359a12ad5146105615780635ce7af1f1461058c5780635e84d723146105c95780636352211e146105f45780636ab920861461063157806370a082311461065c5761027d565b80632e055bcc146104535780632f745c591461047e5780633ccfd60b146104bb57806342842e0e146104d25780634f6ccce7146104fb57806355f804b3146105385761027d565b80630b8d0a28116102455780630b8d0a2814610367578063171e9ede1461039257806318160ddd146103bd5780631a026c96146103e857806323b872dd1461041357806324b049051461043c5761027d565b806301ffc9a714610282578063049c5c49146102bf57806306fdde03146102d6578063081812fc14610301578063095ea7b31461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a13565b610a80565b6040516102b6919061417c565b60405180910390f35b3480156102cb57600080fd5b506102d4610afa565b005b3480156102e257600080fd5b506102eb610ba2565b6040516102f89190614197565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613aba565b610c34565b6040516103359190614115565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613986565b610cb9565b005b34801561037357600080fd5b5061037c610dd1565b6040516103899190614115565b60405180910390f35b34801561039e57600080fd5b506103a7610df7565b6040516103b491906145d9565b60405180910390f35b3480156103c957600080fd5b506103d2610dfd565b6040516103df91906145d9565b60405180910390f35b3480156103f457600080fd5b506103fd610e0a565b60405161040a9190614115565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613870565b610e30565b005b34801561044857600080fd5b50610451610e90565b005b34801561045f57600080fd5b50610468610fc7565b60405161047591906145d9565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613986565b610fcd565b6040516104b291906145d9565b60405180910390f35b3480156104c757600080fd5b506104d0611072565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613870565b6112a6565b005b34801561050757600080fd5b50610522600480360381019061051d9190613aba565b6112c6565b60405161052f91906145d9565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613a6d565b611337565b005b34801561056d57600080fd5b50610576611419565b60405161058391906145d9565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613803565b61141f565b6040516105c091906145d9565b60405180910390f35b3480156105d557600080fd5b506105de611468565b6040516105eb91906145d9565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613aba565b61146e565b6040516106289190614115565b60405180910390f35b34801561063d57600080fd5b50610646611520565b60405161065391906145d9565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613803565b611526565b60405161069091906145d9565b60405180910390f35b3480156106a557600080fd5b506106ae6115de565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906139c6565b611666565b005b3480156106e557600080fd5b506106ee61188a565b6040516106fb91906145d9565b60405180910390f35b34801561071057600080fd5b50610719611890565b005b61073560048036038101906107309190613aba565b611938565b005b34801561074357600080fd5b5061074c611c54565b604051610759919061417c565b60405180910390f35b34801561076e57600080fd5b50610777611c67565b60405161078491906145d9565b60405180910390f35b34801561079957600080fd5b506107a2611c6d565b6040516107af9190614115565b60405180910390f35b3480156107c457600080fd5b506107cd611c97565b6040516107da91906145d9565b60405180910390f35b3480156107ef57600080fd5b506107f8611c9d565b6040516108059190614197565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190613803565b611d2f565b60405161084291906145d9565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190613803565b611d47565b60405161087f919061417c565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613803565b611d67565b6040516108bc919061417c565b60405180910390f35b3480156108d157600080fd5b506108da611dbd565b6040516108e791906145d9565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613946565b611dc3565b005b34801561092557600080fd5b50610940600480360381019061093b91906139c6565b611dd9565b005b34801561094e57600080fd5b50610969600480360381019061096491906138c3565b611f70565b005b34801561097757600080fd5b50610992600480360381019061098d9190613aba565b611fd2565b60405161099f9190614197565b60405180910390f35b3480156109b457600080fd5b506109bd61204e565b6040516109ca919061417c565b60405180910390f35b6109ed60048036038101906109e89190613aba565b612061565b005b3480156109fb57600080fd5b50610a04612289565b604051610a11919061417c565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c9190613830565b61229c565b604051610a4e919061417c565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613803565b612330565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af35750610af282612428565b5b9050919050565b610b0261250a565b73ffffffffffffffffffffffffffffffffffffffff16610b20611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614499565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b606060008054610bb190614878565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdd90614878565b8015610c2a5780601f10610bff57610100808354040283529160200191610c2a565b820191906000526020600020905b815481529060010190602001808311610c0d57829003601f168201915b5050505050905090565b6000610c3f82612512565b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590614479565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc48261146e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90614539565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5461250a565b73ffffffffffffffffffffffffffffffffffffffff161480610d835750610d8281610d7d61250a565b61229c565b5b610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db9906143b9565b60405180910390fd5b610dcc838361257e565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600880549050905090565b601560039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e41610e3b61250a565b82612637565b610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790614599565b60405180910390fd5b610e8b838383612715565b505050565b610e9861250a565b73ffffffffffffffffffffffffffffffffffffffff16610eb6611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390614499565b60405180910390fd5b600f54600c54610f1a610dfd565b610f2491906146ad565b1115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90614419565b60405180910390fd5b60005b600c54811015610fc457610fb1601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610fa2610dfd565b610fac91906146ad565b612971565b8080610fbc906148db565b915050610f68565b50565b600d5481565b6000610fd883611526565b8210611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906141d9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61107a61250a565b73ffffffffffffffffffffffffffffffffffffffff16611098611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614499565b60405180910390fd5b6000601560039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476111389190614734565b6111429190614703565b60405161114e90614100565b60006040518083038185875af1925050503d806000811461118b576040519150601f19603f3d011682016040523d82523d6000602084013e611190565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516111dc90614100565b60006040518083038185875af1925050503d8060008114611219576040519150601f19603f3d011682016040523d82523d6000602084013e61121e565b606091505b5050905081611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990614579565b60405180910390fd5b806112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614579565b60405180910390fd5b5050565b6112c183838360405180602001604052806000815250611f70565b505050565b60006112d0610dfd565b8210611311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611308906145b9565b60405180910390fd5b6008828154811061132557611324614a11565b5b90600052602060002001549050919050565b61133f61250a565b73ffffffffffffffffffffffffffffffffffffffff1661135d611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90614499565b60405180910390fd5b601560029054906101000a900460ff1615611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906144f9565b60405180910390fd5b8181600b91906114149291906135db565b505050565b60135481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906143f9565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e906143d9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115e661250a565b73ffffffffffffffffffffffffffffffffffffffff16611604611c6d565b73ffffffffffffffffffffffffffffffffffffffff161461165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614499565b60405180910390fd5b611664600061298f565b565b61166e61250a565b73ffffffffffffffffffffffffffffffffffffffff1661168c611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990614499565b60405180910390fd5b60005b8282905081101561188557600083838381811061170557611704614a11565b5b905060200201602081019061171a9190613803565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906141b9565b60405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090614359565b60405180910390fd5b6001601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061187d906148db565b9150506116e5565b505050565b60115481565b61189861250a565b73ffffffffffffffffffffffffffffffffffffffff166118b6611c6d565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614499565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b601560019054906101000a900460ff161580156119615750601560009054906101000a900460ff165b6119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790614259565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614459565b60405180910390fd5b600f54611a37610dfd565b10611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90614319565b60405180910390fd5b600d5481601354611a8891906146ad565b1115611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac0906144d9565b60405180910390fd5b60145481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1791906146ad565b1115611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906142f9565b60405180910390fd5b3481601054611b679190614734565b1115611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90614379565b60405180910390fd5b60005b81811015611c505760136000815480929190611bc6906148db565b9190505550601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c1b906148db565b9190505550611c3d336001611c2e610dfd565b611c3891906146ad565b612971565b8080611c48906148db565b915050611bab565b5050565b601560009054906101000a900460ff1681565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b606060018054611cac90614878565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd890614878565b8015611d255780601f10611cfa57610100808354040283529160200191611d25565b820191906000526020600020905b815481529060010190602001808311611d0857829003601f168201915b5050505050905090565b60186020528060005260406000206000915090505481565b60176020528060005260406000206000915054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b611dd5611dce61250a565b8383612a55565b5050565b611de161250a565b73ffffffffffffffffffffffffffffffffffffffff16611dff611c6d565b73ffffffffffffffffffffffffffffffffffffffff1614611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90614499565b60405180910390fd5b60005b82829050811015611f6b576000838383818110611e7857611e77614a11565b5b9050602002016020810190611e8d9190613803565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906141b9565b60405180910390fd5b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611f63906148db565b915050611e58565b505050565b611f81611f7b61250a565b83612637565b611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790614599565b60405180910390fd5b611fcc84848484612bc2565b50505050565b6060611fdd82612512565b61201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390614519565b60405180910390fd5b600b61202783612c1e565b6040516020016120389291906140dc565b6040516020818303038152906040529050919050565b601560029054906101000a900460ff1681565b601560019054906101000a900460ff166120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790614279565b60405180910390fd5b601560009054906101000a900460ff1615612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790614559565b60405180910390fd5b600f5461210b610dfd565b1061214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290614319565b60405180910390fd5b600e548160125461215c91906146ad565b111561219d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219490614299565b60405180910390fd5b6011548111156121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990614399565b60405180910390fd5b34816010546121f19190614734565b1115612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990614379565b60405180910390fd5b60005b818110156122855760126000815480929190612250906148db565b9190505550612272336001612263610dfd565b61226d91906146ad565b612971565b808061227d906148db565b915050612235565b5050565b601560019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61233861250a565b73ffffffffffffffffffffffffffffffffffffffff16612356611c6d565b73ffffffffffffffffffffffffffffffffffffffff16146123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a390614499565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390614219565b60405180910390fd5b6124258161298f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612503575061250282612d7f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f18361146e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264282612512565b612681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267890614339565b60405180910390fd5b600061268c8361146e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126fb57508373ffffffffffffffffffffffffffffffffffffffff166126e384610c34565b73ffffffffffffffffffffffffffffffffffffffff16145b8061270c575061270b818561229c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127358261146e565b73ffffffffffffffffffffffffffffffffffffffff161461278b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612782906144b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f2906142b9565b60405180910390fd5b612806838383612de9565b61281160008261257e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612861919061478e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b891906146ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61298b828260405180602001604052806000815250612efd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb906142d9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb5919061417c565b60405180910390a3505050565b612bcd848484612715565b612bd984848484612f58565b612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f906141f9565b60405180910390fd5b50505050565b60606000821415612c66576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d7a565b600082905060005b60008214612c98578080612c81906148db565b915050600a82612c919190614703565b9150612c6e565b60008167ffffffffffffffff811115612cb457612cb3614a40565b5b6040519080825280601f01601f191660200182016040528015612ce65781602001600182028036833780820191505090505b5090505b60008514612d7357600182612cff919061478e565b9150600a85612d0e9190614924565b6030612d1a91906146ad565b60f81b818381518110612d3057612d2f614a11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d6c9190614703565b9450612cea565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612df48383836130ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e3757612e32816130f4565b612e76565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e7557612e74838261313d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eb957612eb4816132aa565b612ef8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ef757612ef6828261337b565b5b5b505050565b612f0783836133fa565b612f146000848484612f58565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a906141f9565b60405180910390fd5b505050565b6000612f798473ffffffffffffffffffffffffffffffffffffffff166135c8565b156130e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa261250a565b8786866040518563ffffffff1660e01b8152600401612fc49493929190614130565b602060405180830381600087803b158015612fde57600080fd5b505af192505050801561300f57506040513d601f19601f8201168201806040525081019061300c9190613a40565b60015b613092573d806000811461303f576040519150601f19603f3d011682016040523d82523d6000602084013e613044565b606091505b5060008151141561308a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613081906141f9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161314a84611526565b613154919061478e565b9050600060076000848152602001908152602001600020549050818114613239576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132be919061478e565b90506000600960008481526020019081526020016000205490506000600883815481106132ee576132ed614a11565b5b9060005260206000200154905080600883815481106133105761330f614a11565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061335f5761335e6149e2565b5b6001900381819060005260206000200160009055905550505050565b600061338683611526565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561346a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346190614439565b60405180910390fd5b61347381612512565b156134b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134aa90614239565b60405180910390fd5b6134bf60008383612de9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461350f91906146ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546135e790614878565b90600052602060002090601f0160209004810192826136095760008555613650565b82601f1061362257803560ff1916838001178555613650565b82800160010185558215613650579182015b8281111561364f578235825591602001919060010190613634565b5b50905061365d9190613661565b5090565b5b8082111561367a576000816000905550600101613662565b5090565b600061369161368c84614619565b6145f4565b9050828152602081018484840111156136ad576136ac614a7e565b5b6136b8848285614836565b509392505050565b6000813590506136cf816151fe565b92915050565b60008083601f8401126136eb576136ea614a74565b5b8235905067ffffffffffffffff81111561370857613707614a6f565b5b60208301915083602082028301111561372457613723614a79565b5b9250929050565b60008135905061373a81615215565b92915050565b60008135905061374f8161522c565b92915050565b6000815190506137648161522c565b92915050565b600082601f83011261377f5761377e614a74565b5b813561378f84826020860161367e565b91505092915050565b60008083601f8401126137ae576137ad614a74565b5b8235905067ffffffffffffffff8111156137cb576137ca614a6f565b5b6020830191508360018202830111156137e7576137e6614a79565b5b9250929050565b6000813590506137fd81615243565b92915050565b60006020828403121561381957613818614a88565b5b6000613827848285016136c0565b91505092915050565b6000806040838503121561384757613846614a88565b5b6000613855858286016136c0565b9250506020613866858286016136c0565b9150509250929050565b60008060006060848603121561388957613888614a88565b5b6000613897868287016136c0565b93505060206138a8868287016136c0565b92505060406138b9868287016137ee565b9150509250925092565b600080600080608085870312156138dd576138dc614a88565b5b60006138eb878288016136c0565b94505060206138fc878288016136c0565b935050604061390d878288016137ee565b925050606085013567ffffffffffffffff81111561392e5761392d614a83565b5b61393a8782880161376a565b91505092959194509250565b6000806040838503121561395d5761395c614a88565b5b600061396b858286016136c0565b925050602061397c8582860161372b565b9150509250929050565b6000806040838503121561399d5761399c614a88565b5b60006139ab858286016136c0565b92505060206139bc858286016137ee565b9150509250929050565b600080602083850312156139dd576139dc614a88565b5b600083013567ffffffffffffffff8111156139fb576139fa614a83565b5b613a07858286016136d5565b92509250509250929050565b600060208284031215613a2957613a28614a88565b5b6000613a3784828501613740565b91505092915050565b600060208284031215613a5657613a55614a88565b5b6000613a6484828501613755565b91505092915050565b60008060208385031215613a8457613a83614a88565b5b600083013567ffffffffffffffff811115613aa257613aa1614a83565b5b613aae85828601613798565b92509250509250929050565b600060208284031215613ad057613acf614a88565b5b6000613ade848285016137ee565b91505092915050565b613af0816147c2565b82525050565b613aff816147d4565b82525050565b6000613b108261465f565b613b1a8185614675565b9350613b2a818560208601614845565b613b3381614a8d565b840191505092915050565b6000613b498261466a565b613b538185614691565b9350613b63818560208601614845565b613b6c81614a8d565b840191505092915050565b6000613b828261466a565b613b8c81856146a2565b9350613b9c818560208601614845565b80840191505092915050565b60008154613bb581614878565b613bbf81866146a2565b94506001821660008114613bda5760018114613beb57613c1e565b60ff19831686528186019350613c1e565b613bf48561464a565b60005b83811015613c1657815481890152600182019150602081019050613bf7565b838801955050505b50505092915050565b6000613c34600c83614691565b9150613c3f82614a9e565b602082019050919050565b6000613c57602b83614691565b9150613c6282614ac7565b604082019050919050565b6000613c7a603283614691565b9150613c8582614b16565b604082019050919050565b6000613c9d602683614691565b9150613ca882614b65565b604082019050919050565b6000613cc0601c83614691565b9150613ccb82614bb4565b602082019050919050565b6000613ce3600e83614691565b9150613cee82614bdd565b602082019050919050565b6000613d06600b83614691565b9150613d1182614c06565b602082019050919050565b6000613d29601683614691565b9150613d3482614c2f565b602082019050919050565b6000613d4c602483614691565b9150613d5782614c58565b604082019050919050565b6000613d6f601983614691565b9150613d7a82614ca7565b602082019050919050565b6000613d92602083614691565b9150613d9d82614cd0565b602082019050919050565b6000613db5601383614691565b9150613dc082614cf9565b602082019050919050565b6000613dd8602c83614691565b9150613de382614d22565b604082019050919050565b6000613dfb600f83614691565b9150613e0682614d71565b602082019050919050565b6000613e1e601083614691565b9150613e2982614d9a565b602082019050919050565b6000613e41601b83614691565b9150613e4c82614dc3565b602082019050919050565b6000613e64603883614691565b9150613e6f82614dec565b604082019050919050565b6000613e87602a83614691565b9150613e9282614e3b565b604082019050919050565b6000613eaa602983614691565b9150613eb582614e8a565b604082019050919050565b6000613ecd600883614691565b9150613ed882614ed9565b602082019050919050565b6000613ef0602083614691565b9150613efb82614f02565b602082019050919050565b6000613f13601683614691565b9150613f1e82614f2b565b602082019050919050565b6000613f36602c83614691565b9150613f4182614f54565b604082019050919050565b6000613f59602083614691565b9150613f6482614fa3565b602082019050919050565b6000613f7c602983614691565b9150613f8782614fcc565b604082019050919050565b6000613f9f601783614691565b9150613faa8261501b565b602082019050919050565b6000613fc2602483614691565b9150613fcd82615044565b604082019050919050565b6000613fe5601f83614691565b9150613ff082615093565b602082019050919050565b6000614008602183614691565b9150614013826150bc565b604082019050919050565b600061402b600f83614691565b91506140368261510b565b602082019050919050565b600061404e600083614686565b915061405982615134565b600082019050919050565b6000614071601083614691565b915061407c82615137565b602082019050919050565b6000614094603183614691565b915061409f82615160565b604082019050919050565b60006140b7602c83614691565b91506140c2826151af565b604082019050919050565b6140d68161482c565b82525050565b60006140e88285613ba8565b91506140f48284613b77565b91508190509392505050565b600061410b82614041565b9150819050919050565b600060208201905061412a6000830184613ae7565b92915050565b60006080820190506141456000830187613ae7565b6141526020830186613ae7565b61415f60408301856140cd565b81810360608301526141718184613b05565b905095945050505050565b60006020820190506141916000830184613af6565b92915050565b600060208201905081810360008301526141b18184613b3e565b905092915050565b600060208201905081810360008301526141d281613c27565b9050919050565b600060208201905081810360008301526141f281613c4a565b9050919050565b6000602082019050818103600083015261421281613c6d565b9050919050565b6000602082019050818103600083015261423281613c90565b9050919050565b6000602082019050818103600083015261425281613cb3565b9050919050565b6000602082019050818103600083015261427281613cd6565b9050919050565b6000602082019050818103600083015261429281613cf9565b9050919050565b600060208201905081810360008301526142b281613d1c565b9050919050565b600060208201905081810360008301526142d281613d3f565b9050919050565b600060208201905081810360008301526142f281613d62565b9050919050565b6000602082019050818103600083015261431281613d85565b9050919050565b6000602082019050818103600083015261433281613da8565b9050919050565b6000602082019050818103600083015261435281613dcb565b9050919050565b6000602082019050818103600083015261437281613dee565b9050919050565b6000602082019050818103600083015261439281613e11565b9050919050565b600060208201905081810360008301526143b281613e34565b9050919050565b600060208201905081810360008301526143d281613e57565b9050919050565b600060208201905081810360008301526143f281613e7a565b9050919050565b6000602082019050818103600083015261441281613e9d565b9050919050565b6000602082019050818103600083015261443281613ec0565b9050919050565b6000602082019050818103600083015261445281613ee3565b9050919050565b6000602082019050818103600083015261447281613f06565b9050919050565b6000602082019050818103600083015261449281613f29565b9050919050565b600060208201905081810360008301526144b281613f4c565b9050919050565b600060208201905081810360008301526144d281613f6f565b9050919050565b600060208201905081810360008301526144f281613f92565b9050919050565b6000602082019050818103600083015261451281613fb5565b9050919050565b6000602082019050818103600083015261453281613fd8565b9050919050565b6000602082019050818103600083015261455281613ffb565b9050919050565b600060208201905081810360008301526145728161401e565b9050919050565b6000602082019050818103600083015261459281614064565b9050919050565b600060208201905081810360008301526145b281614087565b9050919050565b600060208201905081810360008301526145d2816140aa565b9050919050565b60006020820190506145ee60008301846140cd565b92915050565b60006145fe61460f565b905061460a82826148aa565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a40565b5b61463d82614a8d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146b88261482c565b91506146c38361482c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146f8576146f7614955565b5b828201905092915050565b600061470e8261482c565b91506147198361482c565b92508261472957614728614984565b5b828204905092915050565b600061473f8261482c565b915061474a8361482c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478357614782614955565b5b828202905092915050565b60006147998261482c565b91506147a48361482c565b9250828210156147b7576147b6614955565b5b828203905092915050565b60006147cd8261480c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614863578082015181840152602081019050614848565b83811115614872576000848401525b50505050565b6000600282049050600182168061489057607f821691505b602082108114156148a4576148a36149b3565b5b50919050565b6148b382614a8d565b810181811067ffffffffffffffff821117156148d2576148d1614a40565b5b80604052505050565b60006148e68261482c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491957614918614955565b5b600182019050919050565b600061492f8261482c565b915061493a8361482c565b92508261494a57614949614984565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f70726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f73616c6520636c6f736564000000000000000000000000000000000000000000600082015250565b7f6578636565646564207075626c696320737570706c7900000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f65786365656465642070726573616c65206d696e7420616c6c6f636174696f6e600082015250565b7f636f6c6c656374696f6e20736f6c64206f757400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f696e73756666696369656e742065746800000000000000000000000000000000600082015250565b7f6578636565646564206d6178206c696d697420706572206d696e740000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d41585f4d494e54000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f61646472657373206e6f7420696e2070726573616c6500000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f65786365656465642070726573616c6520737570706c79000000000000000000600082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f64697361626c652070726573616c650000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b615207816147c2565b811461521257600080fd5b50565b61521e816147d4565b811461522957600080fd5b50565b615235816147e0565b811461524057600080fd5b50565b61524c8161482c565b811461525757600080fd5b5056fea2646970667358221220d85fbe35918e509e0b9e5baf8ef4927abec7350776043956f47b0bf412d497d164736f6c63430008070033

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.