ETH Price: $3,302.01 (+0.45%)

Token

Caramelo Club (CARAMELO)
 

Overview

Max Total Supply

378 CARAMELO

Holders

176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
danimim.eth
Balance
1 CARAMELO
0x3b9f47629cd4d5903cf3eb897aac4f6b41dd2589
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:
CarameloClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Contract.sol
// SPDX-License-Identifier: MIT
// Caramelo Club - 2022

pragma solidity >=0.8.0 <0.9.0;

/*                                                                                             
                                                             ,@@@@@@@@@@@@                          
                                                      %%%%@@@@&\**********((\%%%.                
                                                    \@\*************************,,,@@@@@@           
                                                   @%*******************%@@@@@@@***,,,,,,@@@@@@@@@@@
                                                 @@***\(((*************@@@@@@@  @%*********(\*,,@@@@
                                                 @@*\(((*****(@(********%@@@@@@@*******((*******,,@@
                                               @@***\(******\(@(***************************\****\@@
                                             @@@@*********@@((******************************&@@@    
                                           #@((((@@***@@@@((***********************@@@@@@@@@*       
                                        %#(\***((@@%%%((\****************%%%%*****.                
                                      @@*******(((((((******************%@                          
                                    @@***********(((\******************@\                           
                                  %@*********************************@@                             
                                *@(********************************,,@@                             
                               @&**********************************,,@@                             
                             @@************************************,,@@                             
                             @@************************************,,,*@\                           
                           ##%%**************************************,,(##                          
                           @@((****************************************,#@                          
         @@                @@((****************************************,,,@@                        
       @@**@@            @@((********************************************,@@                        
       @@***\@\          @@((********************************************,@@                        
       @@***\@\        \@((**********************************************,@@                        
       @@*****%@       \@((**********************************************,@@                        
         @@*****@@     \@((**********************************************,@@                        
         \%#*****%%(((#%((**********************************************,@@                        
            .@%(((((((@%(((**********************************************,@@@@                      
              #@((((((@%(((*********@@***********************************,@@**@@                    
                  @@@@@%(((*********@@((**********************************@@**@@                    
                    @@@%(((((*******@@((***************************@@*****@@**@@                    
                    @@@%(((((*******@@((*****@@********************@@*****@@**@@                    
   .,,,,,           @@(%@(((((((((((@@((*****@@****************\(@@@@*****@@@@                      
  ,,,,,,,,,,,,,,,,,,@@(((@@(((((((&@@@((*****@@((((((((((((((((&@@@@@****,@@,,@@                    
  ..,,,,,,,,,,,,,,,,##%#(%%%%((((%@@@@((*****@@################*,**@@****,@@**,,@#                  
     .,,,,,,,,,,,,,,,,@%*((@@@@@@@\*@@((*****@@*****************,**@@****,@@@@@@@#                  
       ,,,,,,,,,,,,,,,*#@**(((((#@\*@@((*****@@*,***************,**@@****,@@,,,,,.                  
             ,,,,,,,,,,,,**@@**(((((@@((*****@@*****************,**@@*****@@                        
                ,,,,,,,,,**@@*****\(@@((*****@@*****************,**@@*****@@,,                      
                    ,,,,,,,**@@@@@@@@@((*****@@*****************,**@@*******@@,,                    
                         ,,,,,,,,,,*@@*******@@*,***,,,,,,,,,,,,,,,@@((@%(@@,,@@,.                  
                           ,,,,,,,,*@@*******@@**,,,,,,,,,,,,,,,,,,,,@@@@@@@@@,,,.                  
                             ,,,,,,,@@**@@*%@**@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,                    
                               ,,,,,,,@@@@@@@@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,                        
                                .,,,,,,,,,,,,,,,,,,,,, 
*/

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

