ETH Price: $2,464.16 (+1.64%)

Token

KnowMansLand (Knowman)
 

Overview

Max Total Supply

90 Knowman

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 Knowman
0xa0fb86b131b1605575b87b591172365a8ba07132
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KnowMansLand

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 18: KnowMansLand.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./ERC721Pausable.sol";

contract KnowMansLand is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;

    uint256 public MAX_NFT = 10000;
    uint256 public PRICE = 4 * 10**16;
    uint256 public MAX_BY_MINT = 24;
	uint256 public AVAILABLE_TO_MINT;
	
    string public baseTokenURI;
	
    event CreateKnowman(uint256 indexed id);
	
    constructor(string memory baseURI, uint256 availableLimit) ERC721("KnowMansLand", "Knowman") {
        setBaseURI(baseURI);
		AVAILABLE_TO_MINT = availableLimit;
        pause(true);
    }
	
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
	
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
	
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
	
    function mint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(total + _count <= AVAILABLE_TO_MINT, "Max limit");
        require(total <= AVAILABLE_TO_MINT, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
	
	function __mint(address _to, uint256 _count) public saleIsOpen onlyOwner{
        uint256 total = _totalSupply();
        require(total + _count <= AVAILABLE_TO_MINT, "Max limit");
        require(total <= AVAILABLE_TO_MINT, "Sale end");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateKnowman(id);
    }
	
    function price(uint256 _count) public view returns (uint256) {
        return PRICE.mul(_count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
	
	function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(owner(), address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

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

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function updateMintingLimit(uint256 newLimit) external onlyOwner {
        require(newLimit <= MAX_NFT, "bad value");
		require(_totalSupply() < newLimit, "bad value");
		AVAILABLE_TO_MINT = newLimit;
    }
	
	function updatePrice(uint256 newPrice) external onlyOwner {
        PRICE = newPrice;
    }
	
	function updateMintLimit(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT = newLimit;
    }
	
	function updateMaxSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply > _totalSupply(), "Incorrect value");
        MAX_NFT = newSupply;
    }
}

File 1 of 18: 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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    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

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

File 2 of 18: 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) {
        return msg.data;
    }
}

