ETH Price: $3,441.25 (-2.64%)
Gas: 5 Gwei

Crypto Humans Club (CHC)
 

Overview

TokenID

86

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CHC is a membership system and digital collectible composed of 5000 Crypto Humans NFTs.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoHumansClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : CryptoHumansClub.sol
// SPDX-License-Identifier: MIT
/*
$ $ $ - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - $ $ $
$                                                                                                                      $
$                                                                                                                      $
.                                                                                                                      .
.                                                          ▅▅▅▅▅▅                                                      .
.                                                      ▇▇▇▇$#$#$#▇▇▇▇                                                  .
.                                                    ▇▇$#$#$#$#$#$#$#▇▇                                                .
.                                                  ▇▇$#$#$#$#$#$#$#$#$#▇▇                                              .
.                                                  ▇▇$#$#$#$#$▅▅▅▅▅▅▅▅▅▅▅▅                                             .
.                                                ▇▇$#$#$#$▇▇▇▇###########▇▇▇▇                                          .
.                                                ▇▇$#$#▇▇▇▇################▇▇                                          .
.                                                ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇                                            .
.                                                ▇▇                      ▇▇                                            .
.                                                ▇▇        ▇       █     ▇▇                                            .
.                                                ▇▇        ▇       █     ▇▇                                            .
.                                                ▇▇                      ▇▇                                            .
.                                                  ▇▇                  ▇▇                                              .
.                                                  ▇▇         ▅▅▅▅     ▇▇                                              .
.                                                    ▇▇              ▇▇                                                .
.                                                      ▅▅▅▅      ▅▅▅▅                                                  .
.                                                          ▅▅▅▅▅▅                                                      .
.                                                      ####010101####                                                  .
.                                                    ##01010101010101##                                                .
.                                                  ####01010101010101####                                              .
.                                                    ##################                                                .
.    ####                    ##.             ##. ##                                             #### ##.       ##      .
.   ##.   ##.#### ########.######. #####.    ##. ## ##. ## ##/######    ##### ##/##.  ###.     ##.   ##.##. ## ##      .
.  ##.    ####.## ##.##. ##. ##.  ##.  ##.   ###### ##. ## ##. ##. ##  ##. ## ##. ## ##.      ##.    ##.##. ## #####   .
.  ##.    ##.   ###. ##. ##. ##.  ##.  ##.   ##. ## ##. ## ##. ##. ## ##.  ## ##. ##  ###.    ##.    ##.##. ## ##. ##  .
.   ##.   ##.   ##.  ##. ##  ##.# ##.  ##.   ##. ## ##. ## ##. ##. ##  ##. ## ##. ##.   ##.    ##.   ##.##. ## ##. ##  .
.    #### ##.  ##.   ####    ####  #####     ##  ##  ####  ##. ##. ##   ###.# ##  ## ####.      #### ##. ####. #####   .
.             ##.    ##                                                                                                .
$            ##.     ##                                                                                                $
$                                                                                                                      $
$ $ $ - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - $ $ $
*/
pragma solidity ^0.8.0;

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

contract CryptoHumansClub is ERC721, ERC721Enumerable, Ownable {
    string public PROVENANCE;
    bool public saleIsActive = false;
    string private _baseURIextended;

    bool public isAllowListActive = false;
    uint256 public constant MAX_SUPPLY = 5000;
    uint256 public constant MAX_PUBLIC_MINT = 5;
    uint256 private PRESALE_PRICE = 0.08 ether;
    uint256 public constant publicSalePrice= 0.15 ether;

    mapping(address => uint8) private _allowList;

    constructor() ERC721("Crypto Humans Club", "CHC") {
    }

    function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
    }

    function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = numAllowedToMint;
        }
    }

    function numAvailableToMint(address addr) external view returns (uint8) {
        return _allowList[addr];
    }

    function mintAllowList(uint8 numberOfTokens) external payable {
        uint256 ts = totalSupply();
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList[msg.sender], "Exceeded max available to purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(PRESALE_PRICE * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function reserve(uint256 n) public onlyOwner {
      uint supply = totalSupply();
      uint i;
      for (i = 0; i < n; i++) {
          _safeMint(msg.sender, supply + i);
      }
    }

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function mint(uint numberOfTokens) public payable {
        uint256 ts = totalSupply();
        require(saleIsActive, "Sale must be active to mint tokens");
        require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(publicSalePrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 3 of 13 : 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 4 of 13 : 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);
}

