ETH Price: $3,210.88 (-1.35%)
Gas: 1 Gwei

Token

CelestialEntities (CE)
 

Overview

Max Total Supply

100 CE

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nakabroto.eth
Balance
1 CE
0x783574D24eDC66F3f38FD2ad1d1CC81e4183B53f
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:
CelestialEntities

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : CelestialEntities.sol
// SPDX-License-Identifier: MIT

// Contract by pr0xy.io

pragma solidity ^0.8.7;

import './ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract CelestialEntities is ERC721Enumerable, Ownable {
    address public vault;
    bytes32 public merkleRoot;
    string public baseTokenURI;
    uint public price;
    uint public status;

    mapping(uint => mapping(address => bool)) public denylist;

    constructor() ERC721("CelestialEntities", "CE") {}

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

    function setBaseTokenURI(string calldata _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setPrice(uint _price) external onlyOwner {
        price = _price;
    }

    function setStatus(uint _status) external onlyOwner {
        status = _status;
    }

    function setVault(address _vault) external onlyOwner {
        vault = _vault;
    }

    function claim(bytes32[] calldata _merkleProof, uint256 _amount) external {
        uint256 supply = totalSupply();
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, _amount));

        require(status == 1, 'Not Active');
        require(!denylist[0][msg.sender], 'Mint Claimed');
        require(supply + _amount < 3334, 'Supply Denied');
        require(tx.origin == msg.sender, 'Contract Denied');
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Proof Invalid');

        for(uint256 i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }

        denylist[0][msg.sender] = true;
    }

    function presale(bytes32[] calldata _merkleProof, uint _amount) external payable {
        uint supply = totalSupply();
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(status == 2, 'Not Active');
        require(_amount < 4, 'Amount Denied');
        require(!denylist[1][msg.sender], 'Mint Claimed');
        require(supply + _amount < 3334, 'Supply Denied');
        require(tx.origin == msg.sender, 'Contract Denied');
        require(msg.value >= price * _amount, 'Ether Amount Denied');
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Proof Invalid');

        for(uint i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }

        denylist[1][msg.sender] = true;
    }

    function mint(uint _amount) external payable {
        uint supply = totalSupply();

        require(status == 3, 'Not Active');
        require(_amount < 21, 'Amount Denied');
        require(supply + _amount < 3334, 'Supply Denied');
        require(tx.origin == msg.sender, 'Contract Denied');
        require(msg.value >= price * _amount, 'Ether Amount Denied');

        for(uint i; i < _amount; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function withdraw() external payable onlyOwner {
        require(vault != address(0), 'Vault Invalid');
        payable(vault).transfer(address(this).balance);
    }
}

File 2 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "./ERC721.sol";

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
  // See {IERC721Enumerable-totalSupply}.
  function totalSupply() public view virtual override returns (uint256) {
    return _owners.length;
  }

  // See {IERC721Enumerable-tokenByIndex}.
  function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
    require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
    return index;
  }

  // See {IERC721Enumerable-tokenOfOwnerByIndex}.
  function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
    require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
    uint count;
    for(uint i; i < _owners.length; i++){
      if(owner == _owners[i]){
        if(count == index) return i;
        else count++;
      }
    }
    revert("ERC721Enumerable: owner index out of bounds");
  }

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

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
  using Address for address;
  using Strings for uint256;

  string private _name;
  string private _symbol;

  address[] internal _owners;

  mapping(uint256 => address) private _tokenApprovals;
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  // 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_;
  }

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

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

  // Base URI for computing {tokenURI}.
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  // 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())) : "";
  }

  // Returns whether `tokenId` exists.
  function _exists(uint256 tokenId) internal view virtual returns (bool) {
    return tokenId < _owners.length && _owners[tokenId] != address(0);
  }

  // See {IERC721-balanceOf}.
  function balanceOf(address owner) public view virtual override returns (uint) {
    require(owner != address(0), "ERC721: balance query for the zero address");

    uint count;
    for(uint i; i < _owners.length; ++i){
      if(owner == _owners[i]) ++count;
    }
    return count;
  }

  // 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;
  }

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

  // 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);
  }

  // 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];
  }

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

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

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

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

  // Transfers `tokenId` from `from` to `to`. (No restrictions on sender)
  function _transfer(address from, address to, uint256 tokenId) internal virtual {
    require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
    require(to != address(0), "ERC721: transfer to the zero address");

    _beforeTokenTransfer(from, to, tokenId);
    _approve(address(0), tokenId);
    _owners[tokenId] = to;

    emit Transfer(from, to, tokenId);
  }

  // See {IERC721-transferFrom}.
  function transferFrom(address from, address to, uint256 tokenId) public virtual override {
    require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
    _transfer(from, to, tokenId);
  }

  // Safely transfers `tokenId` token from `from` to `to`.
  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");
  }

  // 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);
  }

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

  // Mints `tokenId` and transfers it to `to`.
  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);
    _owners.push(to);

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

  // Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter.
  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");
  }

  // Safely mints `tokenId` and transfers it to `to`.
  function _safeMint(address to, uint256 tokenId) internal virtual {
    _safeMint(to, tokenId, "");
  }

  // Destroys `tokenId`.
  function _burn(uint256 tokenId) internal virtual {
    address owner = ERC721.ownerOf(tokenId);

    _beforeTokenTransfer(owner, address(0), tokenId);
    _approve(address(0), tokenId);
    _owners[tokenId] = address(0);

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

  // 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);
  }

  // Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
  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;
    }
  }

 // Hook that is called before any token transfer.
 function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"denylist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017f43656c65737469616c456e7469746965730000000000000000000000000000008152506040518060400160405280600281526020017f4345000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61490b80620002cb6000396000f3fe6080604052600436106101f85760003560e01c80636817031b1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106f1578063d547cfb71461072e578063e985e9c514610759578063f2fde38b14610796578063fbfa77cf146107bf576101f8565b8063a035b1fe14610658578063a0712d6814610683578063a22cb4651461069f578063b88d4fde146106c8576101f8565b80637cb64759116100dc5780637cb64759146105b05780638da5cb5b146105d957806391b7f5ed1461060457806395d89b411461062d576101f8565b80636817031b1461050a57806369ba1a751461053357806370a082311461055c578063715018a614610599576101f8565b806327ed3dce116101905780633b4393511161015f5780633b439351146104345780633ccfd60b1461045d57806342842e0e146104675780634f6ccce7146104905780636352211e146104cd576101f8565b806327ed3dce146103875780632eb4a7ab146103a35780632f745c59146103ce57806330176e131461040b576101f8565b8063095ea7b3116101cc578063095ea7b3146102df57806318160ddd14610308578063200d2ed21461033357806323b872dd1461035e576101f8565b8062592289146101fd57806301ffc9a71461023a57806306fdde0314610277578063081812fc146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f91906133d7565b6107ea565b60405161023191906139c7565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613303565b610819565b60405161026e91906139c7565b60405180910390f35b34801561028357600080fd5b5061028c610893565b60405161029991906139fd565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906133aa565b610925565b6040516102d69190613960565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613236565b6109aa565b005b34801561031457600080fd5b5061031d610ac2565b60405161032a9190613d5f565b60405180910390f35b34801561033f57600080fd5b50610348610acf565b6040516103559190613d5f565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190613120565b610ad5565b005b6103a1600480360381019061039c9190613276565b610b35565b005b3480156103af57600080fd5b506103b8610ed2565b6040516103c591906139e2565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613236565b610ed8565b6040516104029190613d5f565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d919061335d565b61101d565b005b34801561044057600080fd5b5061045b60048036038101906104569190613276565b6110af565b005b6104656113b9565b005b34801561047357600080fd5b5061048e60048036038101906104899190613120565b611532565b005b34801561049c57600080fd5b506104b760048036038101906104b291906133aa565b611552565b6040516104c49190613d5f565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef91906133aa565b6115a3565b6040516105019190613960565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906130b3565b611660565b005b34801561053f57600080fd5b5061055a600480360381019061055591906133aa565b611720565b005b34801561056857600080fd5b50610583600480360381019061057e91906130b3565b6117a6565b6040516105909190613d5f565b60405180910390f35b3480156105a557600080fd5b506105ae6118c2565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906132d6565b61194a565b005b3480156105e557600080fd5b506105ee6119d0565b6040516105fb9190613960565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906133aa565b6119fa565b005b34801561063957600080fd5b50610642611a80565b60405161064f91906139fd565b60405180910390f35b34801561066457600080fd5b5061066d611b12565b60405161067a9190613d5f565b60405180910390f35b61069d600480360381019061069891906133aa565b611b18565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906131f6565b611cf1565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613173565b611e72565b005b3480156106fd57600080fd5b50610718600480360381019061071391906133aa565b611ed4565b60405161072591906139fd565b60405180910390f35b34801561073a57600080fd5b50610743611f7b565b60405161075091906139fd565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906130e0565b612009565b60405161078d91906139c7565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906130b3565b61209d565b005b3480156107cb57600080fd5b506107d4612195565b6040516107e19190613960565b60405180910390f35b600b6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c575061088b826121bb565b5b9050919050565b6060600080546108a290613fe8565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90613fe8565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b60006109308261229d565b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690613c1f565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b5826115a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cdf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a45612325565b73ffffffffffffffffffffffffffffffffffffffff161480610a745750610a7381610a6e612325565b612009565b5b610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613b7f565b60405180910390fd5b610abd838361232d565b505050565b6000600280549050905090565b600a5481565b610ae6610ae0612325565b826123e6565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613d1f565b60405180910390fd5b610b308383836124c4565b505050565b6000610b3f610ac2565b9050600033604051602001610b5491906138c9565b6040516020818303038152906040528051906020012090506002600a5414610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613abf565b60405180910390fd5b60048310610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90613cbf565b60405180910390fd5b600b60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613b1f565b60405180910390fd5b610d068383610ca29190613e13565b10610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613a9f565b60405180910390fd5b82600954610d5e9190613e9a565b341015610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790613cff565b60405180910390fd5b610dee858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361267d565b610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490613bdf565b60405180910390fd5b60005b83811015610e6057610e4d338285610e489190613e13565b612694565b8080610e589061404b565b915050610e30565b506001600b60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b60075481565b6000610ee3836117a6565b8210610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613a1f565b60405180910390fd5b6000805b600280549050811015610fdb5760028181548110610f4957610f4861418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610fc85783821415610fb9578092505050611017565b8180610fc49061404b565b9250505b8080610fd39061404b565b915050610f28565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613a1f565b60405180910390fd5b92915050565b611025612325565b73ffffffffffffffffffffffffffffffffffffffff166110436119d0565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090613c3f565b60405180910390fd5b8181600891906110aa929190612e76565b505050565b60006110b9610ac2565b9050600033836040516020016110d09291906138e4565b6040516020818303038152906040528051906020012090506001600a541461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490613abf565b60405180910390fd5b600b600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613b1f565b60405180910390fd5b610d0683836111da9190613e13565b1061121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90613a9f565b60405180910390fd5b6112d6858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361267d565b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613bdf565b60405180910390fd5b60005b83811015611348576113353382856113309190613e13565b612694565b80806113409061404b565b915050611318565b506001600b600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b6113c1612325565b73ffffffffffffffffffffffffffffffffffffffff166113df6119d0565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613b3f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561152f573d6000803e3d6000fd5b50565b61154d83838360405180602001604052806000815250611e72565b505050565b6000600280549050821061159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613d3f565b60405180910390fd5b819050919050565b600080600283815481106115ba576115b961418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613bbf565b60405180910390fd5b80915050919050565b611668612325565b73ffffffffffffffffffffffffffffffffffffffff166116866119d0565b73ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390613c3f565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611728612325565b73ffffffffffffffffffffffffffffffffffffffff166117466119d0565b73ffffffffffffffffffffffffffffffffffffffff161461179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613c3f565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90613b9f565b60405180910390fd5b6000805b6002805490508110156118b8576002818154811061183c5761183b61418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118a757816118a49061404b565b91505b806118b19061404b565b905061181b565b5080915050919050565b6118ca612325565b73ffffffffffffffffffffffffffffffffffffffff166118e86119d0565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613c3f565b60405180910390fd5b61194860006126b2565b565b611952612325565b73ffffffffffffffffffffffffffffffffffffffff166119706119d0565b73ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90613c3f565b60405180910390fd5b8060078190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a02612325565b73ffffffffffffffffffffffffffffffffffffffff16611a206119d0565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613c3f565b60405180910390fd5b8060098190555050565b606060018054611a8f90613fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054611abb90613fe8565b8015611b085780601f10611add57610100808354040283529160200191611b08565b820191906000526020600020905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b60095481565b6000611b22610ac2565b90506003600a5414611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613abf565b60405180910390fd5b60158210611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390613cbf565b60405180910390fd5b610d068282611bbb9190613e13565b10611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290613c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613a9f565b60405180910390fd5b81600954611c779190613e9a565b341015611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613cff565b60405180910390fd5b60005b82811015611cec57611cd9338284611cd49190613e13565b612694565b8080611ce49061404b565b915050611cbc565b505050565b611cf9612325565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90613aff565b60405180910390fd5b8060046000611d74612325565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e21612325565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6691906139c7565b60405180910390a35050565b611e83611e7d612325565b836123e6565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613d1f565b60405180910390fd5b611ece84848484612778565b50505050565b6060611edf8261229d565b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590613c7f565b60405180910390fd5b6000611f286127d4565b90506000815111611f485760405180602001604052806000815250611f73565b80611f5284612866565b604051602001611f6392919061393c565b6040516020818303038152906040525b915050919050565b60088054611f8890613fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb490613fe8565b80156120015780601f10611fd657610100808354040283529160200191612001565b820191906000526020600020905b815481529060010190602001808311611fe457829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120a5612325565b73ffffffffffffffffffffffffffffffffffffffff166120c36119d0565b73ffffffffffffffffffffffffffffffffffffffff1614612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090613c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090613a5f565b60405180910390fd5b612192816126b2565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061228657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122965750612295826129c7565b5b9050919050565b60006002805490508210801561231e5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106122da576122d961418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123a0836115a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123f18261229d565b612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790613b5f565b60405180910390fd5b600061243b836115a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124aa57508373ffffffffffffffffffffffffffffffffffffffff1661249284610925565b73ffffffffffffffffffffffffffffffffffffffff16145b806124bb57506124ba8185612009565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124e4826115a3565b73ffffffffffffffffffffffffffffffffffffffff161461253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613c5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613adf565b60405180910390fd5b6125b5838383612a31565b6125c060008261232d565b81600282815481106125d5576125d461418a565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008261268a8584612a36565b1490509392505050565b6126ae828260405180602001604052806000815250612ae9565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127838484846124c4565b61278f84848484612b44565b6127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c590613a3f565b60405180910390fd5b50505050565b6060600880546127e390613fe8565b80601f016020809104026020016040519081016040528092919081815260200182805461280f90613fe8565b801561285c5780601f106128315761010080835404028352916020019161285c565b820191906000526020600020905b81548152906001019060200180831161283f57829003601f168201915b5050505050905090565b606060008214156128ae576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c2565b600082905060005b600082146128e05780806128c99061404b565b915050600a826128d99190613e69565b91506128b6565b60008167ffffffffffffffff8111156128fc576128fb6141b9565b5b6040519080825280601f01601f19166020018201604052801561292e5781602001600182028036833780820191505090505b5090505b600085146129bb576001826129479190613ef4565b9150600a8561295691906140cc565b60306129629190613e13565b60f81b8183815181106129785761297761418a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129b49190613e69565b9450612932565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b8451811015612ade576000858281518110612a5d57612a5c61418a565b5b60200260200101519050808311612a9e578281604051602001612a81929190613910565b604051602081830303815290604052805190602001209250612aca565b8083604051602001612ab1929190613910565b6040516020818303038152906040528051906020012092505b508080612ad69061404b565b915050612a3f565b508091505092915050565b612af38383612cdb565b612b006000848484612b44565b612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690613a3f565b60405180910390fd5b505050565b6000612b658473ffffffffffffffffffffffffffffffffffffffff16612e63565b15612cce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b8e612325565b8786866040518563ffffffff1660e01b8152600401612bb0949392919061397b565b602060405180830381600087803b158015612bca57600080fd5b505af1925050508015612bfb57506040513d601f19601f82011682018060405250810190612bf89190613330565b60015b612c7e573d8060008114612c2b576040519150601f19603f3d011682016040523d82523d6000602084013e612c30565b606091505b50600081511415612c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6d90613a3f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cd3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4290613bff565b60405180910390fd5b612d548161229d565b15612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90613a7f565b60405180910390fd5b612da060008383612a31565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e8290613fe8565b90600052602060002090601f016020900481019282612ea45760008555612eeb565b82601f10612ebd57803560ff1916838001178555612eeb565b82800160010185558215612eeb579182015b82811115612eea578235825591602001919060010190612ecf565b5b509050612ef89190612efc565b5090565b5b80821115612f15576000816000905550600101612efd565b5090565b6000612f2c612f2784613d9f565b613d7a565b905082815260208101848484011115612f4857612f476141f7565b5b612f53848285613fa6565b509392505050565b600081359050612f6a81614862565b92915050565b60008083601f840112612f8657612f856141ed565b5b8235905067ffffffffffffffff811115612fa357612fa26141e8565b5b602083019150836020820283011115612fbf57612fbe6141f2565b5b9250929050565b600081359050612fd581614879565b92915050565b600081359050612fea81614890565b92915050565b600081359050612fff816148a7565b92915050565b600081519050613014816148a7565b92915050565b600082601f83011261302f5761302e6141ed565b5b813561303f848260208601612f19565b91505092915050565b60008083601f84011261305e5761305d6141ed565b5b8235905067ffffffffffffffff81111561307b5761307a6141e8565b5b602083019150836001820283011115613097576130966141f2565b5b9250929050565b6000813590506130ad816148be565b92915050565b6000602082840312156130c9576130c8614201565b5b60006130d784828501612f5b565b91505092915050565b600080604083850312156130f7576130f6614201565b5b600061310585828601612f5b565b925050602061311685828601612f5b565b9150509250929050565b60008060006060848603121561313957613138614201565b5b600061314786828701612f5b565b935050602061315886828701612f5b565b92505060406131698682870161309e565b9150509250925092565b6000806000806080858703121561318d5761318c614201565b5b600061319b87828801612f5b565b94505060206131ac87828801612f5b565b93505060406131bd8782880161309e565b925050606085013567ffffffffffffffff8111156131de576131dd6141fc565b5b6131ea8782880161301a565b91505092959194509250565b6000806040838503121561320d5761320c614201565b5b600061321b85828601612f5b565b925050602061322c85828601612fc6565b9150509250929050565b6000806040838503121561324d5761324c614201565b5b600061325b85828601612f5b565b925050602061326c8582860161309e565b9150509250929050565b60008060006040848603121561328f5761328e614201565b5b600084013567ffffffffffffffff8111156132ad576132ac6141fc565b5b6132b986828701612f70565b935093505060206132cc8682870161309e565b9150509250925092565b6000602082840312156132ec576132eb614201565b5b60006132fa84828501612fdb565b91505092915050565b60006020828403121561331957613318614201565b5b600061332784828501612ff0565b91505092915050565b60006020828403121561334657613345614201565b5b600061335484828501613005565b91505092915050565b6000806020838503121561337457613373614201565b5b600083013567ffffffffffffffff811115613392576133916141fc565b5b61339e85828601613048565b92509250509250929050565b6000602082840312156133c0576133bf614201565b5b60006133ce8482850161309e565b91505092915050565b600080604083850312156133ee576133ed614201565b5b60006133fc8582860161309e565b925050602061340d85828601612f5b565b9150509250929050565b61342081613f28565b82525050565b61343761343282613f28565b614094565b82525050565b61344681613f3a565b82525050565b61345581613f46565b82525050565b61346c61346782613f46565b6140a6565b82525050565b600061347d82613dd0565b6134878185613de6565b9350613497818560208601613fb5565b6134a081614206565b840191505092915050565b60006134b682613ddb565b6134c08185613df7565b93506134d0818560208601613fb5565b6134d981614206565b840191505092915050565b60006134ef82613ddb565b6134f98185613e08565b9350613509818560208601613fb5565b80840191505092915050565b6000613522602b83613df7565b915061352d82614224565b604082019050919050565b6000613545603283613df7565b915061355082614273565b604082019050919050565b6000613568602683613df7565b9150613573826142c2565b604082019050919050565b600061358b601c83613df7565b915061359682614311565b602082019050919050565b60006135ae600f83613df7565b91506135b98261433a565b602082019050919050565b60006135d1600a83613df7565b91506135dc82614363565b602082019050919050565b60006135f4602483613df7565b91506135ff8261438c565b604082019050919050565b6000613617601983613df7565b9150613622826143db565b602082019050919050565b600061363a600c83613df7565b915061364582614404565b602082019050919050565b600061365d600d83613df7565b91506136688261442d565b602082019050919050565b6000613680602c83613df7565b915061368b82614456565b604082019050919050565b60006136a3603883613df7565b91506136ae826144a5565b604082019050919050565b60006136c6602a83613df7565b91506136d1826144f4565b604082019050919050565b60006136e9602983613df7565b91506136f482614543565b604082019050919050565b600061370c600d83613df7565b915061371782614592565b602082019050919050565b600061372f602083613df7565b915061373a826145bb565b602082019050919050565b6000613752602c83613df7565b915061375d826145e4565b604082019050919050565b6000613775602083613df7565b915061378082614633565b602082019050919050565b6000613798602983613df7565b91506137a38261465c565b604082019050919050565b60006137bb602f83613df7565b91506137c6826146ab565b604082019050919050565b60006137de600d83613df7565b91506137e9826146fa565b602082019050919050565b6000613801600d83613df7565b915061380c82614723565b602082019050919050565b6000613824602183613df7565b915061382f8261474c565b604082019050919050565b6000613847601383613df7565b91506138528261479b565b602082019050919050565b600061386a603183613df7565b9150613875826147c4565b604082019050919050565b600061388d602c83613df7565b915061389882614813565b604082019050919050565b6138ac81613f9c565b82525050565b6138c36138be82613f9c565b6140c2565b82525050565b60006138d58284613426565b60148201915081905092915050565b60006138f08285613426565b60148201915061390082846138b2565b6020820191508190509392505050565b600061391c828561345b565b60208201915061392c828461345b565b6020820191508190509392505050565b600061394882856134e4565b915061395482846134e4565b91508190509392505050565b60006020820190506139756000830184613417565b92915050565b60006080820190506139906000830187613417565b61399d6020830186613417565b6139aa60408301856138a3565b81810360608301526139bc8184613472565b905095945050505050565b60006020820190506139dc600083018461343d565b92915050565b60006020820190506139f7600083018461344c565b92915050565b60006020820190508181036000830152613a1781846134ab565b905092915050565b60006020820190508181036000830152613a3881613515565b9050919050565b60006020820190508181036000830152613a5881613538565b9050919050565b60006020820190508181036000830152613a788161355b565b9050919050565b60006020820190508181036000830152613a988161357e565b9050919050565b60006020820190508181036000830152613ab8816135a1565b9050919050565b60006020820190508181036000830152613ad8816135c4565b9050919050565b60006020820190508181036000830152613af8816135e7565b9050919050565b60006020820190508181036000830152613b188161360a565b9050919050565b60006020820190508181036000830152613b388161362d565b9050919050565b60006020820190508181036000830152613b5881613650565b9050919050565b60006020820190508181036000830152613b7881613673565b9050919050565b60006020820190508181036000830152613b9881613696565b9050919050565b60006020820190508181036000830152613bb8816136b9565b9050919050565b60006020820190508181036000830152613bd8816136dc565b9050919050565b60006020820190508181036000830152613bf8816136ff565b9050919050565b60006020820190508181036000830152613c1881613722565b9050919050565b60006020820190508181036000830152613c3881613745565b9050919050565b60006020820190508181036000830152613c5881613768565b9050919050565b60006020820190508181036000830152613c788161378b565b9050919050565b60006020820190508181036000830152613c98816137ae565b9050919050565b60006020820190508181036000830152613cb8816137d1565b9050919050565b60006020820190508181036000830152613cd8816137f4565b9050919050565b60006020820190508181036000830152613cf881613817565b9050919050565b60006020820190508181036000830152613d188161383a565b9050919050565b60006020820190508181036000830152613d388161385d565b9050919050565b60006020820190508181036000830152613d5881613880565b9050919050565b6000602082019050613d7460008301846138a3565b92915050565b6000613d84613d95565b9050613d90828261401a565b919050565b6000604051905090565b600067ffffffffffffffff821115613dba57613db96141b9565b5b613dc382614206565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1e82613f9c565b9150613e2983613f9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5e57613e5d6140fd565b5b828201905092915050565b6000613e7482613f9c565b9150613e7f83613f9c565b925082613e8f57613e8e61412c565b5b828204905092915050565b6000613ea582613f9c565b9150613eb083613f9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ee957613ee86140fd565b5b828202905092915050565b6000613eff82613f9c565b9150613f0a83613f9c565b925082821015613f1d57613f1c6140fd565b5b828203905092915050565b6000613f3382613f7c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fd3578082015181840152602081019050613fb8565b83811115613fe2576000848401525b50505050565b6000600282049050600182168061400057607f821691505b602082108114156140145761401361415b565b5b50919050565b61402382614206565b810181811067ffffffffffffffff82111715614042576140416141b9565b5b80604052505050565b600061405682613f9c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614089576140886140fd565b5b600182019050919050565b600061409f826140b0565b9050919050565b6000819050919050565b60006140bb82614217565b9050919050565b6000819050919050565b60006140d782613f9c565b91506140e283613f9c565b9250826140f2576140f161412c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7420436c61696d65640000000000000000000000000000000000000000600082015250565b7f5661756c7420496e76616c696400000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b7f416d6f756e742044656e69656400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61486b81613f28565b811461487657600080fd5b50565b61488281613f3a565b811461488d57600080fd5b50565b61489981613f46565b81146148a457600080fd5b50565b6148b081613f50565b81146148bb57600080fd5b50565b6148c781613f9c565b81146148d257600080fd5b5056fea26469706673582212204c861fcd950f0849711eba571415e6c80cd7521c839526977544ff3ec3b2eaaf64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f85760003560e01c80636817031b1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106f1578063d547cfb71461072e578063e985e9c514610759578063f2fde38b14610796578063fbfa77cf146107bf576101f8565b8063a035b1fe14610658578063a0712d6814610683578063a22cb4651461069f578063b88d4fde146106c8576101f8565b80637cb64759116100dc5780637cb64759146105b05780638da5cb5b146105d957806391b7f5ed1461060457806395d89b411461062d576101f8565b80636817031b1461050a57806369ba1a751461053357806370a082311461055c578063715018a614610599576101f8565b806327ed3dce116101905780633b4393511161015f5780633b439351146104345780633ccfd60b1461045d57806342842e0e146104675780634f6ccce7146104905780636352211e146104cd576101f8565b806327ed3dce146103875780632eb4a7ab146103a35780632f745c59146103ce57806330176e131461040b576101f8565b8063095ea7b3116101cc578063095ea7b3146102df57806318160ddd14610308578063200d2ed21461033357806323b872dd1461035e576101f8565b8062592289146101fd57806301ffc9a71461023a57806306fdde0314610277578063081812fc146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f91906133d7565b6107ea565b60405161023191906139c7565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613303565b610819565b60405161026e91906139c7565b60405180910390f35b34801561028357600080fd5b5061028c610893565b60405161029991906139fd565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906133aa565b610925565b6040516102d69190613960565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613236565b6109aa565b005b34801561031457600080fd5b5061031d610ac2565b60405161032a9190613d5f565b60405180910390f35b34801561033f57600080fd5b50610348610acf565b6040516103559190613d5f565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190613120565b610ad5565b005b6103a1600480360381019061039c9190613276565b610b35565b005b3480156103af57600080fd5b506103b8610ed2565b6040516103c591906139e2565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613236565b610ed8565b6040516104029190613d5f565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d919061335d565b61101d565b005b34801561044057600080fd5b5061045b60048036038101906104569190613276565b6110af565b005b6104656113b9565b005b34801561047357600080fd5b5061048e60048036038101906104899190613120565b611532565b005b34801561049c57600080fd5b506104b760048036038101906104b291906133aa565b611552565b6040516104c49190613d5f565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef91906133aa565b6115a3565b6040516105019190613960565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906130b3565b611660565b005b34801561053f57600080fd5b5061055a600480360381019061055591906133aa565b611720565b005b34801561056857600080fd5b50610583600480360381019061057e91906130b3565b6117a6565b6040516105909190613d5f565b60405180910390f35b3480156105a557600080fd5b506105ae6118c2565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906132d6565b61194a565b005b3480156105e557600080fd5b506105ee6119d0565b6040516105fb9190613960565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906133aa565b6119fa565b005b34801561063957600080fd5b50610642611a80565b60405161064f91906139fd565b60405180910390f35b34801561066457600080fd5b5061066d611b12565b60405161067a9190613d5f565b60405180910390f35b61069d600480360381019061069891906133aa565b611b18565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906131f6565b611cf1565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613173565b611e72565b005b3480156106fd57600080fd5b50610718600480360381019061071391906133aa565b611ed4565b60405161072591906139fd565b60405180910390f35b34801561073a57600080fd5b50610743611f7b565b60405161075091906139fd565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906130e0565b612009565b60405161078d91906139c7565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906130b3565b61209d565b005b3480156107cb57600080fd5b506107d4612195565b6040516107e19190613960565b60405180910390f35b600b6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c575061088b826121bb565b5b9050919050565b6060600080546108a290613fe8565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90613fe8565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b60006109308261229d565b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690613c1f565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b5826115a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cdf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a45612325565b73ffffffffffffffffffffffffffffffffffffffff161480610a745750610a7381610a6e612325565b612009565b5b610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613b7f565b60405180910390fd5b610abd838361232d565b505050565b6000600280549050905090565b600a5481565b610ae6610ae0612325565b826123e6565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613d1f565b60405180910390fd5b610b308383836124c4565b505050565b6000610b3f610ac2565b9050600033604051602001610b5491906138c9565b6040516020818303038152906040528051906020012090506002600a5414610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613abf565b60405180910390fd5b60048310610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90613cbf565b60405180910390fd5b600b60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613b1f565b60405180910390fd5b610d068383610ca29190613e13565b10610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990613c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613a9f565b60405180910390fd5b82600954610d5e9190613e9a565b341015610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790613cff565b60405180910390fd5b610dee858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361267d565b610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490613bdf565b60405180910390fd5b60005b83811015610e6057610e4d338285610e489190613e13565b612694565b8080610e589061404b565b915050610e30565b506001600b60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b60075481565b6000610ee3836117a6565b8210610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613a1f565b60405180910390fd5b6000805b600280549050811015610fdb5760028181548110610f4957610f4861418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610fc85783821415610fb9578092505050611017565b8180610fc49061404b565b9250505b8080610fd39061404b565b915050610f28565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613a1f565b60405180910390fd5b92915050565b611025612325565b73ffffffffffffffffffffffffffffffffffffffff166110436119d0565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090613c3f565b60405180910390fd5b8181600891906110aa929190612e76565b505050565b60006110b9610ac2565b9050600033836040516020016110d09291906138e4565b6040516020818303038152906040528051906020012090506001600a541461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490613abf565b60405180910390fd5b600b600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613b1f565b60405180910390fd5b610d0683836111da9190613e13565b1061121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90613a9f565b60405180910390fd5b6112d6858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007548361267d565b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613bdf565b60405180910390fd5b60005b83811015611348576113353382856113309190613e13565b612694565b80806113409061404b565b915050611318565b506001600b600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b6113c1612325565b73ffffffffffffffffffffffffffffffffffffffff166113df6119d0565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613b3f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561152f573d6000803e3d6000fd5b50565b61154d83838360405180602001604052806000815250611e72565b505050565b6000600280549050821061159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613d3f565b60405180910390fd5b819050919050565b600080600283815481106115ba576115b961418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613bbf565b60405180910390fd5b80915050919050565b611668612325565b73ffffffffffffffffffffffffffffffffffffffff166116866119d0565b73ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390613c3f565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611728612325565b73ffffffffffffffffffffffffffffffffffffffff166117466119d0565b73ffffffffffffffffffffffffffffffffffffffff161461179c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179390613c3f565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90613b9f565b60405180910390fd5b6000805b6002805490508110156118b8576002818154811061183c5761183b61418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118a757816118a49061404b565b91505b806118b19061404b565b905061181b565b5080915050919050565b6118ca612325565b73ffffffffffffffffffffffffffffffffffffffff166118e86119d0565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613c3f565b60405180910390fd5b61194860006126b2565b565b611952612325565b73ffffffffffffffffffffffffffffffffffffffff166119706119d0565b73ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90613c3f565b60405180910390fd5b8060078190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a02612325565b73ffffffffffffffffffffffffffffffffffffffff16611a206119d0565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613c3f565b60405180910390fd5b8060098190555050565b606060018054611a8f90613fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054611abb90613fe8565b8015611b085780601f10611add57610100808354040283529160200191611b08565b820191906000526020600020905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b60095481565b6000611b22610ac2565b90506003600a5414611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613abf565b60405180910390fd5b60158210611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390613cbf565b60405180910390fd5b610d068282611bbb9190613e13565b10611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290613c9f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613a9f565b60405180910390fd5b81600954611c779190613e9a565b341015611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613cff565b60405180910390fd5b60005b82811015611cec57611cd9338284611cd49190613e13565b612694565b8080611ce49061404b565b915050611cbc565b505050565b611cf9612325565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90613aff565b60405180910390fd5b8060046000611d74612325565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e21612325565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6691906139c7565b60405180910390a35050565b611e83611e7d612325565b836123e6565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613d1f565b60405180910390fd5b611ece84848484612778565b50505050565b6060611edf8261229d565b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590613c7f565b60405180910390fd5b6000611f286127d4565b90506000815111611f485760405180602001604052806000815250611f73565b80611f5284612866565b604051602001611f6392919061393c565b6040516020818303038152906040525b915050919050565b60088054611f8890613fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb490613fe8565b80156120015780601f10611fd657610100808354040283529160200191612001565b820191906000526020600020905b815481529060010190602001808311611fe457829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120a5612325565b73ffffffffffffffffffffffffffffffffffffffff166120c36119d0565b73ffffffffffffffffffffffffffffffffffffffff1614612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090613c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090613a5f565b60405180910390fd5b612192816126b2565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061228657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122965750612295826129c7565b5b9050919050565b60006002805490508210801561231e5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106122da576122d961418a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123a0836115a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123f18261229d565b612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790613b5f565b60405180910390fd5b600061243b836115a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124aa57508373ffffffffffffffffffffffffffffffffffffffff1661249284610925565b73ffffffffffffffffffffffffffffffffffffffff16145b806124bb57506124ba8185612009565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124e4826115a3565b73ffffffffffffffffffffffffffffffffffffffff161461253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190613c5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613adf565b60405180910390fd5b6125b5838383612a31565b6125c060008261232d565b81600282815481106125d5576125d461418a565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008261268a8584612a36565b1490509392505050565b6126ae828260405180602001604052806000815250612ae9565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127838484846124c4565b61278f84848484612b44565b6127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c590613a3f565b60405180910390fd5b50505050565b6060600880546127e390613fe8565b80601f016020809104026020016040519081016040528092919081815260200182805461280f90613fe8565b801561285c5780601f106128315761010080835404028352916020019161285c565b820191906000526020600020905b81548152906001019060200180831161283f57829003601f168201915b5050505050905090565b606060008214156128ae576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c2565b600082905060005b600082146128e05780806128c99061404b565b915050600a826128d99190613e69565b91506128b6565b60008167ffffffffffffffff8111156128fc576128fb6141b9565b5b6040519080825280601f01601f19166020018201604052801561292e5781602001600182028036833780820191505090505b5090505b600085146129bb576001826129479190613ef4565b9150600a8561295691906140cc565b60306129629190613e13565b60f81b8183815181106129785761297761418a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129b49190613e69565b9450612932565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b8451811015612ade576000858281518110612a5d57612a5c61418a565b5b60200260200101519050808311612a9e578281604051602001612a81929190613910565b604051602081830303815290604052805190602001209250612aca565b8083604051602001612ab1929190613910565b6040516020818303038152906040528051906020012092505b508080612ad69061404b565b915050612a3f565b508091505092915050565b612af38383612cdb565b612b006000848484612b44565b612b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3690613a3f565b60405180910390fd5b505050565b6000612b658473ffffffffffffffffffffffffffffffffffffffff16612e63565b15612cce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b8e612325565b8786866040518563ffffffff1660e01b8152600401612bb0949392919061397b565b602060405180830381600087803b158015612bca57600080fd5b505af1925050508015612bfb57506040513d601f19601f82011682018060405250810190612bf89190613330565b60015b612c7e573d8060008114612c2b576040519150601f19603f3d011682016040523d82523d6000602084013e612c30565b606091505b50600081511415612c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6d90613a3f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cd3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4290613bff565b60405180910390fd5b612d548161229d565b15612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90613a7f565b60405180910390fd5b612da060008383612a31565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e8290613fe8565b90600052602060002090601f016020900481019282612ea45760008555612eeb565b82601f10612ebd57803560ff1916838001178555612eeb565b82800160010185558215612eeb579182015b82811115612eea578235825591602001919060010190612ecf565b5b509050612ef89190612efc565b5090565b5b80821115612f15576000816000905550600101612efd565b5090565b6000612f2c612f2784613d9f565b613d7a565b905082815260208101848484011115612f4857612f476141f7565b5b612f53848285613fa6565b509392505050565b600081359050612f6a81614862565b92915050565b60008083601f840112612f8657612f856141ed565b5b8235905067ffffffffffffffff811115612fa357612fa26141e8565b5b602083019150836020820283011115612fbf57612fbe6141f2565b5b9250929050565b600081359050612fd581614879565b92915050565b600081359050612fea81614890565b92915050565b600081359050612fff816148a7565b92915050565b600081519050613014816148a7565b92915050565b600082601f83011261302f5761302e6141ed565b5b813561303f848260208601612f19565b91505092915050565b60008083601f84011261305e5761305d6141ed565b5b8235905067ffffffffffffffff81111561307b5761307a6141e8565b5b602083019150836001820283011115613097576130966141f2565b5b9250929050565b6000813590506130ad816148be565b92915050565b6000602082840312156130c9576130c8614201565b5b60006130d784828501612f5b565b91505092915050565b600080604083850312156130f7576130f6614201565b5b600061310585828601612f5b565b925050602061311685828601612f5b565b9150509250929050565b60008060006060848603121561313957613138614201565b5b600061314786828701612f5b565b935050602061315886828701612f5b565b92505060406131698682870161309e565b9150509250925092565b6000806000806080858703121561318d5761318c614201565b5b600061319b87828801612f5b565b94505060206131ac87828801612f5b565b93505060406131bd8782880161309e565b925050606085013567ffffffffffffffff8111156131de576131dd6141fc565b5b6131ea8782880161301a565b91505092959194509250565b6000806040838503121561320d5761320c614201565b5b600061321b85828601612f5b565b925050602061322c85828601612fc6565b9150509250929050565b6000806040838503121561324d5761324c614201565b5b600061325b85828601612f5b565b925050602061326c8582860161309e565b9150509250929050565b60008060006040848603121561328f5761328e614201565b5b600084013567ffffffffffffffff8111156132ad576132ac6141fc565b5b6132b986828701612f70565b935093505060206132cc8682870161309e565b9150509250925092565b6000602082840312156132ec576132eb614201565b5b60006132fa84828501612fdb565b91505092915050565b60006020828403121561331957613318614201565b5b600061332784828501612ff0565b91505092915050565b60006020828403121561334657613345614201565b5b600061335484828501613005565b91505092915050565b6000806020838503121561337457613373614201565b5b600083013567ffffffffffffffff811115613392576133916141fc565b5b61339e85828601613048565b92509250509250929050565b6000602082840312156133c0576133bf614201565b5b60006133ce8482850161309e565b91505092915050565b600080604083850312156133ee576133ed614201565b5b60006133fc8582860161309e565b925050602061340d85828601612f5b565b9150509250929050565b61342081613f28565b82525050565b61343761343282613f28565b614094565b82525050565b61344681613f3a565b82525050565b61345581613f46565b82525050565b61346c61346782613f46565b6140a6565b82525050565b600061347d82613dd0565b6134878185613de6565b9350613497818560208601613fb5565b6134a081614206565b840191505092915050565b60006134b682613ddb565b6134c08185613df7565b93506134d0818560208601613fb5565b6134d981614206565b840191505092915050565b60006134ef82613ddb565b6134f98185613e08565b9350613509818560208601613fb5565b80840191505092915050565b6000613522602b83613df7565b915061352d82614224565b604082019050919050565b6000613545603283613df7565b915061355082614273565b604082019050919050565b6000613568602683613df7565b9150613573826142c2565b604082019050919050565b600061358b601c83613df7565b915061359682614311565b602082019050919050565b60006135ae600f83613df7565b91506135b98261433a565b602082019050919050565b60006135d1600a83613df7565b91506135dc82614363565b602082019050919050565b60006135f4602483613df7565b91506135ff8261438c565b604082019050919050565b6000613617601983613df7565b9150613622826143db565b602082019050919050565b600061363a600c83613df7565b915061364582614404565b602082019050919050565b600061365d600d83613df7565b91506136688261442d565b602082019050919050565b6000613680602c83613df7565b915061368b82614456565b604082019050919050565b60006136a3603883613df7565b91506136ae826144a5565b604082019050919050565b60006136c6602a83613df7565b91506136d1826144f4565b604082019050919050565b60006136e9602983613df7565b91506136f482614543565b604082019050919050565b600061370c600d83613df7565b915061371782614592565b602082019050919050565b600061372f602083613df7565b915061373a826145bb565b602082019050919050565b6000613752602c83613df7565b915061375d826145e4565b604082019050919050565b6000613775602083613df7565b915061378082614633565b602082019050919050565b6000613798602983613df7565b91506137a38261465c565b604082019050919050565b60006137bb602f83613df7565b91506137c6826146ab565b604082019050919050565b60006137de600d83613df7565b91506137e9826146fa565b602082019050919050565b6000613801600d83613df7565b915061380c82614723565b602082019050919050565b6000613824602183613df7565b915061382f8261474c565b604082019050919050565b6000613847601383613df7565b91506138528261479b565b602082019050919050565b600061386a603183613df7565b9150613875826147c4565b604082019050919050565b600061388d602c83613df7565b915061389882614813565b604082019050919050565b6138ac81613f9c565b82525050565b6138c36138be82613f9c565b6140c2565b82525050565b60006138d58284613426565b60148201915081905092915050565b60006138f08285613426565b60148201915061390082846138b2565b6020820191508190509392505050565b600061391c828561345b565b60208201915061392c828461345b565b6020820191508190509392505050565b600061394882856134e4565b915061395482846134e4565b91508190509392505050565b60006020820190506139756000830184613417565b92915050565b60006080820190506139906000830187613417565b61399d6020830186613417565b6139aa60408301856138a3565b81810360608301526139bc8184613472565b905095945050505050565b60006020820190506139dc600083018461343d565b92915050565b60006020820190506139f7600083018461344c565b92915050565b60006020820190508181036000830152613a1781846134ab565b905092915050565b60006020820190508181036000830152613a3881613515565b9050919050565b60006020820190508181036000830152613a5881613538565b9050919050565b60006020820190508181036000830152613a788161355b565b9050919050565b60006020820190508181036000830152613a988161357e565b9050919050565b60006020820190508181036000830152613ab8816135a1565b9050919050565b60006020820190508181036000830152613ad8816135c4565b9050919050565b60006020820190508181036000830152613af8816135e7565b9050919050565b60006020820190508181036000830152613b188161360a565b9050919050565b60006020820190508181036000830152613b388161362d565b9050919050565b60006020820190508181036000830152613b5881613650565b9050919050565b60006020820190508181036000830152613b7881613673565b9050919050565b60006020820190508181036000830152613b9881613696565b9050919050565b60006020820190508181036000830152613bb8816136b9565b9050919050565b60006020820190508181036000830152613bd8816136dc565b9050919050565b60006020820190508181036000830152613bf8816136ff565b9050919050565b60006020820190508181036000830152613c1881613722565b9050919050565b60006020820190508181036000830152613c3881613745565b9050919050565b60006020820190508181036000830152613c5881613768565b9050919050565b60006020820190508181036000830152613c788161378b565b9050919050565b60006020820190508181036000830152613c98816137ae565b9050919050565b60006020820190508181036000830152613cb8816137d1565b9050919050565b60006020820190508181036000830152613cd8816137f4565b9050919050565b60006020820190508181036000830152613cf881613817565b9050919050565b60006020820190508181036000830152613d188161383a565b9050919050565b60006020820190508181036000830152613d388161385d565b9050919050565b60006020820190508181036000830152613d5881613880565b9050919050565b6000602082019050613d7460008301846138a3565b92915050565b6000613d84613d95565b9050613d90828261401a565b919050565b6000604051905090565b600067ffffffffffffffff821115613dba57613db96141b9565b5b613dc382614206565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1e82613f9c565b9150613e2983613f9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5e57613e5d6140fd565b5b828201905092915050565b6000613e7482613f9c565b9150613e7f83613f9c565b925082613e8f57613e8e61412c565b5b828204905092915050565b6000613ea582613f9c565b9150613eb083613f9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ee957613ee86140fd565b5b828202905092915050565b6000613eff82613f9c565b9150613f0a83613f9c565b925082821015613f1d57613f1c6140fd565b5b828203905092915050565b6000613f3382613f7c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fd3578082015181840152602081019050613fb8565b83811115613fe2576000848401525b50505050565b6000600282049050600182168061400057607f821691505b602082108114156140145761401361415b565b5b50919050565b61402382614206565b810181811067ffffffffffffffff82111715614042576140416141b9565b5b80604052505050565b600061405682613f9c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614089576140886140fd565b5b600182019050919050565b600061409f826140b0565b9050919050565b6000819050919050565b60006140bb82614217565b9050919050565b6000819050919050565b60006140d782613f9c565b91506140e283613f9c565b9250826140f2576140f161412c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7420436c61696d65640000000000000000000000000000000000000000600082015250565b7f5661756c7420496e76616c696400000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b7f416d6f756e742044656e69656400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61486b81613f28565b811461487657600080fd5b50565b61488281613f3a565b811461488d57600080fd5b50565b61489981613f46565b81146148a457600080fd5b50565b6148b081613f50565b81146148bb57600080fd5b50565b6148c781613f9c565b81146148d257600080fd5b5056fea26469706673582212204c861fcd950f0849711eba571415e6c80cd7521c839526977544ff3ec3b2eaaf64736f6c63430008070033

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.