File 3 of 18: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 18: 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 5 of 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 6 of 18: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 7 of 18: 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 8 of 18: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";
import "./Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 9 of 18: 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 10 of 18: 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 11 of 18: 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 12 of 18: 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 13 of 18: 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 15 of 18: 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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 16 of 18: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 18: 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. 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 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"availableLimit","type":"uint256"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateKnowman","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"AVAILABLE_TO_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"__mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c55668e1bc9bf040000600d556018600e553480156200002757600080fd5b50604051620031b6380380620031b68339810160408190526200004a91620003d5565b604080518082018252600c81526b12db9bddd3585b9cd3185b9960a21b60208083019182528351808501909452600784526625b737bbb6b0b760c91b9084015281519192916200009d916000916200032f565b508051620000b39060019060208401906200032f565b505050620000d0620000ca6200010160201b60201c565b62000105565b600a805460ff60a01b19169055620000e88262000157565b600f819055620000f96001620001bf565b5050620005a9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016162000101565b6001600160a01b0316620001746200022e565b6001600160a01b031614620001a65760405162461bcd60e51b81526004016200019d9062000521565b60405180910390fd5b8051620001bb9060109060208401906200032f565b5050565b620001c962000101565b6001600160a01b0316620001dc6200022e565b6001600160a01b031614620002055760405162461bcd60e51b81526004016200019d9062000521565b6001811515141562000221576200021b6200023d565b6200022b565b6200022b620002be565b50565b600a546001600160a01b031690565b620002476200031f565b15620002675760405162461bcd60e51b81526004016200019d90620004f7565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002a562000101565b604051620002b49190620004ac565b60405180910390a1565b620002c86200031f565b620002e75760405162461bcd60e51b81526004016200019d90620004c0565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620002a562000101565b600a54600160a01b900460ff1690565b8280546200033d9062000556565b90600052602060002090601f016020900481019282620003615760008555620003ac565b82601f106200037c57805160ff1916838001178555620003ac565b82800160010185558215620003ac579182015b82811115620003ac5782518255916020019190600101906200038f565b50620003ba929150620003be565b5090565b5b80821115620003ba5760008155600101620003bf565b60008060408385031215620003e8578182fd5b82516001600160401b0380821115620003ff578384fd5b818501915085601f83011262000413578384fd5b81518181111562000428576200042862000593565b6040516020601f8301601f191682018101848111838210171562000450576200045062000593565b604052828252848301810189101562000467578687fd5b8693505b828410156200048a57848401810151828501820152928301926200046b565b828411156200049b57868184840101525b969096015195979596505050505050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200056b57607f821691505b602082108114156200058d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bfd80620005b96000396000f3fe6080604052600436106102255760003560e01c80636352211e1161012357806395d89b41116100ab578063d547cfb71161006f578063d547cfb714610605578063e01d55c51461061a578063e985e9c51461063a578063f103b4331461065a578063f2fde38b1461067a57610225565b806395d89b411461057b578063a206f0a614610590578063a22cb465146105a5578063b88d4fde146105c5578063c87b56dd146105e557610225565b8063853828b6116100f2578063853828b6146105075780638ad5de281461051c5780638d6cc56d146105315780638d859f3e146105515780638da5cb5b1461056657610225565b80636352211e1461049d5780636fdaddf1146104bd57806370a08231146104d2578063715018a6146104f257610225565b8063363da98e116101b1578063438b630011610175578063438b6300146104065780634f6ccce71461043357806355f804b31461045357806359a7715a146104735780635c975abb1461048857610225565b8063363da98e146103735780633dc8ded71461039357806340c10f19146103b357806342842e0e146103c657806342966c68146103e657610225565b8063095ea7b3116101f8578063095ea7b3146102d157806318160ddd146102f157806323b872dd1461031357806326a49e37146103335780632f745c591461035357610225565b806301ffc9a71461022a57806302329a291461026057806306fdde0314610282578063081812fc146102a4575b600080fd5b34801561023657600080fd5b5061024a6102453660046121c9565b61069a565b6040516102579190612352565b60405180910390f35b34801561026c57600080fd5b5061028061027b3660046121af565b6106ad565b005b34801561028e57600080fd5b50610297610718565b604051610257919061235d565b3480156102b057600080fd5b506102c46102bf366004612247565b6107aa565b60405161025791906122bd565b3480156102dd57600080fd5b506102806102ec366004612186565b6107ed565b3480156102fd57600080fd5b50610306610885565b6040516102579190612a6e565b34801561031f57600080fd5b5061028061032e3660046120a9565b61088b565b34801561033f57600080fd5b5061030661034e366004612247565b6108c3565b34801561035f57600080fd5b5061030661036e366004612186565b6108d3565b34801561037f57600080fd5b5061028061038e366004612247565b610925565b34801561039f57600080fd5b506102806103ae366004612186565b6109b1565b6102806103c1366004612186565b610aeb565b3480156103d257600080fd5b506102806103e13660046120a9565b610c2a565b3480156103f257600080fd5b50610280610401366004612247565b610c45565b34801561041257600080fd5b5061042661042136600461205d565b610c75565b604051610257919061230e565b34801561043f57600080fd5b5061030661044e366004612247565b610d33565b34801561045f57600080fd5b5061028061046e366004612201565b610d8e565b34801561047f57600080fd5b50610306610de4565b34801561049457600080fd5b5061024a610df3565b3480156104a957600080fd5b506102c46104b8366004612247565b610e03565b3480156104c957600080fd5b50610306610e38565b3480156104de57600080fd5b506103066104ed36600461205d565b610e3e565b3480156104fe57600080fd5b50610280610e82565b34801561051357600080fd5b50610280610ecd565b34801561052857600080fd5b50610306610f28565b34801561053d57600080fd5b5061028061054c366004612247565b610f2e565b34801561055d57600080fd5b50610306610f72565b34801561057257600080fd5b506102c4610f78565b34801561058757600080fd5b50610297610f87565b34801561059c57600080fd5b50610306610f96565b3480156105b157600080fd5b506102806105c036600461215d565b610f9c565b3480156105d157600080fd5b506102806105e03660046120e4565b61106a565b3480156105f157600080fd5b50610297610600366004612247565b6110a3565b34801561061157600080fd5b50610297611126565b34801561062657600080fd5b50610280610635366004612247565b6111b4565b34801561064657600080fd5b5061024a610655366004612077565b61121a565b34801561066657600080fd5b50610280610675366004612247565b611248565b34801561068657600080fd5b5061028061069536600461205d565b6112b2565b60006106a582611320565b90505b919050565b6106b5611345565b6001600160a01b03166106c6610f78565b6001600160a01b0316146106f55760405162461bcd60e51b81526004016106ec906127fb565b60405180910390fd5b6001811515141561070d57610708611349565b610715565b6107156113c1565b50565b60606000805461072790612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461075390612b05565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b58261141b565b6107d15760405162461bcd60e51b81526004016106ec90612786565b506000908152600460205260409020546001600160a01b031690565b60006107f882610e03565b9050806001600160a01b0316836001600160a01b0316141561082c5760405162461bcd60e51b81526004016106ec906128f3565b806001600160a01b031661083e611345565b6001600160a01b0316148061085a575061085a81610655611345565b6108765760405162461bcd60e51b81526004016106ec9061263f565b6108808383611438565b505050565b60085490565b61089c610896611345565b826114a6565b6108b85760405162461bcd60e51b81526004016106ec9061295e565b61088083838361152b565b600d546000906106a59083611658565b60006108de83610e3e565b82106108fc5760405162461bcd60e51b81526004016106ec90612411565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61092d611345565b6001600160a01b031661093e610f78565b6001600160a01b0316146109645760405162461bcd60e51b81526004016106ec906127fb565b600c548111156109865760405162461bcd60e51b81526004016106ec90612a4b565b8061098f611664565b106109ac5760405162461bcd60e51b81526004016106ec90612a4b565b600f55565b600c546109bc611664565b11156109da5760405162461bcd60e51b81526004016106ec90612764565b6109e2610f78565b6001600160a01b03166109f3611345565b6001600160a01b031614610a2657610a09610df3565b15610a265760405162461bcd60e51b81526004016106ec90612615565b610a2e611345565b6001600160a01b0316610a3f610f78565b6001600160a01b031614610a655760405162461bcd60e51b81526004016106ec906127fb565b6000610a6f611664565b600f54909150610a7f8383612a77565b1115610a9d5760405162461bcd60e51b81526004016106ec906125a6565b600f54811115610abf5760405162461bcd60e51b81526004016106ec90612764565b60005b82811015610ae557610ad384611670565b80610add81612b40565b915050610ac2565b50505050565b600c54610af6611664565b1115610b145760405162461bcd60e51b81526004016106ec90612764565b610b1c610f78565b6001600160a01b0316610b2d611345565b6001600160a01b031614610b6057610b43610df3565b15610b605760405162461bcd60e51b81526004016106ec90612615565b6000610b6a611664565b600f54909150610b7a8383612a77565b1115610b985760405162461bcd60e51b81526004016106ec906125a6565b600f54811115610bba5760405162461bcd60e51b81526004016106ec90612764565b600e54821115610bdc5760405162461bcd60e51b81526004016106ec906123e9565b610be5826108c3565b341015610c045760405162461bcd60e51b81526004016106ec906128c8565b60005b82811015610ae557610c1884611670565b80610c2281612b40565b915050610c07565b6108808383836040518060200160405280600081525061106a565b610c50610896611345565b610c6c5760405162461bcd60e51b81526004016106ec906129fb565b610715816116bf565b60606000610c8283610e3e565b905060008167ffffffffffffffff811115610cad57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cd6578160200160208202803683370190505b50905060005b82811015610d2b57610cee85826108d3565b828281518110610d0e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d2381612b40565b915050610cdc565b509392505050565b6000610d3d610885565b8210610d5b5760405162461bcd60e51b81526004016106ec906129af565b60088281548110610d7c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d96611345565b6001600160a01b0316610da7610f78565b6001600160a01b031614610dcd5760405162461bcd60e51b81526004016106ec906127fb565b8051610de0906010906020840190611f2d565b5050565b6000610dee611664565b905090565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806106a55760405162461bcd60e51b81526004016106ec906126e6565b600c5481565b60006001600160a01b038216610e665760405162461bcd60e51b81526004016106ec9061269c565b506001600160a01b031660009081526003602052604090205490565b610e8a611345565b6001600160a01b0316610e9b610f78565b6001600160a01b031614610ec15760405162461bcd60e51b81526004016106ec906127fb565b610ecb6000611766565b565b610ed5611345565b6001600160a01b0316610ee6610f78565b6001600160a01b031614610f0c5760405162461bcd60e51b81526004016106ec906127fb565b4780610f1757600080fd5b610715610f22610f78565b476117b8565b600e5481565b610f36611345565b6001600160a01b0316610f47610f78565b6001600160a01b031614610f6d5760405162461bcd60e51b81526004016106ec906127fb565b600d55565b600d5481565b600a546001600160a01b031690565b60606001805461072790612b05565b600f5481565b610fa4611345565b6001600160a01b0316826001600160a01b03161415610fd55760405162461bcd60e51b81526004016106ec9061256f565b8060056000610fe2611345565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611026611345565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105e9190612352565b60405180910390a35050565b61107b611075611345565b836114a6565b6110975760405162461bcd60e51b81526004016106ec9061295e565b610ae584848484611834565b60606110ae8261141b565b6110ca5760405162461bcd60e51b81526004016106ec90612879565b60006110d4611867565b905060008151116110f4576040518060200160405280600081525061111f565b806110fe84611876565b60405160200161110f92919061228b565b6040516020818303038152906040525b9392505050565b6010805461113390612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612b05565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b505050505081565b6111bc611345565b6001600160a01b03166111cd610f78565b6001600160a01b0316146111f35760405162461bcd60e51b81526004016106ec906127fb565b80600c5410156112155760405162461bcd60e51b81526004016106ec906127d2565b600e55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611250611345565b6001600160a01b0316611261610f78565b6001600160a01b0316146112875760405162461bcd60e51b81526004016106ec906127fb565b61128f611664565b81116112ad5760405162461bcd60e51b81526004016106ec906127d2565b600c55565b6112ba611345565b6001600160a01b03166112cb610f78565b6001600160a01b0316146112f15760405162461bcd60e51b81526004016106ec906127fb565b6001600160a01b0381166113175760405162461bcd60e51b81526004016106ec906124ae565b61071581611766565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a582611991565b3390565b611351610df3565b1561136e5760405162461bcd60e51b81526004016106ec90612615565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113aa611345565b6040516113b791906122bd565b60405180910390a1565b6113c9610df3565b6113e55760405162461bcd60e51b81526004016106ec906123bb565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113aa611345565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061146d82610e03565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114b18261141b565b6114cd5760405162461bcd60e51b81526004016106ec906125c9565b60006114d883610e03565b9050806001600160a01b0316846001600160a01b031614806115135750836001600160a01b0316611508846107aa565b6001600160a01b0316145b806115235750611523818561121a565b949350505050565b826001600160a01b031661153e82610e03565b6001600160a01b0316146115645760405162461bcd60e51b81526004016106ec90612830565b6001600160a01b03821661158a5760405162461bcd60e51b81526004016106ec9061252b565b6115958383836119d1565b6115a0600082611438565b6001600160a01b03831660009081526003602052604081208054600192906115c9908490612ac2565b90915550506001600160a01b03821660009081526003602052604081208054600192906115f7908490612a77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061111f8284612aa3565b6000610dee600b6119dc565b600061167a611664565b9050611686600b6119e0565b61169082826119e9565b60405181907f2e76a88490956fbd70561d298788847de3bc11f35bbd1710bf4fe868f8daca6b90600090a25050565b60006116ca82610e03565b90506116d8816000846119d1565b6116e3600083611438565b6001600160a01b038116600090815260036020526040812080546001929061170c908490612ac2565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b0316826040516117d1906122ba565b60006040518083038185875af1925050503d806000811461180e576040519150601f19603f3d011682016040523d82523d6000602084013e611813565b606091505b50509050806108805760405162461bcd60e51b81526004016106ec90612934565b61183f84848461152b565b61184b84848484611a03565b610ae55760405162461bcd60e51b81526004016106ec9061245c565b60606010805461072790612b05565b60608161189b57506040805180820190915260018152600360fc1b60208201526106a8565b8160005b81156118c557806118af81612b40565b91506118be9050600a83612a8f565b915061189f565b60008167ffffffffffffffff8111156118ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611918576020820181803683370190505b5090505b84156115235761192d600183612ac2565b915061193a600a86612b5b565b611945906030612a77565b60f81b81838151811061196857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061198a600a86612a8f565b945061191c565b60006001600160e01b031982166380ac58cd60e01b14806119c257506001600160e01b03198216635b5e139f60e01b145b806106a557506106a582611b1e565b610880838383611b37565b5490565b80546001019055565b610de0828260405180602001604052806000815250611b8e565b6000611a17846001600160a01b0316611bc1565b15611b1357836001600160a01b031663150b7a02611a33611345565b8786866040518563ffffffff1660e01b8152600401611a5594939291906122d1565b602060405180830381600087803b158015611a6f57600080fd5b505af1925050508015611a9f575060408051601f3d908101601f19168201909252611a9c918101906121e5565b60015b611af9573d808015611acd576040519150601f19603f3d011682016040523d82523d6000602084013e611ad2565b606091505b508051611af15760405162461bcd60e51b81526004016106ec9061245c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611523565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611b42838383611bc7565b611b4a610f78565b6001600160a01b0316611b5b611345565b6001600160a01b03161461088057611b71610df3565b156108805760405162461bcd60e51b81526004016106ec90612370565b611b988383611c50565b611ba56000848484611a03565b6108805760405162461bcd60e51b81526004016106ec9061245c565b3b151590565b611bd2838383610880565b6001600160a01b038316611bee57611be981611d2f565b611c11565b816001600160a01b0316836001600160a01b031614611c1157611c118382611d73565b6001600160a01b038216611c2d57611c2881611e10565b610880565b826001600160a01b0316826001600160a01b031614610880576108808282611ee9565b6001600160a01b038216611c765760405162461bcd60e51b81526004016106ec9061272f565b611c7f8161141b565b15611c9c5760405162461bcd60e51b81526004016106ec906124f4565b611ca8600083836119d1565b6001600160a01b0382166000908152600360205260408120805460019290611cd1908490612a77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611d8084610e3e565b611d8a9190612ac2565b600083815260076020526040902054909150808214611ddd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e2290600190612ac2565b60008381526009602052604081205460088054939450909284908110611e5857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e8757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ecd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ef483610e3e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f3990612b05565b90600052602060002090601f016020900481019282611f5b5760008555611fa1565b82601f10611f7457805160ff1916838001178555611fa1565b82800160010185558215611fa1579182015b82811115611fa1578251825591602001919060010190611f86565b50611fad929150611fb1565b5090565b5b80821115611fad5760008155600101611fb2565b600067ffffffffffffffff80841115611fe157611fe1612b9b565b604051601f8501601f19168101602001828111828210171561200557612005612b9b565b60405284815291508183850186101561201d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106a857600080fd5b803580151581146106a857600080fd5b60006020828403121561206e578081fd5b61111f82612036565b60008060408385031215612089578081fd5b61209283612036565b91506120a060208401612036565b90509250929050565b6000806000606084860312156120bd578081fd5b6120c684612036565b92506120d460208501612036565b9150604084013590509250925092565b600080600080608085870312156120f9578081fd5b61210285612036565b935061211060208601612036565b925060408501359150606085013567ffffffffffffffff811115612132578182fd5b8501601f81018713612142578182fd5b61215187823560208401611fc6565b91505092959194509250565b6000806040838503121561216f578182fd5b61217883612036565b91506120a06020840161204d565b60008060408385031215612198578182fd5b6121a183612036565b946020939093013593505050565b6000602082840312156121c0578081fd5b61111f8261204d565b6000602082840312156121da578081fd5b813561111f81612bb1565b6000602082840312156121f6578081fd5b815161111f81612bb1565b600060208284031215612212578081fd5b813567ffffffffffffffff811115612228578182fd5b8201601f81018413612238578182fd5b61152384823560208401611fc6565b600060208284031215612258578081fd5b5035919050565b60008151808452612277816020860160208601612ad9565b601f01601f19169290920160200192915050565b6000835161229d818460208801612ad9565b8351908301906122b1818360208801612ad9565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123049083018461225f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123465783518352928401929184019160010161232a565b50909695505050505050565b901515815260200190565b60006020825261111f602083018461225f565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b6020808252600990820152686261642076616c756560b81b604082015260600190565b90815260200190565b60008219821115612a8a57612a8a612b6f565b500190565b600082612a9e57612a9e612b85565b500490565b6000816000190483118215151615612abd57612abd612b6f565b500290565b600082821015612ad457612ad4612b6f565b500390565b60005b83811015612af4578181015183820152602001612adc565b83811115610ae55750506000910152565b600281046001821680612b1957607f821691505b60208210811415612b3a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b5457612b54612b6f565b5060010190565b600082612b6a57612b6a612b85565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461071557600080fdfea2646970667358221220e947652b0d4d679915da3f4db94722d9c3f6bec7f3d0f3087e2f14e756013b4064736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6b6e6f776d616e736c616e642e696f2f6170692f00000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e1161012357806395d89b41116100ab578063d547cfb71161006f578063d547cfb714610605578063e01d55c51461061a578063e985e9c51461063a578063f103b4331461065a578063f2fde38b1461067a57610225565b806395d89b411461057b578063a206f0a614610590578063a22cb465146105a5578063b88d4fde146105c5578063c87b56dd146105e557610225565b8063853828b6116100f2578063853828b6146105075780638ad5de281461051c5780638d6cc56d146105315780638d859f3e146105515780638da5cb5b1461056657610225565b80636352211e1461049d5780636fdaddf1146104bd57806370a08231146104d2578063715018a6146104f257610225565b8063363da98e116101b1578063438b630011610175578063438b6300146104065780634f6ccce71461043357806355f804b31461045357806359a7715a146104735780635c975abb1461048857610225565b8063363da98e146103735780633dc8ded71461039357806340c10f19146103b357806342842e0e146103c657806342966c68146103e657610225565b8063095ea7b3116101f8578063095ea7b3146102d157806318160ddd146102f157806323b872dd1461031357806326a49e37146103335780632f745c591461035357610225565b806301ffc9a71461022a57806302329a291461026057806306fdde0314610282578063081812fc146102a4575b600080fd5b34801561023657600080fd5b5061024a6102453660046121c9565b61069a565b6040516102579190612352565b60405180910390f35b34801561026c57600080fd5b5061028061027b3660046121af565b6106ad565b005b34801561028e57600080fd5b50610297610718565b604051610257919061235d565b3480156102b057600080fd5b506102c46102bf366004612247565b6107aa565b60405161025791906122bd565b3480156102dd57600080fd5b506102806102ec366004612186565b6107ed565b3480156102fd57600080fd5b50610306610885565b6040516102579190612a6e565b34801561031f57600080fd5b5061028061032e3660046120a9565b61088b565b34801561033f57600080fd5b5061030661034e366004612247565b6108c3565b34801561035f57600080fd5b5061030661036e366004612186565b6108d3565b34801561037f57600080fd5b5061028061038e366004612247565b610925565b34801561039f57600080fd5b506102806103ae366004612186565b6109b1565b6102806103c1366004612186565b610aeb565b3480156103d257600080fd5b506102806103e13660046120a9565b610c2a565b3480156103f257600080fd5b50610280610401366004612247565b610c45565b34801561041257600080fd5b5061042661042136600461205d565b610c75565b604051610257919061230e565b34801561043f57600080fd5b5061030661044e366004612247565b610d33565b34801561045f57600080fd5b5061028061046e366004612201565b610d8e565b34801561047f57600080fd5b50610306610de4565b34801561049457600080fd5b5061024a610df3565b3480156104a957600080fd5b506102c46104b8366004612247565b610e03565b3480156104c957600080fd5b50610306610e38565b3480156104de57600080fd5b506103066104ed36600461205d565b610e3e565b3480156104fe57600080fd5b50610280610e82565b34801561051357600080fd5b50610280610ecd565b34801561052857600080fd5b50610306610f28565b34801561053d57600080fd5b5061028061054c366004612247565b610f2e565b34801561055d57600080fd5b50610306610f72565b34801561057257600080fd5b506102c4610f78565b34801561058757600080fd5b50610297610f87565b34801561059c57600080fd5b50610306610f96565b3480156105b157600080fd5b506102806105c036600461215d565b610f9c565b3480156105d157600080fd5b506102806105e03660046120e4565b61106a565b3480156105f157600080fd5b50610297610600366004612247565b6110a3565b34801561061157600080fd5b50610297611126565b34801561062657600080fd5b50610280610635366004612247565b6111b4565b34801561064657600080fd5b5061024a610655366004612077565b61121a565b34801561066657600080fd5b50610280610675366004612247565b611248565b34801561068657600080fd5b5061028061069536600461205d565b6112b2565b60006106a582611320565b90505b919050565b6106b5611345565b6001600160a01b03166106c6610f78565b6001600160a01b0316146106f55760405162461bcd60e51b81526004016106ec906127fb565b60405180910390fd5b6001811515141561070d57610708611349565b610715565b6107156113c1565b50565b60606000805461072790612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461075390612b05565b80156107a05780601f10610775576101008083540402835291602001916107a0565b820191906000526020600020905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b60006107b58261141b565b6107d15760405162461bcd60e51b81526004016106ec90612786565b506000908152600460205260409020546001600160a01b031690565b60006107f882610e03565b9050806001600160a01b0316836001600160a01b0316141561082c5760405162461bcd60e51b81526004016106ec906128f3565b806001600160a01b031661083e611345565b6001600160a01b0316148061085a575061085a81610655611345565b6108765760405162461bcd60e51b81526004016106ec9061263f565b6108808383611438565b505050565b60085490565b61089c610896611345565b826114a6565b6108b85760405162461bcd60e51b81526004016106ec9061295e565b61088083838361152b565b600d546000906106a59083611658565b60006108de83610e3e565b82106108fc5760405162461bcd60e51b81526004016106ec90612411565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61092d611345565b6001600160a01b031661093e610f78565b6001600160a01b0316146109645760405162461bcd60e51b81526004016106ec906127fb565b600c548111156109865760405162461bcd60e51b81526004016106ec90612a4b565b8061098f611664565b106109ac5760405162461bcd60e51b81526004016106ec90612a4b565b600f55565b600c546109bc611664565b11156109da5760405162461bcd60e51b81526004016106ec90612764565b6109e2610f78565b6001600160a01b03166109f3611345565b6001600160a01b031614610a2657610a09610df3565b15610a265760405162461bcd60e51b81526004016106ec90612615565b610a2e611345565b6001600160a01b0316610a3f610f78565b6001600160a01b031614610a655760405162461bcd60e51b81526004016106ec906127fb565b6000610a6f611664565b600f54909150610a7f8383612a77565b1115610a9d5760405162461bcd60e51b81526004016106ec906125a6565b600f54811115610abf5760405162461bcd60e51b81526004016106ec90612764565b60005b82811015610ae557610ad384611670565b80610add81612b40565b915050610ac2565b50505050565b600c54610af6611664565b1115610b145760405162461bcd60e51b81526004016106ec90612764565b610b1c610f78565b6001600160a01b0316610b2d611345565b6001600160a01b031614610b6057610b43610df3565b15610b605760405162461bcd60e51b81526004016106ec90612615565b6000610b6a611664565b600f54909150610b7a8383612a77565b1115610b985760405162461bcd60e51b81526004016106ec906125a6565b600f54811115610bba5760405162461bcd60e51b81526004016106ec90612764565b600e54821115610bdc5760405162461bcd60e51b81526004016106ec906123e9565b610be5826108c3565b341015610c045760405162461bcd60e51b81526004016106ec906128c8565b60005b82811015610ae557610c1884611670565b80610c2281612b40565b915050610c07565b6108808383836040518060200160405280600081525061106a565b610c50610896611345565b610c6c5760405162461bcd60e51b81526004016106ec906129fb565b610715816116bf565b60606000610c8283610e3e565b905060008167ffffffffffffffff811115610cad57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cd6578160200160208202803683370190505b50905060005b82811015610d2b57610cee85826108d3565b828281518110610d0e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d2381612b40565b915050610cdc565b509392505050565b6000610d3d610885565b8210610d5b5760405162461bcd60e51b81526004016106ec906129af565b60088281548110610d7c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d96611345565b6001600160a01b0316610da7610f78565b6001600160a01b031614610dcd5760405162461bcd60e51b81526004016106ec906127fb565b8051610de0906010906020840190611f2d565b5050565b6000610dee611664565b905090565b600a54600160a01b900460ff1690565b6000818152600260205260408120546001600160a01b0316806106a55760405162461bcd60e51b81526004016106ec906126e6565b600c5481565b60006001600160a01b038216610e665760405162461bcd60e51b81526004016106ec9061269c565b506001600160a01b031660009081526003602052604090205490565b610e8a611345565b6001600160a01b0316610e9b610f78565b6001600160a01b031614610ec15760405162461bcd60e51b81526004016106ec906127fb565b610ecb6000611766565b565b610ed5611345565b6001600160a01b0316610ee6610f78565b6001600160a01b031614610f0c5760405162461bcd60e51b81526004016106ec906127fb565b4780610f1757600080fd5b610715610f22610f78565b476117b8565b600e5481565b610f36611345565b6001600160a01b0316610f47610f78565b6001600160a01b031614610f6d5760405162461bcd60e51b81526004016106ec906127fb565b600d55565b600d5481565b600a546001600160a01b031690565b60606001805461072790612b05565b600f5481565b610fa4611345565b6001600160a01b0316826001600160a01b03161415610fd55760405162461bcd60e51b81526004016106ec9061256f565b8060056000610fe2611345565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611026611345565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105e9190612352565b60405180910390a35050565b61107b611075611345565b836114a6565b6110975760405162461bcd60e51b81526004016106ec9061295e565b610ae584848484611834565b60606110ae8261141b565b6110ca5760405162461bcd60e51b81526004016106ec90612879565b60006110d4611867565b905060008151116110f4576040518060200160405280600081525061111f565b806110fe84611876565b60405160200161110f92919061228b565b6040516020818303038152906040525b9392505050565b6010805461113390612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612b05565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b505050505081565b6111bc611345565b6001600160a01b03166111cd610f78565b6001600160a01b0316146111f35760405162461bcd60e51b81526004016106ec906127fb565b80600c5410156112155760405162461bcd60e51b81526004016106ec906127d2565b600e55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611250611345565b6001600160a01b0316611261610f78565b6001600160a01b0316146112875760405162461bcd60e51b81526004016106ec906127fb565b61128f611664565b81116112ad5760405162461bcd60e51b81526004016106ec906127d2565b600c55565b6112ba611345565b6001600160a01b03166112cb610f78565b6001600160a01b0316146112f15760405162461bcd60e51b81526004016106ec906127fb565b6001600160a01b0381166113175760405162461bcd60e51b81526004016106ec906124ae565b61071581611766565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a582611991565b3390565b611351610df3565b1561136e5760405162461bcd60e51b81526004016106ec90612615565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113aa611345565b6040516113b791906122bd565b60405180910390a1565b6113c9610df3565b6113e55760405162461bcd60e51b81526004016106ec906123bb565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113aa611345565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061146d82610e03565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114b18261141b565b6114cd5760405162461bcd60e51b81526004016106ec906125c9565b60006114d883610e03565b9050806001600160a01b0316846001600160a01b031614806115135750836001600160a01b0316611508846107aa565b6001600160a01b0316145b806115235750611523818561121a565b949350505050565b826001600160a01b031661153e82610e03565b6001600160a01b0316146115645760405162461bcd60e51b81526004016106ec90612830565b6001600160a01b03821661158a5760405162461bcd60e51b81526004016106ec9061252b565b6115958383836119d1565b6115a0600082611438565b6001600160a01b03831660009081526003602052604081208054600192906115c9908490612ac2565b90915550506001600160a01b03821660009081526003602052604081208054600192906115f7908490612a77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061111f8284612aa3565b6000610dee600b6119dc565b600061167a611664565b9050611686600b6119e0565b61169082826119e9565b60405181907f2e76a88490956fbd70561d298788847de3bc11f35bbd1710bf4fe868f8daca6b90600090a25050565b60006116ca82610e03565b90506116d8816000846119d1565b6116e3600083611438565b6001600160a01b038116600090815260036020526040812080546001929061170c908490612ac2565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b0316826040516117d1906122ba565b60006040518083038185875af1925050503d806000811461180e576040519150601f19603f3d011682016040523d82523d6000602084013e611813565b606091505b50509050806108805760405162461bcd60e51b81526004016106ec90612934565b61183f84848461152b565b61184b84848484611a03565b610ae55760405162461bcd60e51b81526004016106ec9061245c565b60606010805461072790612b05565b60608161189b57506040805180820190915260018152600360fc1b60208201526106a8565b8160005b81156118c557806118af81612b40565b91506118be9050600a83612a8f565b915061189f565b60008167ffffffffffffffff8111156118ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611918576020820181803683370190505b5090505b84156115235761192d600183612ac2565b915061193a600a86612b5b565b611945906030612a77565b60f81b81838151811061196857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061198a600a86612a8f565b945061191c565b60006001600160e01b031982166380ac58cd60e01b14806119c257506001600160e01b03198216635b5e139f60e01b145b806106a557506106a582611b1e565b610880838383611b37565b5490565b80546001019055565b610de0828260405180602001604052806000815250611b8e565b6000611a17846001600160a01b0316611bc1565b15611b1357836001600160a01b031663150b7a02611a33611345565b8786866040518563ffffffff1660e01b8152600401611a5594939291906122d1565b602060405180830381600087803b158015611a6f57600080fd5b505af1925050508015611a9f575060408051601f3d908101601f19168201909252611a9c918101906121e5565b60015b611af9573d808015611acd576040519150601f19603f3d011682016040523d82523d6000602084013e611ad2565b606091505b508051611af15760405162461bcd60e51b81526004016106ec9061245c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611523565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611b42838383611bc7565b611b4a610f78565b6001600160a01b0316611b5b611345565b6001600160a01b03161461088057611b71610df3565b156108805760405162461bcd60e51b81526004016106ec90612370565b611b988383611c50565b611ba56000848484611a03565b6108805760405162461bcd60e51b81526004016106ec9061245c565b3b151590565b611bd2838383610880565b6001600160a01b038316611bee57611be981611d2f565b611c11565b816001600160a01b0316836001600160a01b031614611c1157611c118382611d73565b6001600160a01b038216611c2d57611c2881611e10565b610880565b826001600160a01b0316826001600160a01b031614610880576108808282611ee9565b6001600160a01b038216611c765760405162461bcd60e51b81526004016106ec9061272f565b611c7f8161141b565b15611c9c5760405162461bcd60e51b81526004016106ec906124f4565b611ca8600083836119d1565b6001600160a01b0382166000908152600360205260408120805460019290611cd1908490612a77565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611d8084610e3e565b611d8a9190612ac2565b600083815260076020526040902054909150808214611ddd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e2290600190612ac2565b60008381526009602052604081205460088054939450909284908110611e5857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e8757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ecd57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ef483610e3e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f3990612b05565b90600052602060002090601f016020900481019282611f5b5760008555611fa1565b82601f10611f7457805160ff1916838001178555611fa1565b82800160010185558215611fa1579182015b82811115611fa1578251825591602001919060010190611f86565b50611fad929150611fb1565b5090565b5b80821115611fad5760008155600101611fb2565b600067ffffffffffffffff80841115611fe157611fe1612b9b565b604051601f8501601f19168101602001828111828210171561200557612005612b9b565b60405284815291508183850186101561201d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106a857600080fd5b803580151581146106a857600080fd5b60006020828403121561206e578081fd5b61111f82612036565b60008060408385031215612089578081fd5b61209283612036565b91506120a060208401612036565b90509250929050565b6000806000606084860312156120bd578081fd5b6120c684612036565b92506120d460208501612036565b9150604084013590509250925092565b600080600080608085870312156120f9578081fd5b61210285612036565b935061211060208601612036565b925060408501359150606085013567ffffffffffffffff811115612132578182fd5b8501601f81018713612142578182fd5b61215187823560208401611fc6565b91505092959194509250565b6000806040838503121561216f578182fd5b61217883612036565b91506120a06020840161204d565b60008060408385031215612198578182fd5b6121a183612036565b946020939093013593505050565b6000602082840312156121c0578081fd5b61111f8261204d565b6000602082840312156121da578081fd5b813561111f81612bb1565b6000602082840312156121f6578081fd5b815161111f81612bb1565b600060208284031215612212578081fd5b813567ffffffffffffffff811115612228578182fd5b8201601f81018413612238578182fd5b61152384823560208401611fc6565b600060208284031215612258578081fd5b5035919050565b60008151808452612277816020860160208601612ad9565b601f01601f19169290920160200192915050565b6000835161229d818460208801612ad9565b8351908301906122b1818360208801612ad9565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123049083018461225f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123465783518352928401929184019160010161232a565b50909695505050505050565b901515815260200190565b60006020825261111f602083018461225f565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b6020808252600990820152686261642076616c756560b81b604082015260600190565b90815260200190565b60008219821115612a8a57612a8a612b6f565b500190565b600082612a9e57612a9e612b85565b500490565b6000816000190483118215151615612abd57612abd612b6f565b500290565b600082821015612ad457612ad4612b6f565b500390565b60005b83811015612af4578181015183820152602001612adc565b83811115610ae55750506000910152565b600281046001821680612b1957607f821691505b60208210811415612b3a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b5457612b54612b6f565b5060010190565b600082612b6a57612b6a612b85565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461071557600080fdfea2646970667358221220e947652b0d4d679915da3f4db94722d9c3f6bec7f3d0f3087e2f14e756013b4064736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6b6e6f776d616e736c616e642e696f2f6170692f00000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://knowmansland.io/api/
Arg [1] : availableLimit (uint256): 2000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [3] : 68747470733a2f2f6b6e6f776d616e736c616e642e696f2f6170692f00000000