File 5 of 13 : 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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 6 of 13 : 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 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600c805460ff19908116909155600e8054909116905567011c37937e080000600f553480156200003357600080fd5b50604080518082018252601281527121b93cb83a3790243ab6b0b7399021b63ab160711b60208083019182528351808501909452600384526243484360e81b908401528151919291620000899160009162000118565b5080516200009f90600190602084019062000118565b505050620000bc620000b6620000c260201b60201c565b620000c6565b620001fb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600181811c90821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b6125f3806200020b6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063ddff5b1c1161006f578063ddff5b1c146105ca578063e985e9c5146105dd578063eb8d244414610626578063f2fde38b14610640578063ffe630b51461066057600080fd5b8063b88d4fde1461051f578063c04a28361461053f578063c4e370951461058a578063c87b56dd146105aa57600080fd5b80638da5cb5b116100e75780638da5cb5b1461049d57806395d89b41146104bb5780639b6860c8146104d0578063a0712d68146104ec578063a22cb465146104ff57600080fd5b8063715018a614610428578063718bc4af1461043d578063819b25ba1461045d5780638295784d1461047d57600080fd5b806332cb6b0c1161019b57806355f804b31161016a57806355f804b31461039e5780636352211e146103be5780636373a6b1146103de57806365f13097146103f357806370a082311461040857600080fd5b806332cb6b0c146103335780633ccfd60b1461034957806342842e0e1461035e5780634f6ccce71461037e57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d957806329fc6bae146102f95780632f745c591461031357600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046121e4565b610680565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610691565b6040516102359190612333565b34801561026c57600080fd5b5061028061027b366004612267565b610723565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b336600461211b565b6107bd565b005b3480156102c657600080fd5b506008545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004612039565b6108d3565b34801561030557600080fd5b50600e546102299060ff1681565b34801561031f57600080fd5b506102cb61032e36600461211b565b610904565b34801561033f57600080fd5b506102cb61138881565b34801561035557600080fd5b506102b861099a565b34801561036a57600080fd5b506102b8610379366004612039565b6109f7565b34801561038a57600080fd5b506102cb610399366004612267565b610a12565b3480156103aa57600080fd5b506102b86103b936600461221e565b610aa5565b3480156103ca57600080fd5b506102806103d9366004612267565b610ae2565b3480156103ea57600080fd5b50610253610b59565b3480156103ff57600080fd5b506102cb600581565b34801561041457600080fd5b506102cb610423366004611feb565b610be7565b34801561043457600080fd5b506102b8610c6e565b34801561044957600080fd5b506102b86104583660046121c9565b610ca4565b34801561046957600080fd5b506102b8610478366004612267565b610ce1565b34801561048957600080fd5b506102b8610498366004612145565b610d48565b3480156104a957600080fd5b50600a546001600160a01b0316610280565b3480156104c757600080fd5b50610253610dec565b3480156104dc57600080fd5b506102cb670214e8348c4f000081565b6102b86104fa366004612267565b610dfb565b34801561050b57600080fd5b506102b861051a3660046120f1565b610f9e565b34801561052b57600080fd5b506102b861053a366004612075565b610fa9565b34801561054b57600080fd5b5061057861055a366004611feb565b6001600160a01b031660009081526010602052604090205460ff1690565b60405160ff9091168152602001610235565b34801561059657600080fd5b506102b86105a53660046121c9565b610fdb565b3480156105b657600080fd5b506102536105c5366004612267565b611018565b6102b86105d8366004612280565b6110f3565b3480156105e957600080fd5b506102296105f8366004612006565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063257600080fd5b50600c546102299060ff1681565b34801561064c57600080fd5b506102b861065b366004611feb565b6112ea565b34801561066c57600080fd5b506102b861067b36600461221e565b611385565b600061068b826113c2565b92915050565b6060600080546106a0906124cf565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc906124cf565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107c882610ae2565b9050806001600160a01b0316836001600160a01b031614156108365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610798565b336001600160a01b0382161480610852575061085281336105f8565b6108c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610798565b6108ce83836113e7565b505050565b6108dd3382611455565b6108f95760405162461bcd60e51b8152600401610798906123cd565b6108ce83838361154c565b600061090f83610be7565b82106109715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610798565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109c45760405162461bcd60e51b815260040161079890612398565b6040514790339082156108fc029083906000818181858888f193505050501580156109f3573d6000803e3d6000fd5b5050565b6108ce83838360405180602001604052806000815250610fa9565b6000610a1d60085490565b8210610a805760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610798565b60088281548110610a9357610a9361257b565b90600052602060002001549050919050565b600a546001600160a01b03163314610acf5760405162461bcd60e51b815260040161079890612398565b80516109f390600d906020840190611e9f565b6000818152600260205260408120546001600160a01b03168061068b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610798565b600b8054610b66906124cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b92906124cf565b8015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b505050505081565b60006001600160a01b038216610c525760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610798565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c985760405162461bcd60e51b815260040161079890612398565b610ca260006116f3565b565b600a546001600160a01b03163314610cce5760405162461bcd60e51b815260040161079890612398565b600e805460ff1916911515919091179055565b600a546001600160a01b03163314610d0b5760405162461bcd60e51b815260040161079890612398565b6000610d1660085490565b905060005b828110156108ce57610d3633610d31838561241e565b611745565b80610d408161250a565b915050610d1b565b600a546001600160a01b03163314610d725760405162461bcd60e51b815260040161079890612398565b60005b82811015610de6578160106000868685818110610d9457610d9461257b565b9050602002016020810190610da99190611feb565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610dde8161250a565b915050610d75565b50505050565b6060600180546106a0906124cf565b6000610e0660085490565b600c5490915060ff16610e665760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610798565b6005821115610eb75760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e20707572636861736500000000006044820152606401610798565b611388610ec4838361241e565b1115610f125760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610798565b34610f2583670214e8348c4f000061244a565b1115610f735760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610798565b60005b828110156108ce57610f8c33610d31838561241e565b80610f968161250a565b915050610f76565b6109f333838361175f565b610fb33383611455565b610fcf5760405162461bcd60e51b8152600401610798906123cd565b610de68484848461182e565b600a546001600160a01b031633146110055760405162461bcd60e51b815260040161079890612398565b600c805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166110975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610798565b60006110a1611861565b905060008151116110c157604051806020016040528060008152506110ec565b806110cb84611870565b6040516020016110dc9291906122c7565b6040516020818303038152906040525b9392505050565b60006110fe60085490565b600e5490915060ff166111535760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77206c697374206973206e6f742061637469766500000000000000006044820152606401610798565b3360009081526010602052604090205460ff90811690831611156111c45760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604482015261736560f01b6064820152608401610798565b6113886111d460ff84168361241e565b11156112225760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610798565b348260ff16600f54611234919061244a565b11156112825760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610798565b33600090815260106020526040812080548492906112a490849060ff16612480565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156108ce576112d833610d31838561241e565b806112e28161250a565b9150506112bf565b600a546001600160a01b031633146113145760405162461bcd60e51b815260040161079890612398565b6001600160a01b0381166113795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b611382816116f3565b50565b600a546001600160a01b031633146113af5760405162461bcd60e51b815260040161079890612398565b80516109f390600b906020840190611e9f565b60006001600160e01b0319821663780e9d6360e01b148061068b575061068b8261196e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061141c82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610798565b60006114d983610ae2565b9050806001600160a01b0316846001600160a01b031614806115145750836001600160a01b031661150984610723565b6001600160a01b0316145b8061154457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661155f82610ae2565b6001600160a01b0316146115c35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610798565b6001600160a01b0382166116255760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b6116308383836119be565b61163b6000826113e7565b6001600160a01b0383166000908152600360205260408120805460019290611664908490612469565b90915550506001600160a01b038216600090815260036020526040812080546001929061169290849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109f38282604051806020016040528060008152506119c9565b816001600160a01b0316836001600160a01b031614156117c15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610798565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61183984848461154c565b611845848484846119fc565b610de65760405162461bcd60e51b815260040161079890612346565b6060600d80546106a0906124cf565b6060816118945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118be57806118a88161250a565b91506118b79050600a83612436565b9150611898565b60008167ffffffffffffffff8111156118d9576118d9612591565b6040519080825280601f01601f191660200182016040528015611903576020820181803683370190505b5090505b841561154457611918600183612469565b9150611925600a86612525565b61193090603061241e565b60f81b8183815181106119455761194561257b565b60200101906001600160f81b031916908160001a905350611967600a86612436565b9450611907565b60006001600160e01b031982166380ac58cd60e01b148061199f57506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b031983161461068b565b6108ce838383611b09565b6119d38383611bc1565b6119e060008484846119fc565b6108ce5760405162461bcd60e51b815260040161079890612346565b60006001600160a01b0384163b15611afe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a409033908990889088906004016122f6565b602060405180830381600087803b158015611a5a57600080fd5b505af1925050508015611a8a575060408051601f3d908101601f19168201909252611a8791810190612201565b60015b611ae4573d808015611ab8576040519150601f19603f3d011682016040523d82523d6000602084013e611abd565b606091505b508051611adc5760405162461bcd60e51b815260040161079890612346565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611544565b506001949350505050565b6001600160a01b038316611b6457611b5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b87565b816001600160a01b0316836001600160a01b031614611b8757611b878382611d0f565b6001600160a01b038216611b9e576108ce81611dac565b826001600160a01b0316826001600160a01b0316146108ce576108ce8282611e5b565b6001600160a01b038216611c175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610798565b6000818152600260205260409020546001600160a01b031615611c7c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610798565b611c88600083836119be565b6001600160a01b0382166000908152600360205260408120805460019290611cb190849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611d1c84610be7565b611d269190612469565b600083815260076020526040902054909150808214611d79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dbe90600190612469565b60008381526009602052604081205460088054939450909284908110611de657611de661257b565b906000526020600020015490508060088381548110611e0757611e0761257b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3f57611e3f612565565b6001900381819060005260206000200160009055905550505050565b6000611e6683610be7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611eab906124cf565b90600052602060002090601f016020900481019282611ecd5760008555611f13565b82601f10611ee657805160ff1916838001178555611f13565b82800160010185558215611f13579182015b82811115611f13578251825591602001919060010190611ef8565b50611f1f929150611f23565b5090565b5b80821115611f1f5760008155600101611f24565b600067ffffffffffffffff80841115611f5357611f53612591565b604051601f8501601f19908116603f01168101908282118183101715611f7b57611f7b612591565b81604052809350858152868686011115611f9457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fc557600080fd5b919050565b80358015158114611fc557600080fd5b803560ff81168114611fc557600080fd5b600060208284031215611ffd57600080fd5b6110ec82611fae565b6000806040838503121561201957600080fd5b61202283611fae565b915061203060208401611fae565b90509250929050565b60008060006060848603121561204e57600080fd5b61205784611fae565b925061206560208501611fae565b9150604084013590509250925092565b6000806000806080858703121561208b57600080fd5b61209485611fae565b93506120a260208601611fae565b925060408501359150606085013567ffffffffffffffff8111156120c557600080fd5b8501601f810187136120d657600080fd5b6120e587823560208401611f38565b91505092959194509250565b6000806040838503121561210457600080fd5b61210d83611fae565b915061203060208401611fca565b6000806040838503121561212e57600080fd5b61213783611fae565b946020939093013593505050565b60008060006040848603121561215a57600080fd5b833567ffffffffffffffff8082111561217257600080fd5b818601915086601f83011261218657600080fd5b81358181111561219557600080fd5b8760208260051b85010111156121aa57600080fd5b6020928301955093506121c09186019050611fda565b90509250925092565b6000602082840312156121db57600080fd5b6110ec82611fca565b6000602082840312156121f657600080fd5b81356110ec816125a7565b60006020828403121561221357600080fd5b81516110ec816125a7565b60006020828403121561223057600080fd5b813567ffffffffffffffff81111561224757600080fd5b8201601f8101841361225857600080fd5b61154484823560208401611f38565b60006020828403121561227957600080fd5b5035919050565b60006020828403121561229257600080fd5b6110ec82611fda565b600081518084526122b38160208601602086016124a3565b601f01601f19169290920160200192915050565b600083516122d98184602088016124a3565b8351908301906122ed8183602088016124a3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123299083018461229b565b9695505050505050565b6020815260006110ec602083018461229b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561243157612431612539565b500190565b6000826124455761244561254f565b500490565b600081600019048311821515161561246457612464612539565b500290565b60008282101561247b5761247b612539565b500390565b600060ff821660ff84168082101561249a5761249a612539565b90039392505050565b60005b838110156124be5781810151838201526020016124a6565b83811115610de65750506000910152565b600181811c908216806124e357607f821691505b6020821081141561250457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561251e5761251e612539565b5060010190565b6000826125345761253461254f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461138257600080fdfea26469706673582212205e868d0a394d73765d276b81d6c4e77c71c73e14a6bbc8c7caa20ce25956d77e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063ddff5b1c1161006f578063ddff5b1c146105ca578063e985e9c5146105dd578063eb8d244414610626578063f2fde38b14610640578063ffe630b51461066057600080fd5b8063b88d4fde1461051f578063c04a28361461053f578063c4e370951461058a578063c87b56dd146105aa57600080fd5b80638da5cb5b116100e75780638da5cb5b1461049d57806395d89b41146104bb5780639b6860c8146104d0578063a0712d68146104ec578063a22cb465146104ff57600080fd5b8063715018a614610428578063718bc4af1461043d578063819b25ba1461045d5780638295784d1461047d57600080fd5b806332cb6b0c1161019b57806355f804b31161016a57806355f804b31461039e5780636352211e146103be5780636373a6b1146103de57806365f13097146103f357806370a082311461040857600080fd5b806332cb6b0c146103335780633ccfd60b1461034957806342842e0e1461035e5780634f6ccce71461037e57600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d957806329fc6bae146102f95780632f745c591461031357600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046121e4565b610680565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610691565b6040516102359190612333565b34801561026c57600080fd5b5061028061027b366004612267565b610723565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b336600461211b565b6107bd565b005b3480156102c657600080fd5b506008545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004612039565b6108d3565b34801561030557600080fd5b50600e546102299060ff1681565b34801561031f57600080fd5b506102cb61032e36600461211b565b610904565b34801561033f57600080fd5b506102cb61138881565b34801561035557600080fd5b506102b861099a565b34801561036a57600080fd5b506102b8610379366004612039565b6109f7565b34801561038a57600080fd5b506102cb610399366004612267565b610a12565b3480156103aa57600080fd5b506102b86103b936600461221e565b610aa5565b3480156103ca57600080fd5b506102806103d9366004612267565b610ae2565b3480156103ea57600080fd5b50610253610b59565b3480156103ff57600080fd5b506102cb600581565b34801561041457600080fd5b506102cb610423366004611feb565b610be7565b34801561043457600080fd5b506102b8610c6e565b34801561044957600080fd5b506102b86104583660046121c9565b610ca4565b34801561046957600080fd5b506102b8610478366004612267565b610ce1565b34801561048957600080fd5b506102b8610498366004612145565b610d48565b3480156104a957600080fd5b50600a546001600160a01b0316610280565b3480156104c757600080fd5b50610253610dec565b3480156104dc57600080fd5b506102cb670214e8348c4f000081565b6102b86104fa366004612267565b610dfb565b34801561050b57600080fd5b506102b861051a3660046120f1565b610f9e565b34801561052b57600080fd5b506102b861053a366004612075565b610fa9565b34801561054b57600080fd5b5061057861055a366004611feb565b6001600160a01b031660009081526010602052604090205460ff1690565b60405160ff9091168152602001610235565b34801561059657600080fd5b506102b86105a53660046121c9565b610fdb565b3480156105b657600080fd5b506102536105c5366004612267565b611018565b6102b86105d8366004612280565b6110f3565b3480156105e957600080fd5b506102296105f8366004612006565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063257600080fd5b50600c546102299060ff1681565b34801561064c57600080fd5b506102b861065b366004611feb565b6112ea565b34801561066c57600080fd5b506102b861067b36600461221e565b611385565b600061068b826113c2565b92915050565b6060600080546106a0906124cf565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc906124cf565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107c882610ae2565b9050806001600160a01b0316836001600160a01b031614156108365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610798565b336001600160a01b0382161480610852575061085281336105f8565b6108c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610798565b6108ce83836113e7565b505050565b6108dd3382611455565b6108f95760405162461bcd60e51b8152600401610798906123cd565b6108ce83838361154c565b600061090f83610be7565b82106109715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610798565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109c45760405162461bcd60e51b815260040161079890612398565b6040514790339082156108fc029083906000818181858888f193505050501580156109f3573d6000803e3d6000fd5b5050565b6108ce83838360405180602001604052806000815250610fa9565b6000610a1d60085490565b8210610a805760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610798565b60088281548110610a9357610a9361257b565b90600052602060002001549050919050565b600a546001600160a01b03163314610acf5760405162461bcd60e51b815260040161079890612398565b80516109f390600d906020840190611e9f565b6000818152600260205260408120546001600160a01b03168061068b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610798565b600b8054610b66906124cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b92906124cf565b8015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b505050505081565b60006001600160a01b038216610c525760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610798565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c985760405162461bcd60e51b815260040161079890612398565b610ca260006116f3565b565b600a546001600160a01b03163314610cce5760405162461bcd60e51b815260040161079890612398565b600e805460ff1916911515919091179055565b600a546001600160a01b03163314610d0b5760405162461bcd60e51b815260040161079890612398565b6000610d1660085490565b905060005b828110156108ce57610d3633610d31838561241e565b611745565b80610d408161250a565b915050610d1b565b600a546001600160a01b03163314610d725760405162461bcd60e51b815260040161079890612398565b60005b82811015610de6578160106000868685818110610d9457610d9461257b565b9050602002016020810190610da99190611feb565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610dde8161250a565b915050610d75565b50505050565b6060600180546106a0906124cf565b6000610e0660085490565b600c5490915060ff16610e665760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610798565b6005821115610eb75760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e20707572636861736500000000006044820152606401610798565b611388610ec4838361241e565b1115610f125760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610798565b34610f2583670214e8348c4f000061244a565b1115610f735760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610798565b60005b828110156108ce57610f8c33610d31838561241e565b80610f968161250a565b915050610f76565b6109f333838361175f565b610fb33383611455565b610fcf5760405162461bcd60e51b8152600401610798906123cd565b610de68484848461182e565b600a546001600160a01b031633146110055760405162461bcd60e51b815260040161079890612398565b600c805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166110975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610798565b60006110a1611861565b905060008151116110c157604051806020016040528060008152506110ec565b806110cb84611870565b6040516020016110dc9291906122c7565b6040516020818303038152906040525b9392505050565b60006110fe60085490565b600e5490915060ff166111535760405162461bcd60e51b815260206004820152601860248201527f416c6c6f77206c697374206973206e6f742061637469766500000000000000006044820152606401610798565b3360009081526010602052604090205460ff90811690831611156111c45760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604482015261736560f01b6064820152608401610798565b6113886111d460ff84168361241e565b11156112225760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610798565b348260ff16600f54611234919061244a565b11156112825760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610798565b33600090815260106020526040812080548492906112a490849060ff16612480565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156108ce576112d833610d31838561241e565b806112e28161250a565b9150506112bf565b600a546001600160a01b031633146113145760405162461bcd60e51b815260040161079890612398565b6001600160a01b0381166113795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b611382816116f3565b50565b600a546001600160a01b031633146113af5760405162461bcd60e51b815260040161079890612398565b80516109f390600b906020840190611e9f565b60006001600160e01b0319821663780e9d6360e01b148061068b575061068b8261196e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061141c82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610798565b60006114d983610ae2565b9050806001600160a01b0316846001600160a01b031614806115145750836001600160a01b031661150984610723565b6001600160a01b0316145b8061154457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661155f82610ae2565b6001600160a01b0316146115c35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610798565b6001600160a01b0382166116255760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b6116308383836119be565b61163b6000826113e7565b6001600160a01b0383166000908152600360205260408120805460019290611664908490612469565b90915550506001600160a01b038216600090815260036020526040812080546001929061169290849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109f38282604051806020016040528060008152506119c9565b816001600160a01b0316836001600160a01b031614156117c15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610798565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61183984848461154c565b611845848484846119fc565b610de65760405162461bcd60e51b815260040161079890612346565b6060600d80546106a0906124cf565b6060816118945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118be57806118a88161250a565b91506118b79050600a83612436565b9150611898565b60008167ffffffffffffffff8111156118d9576118d9612591565b6040519080825280601f01601f191660200182016040528015611903576020820181803683370190505b5090505b841561154457611918600183612469565b9150611925600a86612525565b61193090603061241e565b60f81b8183815181106119455761194561257b565b60200101906001600160f81b031916908160001a905350611967600a86612436565b9450611907565b60006001600160e01b031982166380ac58cd60e01b148061199f57506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b031983161461068b565b6108ce838383611b09565b6119d38383611bc1565b6119e060008484846119fc565b6108ce5760405162461bcd60e51b815260040161079890612346565b60006001600160a01b0384163b15611afe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a409033908990889088906004016122f6565b602060405180830381600087803b158015611a5a57600080fd5b505af1925050508015611a8a575060408051601f3d908101601f19168201909252611a8791810190612201565b60015b611ae4573d808015611ab8576040519150601f19603f3d011682016040523d82523d6000602084013e611abd565b606091505b508051611adc5760405162461bcd60e51b815260040161079890612346565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611544565b506001949350505050565b6001600160a01b038316611b6457611b5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b87565b816001600160a01b0316836001600160a01b031614611b8757611b878382611d0f565b6001600160a01b038216611b9e576108ce81611dac565b826001600160a01b0316826001600160a01b0316146108ce576108ce8282611e5b565b6001600160a01b038216611c175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610798565b6000818152600260205260409020546001600160a01b031615611c7c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610798565b611c88600083836119be565b6001600160a01b0382166000908152600360205260408120805460019290611cb190849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611d1c84610be7565b611d269190612469565b600083815260076020526040902054909150808214611d79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dbe90600190612469565b60008381526009602052604081205460088054939450909284908110611de657611de661257b565b906000526020600020015490508060088381548110611e0757611e0761257b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3f57611e3f612565565b6001900381819060005260206000200160009055905550505050565b6000611e6683610be7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611eab906124cf565b90600052602060002090601f016020900481019282611ecd5760008555611f13565b82601f10611ee657805160ff1916838001178555611f13565b82800160010185558215611f13579182015b82811115611f13578251825591602001919060010190611ef8565b50611f1f929150611f23565b5090565b5b80821115611f1f5760008155600101611f24565b600067ffffffffffffffff80841115611f5357611f53612591565b604051601f8501601f19908116603f01168101908282118183101715611f7b57611f7b612591565b81604052809350858152868686011115611f9457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fc557600080fd5b919050565b80358015158114611fc557600080fd5b803560ff81168114611fc557600080fd5b600060208284031215611ffd57600080fd5b6110ec82611fae565b6000806040838503121561201957600080fd5b61202283611fae565b915061203060208401611fae565b90509250929050565b60008060006060848603121561204e57600080fd5b61205784611fae565b925061206560208501611fae565b9150604084013590509250925092565b6000806000806080858703121561208b57600080fd5b61209485611fae565b93506120a260208601611fae565b925060408501359150606085013567ffffffffffffffff8111156120c557600080fd5b8501601f810187136120d657600080fd5b6120e587823560208401611f38565b91505092959194509250565b6000806040838503121561210457600080fd5b61210d83611fae565b915061203060208401611fca565b6000806040838503121561212e57600080fd5b61213783611fae565b946020939093013593505050565b60008060006040848603121561215a57600080fd5b833567ffffffffffffffff8082111561217257600080fd5b818601915086601f83011261218657600080fd5b81358181111561219557600080fd5b8760208260051b85010111156121aa57600080fd5b6020928301955093506121c09186019050611fda565b90509250925092565b6000602082840312156121db57600080fd5b6110ec82611fca565b6000602082840312156121f657600080fd5b81356110ec816125a7565b60006020828403121561221357600080fd5b81516110ec816125a7565b60006020828403121561223057600080fd5b813567ffffffffffffffff81111561224757600080fd5b8201601f8101841361225857600080fd5b61154484823560208401611f38565b60006020828403121561227957600080fd5b5035919050565b60006020828403121561229257600080fd5b6110ec82611fda565b600081518084526122b38160208601602086016124a3565b601f01601f19169290920160200192915050565b600083516122d98184602088016124a3565b8351908301906122ed8183602088016124a3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123299083018461229b565b9695505050505050565b6020815260006110ec602083018461229b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561243157612431612539565b500190565b6000826124455761244561254f565b500490565b600081600019048311821515161561246457612464612539565b500290565b60008282101561247b5761247b612539565b500390565b600060ff821660ff84168082101561249a5761249a612539565b90039392505050565b60005b838110156124be5781810151838201526020016124a6565b83811115610de65750506000910152565b600181811c908216806124e357607f821691505b6020821081141561250457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561251e5761251e612539565b5060010190565b6000826125345761253461254f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461138257600080fdfea26469706673582212205e868d0a394d73765d276b81d6c4e77c71c73e14a6bbc8c7caa20ce25956d77e64736f6c63430008070033