contract CarameloClub is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.08 ether;
  uint256 public costPre = 0.06 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 3;
  bool public paused = true;
  bool public revealed = false;
  uint256 public nftPerAddressLimit = 3;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("Caramelo Club", "CARAMELO") {}

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

  function mint(uint256 _mintAmount) public payable {
    require(!paused, "Contract is currentely paused!");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
            require(msg.value >= costPre * _mintAmount, "insufficient funds");
        }else {
            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }

  function airDrop(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{
    require(quantity.length == recipient.length, "Provide quantities and recipients" );
    
    uint256 totalQuantity;
    uint256 supply = totalSupply();

    for(uint i = 0; i < quantity.length; ++i){
      totalQuantity += quantity[i];
    }

    require(supply + totalQuantity + 1 <= maxSupply, "Not enough supply!" );

    for(uint i = 0; i < recipient.length; ++i){
      for(uint j = 0; j < quantity[i]; ++j){
          _mint(recipient[i], supply + 1);
          supply++;
      }
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  function changeStateRevealed(bool _state) public onlyOwner {
      revealed = _state;
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setCostPre(uint256 _newCost) public onlyOwner {
    costPre = _newCost;
  }

  function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
    maxSupply = _newMaxSupply;
  }
  
  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function changeStatePaused(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
    
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function setWhitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
}

File 2 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 3 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airDrop","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"changeStatePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"changeStateRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCostPre","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200026c565b5067011c37937e080000600e5566d529ae9e860000600f5561271060105560036011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff02191690831515021790555060036013556001601460006101000a81548160ff021916908315150217905550348015620000d757600080fd5b506040518060400160405280600d81526020017f436172616d656c6f20436c7562000000000000000000000000000000000000008152506040518060400160405280600881526020017f434152414d454c4f00000000000000000000000000000000000000000000000081525081600090805190602001906200015c9291906200026c565b508060019080519060200190620001759291906200026c565b505050620001986200018c6200019e60201b60201c565b620001a660201b60201c565b62000381565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027a906200031c565b90600052602060002090601f0160209004810192826200029e5760008555620002ea565b82601f10620002b957805160ff1916838001178555620002ea565b82800160010185558215620002ea579182015b82811115620002e9578251825591602001919060010190620002cc565b5b509050620002f99190620002fd565b5090565b5b8082111562000318576000816000905550600101620002fe565b5090565b600060028204905060018216806200033557607f821691505b602082108114156200034c576200034b62000352565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6157a980620003916000396000f3fe6080604052600436106102ae5760003560e01c806355f804b311610175578063b88d4fde116100dc578063d0eb26b011610095578063da53c5b01161006f578063da53c5b014610aa4578063e985e9c514610acd578063f2c4ce1e14610b0a578063f2fde38b14610b33576102ae565b8063d0eb26b014610a27578063d5abeb0114610a50578063da3ef23f14610a7b576102ae565b8063b88d4fde14610905578063ba4e5c491461092e578063ba7d2c761461096b578063bae3aaa614610996578063c6682862146109bf578063c87b56dd146109ea576102ae565b8063715018a61161012e578063715018a6146108285780638da5cb5b1461083f57806395d89b411461086a5780639c70b51214610895578063a0712d68146108c0578063a22cb465146108dc576102ae565b806355f804b3146107065780635c975abb1461072f5780636352211e1461075a5780636c0360eb146107975780636f8b44b0146107c257806370a08231146107eb576102ae565b806323b872dd1161021957806342842e0e116101d257806342842e0e146105e4578063438b63001461060d57806344a0d68a1461064a5780634bfb8ed3146106735780634f6ccce71461069e57806351830227146106db576102ae565b806323b872dd146104e55780632beab4b71461050e5780632f745c59146105375780633af32abf146105745780633c952764146105b15780633ccfd60b146105da576102ae565b806310ad70801161026b57806310ad7080146103d557806313faede6146103fe57806318160ddd1461042957806318cae269146104545780631c34698214610491578063239c70ae146104ba576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063081c8c4414610358578063088a4ed014610383578063095ea7b3146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906140de565b610b5c565b6040516102e79190614811565b60405180910390f35b3480156102fc57600080fd5b50610305610bd6565b604051610312919061482c565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614171565b610c68565b60405161034f9190614788565b60405180910390f35b34801561036457600080fd5b5061036d610ced565b60405161037a919061482c565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190614171565b610d7b565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613fbf565b610e01565b005b3480156103e157600080fd5b506103fc60048036038101906103f791906140b5565b610f19565b005b34801561040a57600080fd5b50610413610fb2565b6040516104209190614bae565b60405180910390f35b34801561043557600080fd5b5061043e610fb8565b60405161044b9190614bae565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190613e54565b610fc5565b6040516104889190614bae565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906140b5565b610fdd565b005b3480156104c657600080fd5b506104cf611076565b6040516104dc9190614bae565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190613eb9565b61107c565b005b34801561051a57600080fd5b5061053560048036038101906105309190613ffb565b6110dc565b005b34801561054357600080fd5b5061055e60048036038101906105599190613fbf565b61117c565b60405161056b9190614bae565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613e54565b611221565b6040516105a89190614811565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906140b5565b6112f6565b005b6105e261138f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190613eb9565b61148b565b005b34801561061957600080fd5b50610634600480360381019061062f9190613e54565b6114ab565b60405161064191906147ef565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190614171565b6115a5565b005b34801561067f57600080fd5b5061068861162b565b6040516106959190614bae565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190614171565b611631565b6040516106d29190614bae565b60405180910390f35b3480156106e757600080fd5b506106f06116c8565b6040516106fd9190614811565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190614130565b6116db565b005b34801561073b57600080fd5b50610744611771565b6040516107519190614811565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190614171565b611784565b60405161078e9190614788565b60405180910390f35b3480156107a357600080fd5b506107ac611836565b6040516107b9919061482c565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190614171565b6118c4565b005b3480156107f757600080fd5b50610812600480360381019061080d9190613e54565b61194a565b60405161081f9190614bae565b60405180910390f35b34801561083457600080fd5b5061083d611a02565b005b34801561084b57600080fd5b50610854611a8a565b6040516108619190614788565b60405180910390f35b34801561087657600080fd5b5061087f611ab4565b60405161088c919061482c565b60405180910390f35b3480156108a157600080fd5b506108aa611b46565b6040516108b79190614811565b60405180910390f35b6108da60048036038101906108d59190614171565b611b59565b005b3480156108e857600080fd5b5061090360048036038101906108fe9190613f83565b611ef7565b005b34801561091157600080fd5b5061092c60048036038101906109279190613f08565b611f0d565b005b34801561093a57600080fd5b5061095560048036038101906109509190614171565b611f6f565b6040516109629190614788565b60405180910390f35b34801561097757600080fd5b50610980611fae565b60405161098d9190614bae565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190614171565b611fb4565b005b3480156109cb57600080fd5b506109d461203a565b6040516109e1919061482c565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c9190614171565b6120c8565b604051610a1e919061482c565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190614171565b612221565b005b348015610a5c57600080fd5b50610a656122a7565b604051610a729190614bae565b60405180910390f35b348015610a8757600080fd5b50610aa26004803603810190610a9d9190614130565b6122ad565b005b348015610ab057600080fd5b50610acb6004803603810190610ac69190614040565b612343565b005b348015610ad957600080fd5b50610af46004803603810190610aef9190613e7d565b6125d2565b604051610b019190614811565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190614130565b612666565b005b348015610b3f57600080fd5b50610b5a6004803603810190610b559190613e54565b6126fc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bcf5750610bce826127f4565b5b9050919050565b606060008054610be590614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1190614eb7565b8015610c5e5780601f10610c3357610100808354040283529160200191610c5e565b820191906000526020600020905b815481529060010190602001808311610c4157829003601f168201915b5050505050905090565b6000610c73826128d6565b610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614a6e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cfa90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2690614eb7565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b610d83612942565b73ffffffffffffffffffffffffffffffffffffffff16610da1611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90614a8e565b60405180910390fd5b8060118190555050565b6000610e0c82611784565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614aee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e9c612942565b73ffffffffffffffffffffffffffffffffffffffff161480610ecb5750610eca81610ec5612942565b6125d2565b5b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f01906149ae565b60405180910390fd5b610f14838361294a565b505050565b610f21612942565b73ffffffffffffffffffffffffffffffffffffffff16610f3f611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90614a8e565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600e5481565b6000600880549050905090565b60166020528060005260406000206000915090505481565b610fe5612942565b73ffffffffffffffffffffffffffffffffffffffff16611003611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090614a8e565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b60115481565b61108d611087612942565b82612a03565b6110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614b2e565b60405180910390fd5b6110d7838383612ae1565b505050565b6110e4612942565b73ffffffffffffffffffffffffffffffffffffffff16611102611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614a8e565b60405180910390fd5b601560006111669190613b23565b818160159190611177929190613b44565b505050565b60006111878361194a565b82106111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf9061486e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b6015805490508110156112eb578273ffffffffffffffffffffffffffffffffffffffff1660158281548110611287577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156112d85760019150506112f1565b80806112e390614f1a565b915050611229565b50600090505b919050565b6112fe612942565b73ffffffffffffffffffffffffffffffffffffffff1661131c611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990614a8e565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b611397612942565b73ffffffffffffffffffffffffffffffffffffffff166113b5611a8a565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290614a8e565b60405180910390fd5b6000611415611a8a565b73ffffffffffffffffffffffffffffffffffffffff164760405161143890614773565b60006040518083038185875af1925050503d8060008114611475576040519150601f19603f3d011682016040523d82523d6000602084013e61147a565b606091505b505090508061148857600080fd5b50565b6114a683838360405180602001604052806000815250611f0d565b505050565b606060006114b88361194a565b905060008167ffffffffffffffff8111156114fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561152a5781602001602082028036833780820191505090505b50905060005b8281101561159a57611542858261117c565b82828151811061157b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061159290614f1a565b915050611530565b508092505050919050565b6115ad612942565b73ffffffffffffffffffffffffffffffffffffffff166115cb611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614a8e565b60405180910390fd5b80600e8190555050565b600f5481565b600061163b610fb8565b821061167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390614b4e565b60405180910390fd5b600882815481106116b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6116e3612942565b73ffffffffffffffffffffffffffffffffffffffff16611701611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e90614a8e565b60405180910390fd5b80600b908051906020019061176d929190613be4565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611824906149ee565b60405180910390fd5b80915050919050565b600b805461184390614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461186f90614eb7565b80156118bc5780601f10611891576101008083540402835291602001916118bc565b820191906000526020600020905b81548152906001019060200180831161189f57829003601f168201915b505050505081565b6118cc612942565b73ffffffffffffffffffffffffffffffffffffffff166118ea611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790614a8e565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b2906149ce565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a0a612942565b73ffffffffffffffffffffffffffffffffffffffff16611a28611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590614a8e565b60405180910390fd5b611a886000612d48565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ac390614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054611aef90614eb7565b8015611b3c5780601f10611b1157610100808354040283529160200191611b3c565b820191906000526020600020905b815481529060010190602001808311611b1f57829003601f168201915b5050505050905090565b601460009054906101000a900460ff1681565b601260009054906101000a900460ff1615611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614ace565b60405180910390fd5b6000611bb3610fb8565b905060008211611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90614b8e565b60405180910390fd5b601154821115611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490614a2e565b60405180910390fd5b6010548282611c4c9190614cec565b1115611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490614a0e565b60405180910390fd5b611c95611a8a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e675760011515601460009054906101000a900460ff1615151415611e1557611cec33611221565b611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290614b6e565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506013548382611d7e9190614cec565b1115611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db69061490e565b60405180910390fd5b82600f54611dcd9190614d73565b341015611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614b0e565b60405180910390fd5b50611e66565b81600e54611e239190614d73565b341015611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90614b0e565b60405180910390fd5b5b5b6000600190505b828111611ef257601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ec590614f1a565b9190505550611edf338284611eda9190614cec565b612e0e565b8080611eea90614f1a565b915050611e6e565b505050565b611f09611f02612942565b8383612e2c565b5050565b611f1e611f18612942565b83612a03565b611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614b2e565b60405180910390fd5b611f6984848484612f99565b50505050565b60158181548110611f7f57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611fbc612942565b73ffffffffffffffffffffffffffffffffffffffff16611fda611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790614a8e565b60405180910390fd5b80600f8190555050565b600c805461204790614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461207390614eb7565b80156120c05780601f10612095576101008083540402835291602001916120c0565b820191906000526020600020905b8154815290600101906020018083116120a357829003601f168201915b505050505081565b60606120d3826128d6565b612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614aae565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156121c057600d805461213b90614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461216790614eb7565b80156121b45780601f10612189576101008083540402835291602001916121b4565b820191906000526020600020905b81548152906001019060200180831161219757829003601f168201915b5050505050905061221c565b60006121ca612ff5565b905060008151116121ea5760405180602001604052806000815250612218565b806121f484613087565b600c60405160200161220893929190614742565b6040516020818303038152906040525b9150505b919050565b612229612942565b73ffffffffffffffffffffffffffffffffffffffff16612247611a8a565b73ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614a8e565b60405180910390fd5b8060138190555050565b60105481565b6122b5612942565b73ffffffffffffffffffffffffffffffffffffffff166122d3611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614a8e565b60405180910390fd5b80600c908051906020019061233f929190613be4565b5050565b61234b612942565b73ffffffffffffffffffffffffffffffffffffffff16612369611a8a565b73ffffffffffffffffffffffffffffffffffffffff16146123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614a8e565b60405180910390fd5b818190508484905014612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe9061498e565b60405180910390fd5b600080612412610fb8565b905060005b868690508110156124805786868281811061245b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358361246d9190614cec565b92508061247990614f1a565b9050612417565b50601054600183836124929190614cec565b61249c9190614cec565b11156124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d49061484e565b60405180910390fd5b60005b848490508110156125c95760005b878783818110612527577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358110156125b757612598868684818110612571577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906125869190613e54565b6001856125939190614cec565b613234565b82806125a390614f1a565b935050806125b090614f1a565b90506124ee565b50806125c290614f1a565b90506124e0565b50505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61266e612942565b73ffffffffffffffffffffffffffffffffffffffff1661268c611a8a565b73ffffffffffffffffffffffffffffffffffffffff16146126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990614a8e565b60405180910390fd5b80600d90805190602001906126f8929190613be4565b5050565b612704612942565b73ffffffffffffffffffffffffffffffffffffffff16612722611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df906148ae565b60405180910390fd5b6127f181612d48565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128bf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128cf57506128ce8261340e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129bd83611784565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a0e826128d6565b612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a449061496e565b60405180910390fd5b6000612a5883611784565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a9a5750612a9981856125d2565b5b80612ad857508373ffffffffffffffffffffffffffffffffffffffff16612ac084610c68565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b0182611784565b73ffffffffffffffffffffffffffffffffffffffff1614612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e906148ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe9061492e565b60405180910390fd5b612bd2838383613478565b612bdd60008261294a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c2d9190614dcd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c849190614cec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4383838361358c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e28828260405180602001604052806000815250613591565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e929061494e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f8c9190614811565b60405180910390a3505050565b612fa4848484612ae1565b612fb0848484846135ec565b612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe69061488e565b60405180910390fd5b50505050565b6060600b805461300490614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461303090614eb7565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050905090565b606060008214156130cf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061322f565b600082905060005b600082146131015780806130ea90614f1a565b915050600a826130fa9190614d42565b91506130d7565b60008167ffffffffffffffff811115613143577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131755781602001600182028036833780820191505090505b5090505b600085146132285760018261318e9190614dcd565b9150600a8561319d9190614f63565b60306131a99190614cec565b60f81b8183815181106131e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132219190614d42565b9450613179565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329b90614a4e565b60405180910390fd5b6132ad816128d6565b156132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e4906148ee565b60405180910390fd5b6132f960008383613478565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133499190614cec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461340a6000838361358c565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613483838383613783565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134c6576134c181613788565b613505565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135045761350383826137d1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613548576135438161393e565b613587565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613586576135858282613a81565b5b5b505050565b505050565b61359b8383613234565b6135a860008484846135ec565b6135e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135de9061488e565b60405180910390fd5b505050565b600061360d8473ffffffffffffffffffffffffffffffffffffffff16613b00565b15613776578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613636612942565b8786866040518563ffffffff1660e01b815260040161365894939291906147a3565b602060405180830381600087803b15801561367257600080fd5b505af19250505080156136a357506040513d601f19601f820116820180604052508101906136a09190614107565b60015b613726573d80600081146136d3576040519150601f19603f3d011682016040523d82523d6000602084013e6136d8565b606091505b5060008151141561371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137159061488e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061377b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137de8461194a565b6137e89190614dcd565b90506000600760008481526020019081526020016000205490508181146138cd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506139529190614dcd565b90506000600960008481526020019081526020016000205490506000600883815481106139a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a8c8361194a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5080546000825590600052602060002090810190613b419190613c6a565b50565b828054828255906000526020600020908101928215613bd3579160200282015b82811115613bd257823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613b64565b5b509050613be09190613c6a565b5090565b828054613bf090614eb7565b90600052602060002090601f016020900481019282613c125760008555613c59565b82601f10613c2b57805160ff1916838001178555613c59565b82800160010185558215613c59579182015b82811115613c58578251825591602001919060010190613c3d565b5b509050613c669190613c6a565b5090565b5b80821115613c83576000816000905550600101613c6b565b5090565b6000613c9a613c9584614bee565b614bc9565b905082815260208101848484011115613cb257600080fd5b613cbd848285614e75565b509392505050565b6000613cd8613cd384614c1f565b614bc9565b905082815260208101848484011115613cf057600080fd5b613cfb848285614e75565b509392505050565b600081359050613d1281615717565b92915050565b60008083601f840112613d2a57600080fd5b8235905067ffffffffffffffff811115613d4357600080fd5b602083019150836020820283011115613d5b57600080fd5b9250929050565b60008083601f840112613d7457600080fd5b8235905067ffffffffffffffff811115613d8d57600080fd5b602083019150836020820283011115613da557600080fd5b9250929050565b600081359050613dbb8161572e565b92915050565b600081359050613dd081615745565b92915050565b600081519050613de581615745565b92915050565b600082601f830112613dfc57600080fd5b8135613e0c848260208601613c87565b91505092915050565b600082601f830112613e2657600080fd5b8135613e36848260208601613cc5565b91505092915050565b600081359050613e4e8161575c565b92915050565b600060208284031215613e6657600080fd5b6000613e7484828501613d03565b91505092915050565b60008060408385031215613e9057600080fd5b6000613e9e85828601613d03565b9250506020613eaf85828601613d03565b9150509250929050565b600080600060608486031215613ece57600080fd5b6000613edc86828701613d03565b9350506020613eed86828701613d03565b9250506040613efe86828701613e3f565b9150509250925092565b60008060008060808587031215613f1e57600080fd5b6000613f2c87828801613d03565b9450506020613f3d87828801613d03565b9350506040613f4e87828801613e3f565b925050606085013567ffffffffffffffff811115613f6b57600080fd5b613f7787828801613deb565b91505092959194509250565b60008060408385031215613f9657600080fd5b6000613fa485828601613d03565b9250506020613fb585828601613dac565b9150509250929050565b60008060408385031215613fd257600080fd5b6000613fe085828601613d03565b9250506020613ff185828601613e3f565b9150509250929050565b6000806020838503121561400e57600080fd5b600083013567ffffffffffffffff81111561402857600080fd5b61403485828601613d18565b92509250509250929050565b6000806000806040858703121561405657600080fd5b600085013567ffffffffffffffff81111561407057600080fd5b61407c87828801613d62565b9450945050602085013567ffffffffffffffff81111561409b57600080fd5b6140a787828801613d18565b925092505092959194509250565b6000602082840312156140c757600080fd5b60006140d584828501613dac565b91505092915050565b6000602082840312156140f057600080fd5b60006140fe84828501613dc1565b91505092915050565b60006020828403121561411957600080fd5b600061412784828501613dd6565b91505092915050565b60006020828403121561414257600080fd5b600082013567ffffffffffffffff81111561415c57600080fd5b61416884828501613e15565b91505092915050565b60006020828403121561418357600080fd5b600061419184828501613e3f565b91505092915050565b60006141a68383614724565b60208301905092915050565b6141bb81614e01565b82525050565b60006141cc82614c75565b6141d68185614ca3565b93506141e183614c50565b8060005b838110156142125781516141f9888261419a565b975061420483614c96565b9250506001810190506141e5565b5085935050505092915050565b61422881614e13565b82525050565b600061423982614c80565b6142438185614cb4565b9350614253818560208601614e84565b61425c81615050565b840191505092915050565b600061427282614c8b565b61427c8185614cd0565b935061428c818560208601614e84565b61429581615050565b840191505092915050565b60006142ab82614c8b565b6142b58185614ce1565b93506142c5818560208601614e84565b80840191505092915050565b600081546142de81614eb7565b6142e88186614ce1565b94506001821660008114614303576001811461431457614347565b60ff19831686528186019350614347565b61431d85614c60565b60005b8381101561433f57815481890152600182019150602081019050614320565b838801955050505b50505092915050565b600061435d601283614cd0565b915061436882615061565b602082019050919050565b6000614380602b83614cd0565b915061438b8261508a565b604082019050919050565b60006143a3603283614cd0565b91506143ae826150d9565b604082019050919050565b60006143c6602683614cd0565b91506143d182615128565b604082019050919050565b60006143e9602583614cd0565b91506143f482615177565b604082019050919050565b600061440c601c83614cd0565b9150614417826151c6565b602082019050919050565b600061442f601c83614cd0565b915061443a826151ef565b602082019050919050565b6000614452602483614cd0565b915061445d82615218565b604082019050919050565b6000614475601983614cd0565b915061448082615267565b602082019050919050565b6000614498602c83614cd0565b91506144a382615290565b604082019050919050565b60006144bb602183614cd0565b91506144c6826152df565b604082019050919050565b60006144de603883614cd0565b91506144e98261532e565b604082019050919050565b6000614501602a83614cd0565b915061450c8261537d565b604082019050919050565b6000614524602983614cd0565b915061452f826153cc565b604082019050919050565b6000614547601683614cd0565b91506145528261541b565b602082019050919050565b600061456a602483614cd0565b915061457582615444565b604082019050919050565b600061458d602083614cd0565b915061459882615493565b602082019050919050565b60006145b0602c83614cd0565b91506145bb826154bc565b604082019050919050565b60006145d3602083614cd0565b91506145de8261550b565b602082019050919050565b60006145f6602f83614cd0565b915061460182615534565b604082019050919050565b6000614619601e83614cd0565b915061462482615583565b602082019050919050565b600061463c602183614cd0565b9150614647826155ac565b604082019050919050565b600061465f600083614cc5565b915061466a826155fb565b600082019050919050565b6000614682601283614cd0565b915061468d826155fe565b602082019050919050565b60006146a5603183614cd0565b91506146b082615627565b604082019050919050565b60006146c8602c83614cd0565b91506146d382615676565b604082019050919050565b60006146eb601783614cd0565b91506146f6826156c5565b602082019050919050565b600061470e601b83614cd0565b9150614719826156ee565b602082019050919050565b61472d81614e6b565b82525050565b61473c81614e6b565b82525050565b600061474e82866142a0565b915061475a82856142a0565b915061476682846142d1565b9150819050949350505050565b600061477e82614652565b9150819050919050565b600060208201905061479d60008301846141b2565b92915050565b60006080820190506147b860008301876141b2565b6147c560208301866141b2565b6147d26040830185614733565b81810360608301526147e4818461422e565b905095945050505050565b6000602082019050818103600083015261480981846141c1565b905092915050565b6000602082019050614826600083018461421f565b92915050565b600060208201905081810360008301526148468184614267565b905092915050565b6000602082019050818103600083015261486781614350565b9050919050565b6000602082019050818103600083015261488781614373565b9050919050565b600060208201905081810360008301526148a781614396565b9050919050565b600060208201905081810360008301526148c7816143b9565b9050919050565b600060208201905081810360008301526148e7816143dc565b9050919050565b60006020820190508181036000830152614907816143ff565b9050919050565b6000602082019050818103600083015261492781614422565b9050919050565b6000602082019050818103600083015261494781614445565b9050919050565b6000602082019050818103600083015261496781614468565b9050919050565b600060208201905081810360008301526149878161448b565b9050919050565b600060208201905081810360008301526149a7816144ae565b9050919050565b600060208201905081810360008301526149c7816144d1565b9050919050565b600060208201905081810360008301526149e7816144f4565b9050919050565b60006020820190508181036000830152614a0781614517565b9050919050565b60006020820190508181036000830152614a278161453a565b9050919050565b60006020820190508181036000830152614a478161455d565b9050919050565b60006020820190508181036000830152614a6781614580565b9050919050565b60006020820190508181036000830152614a87816145a3565b9050919050565b60006020820190508181036000830152614aa7816145c6565b9050919050565b60006020820190508181036000830152614ac7816145e9565b9050919050565b60006020820190508181036000830152614ae78161460c565b9050919050565b60006020820190508181036000830152614b078161462f565b9050919050565b60006020820190508181036000830152614b2781614675565b9050919050565b60006020820190508181036000830152614b4781614698565b9050919050565b60006020820190508181036000830152614b67816146bb565b9050919050565b60006020820190508181036000830152614b87816146de565b9050919050565b60006020820190508181036000830152614ba781614701565b9050919050565b6000602082019050614bc36000830184614733565b92915050565b6000614bd3614be4565b9050614bdf8282614ee9565b919050565b6000604051905090565b600067ffffffffffffffff821115614c0957614c08615021565b5b614c1282615050565b9050602081019050919050565b600067ffffffffffffffff821115614c3a57614c39615021565b5b614c4382615050565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cf782614e6b565b9150614d0283614e6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3757614d36614f94565b5b828201905092915050565b6000614d4d82614e6b565b9150614d5883614e6b565b925082614d6857614d67614fc3565b5b828204905092915050565b6000614d7e82614e6b565b9150614d8983614e6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dc257614dc1614f94565b5b828202905092915050565b6000614dd882614e6b565b9150614de383614e6b565b925082821015614df657614df5614f94565b5b828203905092915050565b6000614e0c82614e4b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ea2578082015181840152602081019050614e87565b83811115614eb1576000848401525b50505050565b60006002820490506001821680614ecf57607f821691505b60208210811415614ee357614ee2614ff2565b5b50919050565b614ef282615050565b810181811067ffffffffffffffff82111715614f1157614f10615021565b5b80604052505050565b6000614f2582614e6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f5857614f57614f94565b5b600182019050919050565b6000614f6e82614e6b565b9150614f7983614e6b565b925082614f8957614f88614fc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820737570706c79210000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e74726163742069732063757272656e74656c7920706175736564210000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61572081614e01565b811461572b57600080fd5b50565b61573781614e13565b811461574257600080fd5b50565b61574e81614e1f565b811461575957600080fd5b50565b61576581614e6b565b811461577057600080fd5b5056fea2646970667358221220e8b4592616caacfc5e35459012d95dcc9c2f76fef63f1b5946baa3ba8d97ae9764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806355f804b311610175578063b88d4fde116100dc578063d0eb26b011610095578063da53c5b01161006f578063da53c5b014610aa4578063e985e9c514610acd578063f2c4ce1e14610b0a578063f2fde38b14610b33576102ae565b8063d0eb26b014610a27578063d5abeb0114610a50578063da3ef23f14610a7b576102ae565b8063b88d4fde14610905578063ba4e5c491461092e578063ba7d2c761461096b578063bae3aaa614610996578063c6682862146109bf578063c87b56dd146109ea576102ae565b8063715018a61161012e578063715018a6146108285780638da5cb5b1461083f57806395d89b411461086a5780639c70b51214610895578063a0712d68146108c0578063a22cb465146108dc576102ae565b806355f804b3146107065780635c975abb1461072f5780636352211e1461075a5780636c0360eb146107975780636f8b44b0146107c257806370a08231146107eb576102ae565b806323b872dd1161021957806342842e0e116101d257806342842e0e146105e4578063438b63001461060d57806344a0d68a1461064a5780634bfb8ed3146106735780634f6ccce71461069e57806351830227146106db576102ae565b806323b872dd146104e55780632beab4b71461050e5780632f745c59146105375780633af32abf146105745780633c952764146105b15780633ccfd60b146105da576102ae565b806310ad70801161026b57806310ad7080146103d557806313faede6146103fe57806318160ddd1461042957806318cae269146104545780631c34698214610491578063239c70ae146104ba576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063081c8c4414610358578063088a4ed014610383578063095ea7b3146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906140de565b610b5c565b6040516102e79190614811565b60405180910390f35b3480156102fc57600080fd5b50610305610bd6565b604051610312919061482c565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614171565b610c68565b60405161034f9190614788565b60405180910390f35b34801561036457600080fd5b5061036d610ced565b60405161037a919061482c565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190614171565b610d7b565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613fbf565b610e01565b005b3480156103e157600080fd5b506103fc60048036038101906103f791906140b5565b610f19565b005b34801561040a57600080fd5b50610413610fb2565b6040516104209190614bae565b60405180910390f35b34801561043557600080fd5b5061043e610fb8565b60405161044b9190614bae565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190613e54565b610fc5565b6040516104889190614bae565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906140b5565b610fdd565b005b3480156104c657600080fd5b506104cf611076565b6040516104dc9190614bae565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190613eb9565b61107c565b005b34801561051a57600080fd5b5061053560048036038101906105309190613ffb565b6110dc565b005b34801561054357600080fd5b5061055e60048036038101906105599190613fbf565b61117c565b60405161056b9190614bae565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613e54565b611221565b6040516105a89190614811565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906140b5565b6112f6565b005b6105e261138f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190613eb9565b61148b565b005b34801561061957600080fd5b50610634600480360381019061062f9190613e54565b6114ab565b60405161064191906147ef565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190614171565b6115a5565b005b34801561067f57600080fd5b5061068861162b565b6040516106959190614bae565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190614171565b611631565b6040516106d29190614bae565b60405180910390f35b3480156106e757600080fd5b506106f06116c8565b6040516106fd9190614811565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190614130565b6116db565b005b34801561073b57600080fd5b50610744611771565b6040516107519190614811565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190614171565b611784565b60405161078e9190614788565b60405180910390f35b3480156107a357600080fd5b506107ac611836565b6040516107b9919061482c565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190614171565b6118c4565b005b3480156107f757600080fd5b50610812600480360381019061080d9190613e54565b61194a565b60405161081f9190614bae565b60405180910390f35b34801561083457600080fd5b5061083d611a02565b005b34801561084b57600080fd5b50610854611a8a565b6040516108619190614788565b60405180910390f35b34801561087657600080fd5b5061087f611ab4565b60405161088c919061482c565b60405180910390f35b3480156108a157600080fd5b506108aa611b46565b6040516108b79190614811565b60405180910390f35b6108da60048036038101906108d59190614171565b611b59565b005b3480156108e857600080fd5b5061090360048036038101906108fe9190613f83565b611ef7565b005b34801561091157600080fd5b5061092c60048036038101906109279190613f08565b611f0d565b005b34801561093a57600080fd5b5061095560048036038101906109509190614171565b611f6f565b6040516109629190614788565b60405180910390f35b34801561097757600080fd5b50610980611fae565b60405161098d9190614bae565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190614171565b611fb4565b005b3480156109cb57600080fd5b506109d461203a565b6040516109e1919061482c565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c9190614171565b6120c8565b604051610a1e919061482c565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190614171565b612221565b005b348015610a5c57600080fd5b50610a656122a7565b604051610a729190614bae565b60405180910390f35b348015610a8757600080fd5b50610aa26004803603810190610a9d9190614130565b6122ad565b005b348015610ab057600080fd5b50610acb6004803603810190610ac69190614040565b612343565b005b348015610ad957600080fd5b50610af46004803603810190610aef9190613e7d565b6125d2565b604051610b019190614811565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190614130565b612666565b005b348015610b3f57600080fd5b50610b5a6004803603810190610b559190613e54565b6126fc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bcf5750610bce826127f4565b5b9050919050565b606060008054610be590614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1190614eb7565b8015610c5e5780601f10610c3357610100808354040283529160200191610c5e565b820191906000526020600020905b815481529060010190602001808311610c4157829003601f168201915b5050505050905090565b6000610c73826128d6565b610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614a6e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610cfa90614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2690614eb7565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b610d83612942565b73ffffffffffffffffffffffffffffffffffffffff16610da1611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90614a8e565b60405180910390fd5b8060118190555050565b6000610e0c82611784565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490614aee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e9c612942565b73ffffffffffffffffffffffffffffffffffffffff161480610ecb5750610eca81610ec5612942565b6125d2565b5b610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f01906149ae565b60405180910390fd5b610f14838361294a565b505050565b610f21612942565b73ffffffffffffffffffffffffffffffffffffffff16610f3f611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90614a8e565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600e5481565b6000600880549050905090565b60166020528060005260406000206000915090505481565b610fe5612942565b73ffffffffffffffffffffffffffffffffffffffff16611003611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090614a8e565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b60115481565b61108d611087612942565b82612a03565b6110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390614b2e565b60405180910390fd5b6110d7838383612ae1565b505050565b6110e4612942565b73ffffffffffffffffffffffffffffffffffffffff16611102611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614a8e565b60405180910390fd5b601560006111669190613b23565b818160159190611177929190613b44565b505050565b60006111878361194a565b82106111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf9061486e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b6015805490508110156112eb578273ffffffffffffffffffffffffffffffffffffffff1660158281548110611287577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156112d85760019150506112f1565b80806112e390614f1a565b915050611229565b50600090505b919050565b6112fe612942565b73ffffffffffffffffffffffffffffffffffffffff1661131c611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990614a8e565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b611397612942565b73ffffffffffffffffffffffffffffffffffffffff166113b5611a8a565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290614a8e565b60405180910390fd5b6000611415611a8a565b73ffffffffffffffffffffffffffffffffffffffff164760405161143890614773565b60006040518083038185875af1925050503d8060008114611475576040519150601f19603f3d011682016040523d82523d6000602084013e61147a565b606091505b505090508061148857600080fd5b50565b6114a683838360405180602001604052806000815250611f0d565b505050565b606060006114b88361194a565b905060008167ffffffffffffffff8111156114fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561152a5781602001602082028036833780820191505090505b50905060005b8281101561159a57611542858261117c565b82828151811061157b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061159290614f1a565b915050611530565b508092505050919050565b6115ad612942565b73ffffffffffffffffffffffffffffffffffffffff166115cb611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614a8e565b60405180910390fd5b80600e8190555050565b600f5481565b600061163b610fb8565b821061167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390614b4e565b60405180910390fd5b600882815481106116b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6116e3612942565b73ffffffffffffffffffffffffffffffffffffffff16611701611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e90614a8e565b60405180910390fd5b80600b908051906020019061176d929190613be4565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611824906149ee565b60405180910390fd5b80915050919050565b600b805461184390614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461186f90614eb7565b80156118bc5780601f10611891576101008083540402835291602001916118bc565b820191906000526020600020905b81548152906001019060200180831161189f57829003601f168201915b505050505081565b6118cc612942565b73ffffffffffffffffffffffffffffffffffffffff166118ea611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790614a8e565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b2906149ce565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a0a612942565b73ffffffffffffffffffffffffffffffffffffffff16611a28611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590614a8e565b60405180910390fd5b611a886000612d48565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ac390614eb7565b80601f0160208091040260200160405190810160405280929190818152602001828054611aef90614eb7565b8015611b3c5780601f10611b1157610100808354040283529160200191611b3c565b820191906000526020600020905b815481529060010190602001808311611b1f57829003601f168201915b5050505050905090565b601460009054906101000a900460ff1681565b601260009054906101000a900460ff1615611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614ace565b60405180910390fd5b6000611bb3610fb8565b905060008211611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90614b8e565b60405180910390fd5b601154821115611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490614a2e565b60405180910390fd5b6010548282611c4c9190614cec565b1115611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490614a0e565b60405180910390fd5b611c95611a8a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e675760011515601460009054906101000a900460ff1615151415611e1557611cec33611221565b611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290614b6e565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506013548382611d7e9190614cec565b1115611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db69061490e565b60405180910390fd5b82600f54611dcd9190614d73565b341015611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614b0e565b60405180910390fd5b50611e66565b81600e54611e239190614d73565b341015611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90614b0e565b60405180910390fd5b5b5b6000600190505b828111611ef257601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ec590614f1a565b9190505550611edf338284611eda9190614cec565b612e0e565b8080611eea90614f1a565b915050611e6e565b505050565b611f09611f02612942565b8383612e2c565b5050565b611f1e611f18612942565b83612a03565b611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614b2e565b60405180910390fd5b611f6984848484612f99565b50505050565b60158181548110611f7f57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611fbc612942565b73ffffffffffffffffffffffffffffffffffffffff16611fda611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790614a8e565b60405180910390fd5b80600f8190555050565b600c805461204790614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461207390614eb7565b80156120c05780601f10612095576101008083540402835291602001916120c0565b820191906000526020600020905b8154815290600101906020018083116120a357829003601f168201915b505050505081565b60606120d3826128d6565b612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614aae565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156121c057600d805461213b90614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461216790614eb7565b80156121b45780601f10612189576101008083540402835291602001916121b4565b820191906000526020600020905b81548152906001019060200180831161219757829003601f168201915b5050505050905061221c565b60006121ca612ff5565b905060008151116121ea5760405180602001604052806000815250612218565b806121f484613087565b600c60405160200161220893929190614742565b6040516020818303038152906040525b9150505b919050565b612229612942565b73ffffffffffffffffffffffffffffffffffffffff16612247611a8a565b73ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229490614a8e565b60405180910390fd5b8060138190555050565b60105481565b6122b5612942565b73ffffffffffffffffffffffffffffffffffffffff166122d3611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614a8e565b60405180910390fd5b80600c908051906020019061233f929190613be4565b5050565b61234b612942565b73ffffffffffffffffffffffffffffffffffffffff16612369611a8a565b73ffffffffffffffffffffffffffffffffffffffff16146123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690614a8e565b60405180910390fd5b818190508484905014612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe9061498e565b60405180910390fd5b600080612412610fb8565b905060005b868690508110156124805786868281811061245b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358361246d9190614cec565b92508061247990614f1a565b9050612417565b50601054600183836124929190614cec565b61249c9190614cec565b11156124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d49061484e565b60405180910390fd5b60005b848490508110156125c95760005b878783818110612527577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358110156125b757612598868684818110612571577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906125869190613e54565b6001856125939190614cec565b613234565b82806125a390614f1a565b935050806125b090614f1a565b90506124ee565b50806125c290614f1a565b90506124e0565b50505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61266e612942565b73ffffffffffffffffffffffffffffffffffffffff1661268c611a8a565b73ffffffffffffffffffffffffffffffffffffffff16146126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990614a8e565b60405180910390fd5b80600d90805190602001906126f8929190613be4565b5050565b612704612942565b73ffffffffffffffffffffffffffffffffffffffff16612722611a8a565b73ffffffffffffffffffffffffffffffffffffffff1614612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df906148ae565b60405180910390fd5b6127f181612d48565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128bf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128cf57506128ce8261340e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129bd83611784565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a0e826128d6565b612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a449061496e565b60405180910390fd5b6000612a5883611784565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a9a5750612a9981856125d2565b5b80612ad857508373ffffffffffffffffffffffffffffffffffffffff16612ac084610c68565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b0182611784565b73ffffffffffffffffffffffffffffffffffffffff1614612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e906148ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe9061492e565b60405180910390fd5b612bd2838383613478565b612bdd60008261294a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c2d9190614dcd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c849190614cec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4383838361358c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e28828260405180602001604052806000815250613591565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e929061494e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f8c9190614811565b60405180910390a3505050565b612fa4848484612ae1565b612fb0848484846135ec565b612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe69061488e565b60405180910390fd5b50505050565b6060600b805461300490614eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461303090614eb7565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050905090565b606060008214156130cf576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061322f565b600082905060005b600082146131015780806130ea90614f1a565b915050600a826130fa9190614d42565b91506130d7565b60008167ffffffffffffffff811115613143577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131755781602001600182028036833780820191505090505b5090505b600085146132285760018261318e9190614dcd565b9150600a8561319d9190614f63565b60306131a99190614cec565b60f81b8183815181106131e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132219190614d42565b9450613179565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329b90614a4e565b60405180910390fd5b6132ad816128d6565b156132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e4906148ee565b60405180910390fd5b6132f960008383613478565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133499190614cec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461340a6000838361358c565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613483838383613783565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134c6576134c181613788565b613505565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135045761350383826137d1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613548576135438161393e565b613587565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613586576135858282613a81565b5b5b505050565b505050565b61359b8383613234565b6135a860008484846135ec565b6135e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135de9061488e565b60405180910390fd5b505050565b600061360d8473ffffffffffffffffffffffffffffffffffffffff16613b00565b15613776578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613636612942565b8786866040518563ffffffff1660e01b815260040161365894939291906147a3565b602060405180830381600087803b15801561367257600080fd5b505af19250505080156136a357506040513d601f19601f820116820180604052508101906136a09190614107565b60015b613726573d80600081146136d3576040519150601f19603f3d011682016040523d82523d6000602084013e6136d8565b606091505b5060008151141561371e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137159061488e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061377b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137de8461194a565b6137e89190614dcd565b90506000600760008481526020019081526020016000205490508181146138cd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506139529190614dcd565b90506000600960008481526020019081526020016000205490506000600883815481106139a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a8c8361194a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5080546000825590600052602060002090810190613b419190613c6a565b50565b828054828255906000526020600020908101928215613bd3579160200282015b82811115613bd257823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613b64565b5b509050613be09190613c6a565b5090565b828054613bf090614eb7565b90600052602060002090601f016020900481019282613c125760008555613c59565b82601f10613c2b57805160ff1916838001178555613c59565b82800160010185558215613c59579182015b82811115613c58578251825591602001919060010190613c3d565b5b509050613c669190613c6a565b5090565b5b80821115613c83576000816000905550600101613c6b565b5090565b6000613c9a613c9584614bee565b614bc9565b905082815260208101848484011115613cb257600080fd5b613cbd848285614e75565b509392505050565b6000613cd8613cd384614c1f565b614bc9565b905082815260208101848484011115613cf057600080fd5b613cfb848285614e75565b509392505050565b600081359050613d1281615717565b92915050565b60008083601f840112613d2a57600080fd5b8235905067ffffffffffffffff811115613d4357600080fd5b602083019150836020820283011115613d5b57600080fd5b9250929050565b60008083601f840112613d7457600080fd5b8235905067ffffffffffffffff811115613d8d57600080fd5b602083019150836020820283011115613da557600080fd5b9250929050565b600081359050613dbb8161572e565b92915050565b600081359050613dd081615745565b92915050565b600081519050613de581615745565b92915050565b600082601f830112613dfc57600080fd5b8135613e0c848260208601613c87565b91505092915050565b600082601f830112613e2657600080fd5b8135613e36848260208601613cc5565b91505092915050565b600081359050613e4e8161575c565b92915050565b600060208284031215613e6657600080fd5b6000613e7484828501613d03565b91505092915050565b60008060408385031215613e9057600080fd5b6000613e9e85828601613d03565b9250506020613eaf85828601613d03565b9150509250929050565b600080600060608486031215613ece57600080fd5b6000613edc86828701613d03565b9350506020613eed86828701613d03565b9250506040613efe86828701613e3f565b9150509250925092565b60008060008060808587031215613f1e57600080fd5b6000613f2c87828801613d03565b9450506020613f3d87828801613d03565b9350506040613f4e87828801613e3f565b925050606085013567ffffffffffffffff811115613f6b57600080fd5b613f7787828801613deb565b91505092959194509250565b60008060408385031215613f9657600080fd5b6000613fa485828601613d03565b9250506020613fb585828601613dac565b9150509250929050565b60008060408385031215613fd257600080fd5b6000613fe085828601613d03565b9250506020613ff185828601613e3f565b9150509250929050565b6000806020838503121561400e57600080fd5b600083013567ffffffffffffffff81111561402857600080fd5b61403485828601613d18565b92509250509250929050565b6000806000806040858703121561405657600080fd5b600085013567ffffffffffffffff81111561407057600080fd5b61407c87828801613d62565b9450945050602085013567ffffffffffffffff81111561409b57600080fd5b6140a787828801613d18565b925092505092959194509250565b6000602082840312156140c757600080fd5b60006140d584828501613dac565b91505092915050565b6000602082840312156140f057600080fd5b60006140fe84828501613dc1565b91505092915050565b60006020828403121561411957600080fd5b600061412784828501613dd6565b91505092915050565b60006020828403121561414257600080fd5b600082013567ffffffffffffffff81111561415c57600080fd5b61416884828501613e15565b91505092915050565b60006020828403121561418357600080fd5b600061419184828501613e3f565b91505092915050565b60006141a68383614724565b60208301905092915050565b6141bb81614e01565b82525050565b60006141cc82614c75565b6141d68185614ca3565b93506141e183614c50565b8060005b838110156142125781516141f9888261419a565b975061420483614c96565b9250506001810190506141e5565b5085935050505092915050565b61422881614e13565b82525050565b600061423982614c80565b6142438185614cb4565b9350614253818560208601614e84565b61425c81615050565b840191505092915050565b600061427282614c8b565b61427c8185614cd0565b935061428c818560208601614e84565b61429581615050565b840191505092915050565b60006142ab82614c8b565b6142b58185614ce1565b93506142c5818560208601614e84565b80840191505092915050565b600081546142de81614eb7565b6142e88186614ce1565b94506001821660008114614303576001811461431457614347565b60ff19831686528186019350614347565b61431d85614c60565b60005b8381101561433f57815481890152600182019150602081019050614320565b838801955050505b50505092915050565b600061435d601283614cd0565b915061436882615061565b602082019050919050565b6000614380602b83614cd0565b915061438b8261508a565b604082019050919050565b60006143a3603283614cd0565b91506143ae826150d9565b604082019050919050565b60006143c6602683614cd0565b91506143d182615128565b604082019050919050565b60006143e9602583614cd0565b91506143f482615177565b604082019050919050565b600061440c601c83614cd0565b9150614417826151c6565b602082019050919050565b600061442f601c83614cd0565b915061443a826151ef565b602082019050919050565b6000614452602483614cd0565b915061445d82615218565b604082019050919050565b6000614475601983614cd0565b915061448082615267565b602082019050919050565b6000614498602c83614cd0565b91506144a382615290565b604082019050919050565b60006144bb602183614cd0565b91506144c6826152df565b604082019050919050565b60006144de603883614cd0565b91506144e98261532e565b604082019050919050565b6000614501602a83614cd0565b915061450c8261537d565b604082019050919050565b6000614524602983614cd0565b915061452f826153cc565b604082019050919050565b6000614547601683614cd0565b91506145528261541b565b602082019050919050565b600061456a602483614cd0565b915061457582615444565b604082019050919050565b600061458d602083614cd0565b915061459882615493565b602082019050919050565b60006145b0602c83614cd0565b91506145bb826154bc565b604082019050919050565b60006145d3602083614cd0565b91506145de8261550b565b602082019050919050565b60006145f6602f83614cd0565b915061460182615534565b604082019050919050565b6000614619601e83614cd0565b915061462482615583565b602082019050919050565b600061463c602183614cd0565b9150614647826155ac565b604082019050919050565b600061465f600083614cc5565b915061466a826155fb565b600082019050919050565b6000614682601283614cd0565b915061468d826155fe565b602082019050919050565b60006146a5603183614cd0565b91506146b082615627565b604082019050919050565b60006146c8602c83614cd0565b91506146d382615676565b604082019050919050565b60006146eb601783614cd0565b91506146f6826156c5565b602082019050919050565b600061470e601b83614cd0565b9150614719826156ee565b602082019050919050565b61472d81614e6b565b82525050565b61473c81614e6b565b82525050565b600061474e82866142a0565b915061475a82856142a0565b915061476682846142d1565b9150819050949350505050565b600061477e82614652565b9150819050919050565b600060208201905061479d60008301846141b2565b92915050565b60006080820190506147b860008301876141b2565b6147c560208301866141b2565b6147d26040830185614733565b81810360608301526147e4818461422e565b905095945050505050565b6000602082019050818103600083015261480981846141c1565b905092915050565b6000602082019050614826600083018461421f565b92915050565b600060208201905081810360008301526148468184614267565b905092915050565b6000602082019050818103600083015261486781614350565b9050919050565b6000602082019050818103600083015261488781614373565b9050919050565b600060208201905081810360008301526148a781614396565b9050919050565b600060208201905081810360008301526148c7816143b9565b9050919050565b600060208201905081810360008301526148e7816143dc565b9050919050565b60006020820190508181036000830152614907816143ff565b9050919050565b6000602082019050818103600083015261492781614422565b9050919050565b6000602082019050818103600083015261494781614445565b9050919050565b6000602082019050818103600083015261496781614468565b9050919050565b600060208201905081810360008301526149878161448b565b9050919050565b600060208201905081810360008301526149a7816144ae565b9050919050565b600060208201905081810360008301526149c7816144d1565b9050919050565b600060208201905081810360008301526149e7816144f4565b9050919050565b60006020820190508181036000830152614a0781614517565b9050919050565b60006020820190508181036000830152614a278161453a565b9050919050565b60006020820190508181036000830152614a478161455d565b9050919050565b60006020820190508181036000830152614a6781614580565b9050919050565b60006020820190508181036000830152614a87816145a3565b9050919050565b60006020820190508181036000830152614aa7816145c6565b9050919050565b60006020820190508181036000830152614ac7816145e9565b9050919050565b60006020820190508181036000830152614ae78161460c565b9050919050565b60006020820190508181036000830152614b078161462f565b9050919050565b60006020820190508181036000830152614b2781614675565b9050919050565b60006020820190508181036000830152614b4781614698565b9050919050565b60006020820190508181036000830152614b67816146bb565b9050919050565b60006020820190508181036000830152614b87816146de565b9050919050565b60006020820190508181036000830152614ba781614701565b9050919050565b6000602082019050614bc36000830184614733565b92915050565b6000614bd3614be4565b9050614bdf8282614ee9565b919050565b6000604051905090565b600067ffffffffffffffff821115614c0957614c08615021565b5b614c1282615050565b9050602081019050919050565b600067ffffffffffffffff821115614c3a57614c39615021565b5b614c4382615050565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cf782614e6b565b9150614d0283614e6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3757614d36614f94565b5b828201905092915050565b6000614d4d82614e6b565b9150614d5883614e6b565b925082614d6857614d67614fc3565b5b828204905092915050565b6000614d7e82614e6b565b9150614d8983614e6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dc257614dc1614f94565b5b828202905092915050565b6000614dd882614e6b565b9150614de383614e6b565b925082821015614df657614df5614f94565b5b828203905092915050565b6000614e0c82614e4b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ea2578082015181840152602081019050614e87565b83811115614eb1576000848401525b50505050565b60006002820490506001821680614ecf57607f821691505b60208210811415614ee357614ee2614ff2565b5b50919050565b614ef282615050565b810181811067ffffffffffffffff82111715614f1157614f10615021565b5b80604052505050565b6000614f2582614e6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f5857614f57614f94565b5b600182019050919050565b6000614f6e82614e6b565b9150614f7983614e6b565b925082614f8957614f88614fc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820737570706c79210000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e74726163742069732063757272656e74656c7920706175736564210000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61572081614e01565b811461572b57600080fd5b50565b61573781614e13565b811461574257600080fd5b50565b61574e81614e1f565b811461575957600080fd5b50565b61576581614e6b565b811461577057600080fd5b5056fea2646970667358221220e8b4592616caacfc5e35459012d95dcc9c2f76fef63f1b5946baa3ba8d97ae9764736f6c63430008040033

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.