Deployed Bytecode Sourcemap

261:4407:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3838:179;;;;;;;;;;-1:-1:-1;3838:179:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3050:154;;;;;;;;;;-1:-1:-1;3050:154:13;;;;;:::i;:::-;;:::i;:::-;;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3508:411::-;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;1577:113:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4875:339:4:-;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;2353:104:13:-;;;;;;;;;;-1:-1:-1;2353:104:13;;;;;:::i;:::-;;:::i;1245:256:6:-;;;;;;;;;;-1:-1:-1;1245:256:6;;;;;:::i;:::-;;:::i;4023:210:13:-;;;;;;;;;;-1:-1:-1;4023:210:13;;;;;:::i;:::-;;:::i;1807:340::-;;;;;;;;;;-1:-1:-1;1807:340:13;;;;;:::i;:::-;;:::i;1338:463::-;;;;;;:::i;:::-;;:::i;5285:185:4:-;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;456:245:5:-;;;;;;;;;;-1:-1:-1;456:245:5;;;;;:::i;:::-;;:::i;2693:349:13:-;;;;;;;;;;-1:-1:-1;2693:349:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1767:233:6:-;;;;;;;;;;-1:-1:-1;1767:233:6;;;;;:::i;:::-;;:::i;2584:101:13:-;;;;;;;;;;-1:-1:-1;2584:101:13;;;;;:::i;:::-;;:::i;1238:91::-;;;;;;;;;;;;;:::i;1072:86:15:-;;;;;;;;;;;;;:::i;2120:239:4:-;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;475:30:13:-;;;;;;;;;;;;;:::i;1850:208:4:-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1650:94:14:-;;;;;;;;;;;;;:::i;3212:182:13:-;;;;;;;;;;;;;:::i;552:31::-;;;;;;;;;;;;;:::i;4239:93::-;;;;;;;;;;-1:-1:-1;4239:93:13;;;;;:::i;:::-;;:::i;512:33::-;;;;;;;;;;;;;:::i;999:87:14:-;;;;;;;;;;;;;:::i;2595:104:4:-;;;;;;;;;;;;;:::i;587:32:13:-;;;;;;;;;;;;;:::i;4278:295:4:-;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;5541:328::-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;2770:334::-;;;;;;;;;;-1:-1:-1;2770:334:4;;;;;:::i;:::-;;:::i;629:26:13:-;;;;;;;;;;;;;:::i;4338:158::-;;;;;;;;;;-1:-1:-1;4338:158:13;;;;;:::i;:::-;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;;:::i;4502:163:13:-;;;;;;;;;;-1:-1:-1;4502:163:13;;;;;:::i;:::-;;:::i;1899:192:14:-;;;;;;;;;;-1:-1:-1;1899:192:14;;;;;:::i;:::-;;:::i;3838:179:13:-;3949:4;3973:36;3997:11;3973:23;:36::i;:::-;3966:43;;3838:179;;;;:::o;3050:154::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;;;;;;;;;3114:4:13::1;3107:11:::0;::::1;;;3103:73;;;3135:8;:6;:8::i;:::-;3158:7;;3103:73;3186:10;:8;:10::i;:::-;3050:154:::0;:::o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;-1:-1:-1;;;4081:73:4;;;;;;;:::i;:::-;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;;;;;;:::i;:::-;3747:5;-1:-1:-1;;;;;3731:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3731:21:4;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;;;;;;:::i;:::-;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3508:411;;;:::o;1577:113:6:-;1665:10;:17;1577:113;:::o;4875:339:4:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;2353:104:13:-;2432:5;;2405:7;;2432:17;;2442:6;2432:9;:17::i;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;4023:210:13:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4119:7:13::1;;4107:8;:19;;4099:41;;;;-1:-1:-1::0;;;4099:41:13::1;;;;;;;:::i;:::-;4170:8;4153:14;:12;:14::i;:::-;:25;4145:47;;;;-1:-1:-1::0;;;4145:47:13::1;;;;;;;:::i;:::-;4197:17;:28:::0;4023:210::o;1807:340::-;972:7;;954:14;:12;:14::i;:::-;:25;;946:46;;;;-1:-1:-1;;;946:46:13;;;;;;;:::i;:::-;1023:7;:5;:7::i;:::-;-1:-1:-1;;;;;1007:23:13;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1007:23:13;;1003:94;;1056:8;:6;:8::i;:::-;1055:9;1047:38;;;;-1:-1:-1;;;1047:38:13;;;;;;;:::i;:::-;1230:12:14::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1219:23:14::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;1219:23:14::1;;1211:68;;;;-1:-1:-1::0;;;1211:68:14::1;;;;;;;:::i;:::-;1890:13:13::2;1906:14;:12;:14::i;:::-;1957:17;::::0;1890:30;;-1:-1:-1;1939:14:13::2;1947:6:::0;1890:30;1939:14:::2;:::i;:::-;:35;;1931:57;;;;-1:-1:-1::0;;;1931:57:13::2;;;;;;;:::i;:::-;2016:17;;2007:5;:26;;1999:47;;;;-1:-1:-1::0;;;1999:47:13::2;;;;;;;:::i;:::-;2062:9;2057:83;2081:6;2077:1;:10;2057:83;;;2109:19;2124:3;2109:14;:19::i;:::-;2089:3:::0;::::2;::::0;::::2;:::i;:::-;;;;2057:83;;;;1290:1:14;1807:340:13::0;;:::o;1338:463::-;972:7;;954:14;:12;:14::i;:::-;:25;;946:46;;;;-1:-1:-1;;;946:46:13;;;;;;;:::i;:::-;1023:7;:5;:7::i;:::-;-1:-1:-1;;;;;1007:23:13;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1007:23:13;;1003:94;;1056:8;:6;:8::i;:::-;1055:9;1047:38;;;;-1:-1:-1;;;1047:38:13;;;;;;;:::i;:::-;1418:13:::1;1434:14;:12;:14::i;:::-;1485:17;::::0;1418:30;;-1:-1:-1;1467:14:13::1;1475:6:::0;1418:30;1467:14:::1;:::i;:::-;:35;;1459:57;;;;-1:-1:-1::0;;;1459:57:13::1;;;;;;;:::i;:::-;1544:17;;1535:5;:26;;1527:47;;;;-1:-1:-1::0;;;1527:47:13::1;;;;;;;:::i;:::-;1603:11;;1593:6;:21;;1585:48;;;;-1:-1:-1::0;;;1585:48:13::1;;;;;;;:::i;:::-;1665:13;1671:6;1665:5;:13::i;:::-;1652:9;:26;;1644:56;;;;-1:-1:-1::0;;;1644:56:13::1;;;;;;;:::i;:::-;1716:9;1711:83;1735:6;1731:1;:10;1711:83;;;1763:19;1778:3;1763:14;:19::i;:::-;1743:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1711:83;;5285:185:4::0;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;456:245:5:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:5;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;2693:349:13:-;2755:16;2784:18;2805:17;2815:6;2805:9;:17::i;:::-;2784:38;;2833:25;2875:10;2861:25;;;;;;-1:-1:-1;;;2861:25:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2861:25:13;;2833:53;;2902:9;2897:112;2921:10;2917:1;:14;2897:112;;;2967:30;2987:6;2995:1;2967:19;:30::i;:::-;2953:8;2962:1;2953:11;;;;;;-1:-1:-1;;;2953:11:13;;;;;;;;;;;;;;;;;;:44;2933:3;;;;:::i;:::-;;;;2897:112;;;-1:-1:-1;3026:8:13;2693:349;-1:-1:-1;;;2693:349:13:o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:6;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:6;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;2584:101:13:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;2655:22:13;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2584:101:::0;:::o;1238:91::-;1280:7;1307:14;:12;:14::i;:::-;1300:21;;1238:91;:::o;1072:86:15:-;1143:7;;-1:-1:-1;;;1143:7:15;;;;;1072:86::o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;;;;;;:::i;475:30:13:-;;;;:::o;1850:208:4:-;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1650:94:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;3212:182:13:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;3281:21:13::1;3321:11:::0;3313:20:::1;;;::::0;::::1;;3344:42;3355:7;:5;:7::i;:::-;3364:21;3344:10;:42::i;552:31::-:0;;;;:::o;4239:93::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4308:5:13::1;:16:::0;4239:93::o;512:33::-;;;;:::o;999:87:14:-;1072:6;;-1:-1:-1;;;;;1072:6:14;999:87;:::o;2595:104:4:-;2651:13;2684:7;2677:14;;;;;:::i;587:32:13:-;;;;:::o;4278:295:4:-;4393:12;:10;:12::i;:::-;-1:-1:-1;;;;;4381:24:4;:8;-1:-1:-1;;;;;4381:24:4;;;4373:62;;;;-1:-1:-1;;;4373:62:4;;;;;;;:::i;:::-;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;-1:-1:-1;;;;;4448:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;4448:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;;4532:12;:10;:12::i;:::-;-1:-1:-1;;;;;4517:48:4;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;5541:328::-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;2770:334::-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;-1:-1:-1;;;2869:76:4;;;;;;;:::i;:::-;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:4:o;629:26:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4338:158::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4427:8:13::1;4416:7;;:19;;4408:47;;;;-1:-1:-1::0;;;4408:47:13::1;;;;;;;:::i;:::-;4466:11;:22:::0;4338:158::o;4644:164:4:-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164::o;4502:163:13:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4593:14:13::1;:12;:14::i;:::-;4581:9;:26;4573:54;;;;-1:-1:-1::0;;;4573:54:13::1;;;;;;;:::i;:::-;4638:7;:19:::0;4502:163::o;1899:192:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:14;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:14::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;937:224:6:-:0;1039:4;-1:-1:-1;;;;;;1063:50:6;;-1:-1:-1;;;1063:50:6;;:90;;;1117:36;1141:11;1117:23;:36::i;601:98:1:-;681:10;601:98;:::o;1872:118:15:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:15;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:15::1;-1:-1:-1::0;;;1932:14:15::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:15;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:15::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7379:127:4:-:0;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;;;7379:127::o;11361:174::-;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;-1:-1:-1;;;7783:73:4;;;;;;;:::i;:::-;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;;;;;;:::i;:::-;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;3501:98:16:-;3559:7;3586:5;3590:1;3586;:5;:::i;1125:104:13:-;1172:4;1196:25;:15;:23;:25::i;2156:188::-;2212:7;2222:14;:12;:14::i;:::-;2212:24;;2247:27;:15;:25;:27::i;:::-;2285:18;2295:3;2300:2;2285:9;:18::i;:::-;2319:17;;2333:2;;2319:17;;;;;2156:188;;:::o;9968:360:4:-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:4;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:4;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:4;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:4;;;;;10250:16;;10284:36;9968:360;;:::o;2099:173:14:-;2174:6;;;-1:-1:-1;;;;;2191:17:14;;;-1:-1:-1;;;;;;2191:17:14;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;3402:181:13:-;3477:12;3495:8;-1:-1:-1;;;;;3495:13:13;3516:7;3495:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3476:52;;;3547:7;3539:36;;;;-1:-1:-1;;;3539:36:13;;;;;;;:::i;6751:315:4:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;;;;;;:::i;2465:113:13:-;2525:13;2558:12;2551:19;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;592:10:17;;;;;;;;;;;;-1:-1:-1;;;592:10:17;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:17;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:17;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;1481:305:4;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;3591:239:13:-;3777:45;3804:4;3810:2;3814:7;3777:26;:45::i;793:114:2:-;885:14;;793:114::o;915:127::-;1004:19;;1022:1;1004:19;;;915:127::o;8363:110:4:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;12100:803::-;12255:4;12276:15;:2;-1:-1:-1;;;;;12276:13:4;;:15::i;:::-;12272:624;;;12328:2;-1:-1:-1;;;;;12312:36:4;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:4;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:4;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:4;-1:-1:-1;;;12435:55:4;;-1:-1:-1;12428:62:4;;12272:624;-1:-1:-1;12880:4:4;12100:803;;;;;;:::o;787:157:3:-;-1:-1:-1;;;;;;896:40:3;;-1:-1:-1;;;896:40:3;787:157;;;:::o;633:328:7:-;777:45;804:4;810:2;814:7;777:26;:45::i;:::-;853:7;:5;:7::i;:::-;-1:-1:-1;;;;;837:23:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;837:23:7;;833:121;;886:8;:6;:8::i;:::-;885:9;877:65;;;;-1:-1:-1;;;877:65:7;;;;;;;:::i;8700:321:4:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:4;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:6;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:6;:4;-1:-1:-1;;;;;2916:10:6;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:6;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:6;:2;-1:-1:-1;;;;;3116:10:6;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;;;;;;:::i;:::-;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;-1:-1:-1;;;9501:58:4;;;;;;;:::i;:::-;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;3925:164:6:-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:6;;;5194:328;;-1:-1:-1;;;;;5265:18:6;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:6;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:6;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:6;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:6;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:6;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:6;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:18;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:18;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:18;473:16;;;470:25;-1:-1:-1;467:2:18;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:18;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:18;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:18:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:18;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:18;;4335:120;-1:-1:-1;4335:120:18:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:18;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:18:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:18:o;5199:205::-;5399:3;5390:14::o;5409:203::-;-1:-1:-1;;;;;5573:32:18;;;;5555:51;;5543:2;5528:18;;5510:102::o;5617:490::-;-1:-1:-1;;;;;5886:15:18;;;5868:34;;5938:15;;5933:2;5918:18;;5911:43;5985:2;5970:18;;5963:34;;;6033:3;6028:2;6013:18;;6006:31;;;5617:490;;6054:47;;6081:19;;6073:6;6054:47;:::i;:::-;6046:55;5820:287;-1:-1:-1;;;;;;5820:287:18:o;6112:635::-;6283:2;6335:21;;;6405:13;;6308:18;;;6427:22;;;6112:635;;6283:2;6506:15;;;;6480:2;6465:18;;;6112:635;6552:169;6566:6;6563:1;6560:13;6552:169;;;6627:13;;6615:26;;6696:15;;;;6661:12;;;;6588:1;6581:9;6552:169;;;-1:-1:-1;6738:3:18;;6263:484;-1:-1:-1;;;;;;6263:484:18:o;6752:187::-;6917:14;;6910:22;6892:41;;6880:2;6865:18;;6847:92::o;6944:221::-;;7093:2;7082:9;7075:21;7113:46;7155:2;7144:9;7140:18;7132:6;7113:46;:::i;7170:407::-;7372:2;7354:21;;;7411:2;7391:18;;;7384:30;7450:34;7445:2;7430:18;;7423:62;-1:-1:-1;;;7516:2:18;7501:18;;7494:41;7567:3;7552:19;;7344:233::o;7582:344::-;7784:2;7766:21;;;7823:2;7803:18;;;7796:30;-1:-1:-1;;;7857:2:18;7842:18;;7835:50;7917:2;7902:18;;7756:170::o;7931:338::-;8133:2;8115:21;;;8172:2;8152:18;;;8145:30;-1:-1:-1;;;8206:2:18;8191:18;;8184:44;8260:2;8245:18;;8105:164::o;8274:407::-;8476:2;8458:21;;;8515:2;8495:18;;;8488:30;8554:34;8549:2;8534:18;;8527:62;-1:-1:-1;;;8620:2:18;8605:18;;8598:41;8671:3;8656:19;;8448:233::o;8686:414::-;8888:2;8870:21;;;8927:2;8907:18;;;8900:30;8966:34;8961:2;8946:18;;8939:62;-1:-1:-1;;;9032:2:18;9017:18;;9010:48;9090:3;9075:19;;8860:240::o;9105:402::-;9307:2;9289:21;;;9346:2;9326:18;;;9319:30;9385:34;9380:2;9365:18;;9358:62;-1:-1:-1;;;9451:2:18;9436:18;;9429:36;9497:3;9482:19;;9279:228::o;9512:352::-;9714:2;9696:21;;;9753:2;9733:18;;;9726:30;9792;9787:2;9772:18;;9765:58;9855:2;9840:18;;9686:178::o;9869:400::-;10071:2;10053:21;;;10110:2;10090:18;;;10083:30;10149:34;10144:2;10129:18;;10122:62;-1:-1:-1;;;10215:2:18;10200:18;;10193:34;10259:3;10244:19;;10043:226::o;10274:349::-;10476:2;10458:21;;;10515:2;10495:18;;;10488:30;10554:27;10549:2;10534:18;;10527:55;10614:2;10599:18;;10448:175::o;10628:332::-;10830:2;10812:21;;;10869:1;10849:18;;;10842:29;-1:-1:-1;;;10902:2:18;10887:18;;10880:39;10951:2;10936:18;;10802:158::o;10965:408::-;11167:2;11149:21;;;11206:2;11186:18;;;11179:30;11245:34;11240:2;11225:18;;11218:62;-1:-1:-1;;;11311:2:18;11296:18;;11289:42;11363:3;11348:19;;11139:234::o;11378:340::-;11580:2;11562:21;;;11619:2;11599:18;;;11592:30;-1:-1:-1;;;11653:2:18;11638:18;;11631:46;11709:2;11694:18;;11552:166::o;11723:420::-;11925:2;11907:21;;;11964:2;11944:18;;;11937:30;12003:34;11998:2;11983:18;;11976:62;12074:26;12069:2;12054:18;;12047:54;12133:3;12118:19;;11897:246::o;12148:406::-;12350:2;12332:21;;;12389:2;12369:18;;;12362:30;12428:34;12423:2;12408:18;;12401:62;-1:-1:-1;;;12494:2:18;12479:18;;12472:40;12544:3;12529:19;;12322:232::o;12559:405::-;12761:2;12743:21;;;12800:2;12780:18;;;12773:30;12839:34;12834:2;12819:18;;12812:62;-1:-1:-1;;;12905:2:18;12890:18;;12883:39;12954:3;12939:19;;12733:231::o;12969:356::-;13171:2;13153:21;;;13190:18;;;13183:30;13249:34;13244:2;13229:18;;13222:62;13316:2;13301:18;;13143:182::o;13330:331::-;13532:2;13514:21;;;13571:1;13551:18;;;13544:29;-1:-1:-1;;;13604:2:18;13589:18;;13582:38;13652:2;13637:18;;13504:157::o;13666:408::-;13868:2;13850:21;;;13907:2;13887:18;;;13880:30;13946:34;13941:2;13926:18;;13919:62;-1:-1:-1;;;14012:2:18;13997:18;;13990:42;14064:3;14049:19;;13840:234::o;14079:339::-;14281:2;14263:21;;;14320:2;14300:18;;;14293:30;-1:-1:-1;;;14354:2:18;14339:18;;14332:45;14409:2;14394:18;;14253:165::o;14423:356::-;14625:2;14607:21;;;14644:18;;;14637:30;14703:34;14698:2;14683:18;;14676:62;14770:2;14755:18;;14597:182::o;14784:405::-;14986:2;14968:21;;;15025:2;15005:18;;;14998:30;15064:34;15059:2;15044:18;;15037:62;-1:-1:-1;;;15130:2:18;15115:18;;15108:39;15179:3;15164:19;;14958:231::o;15194:411::-;15396:2;15378:21;;;15435:2;15415:18;;;15408:30;15474:34;15469:2;15454:18;;15447:62;-1:-1:-1;;;15540:2:18;15525:18;;15518:45;15595:3;15580:19;;15368:237::o;15610:341::-;15812:2;15794:21;;;15851:2;15831:18;;;15824:30;-1:-1:-1;;;15885:2:18;15870:18;;15863:47;15942:2;15927:18;;15784:167::o;15956:397::-;16158:2;16140:21;;;16197:2;16177:18;;;16170:30;16236:34;16231:2;16216:18;;16209:62;-1:-1:-1;;;16302:2:18;16287:18;;16280:31;16343:3;16328:19;;16130:223::o;16358:340::-;16560:2;16542:21;;;16599:2;16579:18;;;16572:30;-1:-1:-1;;;16633:2:18;16618:18;;16611:46;16689:2;16674:18;;16532:166::o;16703:413::-;16905:2;16887:21;;;16944:2;16924:18;;;16917:30;16983:34;16978:2;16963:18;;16956:62;-1:-1:-1;;;17049:2:18;17034:18;;17027:47;17106:3;17091:19;;16877:239::o;17121:408::-;17323:2;17305:21;;;17362:2;17342:18;;;17335:30;17401:34;17396:2;17381:18;;17374:62;-1:-1:-1;;;17467:2:18;17452:18;;17445:42;17519:3;17504:19;;17295:234::o;17534:412::-;17736:2;17718:21;;;17775:2;17755:18;;;17748:30;17814:34;17809:2;17794:18;;17787:62;-1:-1:-1;;;17880:2:18;17865:18;;17858:46;17936:3;17921:19;;17708:238::o;17951:332::-;18153:2;18135:21;;;18192:1;18172:18;;;18165:29;-1:-1:-1;;;18225:2:18;18210:18;;18203:39;18274:2;18259:18;;18125:158::o;18288:177::-;18434:25;;;18422:2;18407:18;;18389:76::o;18470:128::-;;18541:1;18537:6;18534:1;18531:13;18528:2;;;18547:18;;:::i;:::-;-1:-1:-1;18583:9:18;;18518:80::o;18603:120::-;;18669:1;18659:2;;18674:18;;:::i;:::-;-1:-1:-1;18708:9:18;;18649:74::o;18728:168::-;;18834:1;18830;18826:6;18822:14;18819:1;18816:21;18811:1;18804:9;18797:17;18793:45;18790:2;;;18841:18;;:::i;:::-;-1:-1:-1;18881:9:18;;18780:116::o;18901:125::-;;18969:1;18966;18963:8;18960:2;;;18974:18;;:::i;:::-;-1:-1:-1;19011:9:18;;18950:76::o;19031:258::-;19103:1;19113:113;19127:6;19124:1;19121:13;19113:113;;;19203:11;;;19197:18;19184:11;;;19177:39;19149:2;19142:10;19113:113;;;19244:6;19241:1;19238:13;19235:2;;;-1:-1:-1;;19279:1:18;19261:16;;19254:27;19084:205::o;19294:380::-;19379:1;19369:12;;19426:1;19416:12;;;19437:2;;19491:4;19483:6;19479:17;19469:27;;19437:2;19544;19536:6;19533:14;19513:18;19510:38;19507:2;;;19590:10;19585:3;19581:20;19578:1;19571:31;19625:4;19622:1;19615:15;19653:4;19650:1;19643:15;19507:2;;19349:325;;;:::o;19679:135::-;;-1:-1:-1;;19739:17:18;;19736:2;;;19759:18;;:::i;:::-;-1:-1:-1;19806:1:18;19795:13;;19726:88::o;19819:112::-;;19877:1;19867:2;;19882:18;;:::i;:::-;-1:-1:-1;19916:9:18;;19857:74::o;19936:127::-;19997:10;19992:3;19988:20;19985:1;19978:31;20028:4;20025:1;20018:15;20052:4;20049:1;20042:15;20068:127;20129:10;20124:3;20120:20;20117:1;20110:31;20160:4;20157:1;20150:15;20184:4;20181:1;20174:15;20200:127;20261:10;20256:3;20252:20;20249:1;20242:31;20292:4;20289:1;20282:15;20316:4;20313:1;20306:15;20332:133;-1:-1:-1;;;;;;20408:32:18;;20398:43;;20388:2;;20455:1;20452;20445:12

Swarm Source

ipfs://e947652b0d4d679915da3f4db94722d9c3f6bec7f3d0f3087e2f14e756013b40
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.