Deployed Bytecode Sourcemap

4793:3420:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6660:179;;;;;;;;;;-1:-1:-1;6660:179:12;;;;;:::i;:::-;;:::i;:::-;;;6947:14:13;;6940:22;6922:41;;6910:2;6895:18;6660:179:12;;;;;;;;2566:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4126:221::-;;;;;;;;;;-1:-1:-1;4126:221:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6245:32:13;;;6227:51;;6215:2;6200:18;4126:221:1;6081:203:13;3649:411:1;;;;;;;;;;-1:-1:-1;3649:411:1;;;;;:::i;:::-;;:::i;:::-;;1659:113:4;;;;;;;;;;-1:-1:-1;1747:10:4;:17;1659:113;;;16783:25:13;;;16771:2;16756:18;1659:113:4;16637:177:13;4876:339:1;;;;;;;;;;-1:-1:-1;4876:339:1;;;;;:::i;:::-;;:::i;4973:37:12:-;;;;;;;;;;-1:-1:-1;4973:37:12;;;;;;;;1327:256:4;;;;;;;;;;-1:-1:-1;1327:256:4;;;;;:::i;:::-;;:::i;5017:41:12:-;;;;;;;;;;;;5054:4;5017:41;;8070:140;;;;;;;;;;;;;:::i;5286:185:1:-;;;;;;;;;;-1:-1:-1;5286:185:1;;;;;:::i;:::-;;:::i;1849:233:4:-;;;;;;;;;;-1:-1:-1;1849:233:4;;;;;:::i;:::-;;:::i;6847:111:12:-;;;;;;;;;;-1:-1:-1;6847:111:12;;;;;:::i;:::-;;:::i;2260:239:1:-;;;;;;;;;;-1:-1:-1;2260:239:1;;;;;:::i;:::-;;:::i;4863:24:12:-;;;;;;;;;;;;;:::i;5065:43::-;;;;;;;;;;;;5107:1;5065:43;;1990:208:1;;;;;;;;;;-1:-1:-1;1990:208:1;;;;;:::i;:::-;;:::i;1721:103:0:-;;;;;;;;;;;;;:::i;5343:131:12:-;;;;;;;;;;-1:-1:-1;5343:131:12;;;;;:::i;:::-;;:::i;7207:192::-;;;;;;;;;;-1:-1:-1;7207:192:12;;;;;:::i;:::-;;:::i;5482:230::-;;;;;;;;;;-1:-1:-1;5482:230:12;;;;;:::i;:::-;;:::i;1070:87:0:-;;;;;;;;;;-1:-1:-1;1143:6:0;;-1:-1:-1;;;;;1143:6:0;1070:87;;2735:104:1;;;;;;;;;;;;;:::i;5164:51:12:-;;;;;;;;;;;;5205:10;5164:51;;7511:551;;;;;;:::i;:::-;;:::i;4419:155:1:-;;;;;;;;;;-1:-1:-1;4419:155:1;;;;;:::i;:::-;;:::i;5542:328::-;;;;;;;;;;-1:-1:-1;5542:328:1;;;;;:::i;:::-;;:::i;5720:114:12:-;;;;;;;;;;-1:-1:-1;5720:114:12;;;;;:::i;:::-;-1:-1:-1;;;;;5810:16:12;5785:5;5810:16;;;:10;:16;;;;;;;;;5720:114;;;;16991:4:13;16979:17;;;16961:36;;16949:2;16934:18;5720:114:12;16819:184:13;7407:96:12;;;;;;;;;;-1:-1:-1;7407:96:12;;;;;:::i;:::-;;:::i;2910:334:1:-;;;;;;;;;;-1:-1:-1;2910:334:1;;;;;:::i;:::-;;:::i;5842:621:12:-;;;;;;:::i;:::-;;:::i;4645:164:1:-;;;;;;;;;;-1:-1:-1;4645:164:1;;;;;:::i;:::-;-1:-1:-1;;;;;4766:25:1;;;4742:4;4766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4645:164;4894:32:12;;;;;;;;;;-1:-1:-1;4894:32:12;;;;;;;;1979:201:0;;;;;;;;;;-1:-1:-1;1979:201:0;;;;;:::i;:::-;;:::i;7091:108:12:-;;;;;;;;;;-1:-1:-1;7091:108:12;;;;;:::i;:::-;;:::i;6660:179::-;6771:4;6795:36;6819:11;6795:23;:36::i;:::-;6788:43;6660:179;-1:-1:-1;;6660:179:12:o;2566:100:1:-;2620:13;2653:5;2646:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2566:100;:::o;4126:221::-;4202:7;7469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7469:16:1;4222:73;;;;-1:-1:-1;;;4222:73:1;;12901:2:13;4222:73:1;;;12883:21:13;12940:2;12920:18;;;12913:30;12979:34;12959:18;;;12952:62;-1:-1:-1;;;13030:18:13;;;13023:42;13082:19;;4222:73:1;;;;;;;;;-1:-1:-1;4315:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4315:24:1;;4126:221::o;3649:411::-;3730:13;3746:23;3761:7;3746:14;:23::i;:::-;3730:39;;3794:5;-1:-1:-1;;;;;3788:11:1;:2;-1:-1:-1;;;;;3788:11:1;;;3780:57;;;;-1:-1:-1;;;3780:57:1;;14494:2:13;3780:57:1;;;14476:21:13;14533:2;14513:18;;;14506:30;14572:34;14552:18;;;14545:62;-1:-1:-1;;;14623:18:13;;;14616:31;14664:19;;3780:57:1;14292:397:13;3780:57:1;736:10:8;-1:-1:-1;;;;;3872:21:1;;;;:62;;-1:-1:-1;3897:37:1;3914:5;736:10:8;4645:164:1;:::i;3897:37::-;3850:168;;;;-1:-1:-1;;;3850:168:1;;11294:2:13;3850:168:1;;;11276:21:13;11333:2;11313:18;;;11306:30;11372:34;11352:18;;;11345:62;11443:26;11423:18;;;11416:54;11487:19;;3850:168:1;11092:420:13;3850:168:1;4031:21;4040:2;4044:7;4031:8;:21::i;:::-;3719:341;3649:411;;:::o;4876:339::-;5071:41;736:10:8;5104:7:1;5071:18;:41::i;:::-;5063:103;;;;-1:-1:-1;;;5063:103:1;;;;;;;:::i;:::-;5179:28;5189:4;5195:2;5199:7;5179:9;:28::i;1327:256:4:-;1424:7;1460:23;1477:5;1460:16;:23::i;:::-;1452:5;:31;1444:87;;;;-1:-1:-1;;;1444:87:4;;7400:2:13;1444:87:4;;;7382:21:13;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:13;;;7522:41;7580:19;;1444:87:4;7198:407:13;1444:87:4;-1:-1:-1;;;;;;1549:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1327:256::o;8070:140:12:-;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;8165:37:12::1;::::0;8133:21:::1;::::0;8173:10:::1;::::0;8165:37;::::1;;;::::0;8133:21;;8118:12:::1;8165:37:::0;8118:12;8165:37;8133:21;8173:10;8165:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;8107:103;8070:140::o:0;5286:185:1:-;5424:39;5441:4;5447:2;5451:7;5424:39;;;;;;;;;;;;:16;:39::i;1849:233:4:-;1924:7;1960:30;1747:10;:17;;1659:113;1960:30;1952:5;:38;1944:95;;;;-1:-1:-1;;;1944:95:4;;16073:2:13;1944:95:4;;;16055:21:13;16112:2;16092:18;;;16085:30;16151:34;16131:18;;;16124:62;-1:-1:-1;;;16202:18:13;;;16195:42;16254:19;;1944:95:4;15871:408:13;1944:95:4;2057:10;2068:5;2057:17;;;;;;;;:::i;:::-;;;;;;;;;2050:24;;1849:233;;;:::o;6847:111:12:-;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;6923:27:12;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;2260:239:1:-:0;2332:7;2368:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2368:16:1;2403:19;2395:73;;;;-1:-1:-1;;;2395:73:1;;12130:2:13;2395:73:1;;;12112:21:13;12169:2;12149:18;;;12142:30;12208:34;12188:18;;;12181:62;-1:-1:-1;;;12259:18:13;;;12252:39;12308:19;;2395:73:1;11928:405:13;4863:24:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1990:208:1:-;2062:7;-1:-1:-1;;;;;2090:19:1;;2082:74;;;;-1:-1:-1;;;2082:74:1;;11719:2:13;2082:74:1;;;11701:21:13;11758:2;11738:18;;;11731:30;11797:34;11777:18;;;11770:62;-1:-1:-1;;;11848:18:13;;;11841:40;11898:19;;2082:74:1;11517:406:13;2082:74:1;-1:-1:-1;;;;;;2174:16:1;;;;;:9;:16;;;;;;;1990:208::o;1721:103:0:-;1143:6;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;1786:30:::1;1813:1;1786:18;:30::i;:::-;1721:103::o:0;5343:131:12:-;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;5428:17:12::1;:38:::0;;-1:-1:-1;;5428:38:12::1;::::0;::::1;;::::0;;;::::1;::::0;;5343:131::o;7207:192::-;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;7261:11:12::1;7275:13;1747:10:4::0;:17;;1659:113;7275:13:12::1;7261:27;;7297:6;7312:80;7328:1;7324;:5;7312:80;;;7349:33;7359:10;7371;7380:1:::0;7371:6;:10:::1;:::i;:::-;7349:9;:33::i;:::-;7331:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7312:80;;5482:230:::0;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;5593:9:12::1;5588:117;5608:20:::0;;::::1;5588:117;;;5677:16;5650:10;:24;5661:9;;5671:1;5661:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5650:24:12::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;5650:24:12;:43;;-1:-1:-1;;5650:43:12::1;;::::0;;;::::1;::::0;;;::::1;::::0;;5630:3;::::1;::::0;::::1;:::i;:::-;;;;5588:117;;;;5482:230:::0;;;:::o;2735:104:1:-;2791:13;2824:7;2817:14;;;;;:::i;7511:551:12:-;7572:10;7585:13;1747:10:4;:17;;1659:113;7585:13:12;7617:12;;7572:26;;-1:-1:-1;7617:12:12;;7609:59;;;;-1:-1:-1;;;7609:59:12;;14091:2:13;7609:59:12;;;14073:21:13;14130:2;14110:18;;;14103:30;14169:34;14149:18;;;14142:62;-1:-1:-1;;;14220:18:13;;;14213:32;14262:19;;7609:59:12;13889:398:13;7609:59:12;5107:1;7687:14;:33;;7679:73;;;;-1:-1:-1;;;7679:73:12;;14896:2:13;7679:73:12;;;14878:21:13;14935:2;14915:18;;;14908:30;14974:29;14954:18;;;14947:57;15021:18;;7679:73:12;14694:351:13;7679:73:12;5054:4;7771:19;7776:14;7771:2;:19;:::i;:::-;:33;;7763:78;;;;-1:-1:-1;;;7763:78:12;;8638:2:13;7763:78:12;;;8620:21:13;;;8657:18;;;8650:30;8716:34;8696:18;;;8689:62;8768:18;;7763:78:12;8436:356:13;7763:78:12;7896:9;7860:32;7878:14;5205:10;7860:32;:::i;:::-;:45;;7852:89;;;;-1:-1:-1;;;7852:89:12;;10521:2:13;7852:89:12;;;10503:21:13;10560:2;10540:18;;;10533:30;10599:33;10579:18;;;10572:61;10650:18;;7852:89:12;10319:355:13;7852:89:12;7959:9;7954:101;7978:14;7974:1;:18;7954:101;;;8014:29;8024:10;8036:6;8041:1;8036:2;:6;:::i;8014:29::-;7994:3;;;;:::i;:::-;;;;7954:101;;4419:155:1;4514:52;736:10:8;4547:8:1;4557;4514:18;:52::i;5542:328::-;5717:41;736:10:8;5750:7:1;5717:18;:41::i;:::-;5709:103;;;;-1:-1:-1;;;5709:103:1;;;;;;;:::i;:::-;5823:39;5837:4;5843:2;5847:7;5856:5;5823:13;:39::i;7407:96:12:-;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;7472:12:12::1;:23:::0;;-1:-1:-1;;7472:23:12::1;::::0;::::1;;::::0;;;::::1;::::0;;7407:96::o;2910:334:1:-;7445:4;7469:16;;;:7;:16;;;;;;2983:13;;-1:-1:-1;;;;;7469:16:1;3009:76;;;;-1:-1:-1;;;3009:76:1;;13675:2:13;3009:76:1;;;13657:21:13;13714:2;13694:18;;;13687:30;13753:34;13733:18;;;13726:62;-1:-1:-1;;;13804:18:13;;;13797:45;13859:19;;3009:76:1;13473:411:13;3009:76:1;3098:21;3122:10;:8;:10::i;:::-;3098:34;;3174:1;3156:7;3150:21;:25;:86;;;;;;;;;;;;;;;;;3202:7;3211:18;:7;:16;:18::i;:::-;3185:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3150:86;3143:93;2910:334;-1:-1:-1;;;2910:334:1:o;5842:621:12:-;5915:10;5928:13;1747:10:4;:17;;1659:113;5928:13:12;5960:17;;5915:26;;-1:-1:-1;5960:17:12;;5952:54;;;;-1:-1:-1;;;5952:54:12;;16486:2:13;5952:54:12;;;16468:21:13;16525:2;16505:18;;;16498:30;16564:26;16544:18;;;16537:54;16608:18;;5952:54:12;16284:348:13;5952:54:12;6054:10;6043:22;;;;:10;:22;;;;;;;;;;6025:40;;;;;6017:87;;;;-1:-1:-1;;;6017:87:12;;15252:2:13;6017:87:12;;;15234:21:13;15291:2;15271:18;;;15264:30;15330:34;15310:18;;;15303:62;-1:-1:-1;;;15381:18:13;;;15374:32;15423:19;;6017:87:12;15050:398:13;6017:87:12;5054:4;6123:19;;;;:2;:19;:::i;:::-;:33;;6115:78;;;;-1:-1:-1;;;6115:78:12;;8638:2:13;6115:78:12;;;8620:21:13;;;8657:18;;;8650:30;8716:34;8696:18;;;8689:62;8768:18;;6115:78:12;8436:356:13;6115:78:12;6246:9;6228:14;6212:30;;:13;;:30;;;;:::i;:::-;:43;;6204:87;;;;-1:-1:-1;;;6204:87:12;;10521:2:13;6204:87:12;;;10503:21:13;10560:2;10540:18;;;10533:30;10599:33;10579:18;;;10572:61;10650:18;;6204:87:12;10319:355:13;6204:87:12;6315:10;6304:22;;;;:10;:22;;;;;:40;;6330:14;;6304:22;:40;;6330:14;;6304:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6360:9;6355:101;6379:14;6375:18;;:1;:18;6355:101;;;6415:29;6425:10;6437:6;6442:1;6437:2;:6;:::i;6415:29::-;6395:3;;;;:::i;:::-;;;;6355:101;;1979:201:0;1143:6;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2068:22:0;::::1;2060:73;;;::::0;-1:-1:-1;;;2060:73:0;;8231:2:13;2060:73:0::1;::::0;::::1;8213:21:13::0;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:13;;;8353:36;8406:19;;2060:73:0::1;8029:402:13::0;2060:73:0::1;2144:28;2163:8;2144:18;:28::i;:::-;1979:201:::0;:::o;7091:108:12:-;1143:6:0;;-1:-1:-1;;;;;1143:6:0;736:10:8;1290:23:0;1282:68;;;;-1:-1:-1;;;1282:68:0;;;;;;;:::i;:::-;7168:23:12;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;1019:224:4:-:0;1121:4;-1:-1:-1;;;;;;1145:50:4;;-1:-1:-1;;;1145:50:4;;:90;;;1199:36;1223:11;1199:23;:36::i;11526:174:1:-;11601:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11601:29:1;-1:-1:-1;;;;;11601:29:1;;;;;;;;:24;;11655:23;11601:24;11655:14;:23::i;:::-;-1:-1:-1;;;;;11646:46:1;;;;;;;;;;;11526:174;;:::o;7674:348::-;7767:4;7469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7469:16:1;7784:73;;;;-1:-1:-1;;;7784:73:1;;10881:2:13;7784:73:1;;;10863:21:13;10920:2;10900:18;;;10893:30;10959:34;10939:18;;;10932:62;-1:-1:-1;;;11010:18:13;;;11003:42;11062:19;;7784:73:1;10679:408:13;7784:73:1;7868:13;7884:23;7899:7;7884:14;:23::i;:::-;7868:39;;7937:5;-1:-1:-1;;;;;7926:16:1;:7;-1:-1:-1;;;;;7926:16:1;;:51;;;;7970:7;-1:-1:-1;;;;;7946:31:1;:20;7958:7;7946:11;:20::i;:::-;-1:-1:-1;;;;;7946:31:1;;7926:51;:87;;;-1:-1:-1;;;;;;4766:25:1;;;4742:4;4766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7981:32;7918:96;7674:348;-1:-1:-1;;;;7674:348:1:o;10783:625::-;10942:4;-1:-1:-1;;;;;10915:31:1;:23;10930:7;10915:14;:23::i;:::-;-1:-1:-1;;;;;10915:31:1;;10907:81;;;;-1:-1:-1;;;10907:81:1;;8999:2:13;10907:81:1;;;8981:21:13;9038:2;9018:18;;;9011:30;9077:34;9057:18;;;9050:62;-1:-1:-1;;;9128:18:13;;;9121:35;9173:19;;10907:81:1;8797:401:13;10907:81:1;-1:-1:-1;;;;;11007:16:1;;10999:65;;;;-1:-1:-1;;;10999:65:1;;9762:2:13;10999:65:1;;;9744:21:13;9801:2;9781:18;;;9774:30;9840:34;9820:18;;;9813:62;-1:-1:-1;;;9891:18:13;;;9884:34;9935:19;;10999:65:1;9560:400:13;10999:65:1;11077:39;11098:4;11104:2;11108:7;11077:20;:39::i;:::-;11181:29;11198:1;11202:7;11181:8;:29::i;:::-;-1:-1:-1;;;;;11223:15:1;;;;;;:9;:15;;;;;:20;;11242:1;;11223:15;:20;;11242:1;;11223:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11254:13:1;;;;;;:9;:13;;;;;:18;;11271:1;;11254:13;:18;;11271:1;;11254:18;:::i;:::-;;;;-1:-1:-1;;11283:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11283:21:1;-1:-1:-1;;;;;11283:21:1;;;;;;;;;11322:27;;11283:16;;11322:27;;;;;;;3719:341;3649:411;;:::o;2340:191:0:-;2433:6;;;-1:-1:-1;;;;;2450:17:0;;;-1:-1:-1;;;;;;2450:17:0;;;;;;;2483:40;;2433:6;;;2450:17;2433:6;;2483:40;;2414:16;;2483:40;2403:128;2340:191;:::o;8364:110:1:-;8440:26;8450:2;8454:7;8440:26;;;;;;;;;;;;:9;:26::i;11842:315::-;11997:8;-1:-1:-1;;;;;11988:17:1;:5;-1:-1:-1;;;;;11988:17:1;;;11980:55;;;;-1:-1:-1;;;11980:55:1;;10167:2:13;11980:55:1;;;10149:21:13;10206:2;10186:18;;;10179:30;10245:27;10225:18;;;10218:55;10290:18;;11980:55:1;9965:349:13;11980:55:1;-1:-1:-1;;;;;12046:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12046:46:1;;;;;;;;;;12108:41;;6922::13;;;12108::1;;6895:18:13;12108:41:1;;;;;;;11842:315;;;:::o;6752:::-;6909:28;6919:4;6925:2;6929:7;6909:9;:28::i;:::-;6956:48;6979:4;6985:2;6989:7;6998:5;6956:22;:48::i;:::-;6948:111;;;;-1:-1:-1;;;6948:111:1;;;;;;;:::i;6966:117:12:-;7026:13;7059:16;7052:23;;;;;:::i;342:723:9:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:9;;;;;;;;;;;;-1:-1:-1;;;646:10:9;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:9;;-1:-1:-1;798:2:9;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:9;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:9;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:9;;;;;;;;-1:-1:-1;1003:11:9;1012:2;1003:11;;:::i;:::-;;;872:154;;1621:305:1;1723:4;-1:-1:-1;;;;;;1760:40:1;;-1:-1:-1;;;1760:40:1;;:105;;-1:-1:-1;;;;;;;1817:48:1;;-1:-1:-1;;;1817:48:1;1760:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:10;;;1882:36:1;854:157:10;6471:181:12;6599:45;6626:4;6632:2;6636:7;6599:26;:45::i;8701:321:1:-;8831:18;8837:2;8841:7;8831:5;:18::i;:::-;8882:54;8913:1;8917:2;8921:7;8930:5;8882:22;:54::i;:::-;8860:154;;;;-1:-1:-1;;;8860:154:1;;;;;;;:::i;12722:799::-;12877:4;-1:-1:-1;;;;;12898:13:1;;1505:19:7;:23;12894:620:1;;12934:72;;-1:-1:-1;;;12934:72:1;;-1:-1:-1;;;;;12934:36:1;;;;;:72;;736:10:8;;12985:4:1;;12991:7;;13000:5;;12934:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12934:72:1;;;;;;;;-1:-1:-1;;12934:72:1;;;;;;;;;;;;:::i;:::-;;;12930:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13176:13:1;;13172:272;;13219:60;;-1:-1:-1;;;13219:60:1;;;;;;;:::i;13172:272::-;13394:6;13388:13;13379:6;13375:2;13371:15;13364:38;12930:529;-1:-1:-1;;;;;;13057:51:1;-1:-1:-1;;;13057:51:1;;-1:-1:-1;13050:58:1;;12894:620;-1:-1:-1;13498:4:1;12722:799;;;;;;:::o;2695:589:4:-;-1:-1:-1;;;;;2901:18:4;;2897:187;;2936:40;2968:7;4111:10;:17;;4084:24;;;;:15;:24;;;;;:44;;;4139:24;;;;;;;;;;;;4007:164;2936:40;2897:187;;;3006:2;-1:-1:-1;;;;;2998:10:4;:4;-1:-1:-1;;;;;2998:10:4;;2994:90;;3025:47;3058:4;3064:7;3025:32;:47::i;:::-;-1:-1:-1;;;;;3098:16:4;;3094:183;;3131:45;3168:7;3131:36;:45::i;3094:183::-;3204:4;-1:-1:-1;;;;;3198:10:4;:2;-1:-1:-1;;;;;3198:10:4;;3194:83;;3225:40;3253:2;3257:7;3225:27;:40::i;9358:439:1:-;-1:-1:-1;;;;;9438:16:1;;9430:61;;;;-1:-1:-1;;;9430:61:1;;12540:2:13;9430:61:1;;;12522:21:13;;;12559:18;;;12552:30;12618:34;12598:18;;;12591:62;12670:18;;9430:61:1;12338:356:13;9430:61:1;7445:4;7469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7469:16:1;:30;9502:58;;;;-1:-1:-1;;;9502:58:1;;9405:2:13;9502:58:1;;;9387:21:13;9444:2;9424:18;;;9417:30;9483;9463:18;;;9456:58;9531:18;;9502:58:1;9203:352:13;9502:58:1;9573:45;9602:1;9606:2;9610:7;9573:20;:45::i;:::-;-1:-1:-1;;;;;9631:13:1;;;;;;:9;:13;;;;;:18;;9648:1;;9631:13;:18;;9648:1;;9631:18;:::i;:::-;;;;-1:-1:-1;;9660:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9660:21:1;-1:-1:-1;;;;;9660:21:1;;;;;;;;9699:33;;9660:16;;;9699:33;;9660:16;;9699:33;8165:37:12::1;8107:103;8070:140::o:0;4798:988:4:-;5064:22;5114:1;5089:22;5106:4;5089:16;:22::i;:::-;:26;;;;:::i;:::-;5126:18;5147:26;;;:17;:26;;;;;;5064:51;;-1:-1:-1;5280:28:4;;;5276:328;;-1:-1:-1;;;;;5347:18:4;;5325:19;5347:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5398:30;;;;;;:44;;;5515:30;;:17;:30;;;;;:43;;;5276:328;-1:-1:-1;5700:26:4;;;;:17;:26;;;;;;;;5693:33;;;-1:-1:-1;;;;;5744:18:4;;;;;:12;:18;;;;;:34;;;;;;;5737:41;4798:988::o;6081:1079::-;6359:10;:17;6334:22;;6359:21;;6379:1;;6359:21;:::i;:::-;6391:18;6412:24;;;:15;:24;;;;;;6785:10;:26;;6334:46;;-1:-1:-1;6412:24:4;;6334:46;;6785:26;;;;;;:::i;:::-;;;;;;;;;6763:48;;6849:11;6824:10;6835;6824:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6929:28;;;:15;:28;;;;;;;:41;;;7101:24;;;;;7094:31;7136:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6152:1008;;;6081:1079;:::o;3585:221::-;3670:14;3687:20;3704:2;3687:16;:20::i;:::-;-1:-1:-1;;;;;3718:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3763:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3585:221:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:156;1059:20;;1119:4;1108:16;;1098:27;;1088:55;;1139:1;1136;1129:12;1154:186;1213:6;1266:2;1254:9;1245:7;1241:23;1237:32;1234:52;;;1282:1;1279;1272:12;1234:52;1305:29;1324:9;1305:29;:::i;1345:260::-;1413:6;1421;1474:2;1462:9;1453:7;1449:23;1445:32;1442:52;;;1490:1;1487;1480:12;1442:52;1513:29;1532:9;1513:29;:::i;:::-;1503:39;;1561:38;1595:2;1584:9;1580:18;1561:38;:::i;:::-;1551:48;;1345:260;;;;;:::o;1610:328::-;1687:6;1695;1703;1756:2;1744:9;1735:7;1731:23;1727:32;1724:52;;;1772:1;1769;1762:12;1724:52;1795:29;1814:9;1795:29;:::i;:::-;1785:39;;1843:38;1877:2;1866:9;1862:18;1843:38;:::i;:::-;1833:48;;1928:2;1917:9;1913:18;1900:32;1890:42;;1610:328;;;;;:::o;1943:666::-;2038:6;2046;2054;2062;2115:3;2103:9;2094:7;2090:23;2086:33;2083:53;;;2132:1;2129;2122:12;2083:53;2155:29;2174:9;2155:29;:::i;:::-;2145:39;;2203:38;2237:2;2226:9;2222:18;2203:38;:::i;:::-;2193:48;;2288:2;2277:9;2273:18;2260:32;2250:42;;2343:2;2332:9;2328:18;2315:32;2370:18;2362:6;2359:30;2356:50;;;2402:1;2399;2392:12;2356:50;2425:22;;2478:4;2470:13;;2466:27;-1:-1:-1;2456:55:13;;2507:1;2504;2497:12;2456:55;2530:73;2595:7;2590:2;2577:16;2572:2;2568;2564:11;2530:73;:::i;:::-;2520:83;;;1943:666;;;;;;;:::o;2614:254::-;2679:6;2687;2740:2;2728:9;2719:7;2715:23;2711:32;2708:52;;;2756:1;2753;2746:12;2708:52;2779:29;2798:9;2779:29;:::i;:::-;2769:39;;2827:35;2858:2;2847:9;2843:18;2827:35;:::i;2873:254::-;2941:6;2949;3002:2;2990:9;2981:7;2977:23;2973:32;2970:52;;;3018:1;3015;3008:12;2970:52;3041:29;3060:9;3041:29;:::i;:::-;3031:39;3117:2;3102:18;;;;3089:32;;-1:-1:-1;;;2873:254:13:o;3132:691::-;3225:6;3233;3241;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3350:9;3337:23;3379:18;3420:2;3412:6;3409:14;3406:34;;;3436:1;3433;3426:12;3406:34;3474:6;3463:9;3459:22;3449:32;;3519:7;3512:4;3508:2;3504:13;3500:27;3490:55;;3541:1;3538;3531:12;3490:55;3581:2;3568:16;3607:2;3599:6;3596:14;3593:34;;;3623:1;3620;3613:12;3593:34;3678:7;3671:4;3661:6;3658:1;3654:14;3650:2;3646:23;3642:34;3639:47;3636:67;;;3699:1;3696;3689:12;3636:67;3730:4;3722:13;;;;-1:-1:-1;3754:6:13;-1:-1:-1;3779:38:13;;3796:20;;;-1:-1:-1;3779:38:13;:::i;:::-;3769:48;;3132:691;;;;;:::o;3828:180::-;3884:6;3937:2;3925:9;3916:7;3912:23;3908:32;3905:52;;;3953:1;3950;3943:12;3905:52;3976:26;3992:9;3976:26;:::i;4013:245::-;4071:6;4124:2;4112:9;4103:7;4099:23;4095:32;4092:52;;;4140:1;4137;4130:12;4092:52;4179:9;4166:23;4198:30;4222:5;4198:30;:::i;4263:249::-;4332:6;4385:2;4373:9;4364:7;4360:23;4356:32;4353:52;;;4401:1;4398;4391:12;4353:52;4433:9;4427:16;4452:30;4476:5;4452:30;:::i;4517:450::-;4586:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4695:9;4682:23;4728:18;4720:6;4717:30;4714:50;;;4760:1;4757;4750:12;4714:50;4783:22;;4836:4;4828:13;;4824:27;-1:-1:-1;4814:55:13;;4865:1;4862;4855:12;4814:55;4888:73;4953:7;4948:2;4935:16;4930:2;4926;4922:11;4888:73;:::i;4972:180::-;5031:6;5084:2;5072:9;5063:7;5059:23;5055:32;5052:52;;;5100:1;5097;5090:12;5052:52;-1:-1:-1;5123:23:13;;4972:180;-1:-1:-1;4972:180:13:o;5157:182::-;5214:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:52;;;5283:1;5280;5273:12;5235:52;5306:27;5323:9;5306:27;:::i;5344:257::-;5385:3;5423:5;5417:12;5450:6;5445:3;5438:19;5466:63;5522:6;5515:4;5510:3;5506:14;5499:4;5492:5;5488:16;5466:63;:::i;:::-;5583:2;5562:15;-1:-1:-1;;5558:29:13;5549:39;;;;5590:4;5545:50;;5344:257;-1:-1:-1;;5344:257:13:o;5606:470::-;5785:3;5823:6;5817:13;5839:53;5885:6;5880:3;5873:4;5865:6;5861:17;5839:53;:::i;:::-;5955:13;;5914:16;;;;5977:57;5955:13;5914:16;6011:4;5999:17;;5977:57;:::i;:::-;6050:20;;5606:470;-1:-1:-1;;;;5606:470:13:o;6289:488::-;-1:-1:-1;;;;;6558:15:13;;;6540:34;;6610:15;;6605:2;6590:18;;6583:43;6657:2;6642:18;;6635:34;;;6705:3;6700:2;6685:18;;6678:31;;;6483:4;;6726:45;;6751:19;;6743:6;6726:45;:::i;:::-;6718:53;6289:488;-1:-1:-1;;;;;;6289:488:13:o;6974:219::-;7123:2;7112:9;7105:21;7086:4;7143:44;7183:2;7172:9;7168:18;7160:6;7143:44;:::i;7610:414::-;7812:2;7794:21;;;7851:2;7831:18;;;7824:30;7890:34;7885:2;7870:18;;7863:62;-1:-1:-1;;;7956:2:13;7941:18;;7934:48;8014:3;7999:19;;7610:414::o;13112:356::-;13314:2;13296:21;;;13333:18;;;13326:30;13392:34;13387:2;13372:18;;13365:62;13459:2;13444:18;;13112:356::o;15453:413::-;15655:2;15637:21;;;15694:2;15674:18;;;15667:30;15733:34;15728:2;15713:18;;15706:62;-1:-1:-1;;;15799:2:13;15784:18;;15777:47;15856:3;15841:19;;15453:413::o;17008:128::-;17048:3;17079:1;17075:6;17072:1;17069:13;17066:39;;;17085:18;;:::i;:::-;-1:-1:-1;17121:9:13;;17008:128::o;17141:120::-;17181:1;17207;17197:35;;17212:18;;:::i;:::-;-1:-1:-1;17246:9:13;;17141:120::o;17266:168::-;17306:7;17372:1;17368;17364:6;17360:14;17357:1;17354:21;17349:1;17342:9;17335:17;17331:45;17328:71;;;17379:18;;:::i;:::-;-1:-1:-1;17419:9:13;;17266:168::o;17439:125::-;17479:4;17507:1;17504;17501:8;17498:34;;;17512:18;;:::i;:::-;-1:-1:-1;17549:9:13;;17439:125::o;17569:195::-;17607:4;17644;17641:1;17637:12;17676:4;17673:1;17669:12;17701:3;17696;17693:12;17690:38;;;17708:18;;:::i;:::-;17745:13;;;17569:195;-1:-1:-1;;;17569:195:13:o;17769:258::-;17841:1;17851:113;17865:6;17862:1;17859:13;17851:113;;;17941:11;;;17935:18;17922:11;;;17915:39;17887:2;17880:10;17851:113;;;17982:6;17979:1;17976:13;17973:48;;;-1:-1:-1;;18017:1:13;17999:16;;17992:27;17769:258::o;18032:380::-;18111:1;18107:12;;;;18154;;;18175:61;;18229:4;18221:6;18217:17;18207:27;;18175:61;18282:2;18274:6;18271:14;18251:18;18248:38;18245:161;;;18328:10;18323:3;18319:20;18316:1;18309:31;18363:4;18360:1;18353:15;18391:4;18388:1;18381:15;18245:161;;18032:380;;;:::o;18417:135::-;18456:3;-1:-1:-1;;18477:17:13;;18474:43;;;18497:18;;:::i;:::-;-1:-1:-1;18544:1:13;18533:13;;18417:135::o;18557:112::-;18589:1;18615;18605:35;;18620:18;;:::i;:::-;-1:-1:-1;18654:9:13;;18557:112::o;18674:127::-;18735:10;18730:3;18726:20;18723:1;18716:31;18766:4;18763:1;18756:15;18790:4;18787:1;18780:15;18806:127;18867:10;18862:3;18858:20;18855:1;18848:31;18898:4;18895:1;18888:15;18922:4;18919:1;18912:15;18938:127;18999:10;18994:3;18990:20;18987:1;18980:31;19030:4;19027:1;19020:15;19054:4;19051:1;19044:15;19070:127;19131:10;19126:3;19122:20;19119:1;19112:31;19162:4;19159:1;19152:15;19186:4;19183:1;19176:15;19202:127;19263:10;19258:3;19254:20;19251:1;19244:31;19294:4;19291:1;19284:15;19318:4;19315:1;19308:15;19334:131;-1:-1:-1;;;;;;19408:32:13;;19398:43;;19388:71;;19455:1;19452;19445:12

Swarm Source

ipfs://5e868d0a394d73765d276b81d6c4e77c71c73e14a6bbc8c7caa20ce25956d77e
Loading...
Loading
Loading...
Loading
[ 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.