ETH Price: $2,973.24 (-3.93%)
Gas: 3 Gwei

Token

EntropySeeds (HSED)
 

Overview

Max Total Supply

1,725 HSED

Holders

246

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HSED
0x9aca21d4c170c80610593640ca3f1afd23a19562
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Original seeds issued from first bonding curve. Claim the new tokens on the new contract via our website. Defunct collection.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HSeeds

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 15: seeds_nosafe.sol
pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721Enumerable.sol";
//import "./SafeMath.sol";
import "./ReentrancyGuard.sol";

// did it for the gas


contract HSeeds is ERC721Enumerable, Ownable, ReentrancyGuard {
    //using SafeMath for uint256; 
    //see: https://github.com/OpenZeppelin/openzeppelin-contracts/issues/2465
    
    // ===============================================================

    
    // This is the provenance record of all artwork in existence
    string public constant ENTROPYSEEDS_PROVENANCE = "51aab9a30a64f0b1f8325ccfa7e80cbcc20b9dbab4b4e6765c3e5178e507d210";

    // opens Mar 11 2021 15:00:00 GMT+0000
    uint256 public constant SALE_START_TIMESTAMP = 1615474800;


    // Time after which we randomly assign and allotted (s*m*h*d)
    // sale lasts for 21 days
    uint256 public constant REVEAL_TIMESTAMP = SALE_START_TIMESTAMP + (60*60*24*21);

    uint256 public constant MAX_NFT_SUPPLY = 8275;

    uint256 public startingIndexBlock;

    uint256 public startingIndex;

    // Mapping from token ID to whether the Entropyseed was minted before reveal
    mapping (uint256 => bool) private _mintedBeforeReveal;
    
    
    // ===============================================================
    constructor() public ERC721("EntropySeeds", "HSED") {}


    /**
     * @dev Returns if the NFT has been minted before reveal phase
     */
    function isMintedBeforeReveal(uint256 index) public view returns (bool) {
        return _mintedBeforeReveal[index];
    }
    
    /**
     * @dev Gets current price level
     */
    function getNFTPrice() public view returns (uint256) {
        require(block.timestamp >= SALE_START_TIMESTAMP, "Sale has not started");
        require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended");

        uint256 currentSupply = totalSupply();

        if (currentSupply >= 8270) {
            return 100000000000000000000; // 8270 - 8275 100 ETH
        } else if (currentSupply >= 7885) {
            return 5000000000000000000; // 7885 - 8269 5.0 ETH
        } else if (currentSupply >= 7300) {
            return 3400000000000000000; // 7300  - 7884 3.4 ETH
        } else if (currentSupply >= 5400) {
            return 1800000000000000000; // 5400 - 7399 1.8 ETH
        } else if (currentSupply >= 3400) {
            return 1000000000000000000; // 3400 - 5399 1.0 ETH
        } else if (currentSupply >= 1500) {
            return 600000000000000000; // 1500 - 3399 0.6 ETH
        } else {
            return 200000000000000000; // 0 - 1499 0.2 ETH 
        }
    }
    
    /**
    * @dev Mints numberOfNfts Entropyseeds
    * Price slippage is okay between levels. Known "bug".
    */
    function mintNFT(uint256 numberOfNfts) public payable nonReentrant {
        require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended");
        require(numberOfNfts > 0, "numberOfNfts cannot be 0");
        require(numberOfNfts <= 5, "You may not buy more than 5 NFTs at once");
        require((totalSupply() + numberOfNfts) <= MAX_NFT_SUPPLY, "Exceeds MAX_NFT_SUPPLY");
        require((getNFTPrice() * numberOfNfts) == msg.value, "Ether value sent is not correct");

        for (uint i = 0; i < numberOfNfts; i++) {
            uint256 mintIndex = totalSupply();
            if (block.timestamp < REVEAL_TIMESTAMP) {
                _mintedBeforeReveal[mintIndex] = true;
            }
            _safeMint(msg.sender, mintIndex);
        }

        /**
        * Source of "randomness". Theoretically miners could influence this but not worried for the scope of this project
        */
        if (startingIndexBlock == 0 && (totalSupply() == MAX_NFT_SUPPLY || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        }
    }
    
    /**
     * @dev Called after the sale ends or reveal period is over
     */
    function finalizeStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        

        uint256 _start = uint256(blockhash(startingIndexBlock)) % MAX_NFT_SUPPLY;
        if ((block.number - _start) > 255) {
            _start = uint256(blockhash(block.number-1)) % MAX_NFT_SUPPLY;
        }
        if (_start == 0) {
            _start = _start + 1;
        }
        
        startingIndex = _start;
    }
    
    /**
     * @dev Withdraw ether from this contract (Callable by owner)
    */
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


File 2 of 15: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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


File 4 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


File 6 of 15: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


File 7 of 15: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 8 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


File 9 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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


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

pragma solidity ^0.8.0;

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


File 11 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


File 12 of 15: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


File 13 of 15: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


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":"ENTROPYSEEDS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isMintedBeforeReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","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"}]

60806040523480156200001157600080fd5b50604080518082018252600c81526b456e74726f7079536565647360a01b6020808301918252835180850190945260048452631214d15160e21b9084015281519192916200006291600091620000ea565b50805162000078906001906020840190620000ea565b50505060006200008d620000e660201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b55620001cd565b3390565b828054620000f89062000190565b90600052602060002090601f0160209004810192826200011c576000855562000167565b82601f106200013757805160ff191683800117855562000167565b8280016001018555821562000167579182015b82811115620001675782518255916020019190600101906200014a565b506200017592915062000179565b5090565b5b808211156200017557600081556001016200017a565b600281046001821680620001a557607f821691505b60208210811415620001c757634e487b7160e01b600052602260045260246000fd5b50919050565b6122b380620001dd6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063bc28d70211610095578063e36d649811610064578063e36d6498146104e5578063e985e9c5146104fb578063f2fde38b14610544578063fb107a4f14610564576101cd565b8063bc28d7021461046a578063c87b56dd1461049a578063cb774d47146104ba578063e322ef4c146104d0576101cd565b806395d89b41116100d157806395d89b41146103ff578063a22cb46514610414578063b5077f4414610434578063b88d4fde1461044a576101cd565b80638da5cb5b146103b657806392642744146103d4578063946807fd146103e7576101cd565b80632f745c591161016f5780636352211e1161013e5780636352211e1461034c57806370a082311461036c578063715018a61461038c57806374df39c9146103a1576101cd565b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c5780634f6ccce71461032c576101cd565b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806318e20a38146102a257806323b872dd146102b7576101cd565b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f17565b610579565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105a6565b6040516101fe9190611fff565b34801561023557600080fd5b50610249610244366004611f4f565b610639565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611eee565b6106d3565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102946107e9565b3480156102c357600080fd5b506102816102d2366004611da4565b6107fd565b3480156102e357600080fd5b506102946102f2366004611eee565b61082e565b34801561030357600080fd5b506102816108c4565b34801561031857600080fd5b50610281610327366004611da4565b610921565b34801561033857600080fd5b50610294610347366004611f4f565b61093c565b34801561035857600080fd5b50610249610367366004611f4f565b6109dd565b34801561037857600080fd5b50610294610387366004611d58565b610a54565b34801561039857600080fd5b50610281610adb565b3480156103ad57600080fd5b50610281610b4f565b3480156103c257600080fd5b50600a546001600160a01b0316610249565b6102816103e2366004611f4f565b610c4a565b3480156103f357600080fd5b5061029463604a307081565b34801561040b57600080fd5b5061021c610f12565b34801561042057600080fd5b5061028161042f366004611eb4565b610f21565b34801561044057600080fd5b5061029461205381565b34801561045657600080fd5b50610281610465366004611ddf565b610ff3565b34801561047657600080fd5b506101f2610485366004611f4f565b6000908152600e602052604090205460ff1690565b3480156104a657600080fd5b5061021c6104b5366004611f4f565b61102b565b3480156104c657600080fd5b50610294600d5481565b3480156104dc57600080fd5b5061021c611113565b3480156104f157600080fd5b50610294600c5481565b34801561050757600080fd5b506101f2610516366004611d72565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055057600080fd5b5061028161055f366004611d58565b61112f565b34801561057057600080fd5b5061029461121a565b60006001600160e01b0319821663780e9d6360e01b148061059e575061059e82611374565b90505b919050565b6060600080546105b590612178565b80601f01602080910402602001604051908101604052809291908181526020018280546105e190612178565b801561062e5780601f106106035761010080835404028352916020019161062e565b820191906000526020600020905b81548152906001019060200180831161061157829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b03166106b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106de826109dd565b9050806001600160a01b0316836001600160a01b0316141561074c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ae565b336001600160a01b038216148061076857506107688133610516565b6107da5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ae565b6107e483836113c4565b505050565b6107fa63604a3070621baf806120ea565b81565b6108073382611432565b6108235760405162461bcd60e51b81526004016106ae90612099565b6107e4838383611529565b600061083983610a54565b821061089b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ee5760405162461bcd60e51b81526004016106ae90612064565b6040514790339082156108fc029083906000818181858888f1935050505015801561091d573d6000803e3d6000fd5b5050565b6107e483838360405180602001604052806000815250610ff3565b600061094760085490565b82106109aa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ae565b600882815481106109cb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061059e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ae565b60006001600160a01b038216610abf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ae565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b055760405162461bcd60e51b81526004016106ae90612064565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600d5415610b9f5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c72656164792073657400000060448201526064016106ae565b600c54610bee5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d7573742062652073657460448201526064016106ae565b600c54600090610c029061205390406121ce565b905060ff610c108243612135565b1115610c3257612053610c24600143612135565b610c2f9190406121ce565b90505b80610c4557610c428160016120ea565b90505b600d55565b6002600b541415610c9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600b55612053610cae60085490565b10610cf45760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b60448201526064016106ae565b60008111610d445760405162461bcd60e51b815260206004820152601860248201527f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000060448201526064016106ae565b6005811115610da65760405162461bcd60e51b815260206004820152602860248201527f596f75206d6179206e6f7420627579206d6f7265207468616e2035204e465473604482015267206174206f6e636560c01b60648201526084016106ae565b61205381610db360085490565b610dbd91906120ea565b1115610e045760405162461bcd60e51b815260206004820152601660248201527545786365656473204d41585f4e46545f535550504c5960501b60448201526064016106ae565b3481610e0e61121a565b610e189190612116565b14610e655760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106ae565b60005b81811015610ecc576000610e7b60085490565b9050610e8e63604a3070621baf806120ea565b421015610eaf576000818152600e60205260409020805460ff191660011790555b610eb933826116d4565b5080610ec4816121b3565b915050610e68565b50600c54158015610f005750612053610ee460085490565b1480610f005750610efc63604a3070621baf806120ea565b4210155b15610f0a5743600c555b506001600b55565b6060600180546105b590612178565b6001600160a01b038216331415610f7a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ae565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe7911515815260200190565b60405180910390a35050565b610ffd3383611432565b6110195760405162461bcd60e51b81526004016106ae90612099565b611025848484846116ee565b50505050565b6000818152600260205260409020546060906001600160a01b03166110aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ae565b60006110c160408051602081019091526000815290565b905060008151116110e1576040518060200160405280600081525061110c565b806110eb84611721565b6040516020016110fc929190611f93565b6040516020818303038152906040525b9392505050565b60405180606001604052806040815260200161223e6040913981565b600a546001600160a01b031633146111595760405162461bcd60e51b81526004016106ae90612064565b6001600160a01b0381166111be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ae565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600063604a30704210156112675760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016106ae565b61205361127360085490565b106112b95760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b60448201526064016106ae565b60006112c460085490565b905061204e81106112e15768056bc75e2d63100000915050610636565b611ecd81106112fb57674563918244f40000915050610636565b611c84811061131557672f2f39fc6c540000915050610636565b611518811061132f576718fae27693b40000915050610636565b610d48811061134957670de0b6b3a7640000915050610636565b6105dc811061136357670853a0d2313c0000915050610636565b6702c68af0bb140000915050610636565b60006001600160e01b031982166380ac58cd60e01b14806113a557506001600160e01b03198216635b5e139f60e01b145b8061059e57506301ffc9a760e01b6001600160e01b031983161461059e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f9826109dd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ae565b60006114b6836109dd565b9050806001600160a01b0316846001600160a01b031614806114f15750836001600160a01b03166114e684610639565b6001600160a01b0316145b8061152157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153c826109dd565b6001600160a01b0316146115a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ae565b6001600160a01b0382166116065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ae565b61161183838361183c565b61161c6000826113c4565b6001600160a01b0383166000908152600360205260408120805460019290611645908490612135565b90915550506001600160a01b03821660009081526003602052604081208054600192906116739084906120ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61091d8282604051806020016040528060008152506118f9565b6116f9848484611529565b6117058484848461192c565b6110255760405162461bcd60e51b81526004016106ae90612012565b60608161174657506040805180820190915260018152600360fc1b60208201526105a1565b8160005b8115611770578061175a816121b3565b91506117699050600a83612102565b915061174a565b60008167ffffffffffffffff81111561179957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117c3576020820181803683370190505b5090505b8415611521576117d8600183612135565b91506117e5600a866121ce565b6117f09060306120ea565b60f81b81838151811061181357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611835600a86612102565b94506117c7565b6001600160a01b0383166118975761189281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118ba565b816001600160a01b0316836001600160a01b0316146118ba576118ba8382611a39565b6001600160a01b0382166118d6576118d181611ad6565b6107e4565b826001600160a01b0316826001600160a01b0316146107e4576107e48282611baf565b6119038383611bf3565b611910600084848461192c565b6107e45760405162461bcd60e51b81526004016106ae90612012565b60006001600160a01b0384163b15611a2e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611970903390899088908890600401611fc2565b602060405180830381600087803b15801561198a57600080fd5b505af19250505080156119ba575060408051601f3d908101601f191682019092526119b791810190611f33565b60015b611a14573d8080156119e8576040519150601f19603f3d011682016040523d82523d6000602084013e6119ed565b606091505b508051611a0c5760405162461bcd60e51b81526004016106ae90612012565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611521565b506001949350505050565b60006001611a4684610a54565b611a509190612135565b600083815260076020526040902054909150808214611aa3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ae890600190612135565b60008381526009602052604081205460088054939450909284908110611b1e57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b4d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b9357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611bba83610a54565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ae565b6000818152600260205260409020546001600160a01b031615611cae5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ae565b611cba6000838361183c565b6001600160a01b0382166000908152600360205260408120805460019290611ce39084906120ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b03811681146105a157600080fd5b600060208284031215611d69578081fd5b61110c82611d41565b60008060408385031215611d84578081fd5b611d8d83611d41565b9150611d9b60208401611d41565b90509250929050565b600080600060608486031215611db8578081fd5b611dc184611d41565b9250611dcf60208501611d41565b9150604084013590509250925092565b60008060008060808587031215611df4578081fd5b611dfd85611d41565b9350611e0b60208601611d41565b925060408501359150606085013567ffffffffffffffff80821115611e2e578283fd5b818701915087601f830112611e41578283fd5b813581811115611e5357611e5361220e565b604051601f8201601f19908116603f01168101908382118183101715611e7b57611e7b61220e565b816040528281528a6020848701011115611e93578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611ec6578182fd5b611ecf83611d41565b915060208301358015158114611ee3578182fd5b809150509250929050565b60008060408385031215611f00578182fd5b611f0983611d41565b946020939093013593505050565b600060208284031215611f28578081fd5b813561110c81612224565b600060208284031215611f44578081fd5b815161110c81612224565b600060208284031215611f60578081fd5b5035919050565b60008151808452611f7f81602086016020860161214c565b601f01601f19169290920160200192915050565b60008351611fa581846020880161214c565b835190830190611fb981836020880161214c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff590830184611f67565b9695505050505050565b60006020825261110c6020830184611f67565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120fd576120fd6121e2565b500190565b600082612111576121116121f8565b500490565b6000816000190483118215151615612130576121306121e2565b500290565b600082821015612147576121476121e2565b500390565b60005b8381101561216757818101518382015260200161214f565b838111156110255750506000910152565b60028104600182168061218c57607f821691505b602082108114156121ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121c7576121c76121e2565b5060010190565b6000826121dd576121dd6121f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461223a57600080fd5b5056fe35316161623961333061363466306231663833323563636661376538306362636332306239646261623462346536373635633365353137386535303764323130a264697066735822122074336d7a33c5742e6bc8d2938a368f83f26e149b5c2ff453585469f48a0b4d9764736f6c63430008020033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063bc28d70211610095578063e36d649811610064578063e36d6498146104e5578063e985e9c5146104fb578063f2fde38b14610544578063fb107a4f14610564576101cd565b8063bc28d7021461046a578063c87b56dd1461049a578063cb774d47146104ba578063e322ef4c146104d0576101cd565b806395d89b41116100d157806395d89b41146103ff578063a22cb46514610414578063b5077f4414610434578063b88d4fde1461044a576101cd565b80638da5cb5b146103b657806392642744146103d4578063946807fd146103e7576101cd565b80632f745c591161016f5780636352211e1161013e5780636352211e1461034c57806370a082311461036c578063715018a61461038c57806374df39c9146103a1576101cd565b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c5780634f6ccce71461032c576101cd565b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806318e20a38146102a257806323b872dd146102b7576101cd565b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f17565b610579565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105a6565b6040516101fe9190611fff565b34801561023557600080fd5b50610249610244366004611f4f565b610639565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611eee565b6106d3565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102946107e9565b3480156102c357600080fd5b506102816102d2366004611da4565b6107fd565b3480156102e357600080fd5b506102946102f2366004611eee565b61082e565b34801561030357600080fd5b506102816108c4565b34801561031857600080fd5b50610281610327366004611da4565b610921565b34801561033857600080fd5b50610294610347366004611f4f565b61093c565b34801561035857600080fd5b50610249610367366004611f4f565b6109dd565b34801561037857600080fd5b50610294610387366004611d58565b610a54565b34801561039857600080fd5b50610281610adb565b3480156103ad57600080fd5b50610281610b4f565b3480156103c257600080fd5b50600a546001600160a01b0316610249565b6102816103e2366004611f4f565b610c4a565b3480156103f357600080fd5b5061029463604a307081565b34801561040b57600080fd5b5061021c610f12565b34801561042057600080fd5b5061028161042f366004611eb4565b610f21565b34801561044057600080fd5b5061029461205381565b34801561045657600080fd5b50610281610465366004611ddf565b610ff3565b34801561047657600080fd5b506101f2610485366004611f4f565b6000908152600e602052604090205460ff1690565b3480156104a657600080fd5b5061021c6104b5366004611f4f565b61102b565b3480156104c657600080fd5b50610294600d5481565b3480156104dc57600080fd5b5061021c611113565b3480156104f157600080fd5b50610294600c5481565b34801561050757600080fd5b506101f2610516366004611d72565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055057600080fd5b5061028161055f366004611d58565b61112f565b34801561057057600080fd5b5061029461121a565b60006001600160e01b0319821663780e9d6360e01b148061059e575061059e82611374565b90505b919050565b6060600080546105b590612178565b80601f01602080910402602001604051908101604052809291908181526020018280546105e190612178565b801561062e5780601f106106035761010080835404028352916020019161062e565b820191906000526020600020905b81548152906001019060200180831161061157829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b03166106b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106de826109dd565b9050806001600160a01b0316836001600160a01b0316141561074c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ae565b336001600160a01b038216148061076857506107688133610516565b6107da5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ae565b6107e483836113c4565b505050565b6107fa63604a3070621baf806120ea565b81565b6108073382611432565b6108235760405162461bcd60e51b81526004016106ae90612099565b6107e4838383611529565b600061083983610a54565b821061089b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ee5760405162461bcd60e51b81526004016106ae90612064565b6040514790339082156108fc029083906000818181858888f1935050505015801561091d573d6000803e3d6000fd5b5050565b6107e483838360405180602001604052806000815250610ff3565b600061094760085490565b82106109aa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ae565b600882815481106109cb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061059e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ae565b60006001600160a01b038216610abf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ae565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b055760405162461bcd60e51b81526004016106ae90612064565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600d5415610b9f5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c72656164792073657400000060448201526064016106ae565b600c54610bee5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d7573742062652073657460448201526064016106ae565b600c54600090610c029061205390406121ce565b905060ff610c108243612135565b1115610c3257612053610c24600143612135565b610c2f9190406121ce565b90505b80610c4557610c428160016120ea565b90505b600d55565b6002600b541415610c9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600b55612053610cae60085490565b10610cf45760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b60448201526064016106ae565b60008111610d445760405162461bcd60e51b815260206004820152601860248201527f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000060448201526064016106ae565b6005811115610da65760405162461bcd60e51b815260206004820152602860248201527f596f75206d6179206e6f7420627579206d6f7265207468616e2035204e465473604482015267206174206f6e636560c01b60648201526084016106ae565b61205381610db360085490565b610dbd91906120ea565b1115610e045760405162461bcd60e51b815260206004820152601660248201527545786365656473204d41585f4e46545f535550504c5960501b60448201526064016106ae565b3481610e0e61121a565b610e189190612116565b14610e655760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106ae565b60005b81811015610ecc576000610e7b60085490565b9050610e8e63604a3070621baf806120ea565b421015610eaf576000818152600e60205260409020805460ff191660011790555b610eb933826116d4565b5080610ec4816121b3565b915050610e68565b50600c54158015610f005750612053610ee460085490565b1480610f005750610efc63604a3070621baf806120ea565b4210155b15610f0a5743600c555b506001600b55565b6060600180546105b590612178565b6001600160a01b038216331415610f7a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ae565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe7911515815260200190565b60405180910390a35050565b610ffd3383611432565b6110195760405162461bcd60e51b81526004016106ae90612099565b611025848484846116ee565b50505050565b6000818152600260205260409020546060906001600160a01b03166110aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ae565b60006110c160408051602081019091526000815290565b905060008151116110e1576040518060200160405280600081525061110c565b806110eb84611721565b6040516020016110fc929190611f93565b6040516020818303038152906040525b9392505050565b60405180606001604052806040815260200161223e6040913981565b600a546001600160a01b031633146111595760405162461bcd60e51b81526004016106ae90612064565b6001600160a01b0381166111be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ae565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600063604a30704210156112675760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016106ae565b61205361127360085490565b106112b95760405162461bcd60e51b815260206004820152601660248201527514d85b19481a185cc8185b1c9958591e48195b99195960521b60448201526064016106ae565b60006112c460085490565b905061204e81106112e15768056bc75e2d63100000915050610636565b611ecd81106112fb57674563918244f40000915050610636565b611c84811061131557672f2f39fc6c540000915050610636565b611518811061132f576718fae27693b40000915050610636565b610d48811061134957670de0b6b3a7640000915050610636565b6105dc811061136357670853a0d2313c0000915050610636565b6702c68af0bb140000915050610636565b60006001600160e01b031982166380ac58cd60e01b14806113a557506001600160e01b03198216635b5e139f60e01b145b8061059e57506301ffc9a760e01b6001600160e01b031983161461059e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f9826109dd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ae565b60006114b6836109dd565b9050806001600160a01b0316846001600160a01b031614806114f15750836001600160a01b03166114e684610639565b6001600160a01b0316145b8061152157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153c826109dd565b6001600160a01b0316146115a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ae565b6001600160a01b0382166116065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ae565b61161183838361183c565b61161c6000826113c4565b6001600160a01b0383166000908152600360205260408120805460019290611645908490612135565b90915550506001600160a01b03821660009081526003602052604081208054600192906116739084906120ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61091d8282604051806020016040528060008152506118f9565b6116f9848484611529565b6117058484848461192c565b6110255760405162461bcd60e51b81526004016106ae90612012565b60608161174657506040805180820190915260018152600360fc1b60208201526105a1565b8160005b8115611770578061175a816121b3565b91506117699050600a83612102565b915061174a565b60008167ffffffffffffffff81111561179957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117c3576020820181803683370190505b5090505b8415611521576117d8600183612135565b91506117e5600a866121ce565b6117f09060306120ea565b60f81b81838151811061181357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611835600a86612102565b94506117c7565b6001600160a01b0383166118975761189281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118ba565b816001600160a01b0316836001600160a01b0316146118ba576118ba8382611a39565b6001600160a01b0382166118d6576118d181611ad6565b6107e4565b826001600160a01b0316826001600160a01b0316146107e4576107e48282611baf565b6119038383611bf3565b611910600084848461192c565b6107e45760405162461bcd60e51b81526004016106ae90612012565b60006001600160a01b0384163b15611a2e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611970903390899088908890600401611fc2565b602060405180830381600087803b15801561198a57600080fd5b505af19250505080156119ba575060408051601f3d908101601f191682019092526119b791810190611f33565b60015b611a14573d8080156119e8576040519150601f19603f3d011682016040523d82523d6000602084013e6119ed565b606091505b508051611a0c5760405162461bcd60e51b81526004016106ae90612012565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611521565b506001949350505050565b60006001611a4684610a54565b611a509190612135565b600083815260076020526040902054909150808214611aa3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ae890600190612135565b60008381526009602052604081205460088054939450909284908110611b1e57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b4d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b9357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611bba83610a54565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ae565b6000818152600260205260409020546001600160a01b031615611cae5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ae565b611cba6000838361183c565b6001600160a01b0382166000908152600360205260408120805460019290611ce39084906120ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b03811681146105a157600080fd5b600060208284031215611d69578081fd5b61110c82611d41565b60008060408385031215611d84578081fd5b611d8d83611d41565b9150611d9b60208401611d41565b90509250929050565b600080600060608486031215611db8578081fd5b611dc184611d41565b9250611dcf60208501611d41565b9150604084013590509250925092565b60008060008060808587031215611df4578081fd5b611dfd85611d41565b9350611e0b60208601611d41565b925060408501359150606085013567ffffffffffffffff80821115611e2e578283fd5b818701915087601f830112611e41578283fd5b813581811115611e5357611e5361220e565b604051601f8201601f19908116603f01168101908382118183101715611e7b57611e7b61220e565b816040528281528a6020848701011115611e93578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611ec6578182fd5b611ecf83611d41565b915060208301358015158114611ee3578182fd5b809150509250929050565b60008060408385031215611f00578182fd5b611f0983611d41565b946020939093013593505050565b600060208284031215611f28578081fd5b813561110c81612224565b600060208284031215611f44578081fd5b815161110c81612224565b600060208284031215611f60578081fd5b5035919050565b60008151808452611f7f81602086016020860161214c565b601f01601f19169290920160200192915050565b60008351611fa581846020880161214c565b835190830190611fb981836020880161214c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ff590830184611f67565b9695505050505050565b60006020825261110c6020830184611f67565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120fd576120fd6121e2565b500190565b600082612111576121116121f8565b500490565b6000816000190483118215151615612130576121306121e2565b500290565b600082821015612147576121476121e2565b500390565b60005b8381101561216757818101518382015260200161214f565b838111156110255750506000910152565b60028104600182168061218c57607f821691505b602082108114156121ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121c7576121c76121e2565b5060010190565b6000826121dd576121dd6121f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461223a57600080fd5b5056fe35316161623961333061363466306231663833323563636661376538306362636332306239646261623462346536373635633365353137386535303764323130a264697066735822122074336d7a33c5742e6bc8d2938a368f83f26e149b5c2ff453585469f48a0b4d9764736f6c63430008020033

Deployed Bytecode Sourcemap

176:4575:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:4;;;;;;;;;;-1:-1:-1;909:234:4;;;;;:::i;:::-;;:::i;:::-;;;5162:14:15;;5155:22;5137:41;;5125:2;5110:18;909:234:4;;;;;;;;2377:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3796:217::-;;;;;;;;;;-1:-1:-1;3796:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4460:32:15;;;4442:51;;4430:2;4415:18;3796:217:3;4397:102:15;3340:395:3;;;;;;;;;;-1:-1:-1;3340:395:3;;;;;:::i;:::-;;:::i;:::-;;1546:111:4;;;;;;;;;;-1:-1:-1;1633:10:4;:17;1546:111;;;16018:25:15;;;16006:2;15991:18;1546:111:4;15973:76:15;846:79:14;;;;;;;;;;;;;:::i;4660:300:3:-;;;;;;;;;;-1:-1:-1;4660:300:3;;;;;:::i;:::-;;:::i;1222:253:4:-;;;;;;;;;;-1:-1:-1;1222:253:4;;;;;:::i;:::-;;:::i;4608:140:14:-;;;;;;;;;;;;;:::i;5026:149:3:-;;;;;;;;;;-1:-1:-1;5026:149:3;;;;;:::i;:::-;;:::i;1729:230:4:-;;;;;;;;;;-1:-1:-1;1729:230:4;;;;;:::i;:::-;;:::i;2080:235:3:-;;;;;;;;;;-1:-1:-1;2080:235:3;;;;;:::i;:::-;;:::i;1818:205::-;;;;;;;;;;-1:-1:-1;1818:205:3;;;;;:::i;:::-;;:::i;1693:145:10:-;;;;;;;;;;;;;:::i;3971:541:14:-;;;;;;;;;;;;;:::i;1061:85:10:-;;;;;;;;;;-1:-1:-1;1133:6:10;;-1:-1:-1;;;;;1133:6:10;1061:85;;2778:1098:14;;;;;;:::i;:::-;;:::i;680:57::-;;;;;;;;;;;;727:10;680:57;;2539:102:3;;;;;;;;;;;;;:::i;4080:290::-;;;;;;;;;;-1:-1:-1;4080:290:3;;;;;:::i;:::-;;:::i;934:45:14:-;;;;;;;;;;;;975:4;934:45;;5241:282:3;;;;;;;;;;-1:-1:-1;5241:282:3;;;;;:::i;:::-;;:::i;1443:124:14:-;;;;;;;;;;-1:-1:-1;1443:124:14;;;;;:::i;:::-;1509:4;1533:26;;;:19;:26;;;;;;;;;1443:124;2707:353:3;;;;;;;;;;-1:-1:-1;2707:353:3;;;;;:::i;:::-;;:::i;1030:28:14:-;;;;;;;;;;;;;;;;512:115;;;;;;;;;;;;;:::i;988:33::-;;;;;;;;;;;;;;;;4436:162:3;;;;;;;;;;-1:-1:-1;4436:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4556:25:3;;;4533:4;4556:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4436:162;1987:240:10;;;;;;;;;;-1:-1:-1;1987:240:10;;;;;:::i;:::-;;:::i;1635:1011:14:-;;;;;;;;;;;;;:::i;909:234:4:-;1011:4;-1:-1:-1;;;;;;1034:50:4;;-1:-1:-1;;;1034:50:4;;:102;;;1100:36;1124:11;1100:23;:36::i;:::-;1027:109;;909:234;;;;:::o;2377:98:3:-;2431:13;2463:5;2456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2377:98;;:::o;3796:217::-;3872:7;7045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7045:16:3;3891:73;;;;-1:-1:-1;;;3891:73:3;;11058:2:15;3891:73:3;;;11040:21:15;11097:2;11077:18;;;11070:30;11136:34;11116:18;;;11109:62;-1:-1:-1;;;11187:18:15;;;11180:42;11239:19;;3891:73:3;;;;;;;;;-1:-1:-1;3982:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;3982:24:3;;3796:217::o;3340:395::-;3420:13;3436:23;3451:7;3436:14;:23::i;:::-;3420:39;;3483:5;-1:-1:-1;;;;;3477:11:3;:2;-1:-1:-1;;;;;3477:11:3;;;3469:57;;;;-1:-1:-1;;;3469:57:3;;12658:2:15;3469:57:3;;;12640:21:15;12697:2;12677:18;;;12670:30;12736:34;12716:18;;;12709:62;-1:-1:-1;;;12787:18:15;;;12780:31;12828:19;;3469:57:3;12630:223:15;3469:57:3;665:10:1;-1:-1:-1;;;;;3545:21:3;;;;:69;;-1:-1:-1;3570:44:3;3594:5;665:10:1;3601:12:3;586:96:1;3570:44:3;3537:159;;;;-1:-1:-1;;;3537:159:3;;9451:2:15;3537:159:3;;;9433:21:15;9490:2;9470:18;;;9463:30;9529:34;9509:18;;;9502:62;9600:26;9580:18;;;9573:54;9644:19;;3537:159:3;9423:246:15;3537:159:3;3707:21;3716:2;3720:7;3707:8;:21::i;:::-;3340:395;;;:::o;846:79:14:-;889:36;727:10;913:11;889:36;:::i;:::-;846:79;:::o;4660:300:3:-;4819:41;665:10:1;4852:7:3;4819:18;:41::i;:::-;4811:103;;;;-1:-1:-1;;;4811:103:3;;;;;;;:::i;:::-;4925:28;4935:4;4941:2;4945:7;4925:9;:28::i;1222:253:4:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;-1:-1:-1;;;1338:87:4;;5615:2:15;1338:87:4;;;5597:21:15;5654:2;5634:18;;;5627:30;5693:34;5673:18;;;5666:62;-1:-1:-1;;;5744:18:15;;;5737:41;5795:19;;1338:87:4;5587:233:15;1338:87:4;-1:-1:-1;;;;;;1442:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1222:253::o;4608:140:14:-;1133:6:10;;-1:-1:-1;;;;;1133:6:10;665:10:1;1273:23:10;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;4703:37:14::1;::::0;4671:21:::1;::::0;4711:10:::1;::::0;4703:37;::::1;;;::::0;4671:21;;4656:12:::1;4703:37:::0;4656:12;4703:37;4671:21;4711:10;4703:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1343:1:10;4608:140:14:o:0;5026:149:3:-;5129:39;5146:4;5152:2;5156:7;5129:39;;;;;;;;;;;;:16;:39::i;1729:230:4:-;1804:7;1839:30;1633:10;:17;1546:111;;1839:30;1831:5;:38;1823:95;;;;-1:-1:-1;;;1823:95:4;;14952:2:15;1823:95:4;;;14934:21:15;14991:2;14971:18;;;14964:30;15030:34;15010:18;;;15003:62;-1:-1:-1;;;15081:18:15;;;15074:42;15133:19;;1823:95:4;14924:234:15;1823:95:4;1935:10;1946:5;1935:17;;;;;;-1:-1:-1;;;1935:17:4;;;;;;;;;;;;;;;;;1928:24;;1729:230;;;:::o;2080:235:3:-;2152:7;2187:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2187:16:3;2221:19;2213:73;;;;-1:-1:-1;;;2213:73:3;;10287:2:15;2213:73:3;;;10269:21:15;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:15;;;10409:39;10465:19;;2213:73:3;10259:231:15;1818:205:3;1890:7;-1:-1:-1;;;;;1917:19:3;;1909:74;;;;-1:-1:-1;;;1909:74:3;;9876:2:15;1909:74:3;;;9858:21:15;9915:2;9895:18;;;9888:30;9954:34;9934:18;;;9927:62;-1:-1:-1;;;10005:18:15;;;9998:40;10055:19;;1909:74:3;9848:232:15;1909:74:3;-1:-1:-1;;;;;;2000:16:3;;;;;:9;:16;;;;;;;1818:205::o;1693:145:10:-;1133:6;;-1:-1:-1;;;;;1133:6:10;665:10:1;1273:23:10;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;1783:6:::1;::::0;1762:40:::1;::::0;1799:1:::1;::::0;-1:-1:-1;;;;;1783:6:10::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1812:6;:19:::0;;-1:-1:-1;;;;;;1812:19:10::1;::::0;;1693:145::o;3971:541:14:-;4030:13;;:18;4022:60;;;;-1:-1:-1;;;4022:60:14;;9093:2:15;4022:60:14;;;9075:21:15;9132:2;9112:18;;;9105:30;9171:31;9151:18;;;9144:59;9220:18;;4022:60:14;9065:179:15;4022:60:14;4101:18;;4093:68;;;;-1:-1:-1;;;4093:68:14;;13764:2:15;4093:68:14;;;13746:21:15;;;13783:18;;;13776:30;13842:34;13822:18;;;13815:62;13894:18;;4093:68:14;13736:182:15;4093:68:14;4219:18;;4184:14;;4201:55;;975:4;;4209:29;4201:55;:::i;:::-;4184:72;-1:-1:-1;4297:3:14;4272:21;4184:72;4272:12;:21;:::i;:::-;4271:29;4267:122;;;975:4;4344:14;4357:1;4344:12;:14;:::i;:::-;4326:51;;;4334:25;4326:51;:::i;:::-;4317:60;;4267:122;4403:11;4399:63;;4440:10;:6;4449:1;4440:10;:::i;:::-;4431:19;;4399:63;4482:13;:22;3971:541::o;2778:1098::-;1680:1:11;2260:7;;:19;;2252:63;;;;-1:-1:-1;;;2252:63:11;;15714:2:15;2252:63:11;;;15696:21:15;15753:2;15733:18;;;15726:30;15792:33;15772:18;;;15765:61;15843:18;;2252:63:11;15686:181:15;2252:63:11;1680:1;2390:7;:18;975:4:14::1;2864:13;1633:10:4::0;:17;1546:111;;2864:13:14::1;:30;2856:65;;;::::0;-1:-1:-1;;;2856:65:14;;13060:2:15;2856:65:14::1;::::0;::::1;13042:21:15::0;13099:2;13079:18;;;13072:30;-1:-1:-1;;;13118:18:15;;;13111:52;13180:18;;2856:65:14::1;13032:172:15::0;2856:65:14::1;2955:1;2940:12;:16;2932:53;;;::::0;-1:-1:-1;;;2932:53:14;;13411:2:15;2932:53:14::1;::::0;::::1;13393:21:15::0;13450:2;13430:18;;;13423:30;13489:26;13469:18;;;13462:54;13533:18;;2932:53:14::1;13383:174:15::0;2932:53:14::1;3020:1;3004:12;:17;;2996:70;;;::::0;-1:-1:-1;;;2996:70:14;;14543:2:15;2996:70:14::1;::::0;::::1;14525:21:15::0;14582:2;14562:18;;;14555:30;14621:34;14601:18;;;14594:62;-1:-1:-1;;;14672:18:15;;;14665:38;14720:19;;2996:70:14::1;14515:230:15::0;2996:70:14::1;975:4;3102:12;3086:13;1633:10:4::0;:17;1546:111;;3086:13:14::1;:28;;;;:::i;:::-;3085:48;;3077:83;;;::::0;-1:-1:-1;;;3077:83:14;;7210:2:15;3077:83:14::1;::::0;::::1;7192:21:15::0;7249:2;7229:18;;;7222:30;-1:-1:-1;;;7268:18:15;;;7261:52;7330:18;;3077:83:14::1;7182:172:15::0;3077:83:14::1;3213:9;3196:12;3180:13;:11;:13::i;:::-;:28;;;;:::i;:::-;3179:43;3171:87;;;::::0;-1:-1:-1;;;3171:87:14;;8320:2:15;3171:87:14::1;::::0;::::1;8302:21:15::0;8359:2;8339:18;;;8332:30;8398:33;8378:18;;;8371:61;8449:18;;3171:87:14::1;8292:181:15::0;3171:87:14::1;3276:6;3271:273;3292:12;3288:1;:16;3271:273;;;3326:17;3346:13;1633:10:4::0;:17;1546:111;;3346:13:14::1;3326:33:::0;-1:-1:-1;889:36:14::1;727:10;913:11;889:36;:::i;:::-;3378:15;:34;3374:112;;;3433:30;::::0;;;:19:::1;:30;::::0;;;;:37;;-1:-1:-1;;3433:37:14::1;3466:4;3433:37;::::0;;3374:112:::1;3500:32;3510:10;3522:9;3500;:32::i;:::-;-1:-1:-1::0;3306:3:14;::::1;::::0;::::1;:::i;:::-;;;;3271:273;;;-1:-1:-1::0;3708:18:14::1;::::0;:23;:99;::::1;;;;975:4;3736:13;1633:10:4::0;:17;1546:111;;3736:13:14::1;:31;:70;;;-1:-1:-1::0;889:36:14::1;727:10;913:11;889:36;:::i;:::-;3771:15;:35;;3736:70;3704:165;;;3845:12;3824:18;:33:::0;3704:165:::1;-1:-1:-1::0;1637:1:11;2563:7;:22;2778:1098:14:o;2539:102:3:-;2595:13;2627:7;2620:14;;;;;:::i;4080:290::-;-1:-1:-1;;;;;4182:24:3;;665:10:1;4182:24:3;;4174:62;;;;-1:-1:-1;;;4174:62:3;;7966:2:15;4174:62:3;;;7948:21:15;8005:2;7985:18;;;7978:30;8044:27;8024:18;;;8017:55;8089:18;;4174:62:3;7938:175:15;4174:62:3;665:10:1;4247:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4247:42:3;;;;;;;;;;:53;;-1:-1:-1;;4247:53:3;;;;;;;:42;-1:-1:-1;;;;;4315:48:3;;4354:8;4315:48;;;;5162:14:15;5155:22;5137:41;;5125:2;5110:18;;5092:92;4315:48:3;;;;;;;;4080:290;;:::o;5241:282::-;5372:41;665:10:1;5405:7:3;5372:18;:41::i;:::-;5364:103;;;;-1:-1:-1;;;5364:103:3;;;;;;;:::i;:::-;5477:39;5491:4;5497:2;5501:7;5510:5;5477:13;:39::i;:::-;5241:282;;;;:::o;2707:353::-;7022:4;7045:16;;;:7;:16;;;;;;2780:13;;-1:-1:-1;;;;;7045:16:3;2805:76;;;;-1:-1:-1;;;2805:76:3;;12242:2:15;2805:76:3;;;12224:21:15;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:15;;;12364:45;12426:19;;2805:76:3;12214:237:15;2805:76:3;2892:21;2916:10;3267:9;;;;;;;;;-1:-1:-1;3267:9:3;;3191:92;;2916:10;2892:34;;2967:1;2949:7;2943:21;:25;:110;;;;;;;;;;;;;;;;;3007:7;3016:18;:7;:16;:18::i;:::-;2990:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2943:110;2936:117;2707:353;-1:-1:-1;;;2707:353:3:o;512:115:14:-;;;;;;;;;;;;;;;;;;;:::o;1987:240:10:-;1133:6;;-1:-1:-1;;;;;1133:6:10;665:10:1;1273:23:10;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2075:22:10;::::1;2067:73;;;::::0;-1:-1:-1;;;2067:73:10;;6446:2:15;2067:73:10::1;::::0;::::1;6428:21:15::0;6485:2;6465:18;;;6458:30;6524:34;6504:18;;;6497:62;-1:-1:-1;;;6575:18:15;;;6568:36;6621:19;;2067:73:10::1;6418:228:15::0;2067:73:10::1;2176:6;::::0;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:10;;::::1;::::0;2176:6:::1;::::0;2155:38:::1;::::0;2176:6:::1;::::0;2155:38:::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:10::1;-1:-1:-1::0;;;;;2203:17:10;;;::::1;::::0;;;::::1;::::0;;1987:240::o;1635:1011:14:-;1679:7;727:10;1707:15;:39;;1699:72;;;;-1:-1:-1;;;1699:72:14;;15365:2:15;1699:72:14;;;15347:21:15;15404:2;15384:18;;;15377:30;-1:-1:-1;;;15423:18:15;;;15416:50;15483:18;;1699:72:14;15337:170:15;1699:72:14;975:4;1790:13;1633:10:4;:17;1546:111;;1790:13:14;:30;1782:65;;;;-1:-1:-1;;;1782:65:14;;13060:2:15;1782:65:14;;;13042:21:15;13099:2;13079:18;;;13072:30;-1:-1:-1;;;13118:18:15;;;13111:52;13180:18;;1782:65:14;13032:172:15;1782:65:14;1860:21;1884:13;1633:10:4;:17;1546:111;;1884:13:14;1860:37;;1931:4;1914:13;:21;1910:729;;1959:21;1952:28;;;;;1910:729;2042:4;2025:13;:21;2021:618;;2070:19;2063:26;;;;;2021:618;2151:4;2134:13;:21;2130:509;;2179:19;2172:26;;;;;2130:509;2261:4;2244:13;:21;2240:399;;2289:19;2282:26;;;;;2240:399;2370:4;2353:13;:21;2349:290;;2398:19;2391:26;;;;;2349:290;2479:4;2462:13;:21;2458:181;;2507:18;2500:25;;;;;2458:181;2588:18;2581:25;;;;;1471:288:3;1573:4;-1:-1:-1;;;;;;1596:40:3;;-1:-1:-1;;;1596:40:3;;:104;;-1:-1:-1;;;;;;;1652:48:3;;-1:-1:-1;;;1652:48:3;1596:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1716:36:3;763:155:2;10722:171:3;10796:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10796:29:3;-1:-1:-1;;;;;10796:29:3;;;;;;;;:24;;10849:23;10796:24;10849:14;:23::i;:::-;-1:-1:-1;;;;;10840:46:3;;;;;;;;;;;10722:171;;:::o;7240:351::-;7333:4;7045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7045:16:3;7349:73;;;;-1:-1:-1;;;7349:73:3;;8680:2:15;7349:73:3;;;8662:21:15;8719:2;8699:18;;;8692:30;8758:34;8738:18;;;8731:62;-1:-1:-1;;;8809:18:15;;;8802:42;8861:19;;7349:73:3;8652:234:15;7349:73:3;7432:13;7448:23;7463:7;7448:14;:23::i;:::-;7432:39;;7500:5;-1:-1:-1;;;;;7489:16:3;:7;-1:-1:-1;;;;;7489:16:3;;:51;;;;7533:7;-1:-1:-1;;;;;7509:31:3;:20;7521:7;7509:11;:20::i;:::-;-1:-1:-1;;;;;7509:31:3;;7489:51;:94;;;-1:-1:-1;;;;;;4556:25:3;;;4533:4;4556:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7544:39;7481:103;7240:351;-1:-1:-1;;;;7240:351:3:o;10081:530::-;10205:4;-1:-1:-1;;;;;10178:31:3;:23;10193:7;10178:14;:23::i;:::-;-1:-1:-1;;;;;10178:31:3;;10170:85;;;;-1:-1:-1;;;10170:85:3;;11832:2:15;10170:85:3;;;11814:21:15;11871:2;11851:18;;;11844:30;11910:34;11890:18;;;11883:62;-1:-1:-1;;;11961:18:15;;;11954:39;12010:19;;10170:85:3;11804:231:15;10170:85:3;-1:-1:-1;;;;;10273:16:3;;10265:65;;;;-1:-1:-1;;;10265:65:3;;7561:2:15;10265:65:3;;;7543:21:15;7600:2;7580:18;;;7573:30;7639:34;7619:18;;;7612:62;-1:-1:-1;;;7690:18:15;;;7683:34;7734:19;;10265:65:3;7533:226:15;10265:65:3;10341:39;10362:4;10368:2;10372:7;10341:20;:39::i;:::-;10442:29;10459:1;10463:7;10442:8;:29::i;:::-;-1:-1:-1;;;;;10482:15:3;;;;;;:9;:15;;;;;:20;;10501:1;;10482:15;:20;;10501:1;;10482:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10512:13:3;;;;;;:9;:13;;;;;:18;;10529:1;;10512:13;:18;;10529:1;;10512:18;:::i;:::-;;;;-1:-1:-1;;10540:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10540:21:3;-1:-1:-1;;;;;10540:21:3;;;;;;;;;10577:27;;10540:16;;10577:27;;;;;;;10081:530;;;:::o;7922:108::-;7997:26;8007:2;8011:7;7997:26;;;;;;;;;;;;:9;:26::i;6385:269::-;6498:28;6508:4;6514:2;6518:7;6498:9;:28::i;:::-;6544:48;6567:4;6573:2;6577:7;6586:5;6544:22;:48::i;:::-;6536:111;;;;-1:-1:-1;;;6536:111:3;;;;;;;:::i;271:703:13:-;327:13;544:10;540:51;;-1:-1:-1;570:10:13;;;;;;;;;;;;-1:-1:-1;;;570:10:13;;;;;;540:51;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:13;;-1:-1:-1;716:2:13;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:13;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:13;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;845:56:13;;;;;;;;-1:-1:-1;915:11:13;924:2;915:11;;:::i;:::-;;;787:150;;2555:542:4;-1:-1:-1;;;;;2724:18:4;;2720:183;;2758:40;2790:7;3906:10;:17;;3879:24;;;;:15;:24;;;;;:44;;;3933:24;;;;;;;;;;;;3803:161;2758:40;2720:183;;;2827:2;-1:-1:-1;;;;;2819:10:4;:4;-1:-1:-1;;;;;2819:10:4;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;-1:-1:-1;;;;;2916:16:4;;2912:179;;2948:45;2985:7;2948:36;:45::i;:::-;2912:179;;;3020:4;-1:-1:-1;;;;;3014:10:4;:2;-1:-1:-1;;;;;3014:10:4;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;8251:247:3:-;8346:18;8352:2;8356:7;8346:5;:18::i;:::-;8382:54;8413:1;8417:2;8421:7;8430:5;8382:22;:54::i;:::-;8374:117;;;;-1:-1:-1;;;8374:117:3;;;;;;;:::i;11446:824::-;11566:4;-1:-1:-1;;;;;11590:13:3;;1078:20:0;1116:8;11586:678:3;;11625:72;;-1:-1:-1;;;11625:72:3;;-1:-1:-1;;;;;11625:36:3;;;;;:72;;665:10:1;;11676:4:3;;11682:7;;11691:5;;11625:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11625:72:3;;;;;;;;-1:-1:-1;;11625:72:3;;;;;;;;;;;;:::i;:::-;;;11621:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11868:13:3;;11864:334;;11910:60;;-1:-1:-1;;;11910:60:3;;;;;;;:::i;11864:334::-;12150:6;12144:13;12135:6;12131:2;12127:15;12120:38;11621:591;-1:-1:-1;;;;;;11747:55:3;-1:-1:-1;;;11747:55:3;;-1:-1:-1;11740:62:3;;11586:678;-1:-1:-1;12249:4:3;11446:824;;;;;;:::o;4581:970:4:-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4904:18;4925:26;;;:17;:26;;;;;;4843:51;;-1:-1:-1;5055:28:4;;;5051:323;;-1:-1:-1;;;;;5121:18:4;;5099:19;5121:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5170:30;;;;;;:44;;;5286:30;;:17;:30;;;;;:43;;;5051:323;-1:-1:-1;5467:26:4;;;;:17;:26;;;;;;;;5460:33;;;-1:-1:-1;;;;;5510:18:4;;;;;:12;:18;;;;;:34;;;;;;;5503:41;4581:970::o;5839:1061::-;6113:10;:17;6088:22;;6113:21;;6133:1;;6113:21;:::i;:::-;6144:18;6165:24;;;:15;:24;;;;;;6533:10;:26;;6088:46;;-1:-1:-1;6165:24:4;;6088:46;;6533:26;;;;-1:-1:-1;;;6533:26:4;;;;;;;;;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;-1:-1:-1;;;6570:22:4;;;;;;;;;;;;;;;;;;;;:36;;;;6674:28;;;:15;:28;;;;;;;:41;;;6843:24;;;;;6836:31;6877:10;:16;;;;;-1:-1:-1;;;6877:16:4;;;;;;;;;;;;;;;;;;;;;;;;;;5839:1061;;;;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;-1:-1:-1;;;;;3522:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3566:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3391:217:4:o;8820:372:3:-;-1:-1:-1;;;;;8899:16:3;;8891:61;;;;-1:-1:-1;;;8891:61:3;;10697:2:15;8891:61:3;;;10679:21:15;;;10716:18;;;10709:30;10775:34;10755:18;;;10748:62;10827:18;;8891:61:3;10669:182:15;8891:61:3;7022:4;7045:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7045:16:3;:30;8962:58;;;;-1:-1:-1;;;8962:58:3;;6853:2:15;8962:58:3;;;6835:21:15;6892:2;6872:18;;;6865:30;6931;6911:18;;;6904:58;6979:18;;8962:58:3;6825:178:15;8962:58:3;9031:45;9060:1;9064:2;9068:7;9031:20;:45::i;:::-;-1:-1:-1;;;;;9087:13:3;;;;;;:9;:13;;;;;:18;;9104:1;;9087:13;:18;;9104:1;;9087:18;:::i;:::-;;;;-1:-1:-1;;9115:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9115:21:3;-1:-1:-1;;;;;9115:21:3;;;;;;;;9152:33;;9115:16;;;9152:33;;9115:16;;9152:33;8820:372;;:::o;14:173:15:-;82:20;;-1:-1:-1;;;;;131:31:15;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;;;;;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:15;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:15;;-1:-1:-1;;;;1141:1053:15:o;2199:367::-;;;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;;;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:15:o;2840:255::-;;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:190::-;;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;-1:-1:-1;3525:23:15;;3434:120;-1:-1:-1;3434:120:15:o;3559:257::-;;3638:5;3632:12;3665:6;3660:3;3653:19;3681:63;3737:6;3730:4;3725:3;3721:14;3714:4;3707:5;3703:16;3681:63;:::i;:::-;3798:2;3777:15;-1:-1:-1;;3773:29:15;3764:39;;;;3805:4;3760:50;;3608:208;-1:-1:-1;;3608:208:15:o;3821:470::-;;4038:6;4032:13;4054:53;4100:6;4095:3;4088:4;4080:6;4076:17;4054:53;:::i;:::-;4170:13;;4129:16;;;;4192:57;4170:13;4129:16;4226:4;4214:17;;4192:57;:::i;:::-;4265:20;;4008:283;-1:-1:-1;;;;4008:283:15:o;4504:488::-;-1:-1:-1;;;;;4773:15:15;;;4755:34;;4825:15;;4820:2;4805:18;;4798:43;4872:2;4857:18;;4850:34;;;4920:3;4915:2;4900:18;;4893:31;;;4504:488;;4941:45;;4966:19;;4958:6;4941:45;:::i;:::-;4933:53;4707:285;-1:-1:-1;;;;;;4707:285:15:o;5189:219::-;;5338:2;5327:9;5320:21;5358:44;5398:2;5387:9;5383:18;5375:6;5358:44;:::i;5825:414::-;6027:2;6009:21;;;6066:2;6046:18;;;6039:30;6105:34;6100:2;6085:18;;6078:62;-1:-1:-1;;;6171:2:15;6156:18;;6149:48;6229:3;6214:19;;5999:240::o;11269:356::-;11471:2;11453:21;;;11490:18;;;11483:30;11549:34;11544:2;11529:18;;11522:62;11616:2;11601:18;;11443:182::o;13923:413::-;14125:2;14107:21;;;14164:2;14144:18;;;14137:30;14203:34;14198:2;14183:18;;14176:62;-1:-1:-1;;;14269:2:15;14254:18;;14247:47;14326:3;14311:19;;14097:239::o;16054:128::-;;16125:1;16121:6;16118:1;16115:13;16112:2;;;16131:18;;:::i;:::-;-1:-1:-1;16167:9:15;;16102:80::o;16187:120::-;;16253:1;16243:2;;16258:18;;:::i;:::-;-1:-1:-1;16292:9:15;;16233:74::o;16312:168::-;;16418:1;16414;16410:6;16406:14;16403:1;16400:21;16395:1;16388:9;16381:17;16377:45;16374:2;;;16425:18;;:::i;:::-;-1:-1:-1;16465:9:15;;16364:116::o;16485:125::-;;16553:1;16550;16547:8;16544:2;;;16558:18;;:::i;:::-;-1:-1:-1;16595:9:15;;16534:76::o;16615:258::-;16687:1;16697:113;16711:6;16708:1;16705:13;16697:113;;;16787:11;;;16781:18;16768:11;;;16761:39;16733:2;16726:10;16697:113;;;16828:6;16825:1;16822:13;16819:2;;;-1:-1:-1;;16863:1:15;16845:16;;16838:27;16668:205::o;16878:380::-;16963:1;16953:12;;17010:1;17000:12;;;17021:2;;17075:4;17067:6;17063:17;17053:27;;17021:2;17128;17120:6;17117:14;17097:18;17094:38;17091:2;;;17174:10;17169:3;17165:20;17162:1;17155:31;17209:4;17206:1;17199:15;17237:4;17234:1;17227:15;17091:2;;16933:325;;;:::o;17263:135::-;;-1:-1:-1;;17323:17:15;;17320:2;;;17343:18;;:::i;:::-;-1:-1:-1;17390:1:15;17379:13;;17310:88::o;17403:112::-;;17461:1;17451:2;;17466:18;;:::i;:::-;-1:-1:-1;17500:9:15;;17441:74::o;17520:127::-;17581:10;17576:3;17572:20;17569:1;17562:31;17612:4;17609:1;17602:15;17636:4;17633:1;17626:15;17652:127;17713:10;17708:3;17704:20;17701:1;17694:31;17744:4;17741:1;17734:15;17768:4;17765:1;17758:15;17784:127;17845:10;17840:3;17836:20;17833:1;17826:31;17876:4;17873:1;17866:15;17900:4;17897:1;17890:15;17916:131;-1:-1:-1;;;;;;17990:32:15;;17980:43;;17970:2;;18037:1;18034;18027:12;17970:2;17960:87;:::o

Swarm Source

ipfs://74336d7a33c5742e6bc8d2938a368f83f26e149b5c2ff453585469f48a0b4d97
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.