ETH Price: $3,390.24 (-2.61%)
Gas: 1 Gwei

Token

Individually Customized Yacht Club (ICYC)
 

Overview

Max Total Supply

14 ICYC

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
olafcryptofinne.eth
Balance
2 ICYC
0x63930f77dbd441ed4af142bbc67667fe676f4fa5
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:
ICYC

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 12: ICYC.sol
// SPDX-License-Identifier: MIT

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./ERC721Burnable.sol";

interface IOSYCKey {
    function balanceOf(
        address account,
        uint256 id
    ) external view returns (uint256);

    function burn(address from, uint256 id, uint256 amount) external;

    function mintKey(address account, uint8 keyId, uint8 amount) external;
}

contract ICYC is ERC721Burnable {
    uint16 public MAX_SUPPLY;
    uint16 private mintedCount;

    uint256 public mintPrice;

    address private keyAddress = 0x875427563Cc7e083e55F0aBeE7Edc10f649e8E5B;

    constructor() ERC721("Individually Customized Yacht Club", "ICYC") {
        MAX_SUPPLY = 111;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setConfig(uint16 _MAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _setURI(baseURI);
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    function totalSupply() public view virtual returns (uint16) {
        return mintedCount;
    }

    function getTokensOfOwner(
        address owner
    ) public view returns (uint16[] memory) {
        uint16 tokenCount = uint16(balanceOf(owner));

        if (tokenCount == 0) {
            return new uint16[](0);
        } else {
            uint16[] memory result = new uint16[](tokenCount);
            uint16 resultIndex = 0;
            uint16 tokenId;

            for (tokenId = 0; tokenId < totalSupply(); tokenId++) {
                if (_owners[tokenId] == owner) {
                    result[resultIndex] = tokenId;
                    resultIndex++;
                    if (resultIndex >= tokenCount) {
                        break;
                    }
                }
            }
            return result;
        }
    }

    function mintFromKey(address _account, uint8 _amount) external payable {
        require(tx.origin == msg.sender, "Only EOA");
        require(totalSupply() + _amount <= MAX_SUPPLY, "Max Limit To Presale");
        require(IOSYCKey(keyAddress).balanceOf(msg.sender, 3) >= _amount,
            "Not enough WL"
        );
        IOSYCKey(keyAddress).burn(msg.sender, 3, _amount);
        for (uint8 i = 0; i < _amount; i += 1) {
            uint16 tokenId = totalSupply() + i;
            _safeMint(_account, tokenId);
        }
        mintedCount = mintedCount + _amount;
    }

    function mintFromETH(address _account, uint8 _amount) external payable {
        require(tx.origin == msg.sender, "Only EOA");
        require(totalSupply() + _amount <= MAX_SUPPLY, "Max Limit To Presale");
        require(mintPrice != 0, "Not enabled");
        require(mintPrice * _amount <= msg.value, "Insufficient value");

        for (uint8 i = 0; i < _amount; i += 1) {
            uint16 tokenId = totalSupply() + i;
            _safeMint(_account, tokenId);
        }
        mintedCount = mintedCount + _amount;
    }

    function reserveNft(address account, uint8 _amount) external onlyOwner {
        require(totalSupply() + _amount <= MAX_SUPPLY, "Max Limit To Presale");

        for (uint8 i = 0; i < _amount; i += 1) {
            uint16 tokenId = totalSupply() + i;
            _safeMint(account, tokenId);
        }
        mintedCount = mintedCount + _amount;
    }

    function withdrawAll() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        payable(msg.sender).transfer(totalBalance);
    }
}

File 1 of 12: 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);
    }

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

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

File 2 of 12: 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 12: ERC165.sol
// SPDX-License-Identifier: MIT

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12: 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;

    string private _baseUri;

    // Mapping from token ID to owner address
    // CUSTOM: Visible for child contract so it's possible to emulate methods of ERC721's enumerable extension
    mapping(uint256 => address) internal _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 _baseUri;
    }

    function _setURI(string memory _newBaseUri) internal virtual {
        _baseUri = _newBaseUri;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 5 of 12: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Ownable, 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(
            _msgSender() == owner() ||
                _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

File 7 of 12: 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 8 of 12: 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 9 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

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

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

/***************************************************************************
          ___        __         _     __           __   __ ___
        / __ \      / /_  _____(_)___/ /____       \ \ / /  _ \
       / / / /_  __/ __/ / ___/ / __  / __  )       \ / /| |
      / /_/ / /_/ / /_  (__  ) / /_/ / ____/         | | | |_
      \____/\____/\__/ /____/_/\__,_/\____/          |_|  \___/
                                       
****************************************************************************/

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 12 of 12: 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"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":"_account","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mintFromETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mintFromKey","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"reserveNft","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":"uint16","name":"_MAX_SUPPLY","type":"uint16"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a80546001600160a01b03191673875427563cc7e083e55f0abee7edc10f649e8e5b1790553480156200003757600080fd5b50604051806060016040528060228152602001620025cf6022913960408051808201825260048152634943594360e01b6020820152600080546001600160a01b03191633908117825592519192918291907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001620000bc838262000187565b506002620000cb828262000187565b50506008805461ffff1916606f1790555062000253565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010d57607f821691505b6020821081036200012e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018257600081815260208120601f850160051c810160208610156200015d5750805b601f850160051c820191505b818110156200017e5782815560010162000169565b5050505b505050565b81516001600160401b03811115620001a357620001a3620000e2565b620001bb81620001b48454620000f8565b8462000134565b602080601f831160018114620001f35760008415620001da5750858301515b600019600386901b1c1916600185901b1785556200017e565b600085815260208120601f198616915b82811015620002245788860151825594840194600190910190840162000203565b5085821015620002435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61236c80620002636000396000f3fe6080604052600436106101c25760003560e01c80636486cb7c116100f7578063a22cb46511610095578063d993d65011610064578063d993d65014610502578063e985e9c514610515578063f2fde38b14610535578063f4a0a5281461055557600080fd5b8063a22cb46514610482578063b88d4fde146104a2578063c87b56dd146104c2578063cc4b99d6146104e257600080fd5b8063715018a6116100d1578063715018a614610425578063853828b61461043a5780638da5cb5b1461044f57806395d89b411461046d57600080fd5b80636486cb7c146103ce5780636817c76c146103e157806370a082311461040557600080fd5b806342842e0e116101645780634f558e791161013e5780634f558e791461034157806355f804b3146103615780635de6dc55146103815780636352211e146103ae57600080fd5b806342842e0e146102e157806342966c68146103015780634d4513891461032157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102a657806332cb6b0c146102c657600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b9c565b610575565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c7565b6040516101f39190611c09565b34801561022a57600080fd5b5061023e610239366004611c1c565b610659565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611c51565b6106f3565b005b34801561028457600080fd5b5060085462010000900461ffff165b60405161ffff90911681526020016101f3565b3480156102b257600080fd5b506102766102c1366004611c7b565b610808565b3480156102d257600080fd5b506008546102939061ffff1681565b3480156102ed57600080fd5b506102766102fc366004611c7b565b61083a565b34801561030d57600080fd5b5061027661031c366004611c1c565b610855565b34801561032d57600080fd5b5061027661033c366004611cb7565b6108e3565b34801561034d57600080fd5b506101e761035c366004611c1c565b610925565b34801561036d57600080fd5b5061027661037c366004611d67565b610944565b34801561038d57600080fd5b506103a161039c366004611db0565b610977565b6040516101f39190611dcb565b3480156103ba57600080fd5b5061023e6103c9366004611c1c565b610aa3565b6102766103dc366004611e13565b610b1a565b3480156103ed57600080fd5b506103f760095481565b6040519081526020016101f3565b34801561041157600080fd5b506103f7610420366004611db0565b610d52565b34801561043157600080fd5b50610276610dd9565b34801561044657600080fd5b50610276610e4d565b34801561045b57600080fd5b506000546001600160a01b031661023e565b34801561047957600080fd5b50610211610eaa565b34801561048e57600080fd5b5061027661049d366004611e50565b610eb9565b3480156104ae57600080fd5b506102766104bd366004611e81565b610ec4565b3480156104ce57600080fd5b506102116104dd366004611c1c565b610efc565b3480156104ee57600080fd5b506102766104fd366004611e13565b610fd7565b610276610510366004611e13565b6110a4565b34801561052157600080fd5b506101e7610530366004611efd565b611216565b34801561054157600080fd5b50610276610550366004611db0565b611244565b34801561056157600080fd5b50610276610570366004611c1c565b61132e565b60006001600160e01b031982166380ac58cd60e01b14806105a657506001600160e01b03198216635b5e139f60e01b145b806105c157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d690611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461060290611f30565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166106d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106fe82610aa3565b9050806001600160a01b0316836001600160a01b03160361076b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ce565b336001600160a01b038216148061078757506107878133611216565b6107f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ce565b610803838361135d565b505050565b610813335b826113cb565b61082f5760405162461bcd60e51b81526004016106ce90611f64565b6108038383836114a2565b61080383838360405180602001604052806000815250610ec4565b6000546001600160a01b031633148061087257506108723361080d565b6108d75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106ce565b6108e08161163e565b50565b6000546001600160a01b0316331461090d5760405162461bcd60e51b81526004016106ce90611fb5565b6008805461ffff191661ffff92909216919091179055565b6000818152600460205260408120546001600160a01b031615156105c1565b6000546001600160a01b0316331461096e5760405162461bcd60e51b81526004016106ce90611fb5565b6108e0816116d9565b6060600061098483610d52565b90508061ffff166000036109a8575050604080516000815260208101909152919050565b60008161ffff1667ffffffffffffffff8111156109c7576109c7611cdb565b6040519080825280602002602001820160405280156109f0578160200160208202803683370190505b5090506000805b60085462010000900461ffff1661ffff168161ffff161015610a935761ffff81166000908152600460205260409020546001600160a01b03808816911603610a815780838361ffff1681518110610a5057610a50611fea565b61ffff9092166020928302919091019091015281610a6d81612016565b9250508361ffff168261ffff161015610a93575b80610a8b81612016565b9150506109f7565b5090949350505050565b50919050565b6000818152600460205260408120546001600160a01b0316806105c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ce565b323314610b545760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b60448201526064016106ce565b60085461ffff1660ff8216610b7360085461ffff620100009091041690565b610b7d9190612037565b61ffff161115610b9f5760405162461bcd60e51b81526004016106ce90612059565b600a54604051627eeac760e11b81523360048201526003602482015260ff8316916001600160a01b03169062fdd58e90604401602060405180830381865afa158015610bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c139190612087565b1015610c515760405162461bcd60e51b815260206004820152600d60248201526c139bdd08195b9bdd59da0815d3609a1b60448201526064016106ce565b600a54604051637a94c56560e11b81523360048201526003602482015260ff831660448201526001600160a01b039091169063f5298aca90606401600060405180830381600087803b158015610ca657600080fd5b505af1158015610cba573d6000803e3d6000fd5b5050505060005b8160ff168160ff161015610d165760008160ff16610ce960085461ffff620100009091041690565b610cf39190612037565b9050610d03848261ffff166116e5565b50610d0f6001826120a0565b9050610cc1565b50600854610d329060ff83169062010000900461ffff16612037565b600860026101000a81548161ffff021916908361ffff1602179055505050565b60006001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ce565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b03163314610e035760405162461bcd60e51b81526004016106ce90611fb5565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610e775760405162461bcd60e51b81526004016106ce90611fb5565b6040514790339082156108fc029083906000818181858888f19350505050158015610ea6573d6000803e3d6000fd5b5050565b6060600280546105d690611f30565b610ea63383836116ff565b610ece33836113cb565b610eea5760405162461bcd60e51b81526004016106ce90611f64565b610ef6848484846117cd565b50505050565b6000818152600460205260409020546060906001600160a01b0316610f7b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ce565b6000610f85611800565b90506000815111610fa55760405180602001604052806000815250610fd0565b80610faf8461180f565b604051602001610fc09291906120b9565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110015760405162461bcd60e51b81526004016106ce90611fb5565b60085461ffff1660ff821661102060085461ffff620100009091041690565b61102a9190612037565b61ffff16111561104c5760405162461bcd60e51b81526004016106ce90612059565b60005b8160ff168160ff161015610d165760008160ff1661107760085461ffff620100009091041690565b6110819190612037565b9050611091848261ffff166116e5565b5061109d6001826120a0565b905061104f565b3233146110de5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b60448201526064016106ce565b60085461ffff1660ff82166110fd60085461ffff620100009091041690565b6111079190612037565b61ffff1611156111295760405162461bcd60e51b81526004016106ce90612059565b6009546000036111695760405162461bcd60e51b815260206004820152600b60248201526a139bdd08195b98589b195960aa1b60448201526064016106ce565b348160ff1660095461117b91906120e8565b11156111be5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b60448201526064016106ce565b60005b8160ff168160ff161015610d165760008160ff166111e960085461ffff620100009091041690565b6111f39190612037565b9050611203848261ffff166116e5565b5061120f6001826120a0565b90506111c1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0316331461126e5760405162461bcd60e51b81526004016106ce90611fb5565b6001600160a01b0381166112d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ce565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113585760405162461bcd60e51b81526004016106ce90611fb5565b600955565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139282610aa3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166114445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ce565b600061144f83610aa3565b9050806001600160a01b0316846001600160a01b0316148061148a5750836001600160a01b031661147f84610659565b6001600160a01b0316145b8061149a575061149a8185611216565b949350505050565b826001600160a01b03166114b582610aa3565b6001600160a01b0316146115195760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ce565b6001600160a01b03821661157b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ce565b61158660008261135d565b6001600160a01b03831660009081526005602052604081208054600192906115af9084906120ff565b90915550506001600160a01b03821660009081526005602052604081208054600192906115dd908490612112565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061164982610aa3565b905061165660008361135d565b6001600160a01b038116600090815260056020526040812080546001929061167f9084906120ff565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6003610ea68282612173565b610ea6828260405180602001604052806000815250611910565b816001600160a01b0316836001600160a01b0316036117605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ce565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117d88484846114a2565b6117e484848484611943565b610ef65760405162461bcd60e51b81526004016106ce90612233565b6060600380546105d690611f30565b6060816000036118365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611860578061184a81612285565b91506118599050600a836122b4565b915061183a565b60008167ffffffffffffffff81111561187b5761187b611cdb565b6040519080825280601f01601f1916602001820160405280156118a5576020820181803683370190505b5090505b841561149a576118ba6001836120ff565b91506118c7600a866122c8565b6118d2906030612112565b60f81b8183815181106118e7576118e7611fea565b60200101906001600160f81b031916908160001a905350611909600a866122b4565b94506118a9565b61191a8383611a44565b6119276000848484611943565b6108035760405162461bcd60e51b81526004016106ce90612233565b60006001600160a01b0384163b15611a3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119879033908990889088906004016122dc565b6020604051808303816000875af19250505080156119c2575060408051601f3d908101601f191682019092526119bf91810190612319565b60015b611a1f573d8080156119f0576040519150601f19603f3d011682016040523d82523d6000602084013e6119f5565b606091505b508051600003611a175760405162461bcd60e51b81526004016106ce90612233565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061149a565b506001949350505050565b6001600160a01b038216611a9a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ce565b6000818152600460205260409020546001600160a01b031615611aff5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ce565b6001600160a01b0382166000908152600560205260408120805460019290611b28908490612112565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146108e057600080fd5b600060208284031215611bae57600080fd5b8135610fd081611b86565b60005b83811015611bd4578181015183820152602001611bbc565b50506000910152565b60008151808452611bf5816020860160208601611bb9565b601f01601f19169290920160200192915050565b602081526000610fd06020830184611bdd565b600060208284031215611c2e57600080fd5b5035919050565b80356001600160a01b0381168114611c4c57600080fd5b919050565b60008060408385031215611c6457600080fd5b611c6d83611c35565b946020939093013593505050565b600080600060608486031215611c9057600080fd5b611c9984611c35565b9250611ca760208501611c35565b9150604084013590509250925092565b600060208284031215611cc957600080fd5b813561ffff81168114610fd057600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d0c57611d0c611cdb565b604051601f8501601f19908116603f01168101908282118183101715611d3457611d34611cdb565b81604052809350858152868686011115611d4d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d7957600080fd5b813567ffffffffffffffff811115611d9057600080fd5b8201601f81018413611da157600080fd5b61149a84823560208401611cf1565b600060208284031215611dc257600080fd5b610fd082611c35565b6020808252825182820181905260009190848201906040850190845b81811015611e0757835161ffff1683529284019291840191600101611de7565b50909695505050505050565b60008060408385031215611e2657600080fd5b611e2f83611c35565b9150602083013560ff81168114611e4557600080fd5b809150509250929050565b60008060408385031215611e6357600080fd5b611e6c83611c35565b915060208301358015158114611e4557600080fd5b60008060008060808587031215611e9757600080fd5b611ea085611c35565b9350611eae60208601611c35565b925060408501359150606085013567ffffffffffffffff811115611ed157600080fd5b8501601f81018713611ee257600080fd5b611ef187823560208401611cf1565b91505092959194509250565b60008060408385031215611f1057600080fd5b611f1983611c35565b9150611f2760208401611c35565b90509250929050565b600181811c90821680611f4457607f821691505b602082108103610a9d57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681810361202d5761202d612000565b6001019392505050565b61ffff81811683821601908082111561205257612052612000565b5092915050565b6020808252601490820152734d6178204c696d697420546f2050726573616c6560601b604082015260600190565b60006020828403121561209957600080fd5b5051919050565b60ff81811683821601908111156105c1576105c1612000565b600083516120cb818460208801611bb9565b8351908301906120df818360208801611bb9565b01949350505050565b80820281158282048414176105c1576105c1612000565b818103818111156105c1576105c1612000565b808201808211156105c1576105c1612000565b601f82111561080357600081815260208120601f850160051c8101602086101561214c5750805b601f850160051c820191505b8181101561216b57828155600101612158565b505050505050565b815167ffffffffffffffff81111561218d5761218d611cdb565b6121a18161219b8454611f30565b84612125565b602080601f8311600181146121d657600084156121be5750858301515b600019600386901b1c1916600185901b17855561216b565b600085815260208120601f198616915b82811015612205578886015182559484019460019091019084016121e6565b50858210156122235787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161229757612297612000565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122c3576122c361229e565b500490565b6000826122d7576122d761229e565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230f90830184611bdd565b9695505050505050565b60006020828403121561232b57600080fd5b8151610fd081611b8656fea2646970667358221220f526fe5dfec8c1d89b1c27bd1307f9c7910440070875bfde12a94163581df83a64736f6c63430008120033496e646976696475616c6c7920437573746f6d697a656420596163687420436c7562

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636486cb7c116100f7578063a22cb46511610095578063d993d65011610064578063d993d65014610502578063e985e9c514610515578063f2fde38b14610535578063f4a0a5281461055557600080fd5b8063a22cb46514610482578063b88d4fde146104a2578063c87b56dd146104c2578063cc4b99d6146104e257600080fd5b8063715018a6116100d1578063715018a614610425578063853828b61461043a5780638da5cb5b1461044f57806395d89b411461046d57600080fd5b80636486cb7c146103ce5780636817c76c146103e157806370a082311461040557600080fd5b806342842e0e116101645780634f558e791161013e5780634f558e791461034157806355f804b3146103615780635de6dc55146103815780636352211e146103ae57600080fd5b806342842e0e146102e157806342966c68146103015780634d4513891461032157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102a657806332cb6b0c146102c657600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b9c565b610575565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c7565b6040516101f39190611c09565b34801561022a57600080fd5b5061023e610239366004611c1c565b610659565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611c51565b6106f3565b005b34801561028457600080fd5b5060085462010000900461ffff165b60405161ffff90911681526020016101f3565b3480156102b257600080fd5b506102766102c1366004611c7b565b610808565b3480156102d257600080fd5b506008546102939061ffff1681565b3480156102ed57600080fd5b506102766102fc366004611c7b565b61083a565b34801561030d57600080fd5b5061027661031c366004611c1c565b610855565b34801561032d57600080fd5b5061027661033c366004611cb7565b6108e3565b34801561034d57600080fd5b506101e761035c366004611c1c565b610925565b34801561036d57600080fd5b5061027661037c366004611d67565b610944565b34801561038d57600080fd5b506103a161039c366004611db0565b610977565b6040516101f39190611dcb565b3480156103ba57600080fd5b5061023e6103c9366004611c1c565b610aa3565b6102766103dc366004611e13565b610b1a565b3480156103ed57600080fd5b506103f760095481565b6040519081526020016101f3565b34801561041157600080fd5b506103f7610420366004611db0565b610d52565b34801561043157600080fd5b50610276610dd9565b34801561044657600080fd5b50610276610e4d565b34801561045b57600080fd5b506000546001600160a01b031661023e565b34801561047957600080fd5b50610211610eaa565b34801561048e57600080fd5b5061027661049d366004611e50565b610eb9565b3480156104ae57600080fd5b506102766104bd366004611e81565b610ec4565b3480156104ce57600080fd5b506102116104dd366004611c1c565b610efc565b3480156104ee57600080fd5b506102766104fd366004611e13565b610fd7565b610276610510366004611e13565b6110a4565b34801561052157600080fd5b506101e7610530366004611efd565b611216565b34801561054157600080fd5b50610276610550366004611db0565b611244565b34801561056157600080fd5b50610276610570366004611c1c565b61132e565b60006001600160e01b031982166380ac58cd60e01b14806105a657506001600160e01b03198216635b5e139f60e01b145b806105c157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d690611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461060290611f30565b801561064f5780601f106106245761010080835404028352916020019161064f565b820191906000526020600020905b81548152906001019060200180831161063257829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166106d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106fe82610aa3565b9050806001600160a01b0316836001600160a01b03160361076b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ce565b336001600160a01b038216148061078757506107878133611216565b6107f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ce565b610803838361135d565b505050565b610813335b826113cb565b61082f5760405162461bcd60e51b81526004016106ce90611f64565b6108038383836114a2565b61080383838360405180602001604052806000815250610ec4565b6000546001600160a01b031633148061087257506108723361080d565b6108d75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106ce565b6108e08161163e565b50565b6000546001600160a01b0316331461090d5760405162461bcd60e51b81526004016106ce90611fb5565b6008805461ffff191661ffff92909216919091179055565b6000818152600460205260408120546001600160a01b031615156105c1565b6000546001600160a01b0316331461096e5760405162461bcd60e51b81526004016106ce90611fb5565b6108e0816116d9565b6060600061098483610d52565b90508061ffff166000036109a8575050604080516000815260208101909152919050565b60008161ffff1667ffffffffffffffff8111156109c7576109c7611cdb565b6040519080825280602002602001820160405280156109f0578160200160208202803683370190505b5090506000805b60085462010000900461ffff1661ffff168161ffff161015610a935761ffff81166000908152600460205260409020546001600160a01b03808816911603610a815780838361ffff1681518110610a5057610a50611fea565b61ffff9092166020928302919091019091015281610a6d81612016565b9250508361ffff168261ffff161015610a93575b80610a8b81612016565b9150506109f7565b5090949350505050565b50919050565b6000818152600460205260408120546001600160a01b0316806105c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ce565b323314610b545760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b60448201526064016106ce565b60085461ffff1660ff8216610b7360085461ffff620100009091041690565b610b7d9190612037565b61ffff161115610b9f5760405162461bcd60e51b81526004016106ce90612059565b600a54604051627eeac760e11b81523360048201526003602482015260ff8316916001600160a01b03169062fdd58e90604401602060405180830381865afa158015610bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c139190612087565b1015610c515760405162461bcd60e51b815260206004820152600d60248201526c139bdd08195b9bdd59da0815d3609a1b60448201526064016106ce565b600a54604051637a94c56560e11b81523360048201526003602482015260ff831660448201526001600160a01b039091169063f5298aca90606401600060405180830381600087803b158015610ca657600080fd5b505af1158015610cba573d6000803e3d6000fd5b5050505060005b8160ff168160ff161015610d165760008160ff16610ce960085461ffff620100009091041690565b610cf39190612037565b9050610d03848261ffff166116e5565b50610d0f6001826120a0565b9050610cc1565b50600854610d329060ff83169062010000900461ffff16612037565b600860026101000a81548161ffff021916908361ffff1602179055505050565b60006001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ce565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b03163314610e035760405162461bcd60e51b81526004016106ce90611fb5565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610e775760405162461bcd60e51b81526004016106ce90611fb5565b6040514790339082156108fc029083906000818181858888f19350505050158015610ea6573d6000803e3d6000fd5b5050565b6060600280546105d690611f30565b610ea63383836116ff565b610ece33836113cb565b610eea5760405162461bcd60e51b81526004016106ce90611f64565b610ef6848484846117cd565b50505050565b6000818152600460205260409020546060906001600160a01b0316610f7b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ce565b6000610f85611800565b90506000815111610fa55760405180602001604052806000815250610fd0565b80610faf8461180f565b604051602001610fc09291906120b9565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110015760405162461bcd60e51b81526004016106ce90611fb5565b60085461ffff1660ff821661102060085461ffff620100009091041690565b61102a9190612037565b61ffff16111561104c5760405162461bcd60e51b81526004016106ce90612059565b60005b8160ff168160ff161015610d165760008160ff1661107760085461ffff620100009091041690565b6110819190612037565b9050611091848261ffff166116e5565b5061109d6001826120a0565b905061104f565b3233146110de5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b60448201526064016106ce565b60085461ffff1660ff82166110fd60085461ffff620100009091041690565b6111079190612037565b61ffff1611156111295760405162461bcd60e51b81526004016106ce90612059565b6009546000036111695760405162461bcd60e51b815260206004820152600b60248201526a139bdd08195b98589b195960aa1b60448201526064016106ce565b348160ff1660095461117b91906120e8565b11156111be5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b60448201526064016106ce565b60005b8160ff168160ff161015610d165760008160ff166111e960085461ffff620100009091041690565b6111f39190612037565b9050611203848261ffff166116e5565b5061120f6001826120a0565b90506111c1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0316331461126e5760405162461bcd60e51b81526004016106ce90611fb5565b6001600160a01b0381166112d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ce565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113585760405162461bcd60e51b81526004016106ce90611fb5565b600955565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139282610aa3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166114445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ce565b600061144f83610aa3565b9050806001600160a01b0316846001600160a01b0316148061148a5750836001600160a01b031661147f84610659565b6001600160a01b0316145b8061149a575061149a8185611216565b949350505050565b826001600160a01b03166114b582610aa3565b6001600160a01b0316146115195760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ce565b6001600160a01b03821661157b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ce565b61158660008261135d565b6001600160a01b03831660009081526005602052604081208054600192906115af9084906120ff565b90915550506001600160a01b03821660009081526005602052604081208054600192906115dd908490612112565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061164982610aa3565b905061165660008361135d565b6001600160a01b038116600090815260056020526040812080546001929061167f9084906120ff565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6003610ea68282612173565b610ea6828260405180602001604052806000815250611910565b816001600160a01b0316836001600160a01b0316036117605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ce565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117d88484846114a2565b6117e484848484611943565b610ef65760405162461bcd60e51b81526004016106ce90612233565b6060600380546105d690611f30565b6060816000036118365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611860578061184a81612285565b91506118599050600a836122b4565b915061183a565b60008167ffffffffffffffff81111561187b5761187b611cdb565b6040519080825280601f01601f1916602001820160405280156118a5576020820181803683370190505b5090505b841561149a576118ba6001836120ff565b91506118c7600a866122c8565b6118d2906030612112565b60f81b8183815181106118e7576118e7611fea565b60200101906001600160f81b031916908160001a905350611909600a866122b4565b94506118a9565b61191a8383611a44565b6119276000848484611943565b6108035760405162461bcd60e51b81526004016106ce90612233565b60006001600160a01b0384163b15611a3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119879033908990889088906004016122dc565b6020604051808303816000875af19250505080156119c2575060408051601f3d908101601f191682019092526119bf91810190612319565b60015b611a1f573d8080156119f0576040519150601f19603f3d011682016040523d82523d6000602084013e6119f5565b606091505b508051600003611a175760405162461bcd60e51b81526004016106ce90612233565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061149a565b506001949350505050565b6001600160a01b038216611a9a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ce565b6000818152600460205260409020546001600160a01b031615611aff5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ce565b6001600160a01b0382166000908152600560205260408120805460019290611b28908490612112565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146108e057600080fd5b600060208284031215611bae57600080fd5b8135610fd081611b86565b60005b83811015611bd4578181015183820152602001611bbc565b50506000910152565b60008151808452611bf5816020860160208601611bb9565b601f01601f19169290920160200192915050565b602081526000610fd06020830184611bdd565b600060208284031215611c2e57600080fd5b5035919050565b80356001600160a01b0381168114611c4c57600080fd5b919050565b60008060408385031215611c6457600080fd5b611c6d83611c35565b946020939093013593505050565b600080600060608486031215611c9057600080fd5b611c9984611c35565b9250611ca760208501611c35565b9150604084013590509250925092565b600060208284031215611cc957600080fd5b813561ffff81168114610fd057600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d0c57611d0c611cdb565b604051601f8501601f19908116603f01168101908282118183101715611d3457611d34611cdb565b81604052809350858152868686011115611d4d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d7957600080fd5b813567ffffffffffffffff811115611d9057600080fd5b8201601f81018413611da157600080fd5b61149a84823560208401611cf1565b600060208284031215611dc257600080fd5b610fd082611c35565b6020808252825182820181905260009190848201906040850190845b81811015611e0757835161ffff1683529284019291840191600101611de7565b50909695505050505050565b60008060408385031215611e2657600080fd5b611e2f83611c35565b9150602083013560ff81168114611e4557600080fd5b809150509250929050565b60008060408385031215611e6357600080fd5b611e6c83611c35565b915060208301358015158114611e4557600080fd5b60008060008060808587031215611e9757600080fd5b611ea085611c35565b9350611eae60208601611c35565b925060408501359150606085013567ffffffffffffffff811115611ed157600080fd5b8501601f81018713611ee257600080fd5b611ef187823560208401611cf1565b91505092959194509250565b60008060408385031215611f1057600080fd5b611f1983611c35565b9150611f2760208401611c35565b90509250929050565b600181811c90821680611f4457607f821691505b602082108103610a9d57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681810361202d5761202d612000565b6001019392505050565b61ffff81811683821601908082111561205257612052612000565b5092915050565b6020808252601490820152734d6178204c696d697420546f2050726573616c6560601b604082015260600190565b60006020828403121561209957600080fd5b5051919050565b60ff81811683821601908111156105c1576105c1612000565b600083516120cb818460208801611bb9565b8351908301906120df818360208801611bb9565b01949350505050565b80820281158282048414176105c1576105c1612000565b818103818111156105c1576105c1612000565b808201808211156105c1576105c1612000565b601f82111561080357600081815260208120601f850160051c8101602086101561214c5750805b601f850160051c820191505b8181101561216b57828155600101612158565b505050505050565b815167ffffffffffffffff81111561218d5761218d611cdb565b6121a18161219b8454611f30565b84612125565b602080601f8311600181146121d657600084156121be5750858301515b600019600386901b1c1916600185901b17855561216b565b600085815260208120601f198616915b82811015612205578886015182559484019460019091019084016121e6565b50858210156122235787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161229757612297612000565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122c3576122c361229e565b500490565b6000826122d7576122d761229e565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230f90830184611bdd565b9695505050505050565b60006020828403121561232b57600080fd5b8151610fd081611b8656fea2646970667358221220f526fe5dfec8c1d89b1c27bd1307f9c7910440070875bfde12a94163581df83a64736f6c63430008120033

Deployed Bytecode Sourcemap

878:3221:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2083:344:3;;;;;;;;;;-1:-1:-1;2083:344:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;2083:344:3;;;;;;;;3201:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4946:295::-;;;;;;;;;;-1:-1:-1;4946:295:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:12;;;1679:51;;1667:2;1652:18;4946:295:3;1533:203:12;4484:401:3;;;;;;;;;;-1:-1:-1;4484:401:3;;;;;:::i;:::-;;:::i;:::-;;1614:95:5;;;;;;;;;;-1:-1:-1;1691:11:5;;;;;;;1614:95;;;2352:6:12;2340:19;;;2322:38;;2310:2;2295:18;1614:95:5;2178:188:12;5823:364:3;;;;;;;;;;-1:-1:-1;5823:364:3;;;;;:::i;:::-;;:::i;916:24:5:-;;;;;;;;;;-1:-1:-1;916:24:5;;;;;;;;6253:179:3;;;;;;;;;;-1:-1:-1;6253:179:3;;;;;:::i;:::-;;:::i;947:318:4:-;;;;;;;;;;-1:-1:-1;947:318:4;;;;;:::i;:::-;;:::i;1300:99:5:-;;;;;;;;;;-1:-1:-1;1300:99:5;;;;;:::i;:::-;;:::i;1506:102::-;;;;;;;;;;-1:-1:-1;1506:102:5;;;;;:::i;:::-;;:::i;1405:95::-;;;;;;;;;;-1:-1:-1;1405:95:5;;;;;:::i;:::-;;:::i;1715:745::-;;;;;;;;;;-1:-1:-1;1715:745:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2826:313:3:-;;;;;;;;;;-1:-1:-1;2826:313:3;;;;;:::i;:::-;;:::i;2466:578:5:-;;;;;;:::i;:::-;;:::i;979:24::-;;;;;;;;;;;;;;;;;;;5539:25:12;;;5527:2;5512:18;979:24:5;5393:177:12;2486:283:3;;;;;;;;;;-1:-1:-1;2486:283:3;;;;;:::i;:::-;;:::i;2225:145:10:-;;;;;;;;;;;;;:::i;3942:155:5:-;;;;;;;;;;;;;:::i;1593:85:10:-;;;;;;;;;;-1:-1:-1;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1593:85;;3363:102:3;;;;;;;;;;;;;:::i;5308:181::-;;;;;;;;;;-1:-1:-1;5308:181:3;;;;;:::i;:::-;;:::i;6498:354::-;;;;;;;;;;-1:-1:-1;6498:354:3;;;;;:::i;:::-;;:::i;3531:451::-;;;;;;;;;;-1:-1:-1;3531:451:3;;;;;:::i;:::-;;:::i;3584:352:5:-;;;;;;;;;;-1:-1:-1;3584:352:5;;;;;:::i;:::-;;:::i;3050:528::-;;;;;;:::i;:::-;;:::i;5555:206:3:-;;;;;;;;;;-1:-1:-1;5555:206:3;;;;;:::i;:::-;;:::i;2519:274:10:-;;;;;;;;;;-1:-1:-1;2519:274:10;;;;;:::i;:::-;;:::i;1194:100:5:-;;;;;;;;;;-1:-1:-1;1194:100:5;;;;;:::i;:::-;;:::i;2083:344:3:-;2225:4;-1:-1:-1;;;;;;2264:40:3;;-1:-1:-1;;;2264:40:3;;:104;;-1:-1:-1;;;;;;;2320:48:3;;-1:-1:-1;;;2320:48:3;2264:104;:156;;;-1:-1:-1;;;;;;;;;;1425:40:2;;;2384:36:3;2245:175;2083:344;-1:-1:-1;;2083:344:3:o;3201:98::-;3255:13;3287:5;3280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3201:98;:::o;4946:295::-;5062:7;8446:16;;;:7;:16;;;;;;-1:-1:-1;;;;;8446:16:3;5085:107;;;;-1:-1:-1;;;5085:107:3;;7451:2:12;5085:107:3;;;7433:21:12;7490:2;7470:18;;;7463:30;7529:34;7509:18;;;7502:62;-1:-1:-1;;;7580:18:12;;;7573:42;7632:19;;5085:107:3;;;;;;;;;-1:-1:-1;5210:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;5210:24:3;;4946:295::o;4484:401::-;4564:13;4580:23;4595:7;4580:14;:23::i;:::-;4564:39;;4627:5;-1:-1:-1;;;;;4621:11:3;:2;-1:-1:-1;;;;;4621:11:3;;4613:57;;;;-1:-1:-1;;;4613:57:3;;7864:2:12;4613:57:3;;;7846:21:12;7903:2;7883:18;;;7876:30;7942:34;7922:18;;;7915:62;-1:-1:-1;;;7993:18:12;;;7986:31;8034:19;;4613:57:3;7662:397:12;4613:57:3;1176:10:1;-1:-1:-1;;;;;4702:21:3;;;;:62;;-1:-1:-1;4727:37:3;4744:5;1176:10:1;5555:206:3;:::i;4727:37::-;4681:165;;;;-1:-1:-1;;;4681:165:3;;8266:2:12;4681:165:3;;;8248:21:12;8305:2;8285:18;;;8278:30;8344:34;8324:18;;;8317:62;8415:26;8395:18;;;8388:54;8459:19;;4681:165:3;8064:420:12;4681:165:3;4857:21;4866:2;4870:7;4857:8;:21::i;:::-;4554:331;4484:401;;:::o;5823:364::-;6025:41;1176:10:1;6044:12:3;6058:7;6025:18;:41::i;:::-;6004:137;;;;-1:-1:-1;;;6004:137:3;;;;;;;:::i;:::-;6152:28;6162:4;6168:2;6172:7;6152:9;:28::i;6253:179::-;6386:39;6403:4;6409:2;6413:7;6386:39;;;;;;;;;;;;:16;:39::i;947:318:4:-;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1076:23:4;;:84;;-1:-1:-1;1119:41:4;1176:10:1;1138:12:4;1097:96:1;1119:41:4;1055:179;;;;-1:-1:-1;;;1055:179:4;;9109:2:12;1055:179:4;;;9091:21:12;9148:2;9128:18;;;9121:30;9187:34;9167:18;;;9160:62;-1:-1:-1;;;9238:18:12;;;9231:46;9294:19;;1055:179:4;8907:412:12;1055:179:4;1244:14;1250:7;1244:5;:14::i;:::-;947:318;:::o;1300:99:5:-;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;1368:10:5::1;:24:::0;;-1:-1:-1;;1368:24:5::1;;::::0;;;::::1;::::0;;;::::1;::::0;;1300:99::o;1506:102::-;1561:4;8446:16:3;;;:7;:16;;;;;;-1:-1:-1;;;;;8446:16:3;:30;;1584:17:5;8358:125:3;1405:95:5;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;1477:16:5::1;1485:7;1477;:16::i;1715:745::-:0;1791:15;1818:17;1845:16;1855:5;1845:9;:16::i;:::-;1818:44;;1877:10;:15;;1891:1;1877:15;1873:581;;-1:-1:-1;;1915:15:5;;;1928:1;1915:15;;;;;;;;;1908:22;-1:-1:-1;1715:745:5:o;1873:581::-;1961:22;1999:10;1986:24;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1986:24:5;;1961:49;;2024:18;2060:14;2089:328;1691:11;;;;;;;2107:23;;:7;:23;;;2089:328;;;2165:16;;;;;;;:7;:16;;;;;;-1:-1:-1;;;;;2165:25:5;;;:16;;:25;2161:242;;2236:7;2214:6;2221:11;2214:19;;;;;;;;;;:::i;:::-;:29;;;;:19;;;;;;;;;;;:29;2265:13;;;;:::i;:::-;;;;2319:10;2304:25;;:11;:25;;;2300:85;2357:5;2300:85;;2132:9;;;;:::i;:::-;;;;2089:328;;;-1:-1:-1;2437:6:5;;1715:745;-1:-1:-1;;;;1715:745:5:o;1873:581::-;1808:652;1715:745;;;:::o;2826:313:3:-;2938:7;2977:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2977:16:3;;3003:107;;;;-1:-1:-1;;;3003:107:3;;10353:2:12;3003:107:3;;;10335:21:12;10392:2;10372:18;;;10365:30;10431:34;10411:18;;;10404:62;-1:-1:-1;;;10482:18:12;;;10475:39;10531:19;;3003:107:3;10151:405:12;2466:578:5;2555:9;2568:10;2555:23;2547:44;;;;-1:-1:-1;;;2547:44:5;;10763:2:12;2547:44:5;;;10745:21:12;10802:1;10782:18;;;10775:29;-1:-1:-1;;;10820:18:12;;;10813:38;10868:18;;2547:44:5;10561:331:12;2547:44:5;2636:10;;;;2609:23;;;:13;1691:11;;;;;;;;;1614:95;2609:13;:23;;;;:::i;:::-;:37;;;;2601:70;;;;-1:-1:-1;;;2601:70:5;;;;;;;:::i;:::-;2698:10;;2689:45;;-1:-1:-1;;;2689:45:5;;2720:10;2689:45;;;11601:51:12;2732:1:5;11668:18:12;;;11661:34;2689:56:5;;;;-1:-1:-1;;;;;2698:10:5;;2689:30;;11574:18:12;;2689:45:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;2681:103;;;;-1:-1:-1;;;2681:103:5;;12097:2:12;2681:103:5;;;12079:21:12;12136:2;12116:18;;;12109:30;-1:-1:-1;;;12155:18:12;;;12148:43;12208:18;;2681:103:5;11895:337:12;2681:103:5;2803:10;;2794:49;;-1:-1:-1;;;2794:49:5;;2820:10;2794:49;;;12445:51:12;2832:1:5;12512:18:12;;;12505:34;12587:4;12575:17;;12555:18;;;12548:45;-1:-1:-1;;;;;2803:10:5;;;;2794:25;;12418:18:12;;2794:49:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2858:7;2853:140;2875:7;2871:11;;:1;:11;;;2853:140;;;2906:14;2939:1;2923:17;;:13;1691:11;;;;;;;;;1614:95;2923:13;:17;;;;:::i;:::-;2906:34;;2954:28;2964:8;2974:7;2954:28;;:9;:28::i;:::-;-1:-1:-1;2884:6:5;2889:1;2884:6;;:::i;:::-;;;2853:140;;;-1:-1:-1;3016:11:5;;:21;;;;;;:11;;;;;:21;:::i;:::-;3002:11;;:35;;;;;;;;;;;;;;;;;;2466:578;;:::o;2486:283:3:-;2598:7;-1:-1:-1;;;;;2642:19:3;;2621:108;;;;-1:-1:-1;;;2621:108:3;;12959:2:12;2621:108:3;;;12941:21:12;12998:2;12978:18;;;12971:30;13037:34;13017:18;;;13010:62;-1:-1:-1;;;13088:18:12;;;13081:40;13138:19;;2621:108:3;12757:406:12;2621:108:3;-1:-1:-1;;;;;;2746:16:3;;;;;:9;:16;;;;;;;2486:283::o;2225:145:10:-;1639:7;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;2331:1:::1;2315:6:::0;;2294:40:::1;::::0;-1:-1:-1;;;;;2315:6:10;;::::1;::::0;2294:40:::1;::::0;2331:1;;2294:40:::1;2361:1;2344:19:::0;;-1:-1:-1;;;;;;2344:19:10::1;::::0;;2225:145::o;3942:155:5:-;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;4048:42:5::1;::::0;4017:21:::1;::::0;4056:10:::1;::::0;4048:42;::::1;;;::::0;4017:21;;3994:20:::1;4048:42:::0;3994:20;4048:42;4017:21;4056:10;4048:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3984:113;3942:155::o:0;3363:102:3:-;3419:13;3451:7;3444:14;;;;;:::i;5308:181::-;5430:52;1176:10:1;5463:8:3;5473;5430:18;:52::i;6498:354::-;6680:41;1176:10:1;6713:7:3;6680:18;:41::i;:::-;6659:137;;;;-1:-1:-1;;;6659:137:3;;;;;;;:::i;:::-;6806:39;6820:4;6826:2;6830:7;6839:5;6806:13;:39::i;:::-;6498:354;;;;:::o;3531:451::-;8423:4;8446:16;;;:7;:16;;;;;;3644:13;;-1:-1:-1;;;;;8446:16:3;3673:110;;;;-1:-1:-1;;;3673:110:3;;13370:2:12;3673:110:3;;;13352:21:12;13409:2;13389:18;;;13382:30;13448:34;13428:18;;;13421:62;-1:-1:-1;;;13499:18:12;;;13492:45;13554:19;;3673:110:3;13168:411:12;3673:110:3;3794:21;3818:10;:8;:10::i;:::-;3794:34;;3881:1;3863:7;3857:21;:25;:118;;;;;;;;;;;;;;;;;3925:7;3934:18;:7;:16;:18::i;:::-;3908:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3857:118;3838:137;3531:451;-1:-1:-1;;;3531:451:3:o;3584:352:5:-;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;3700:10:5::1;::::0;::::1;;3673:23;::::0;::::1;:13;1691:11:::0;;;;;;;;;1614:95;3673:13:::1;:23;;;;:::i;:::-;:37;;;;3665:70;;;;-1:-1:-1::0;;;3665:70:5::1;;;;;;;:::i;:::-;3751:7;3746:139;3768:7;3764:11;;:1;:11;;;3746:139;;;3799:14;3832:1;3816:17;;:13;1691:11:::0;;;;;;;;;1614:95;3816:13:::1;:17;;;;:::i;:::-;3799:34;;3847:27;3857:7;3866;3847:27;;:9;:27::i;:::-;-1:-1:-1::0;3777:6:5::1;3782:1;3777:6:::0;::::1;:::i;:::-;;;3746:139;;3050:528:::0;3139:9;3152:10;3139:23;3131:44;;;;-1:-1:-1;;;3131:44:5;;10763:2:12;3131:44:5;;;10745:21:12;10802:1;10782:18;;;10775:29;-1:-1:-1;;;10820:18:12;;;10813:38;10868:18;;3131:44:5;10561:331:12;3131:44:5;3220:10;;;;3193:23;;;:13;1691:11;;;;;;;;;1614:95;3193:13;:23;;;;:::i;:::-;:37;;;;3185:70;;;;-1:-1:-1;;;3185:70:5;;;;;;;:::i;:::-;3273:9;;3286:1;3273:14;3265:38;;;;-1:-1:-1;;;3265:38:5;;14287:2:12;3265:38:5;;;14269:21:12;14326:2;14306:18;;;14299:30;-1:-1:-1;;;14345:18:12;;;14338:41;14396:18;;3265:38:5;14085:335:12;3265:38:5;3344:9;3333:7;3321:19;;:9;;:19;;;;:::i;:::-;:32;;3313:63;;;;-1:-1:-1;;;3313:63:5;;14800:2:12;3313:63:5;;;14782:21:12;14839:2;14819:18;;;14812:30;-1:-1:-1;;;14858:18:12;;;14851:48;14916:18;;3313:63:5;14598:342:12;3313:63:5;3392:7;3387:140;3409:7;3405:11;;:1;:11;;;3387:140;;;3440:14;3473:1;3457:17;;:13;1691:11;;;;;;;;;1614:95;3457:13;:17;;;;:::i;:::-;3440:34;;3488:28;3498:8;3508:7;3488:28;;:9;:28::i;:::-;-1:-1:-1;3418:6:5;3423:1;3418:6;;:::i;:::-;;;3387:140;;5555:206:3;-1:-1:-1;;;;;5719:25:3;;;5692:4;5719:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;5555:206::o;2519:274:10:-;1639:7;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2620:22:10;::::1;2599:107;;;::::0;-1:-1:-1;;;2599:107:10;;15147:2:12;2599:107:10::1;::::0;::::1;15129:21:12::0;15186:2;15166:18;;;15159:30;15225:34;15205:18;;;15198:62;-1:-1:-1;;;15276:18:12;;;15269:36;15322:19;;2599:107:10::1;14945:402:12::0;2599:107:10::1;2742:6;::::0;;2721:38:::1;::::0;-1:-1:-1;;;;;2721:38:10;;::::1;::::0;2742:6;::::1;::::0;2721:38:::1;::::0;::::1;2769:6;:17:::0;;-1:-1:-1;;;;;;2769:17:10::1;-1:-1:-1::0;;;;;2769:17:10;;;::::1;::::0;;;::::1;::::0;;2519:274::o;1194:100:5:-;1639:7:10;1665:6;-1:-1:-1;;;;;1665:6:10;1176:10:1;1805:23:10;1797:68;;;;-1:-1:-1;;;1797:68:10;;;;;;;:::i;:::-;1265:9:5::1;:22:::0;1194:100::o;12495:171:3:-;12569:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12569:29:3;-1:-1:-1;;;;;12569:29:3;;;;;;;;:24;;12622:23;12569:24;12622:14;:23::i;:::-;-1:-1:-1;;;;;12613:46:3;;;;;;;;;;;12495:171;;:::o;8641:438::-;8766:4;8446:16;;;:7;:16;;;;;;-1:-1:-1;;;;;8446:16:3;8786:107;;;;-1:-1:-1;;;8786:107:3;;15554:2:12;8786:107:3;;;15536:21:12;15593:2;15573:18;;;15566:30;15632:34;15612:18;;;15605:62;-1:-1:-1;;;15683:18:12;;;15676:42;15735:19;;8786:107:3;15352:408:12;8786:107:3;8903:13;8919:23;8934:7;8919:14;:23::i;:::-;8903:39;;8971:5;-1:-1:-1;;;;;8960:16:3;:7;-1:-1:-1;;;;;8960:16:3;;:63;;;;9016:7;-1:-1:-1;;;;;8992:31:3;:20;9004:7;8992:11;:20::i;:::-;-1:-1:-1;;;;;8992:31:3;;8960:63;:111;;;;9039:32;9056:5;9063:7;9039:16;:32::i;:::-;8952:120;8641:438;-1:-1:-1;;;;8641:438:3:o;11745:639::-;11912:4;-1:-1:-1;;;;;11885:31:3;:23;11900:7;11885:14;:23::i;:::-;-1:-1:-1;;;;;11885:31:3;;11864:115;;;;-1:-1:-1;;;11864:115:3;;15967:2:12;11864:115:3;;;15949:21:12;16006:2;15986:18;;;15979:30;16045:34;16025:18;;;16018:62;-1:-1:-1;;;16096:18:12;;;16089:35;16141:19;;11864:115:3;15765:401:12;11864:115:3;-1:-1:-1;;;;;11997:16:3;;11989:65;;;;-1:-1:-1;;;11989:65:3;;16373:2:12;11989:65:3;;;16355:21:12;16412:2;16392:18;;;16385:30;16451:34;16431:18;;;16424:62;-1:-1:-1;;;16502:18:12;;;16495:34;16546:19;;11989:65:3;16171:400:12;11989:65:3;12166:29;12183:1;12187:7;12166:8;:29::i;:::-;-1:-1:-1;;;;;12206:15:3;;;;;;:9;:15;;;;;:20;;12225:1;;12206:15;:20;;12225:1;;12206:20;:::i;:::-;;;;-1:-1:-1;;;;;;;12236:13:3;;;;;;:9;:13;;;;;:18;;12253:1;;12236:13;:18;;12253:1;;12236:18;:::i;:::-;;;;-1:-1:-1;;12264:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;12264:21:3;-1:-1:-1;;;;;12264:21:3;;;;;;;;;12301:27;;12264:16;;12301:27;;;;;;;4554:331;4484:401;;:::o;11015:406::-;11074:13;11090:23;11105:7;11090:14;:23::i;:::-;11074:39;;11210:29;11227:1;11231:7;11210:8;:29::i;:::-;-1:-1:-1;;;;;11250:16:3;;;;;;:9;:16;;;;;:21;;11270:1;;11250:16;:21;;11270:1;;11250:21;:::i;:::-;;;;-1:-1:-1;;11288:16:3;;;;:7;:16;;;;;;11281:23;;-1:-1:-1;;;;;;11281:23:3;;;11320:36;11296:7;;11288:16;-1:-1:-1;;;;;11320:36:3;;;;;11288:16;;11320:36;4048:42:5::1;3984:113;3942:155::o:0;4327:100:3:-;4398:8;:22;4409:11;4398:8;:22;:::i;9409:108::-;9484:26;9494:2;9498:7;9484:26;;;;;;;;;;;;:9;:26::i;12801:307::-;12951:8;-1:-1:-1;;;;;12942:17:3;:5;-1:-1:-1;;;;;12942:17:3;;12934:55;;;;-1:-1:-1;;;12934:55:3;;19245:2:12;12934:55:3;;;19227:21:12;19284:2;19264:18;;;19257:30;19323:27;19303:18;;;19296:55;19368:18;;12934:55:3;19043:349:12;12934:55:3;-1:-1:-1;;;;;12999:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12999:46:3;;;;;;;;;;13060:41;;540::12;;;13060::3;;513:18:12;13060:41:3;;;;;;;12801:307;;;:::o;7714:341::-;7865:28;7875:4;7881:2;7885:7;7865:9;:28::i;:::-;7924:48;7947:4;7953:2;7957:7;7966:5;7924:22;:48::i;:::-;7903:145;;;;-1:-1:-1;;;7903:145:3;;;;;;;:::i;4223:98::-;4274:13;4306:8;4299:15;;;;;:::i;785:703:11:-;841:13;1058:5;1067:1;1058:10;1054:51;;-1:-1:-1;;1084:10:11;;;;;;;;;;;;-1:-1:-1;;;1084:10:11;;;;;785:703::o;1054:51::-;1129:5;1114:12;1168:75;1175:9;;1168:75;;1200:8;;;;:::i;:::-;;-1:-1:-1;1222:10:11;;-1:-1:-1;1230:2:11;1222:10;;:::i;:::-;;;1168:75;;;1252:19;1284:6;1274:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1274:17:11;;1252:39;;1301:150;1308:10;;1301:150;;1334:11;1344:1;1334:11;;:::i;:::-;;-1:-1:-1;1402:10:11;1410:2;1402:5;:10;:::i;:::-;1389:24;;:2;:24;:::i;:::-;1376:39;;1359:6;1366;1359:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1359:56:11;;;;;;;;-1:-1:-1;1429:11:11;1438:2;1429:11;;:::i;:::-;;;1301:150;;9738:311:3;9863:18;9869:2;9873:7;9863:5;:18::i;:::-;9912:54;9943:1;9947:2;9951:7;9960:5;9912:22;:54::i;:::-;9891:151;;;;-1:-1:-1;;;9891:151:3;;;;;;;:::i;13661:950::-;13811:4;-1:-1:-1;;;;;13831:13:3;;1544:20:0;1590:8;13827:778:3;;13882:170;;-1:-1:-1;;;13882:170:3;;-1:-1:-1;;;;;13882:36:3;;;;;:170;;1176:10:1;;13974:4:3;;14000:7;;14029:5;;13882:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13882:170:3;;;;;;;;-1:-1:-1;;13882:170:3;;;;;;;;;;;;:::i;:::-;;;13862:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14231:6;:13;14248:1;14231:18;14227:312;;14273:106;;-1:-1:-1;;;14273:106:3;;;;;;;:::i;14227:312::-;14491:6;14485:13;14476:6;14472:2;14468:15;14461:38;13862:691;-1:-1:-1;;;;;;14114:51:3;-1:-1:-1;;;14114:51:3;;-1:-1:-1;14107:58:3;;13827:778;-1:-1:-1;14590:4:3;13661:950;;;;;;:::o;10371:427::-;-1:-1:-1;;;;;10450:16:3;;10442:61;;;;-1:-1:-1;;;10442:61:3;;21280:2:12;10442:61:3;;;21262:21:12;;;21299:18;;;21292:30;21358:34;21338:18;;;21331:62;21410:18;;10442:61:3;21078:356:12;10442:61:3;8423:4;8446:16;;;:7;:16;;;;;;-1:-1:-1;;;;;8446:16:3;:30;10513:58;;;;-1:-1:-1;;;10513:58:3;;21641:2:12;10513:58:3;;;21623:21:12;21680:2;21660:18;;;21653:30;21719;21699:18;;;21692:58;21767:18;;10513:58:3;21439:352:12;10513:58:3;-1:-1:-1;;;;;10638:13:3;;;;;;:9;:13;;;;;:18;;10655:1;;10638:13;:18;;10655:1;;10638:18;:::i;:::-;;;;-1:-1:-1;;10666:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10666:21:3;-1:-1:-1;;;;;10666:21:3;;;;;;;;10703:33;;10666:16;;;10703:33;;10666:16;;10703:33;4048:42:5::1;3984:113;3942:155::o:0;14:131:12:-;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:12;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:12;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:12:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:12;;1348:180;-1:-1:-1;1348:180:12:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:12;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:12:o;2371:328::-;2448:6;2456;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2556:29;2575:9;2556:29;:::i;:::-;2546:39;;2604:38;2638:2;2627:9;2623:18;2604:38;:::i;:::-;2594:48;;2689:2;2678:9;2674:18;2661:32;2651:42;;2371:328;;;;;:::o;2704:272::-;2762:6;2815:2;2803:9;2794:7;2790:23;2786:32;2783:52;;;2831:1;2828;2821:12;2783:52;2870:9;2857:23;2920:6;2913:5;2909:18;2902:5;2899:29;2889:57;;2942:1;2939;2932:12;2981:127;3042:10;3037:3;3033:20;3030:1;3023:31;3073:4;3070:1;3063:15;3097:4;3094:1;3087:15;3113:632;3178:5;3208:18;3249:2;3241:6;3238:14;3235:40;;;3255:18;;:::i;:::-;3330:2;3324:9;3298:2;3384:15;;-1:-1:-1;;3380:24:12;;;3406:2;3376:33;3372:42;3360:55;;;3430:18;;;3450:22;;;3427:46;3424:72;;;3476:18;;:::i;:::-;3516:10;3512:2;3505:22;3545:6;3536:15;;3575:6;3567;3560:22;3615:3;3606:6;3601:3;3597:16;3594:25;3591:45;;;3632:1;3629;3622:12;3591:45;3682:6;3677:3;3670:4;3662:6;3658:17;3645:44;3737:1;3730:4;3721:6;3713;3709:19;3705:30;3698:41;;;;3113:632;;;;;:::o;3750:451::-;3819:6;3872:2;3860:9;3851:7;3847:23;3843:32;3840:52;;;3888:1;3885;3878:12;3840:52;3928:9;3915:23;3961:18;3953:6;3950:30;3947:50;;;3993:1;3990;3983:12;3947:50;4016:22;;4069:4;4061:13;;4057:27;-1:-1:-1;4047:55:12;;4098:1;4095;4088:12;4047:55;4121:74;4187:7;4182:2;4169:16;4164:2;4160;4156:11;4121:74;:::i;4206:186::-;4265:6;4318:2;4306:9;4297:7;4293:23;4289:32;4286:52;;;4334:1;4331;4324:12;4286:52;4357:29;4376:9;4357:29;:::i;4397:643::-;4566:2;4618:21;;;4688:13;;4591:18;;;4710:22;;;4537:4;;4566:2;4789:15;;;;4763:2;4748:18;;;4537:4;4832:182;4846:6;4843:1;4840:13;4832:182;;;4911:13;;4926:6;4907:26;4895:39;;4989:15;;;;4954:12;;;;4868:1;4861:9;4832:182;;;-1:-1:-1;5031:3:12;;4397:643;-1:-1:-1;;;;;;4397:643:12:o;5045:343::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5211:29;5230:9;5211:29;:::i;:::-;5201:39;;5290:2;5279:9;5275:18;5262:32;5334:4;5327:5;5323:16;5316:5;5313:27;5303:55;;5354:1;5351;5344:12;5303:55;5377:5;5367:15;;;5045:343;;;;;:::o;5575:347::-;5640:6;5648;5701:2;5689:9;5680:7;5676:23;5672:32;5669:52;;;5717:1;5714;5707:12;5669:52;5740:29;5759:9;5740:29;:::i;:::-;5730:39;;5819:2;5808:9;5804:18;5791:32;5866:5;5859:13;5852:21;5845:5;5842:32;5832:60;;5888:1;5885;5878:12;5927:667;6022:6;6030;6038;6046;6099:3;6087:9;6078:7;6074:23;6070:33;6067:53;;;6116:1;6113;6106:12;6067:53;6139:29;6158:9;6139:29;:::i;:::-;6129:39;;6187:38;6221:2;6210:9;6206:18;6187:38;:::i;:::-;6177:48;;6272:2;6261:9;6257:18;6244:32;6234:42;;6327:2;6316:9;6312:18;6299:32;6354:18;6346:6;6343:30;6340:50;;;6386:1;6383;6376:12;6340:50;6409:22;;6462:4;6454:13;;6450:27;-1:-1:-1;6440:55:12;;6491:1;6488;6481:12;6440:55;6514:74;6580:7;6575:2;6562:16;6557:2;6553;6549:11;6514:74;:::i;:::-;6504:84;;;5927:667;;;;;;;:::o;6599:260::-;6667:6;6675;6728:2;6716:9;6707:7;6703:23;6699:32;6696:52;;;6744:1;6741;6734:12;6696:52;6767:29;6786:9;6767:29;:::i;:::-;6757:39;;6815:38;6849:2;6838:9;6834:18;6815:38;:::i;:::-;6805:48;;6599:260;;;;;:::o;6864:380::-;6943:1;6939:12;;;;6986;;;7007:61;;7061:4;7053:6;7049:17;7039:27;;7007:61;7114:2;7106:6;7103:14;7083:18;7080:38;7077:161;;7160:10;7155:3;7151:20;7148:1;7141:31;7195:4;7192:1;7185:15;7223:4;7220:1;7213:15;8489:413;8691:2;8673:21;;;8730:2;8710:18;;;8703:30;8769:34;8764:2;8749:18;;8742:62;-1:-1:-1;;;8835:2:12;8820:18;;8813:47;8892:3;8877:19;;8489:413::o;9324:356::-;9526:2;9508:21;;;9545:18;;;9538:30;9604:34;9599:2;9584:18;;9577:62;9671:2;9656:18;;9324:356::o;9685:127::-;9746:10;9741:3;9737:20;9734:1;9727:31;9777:4;9774:1;9767:15;9801:4;9798:1;9791:15;9817:127;9878:10;9873:3;9869:20;9866:1;9859:31;9909:4;9906:1;9899:15;9933:4;9930:1;9923:15;9949:197;9987:3;10015:6;10056:2;10049:5;10045:14;10083:2;10074:7;10071:15;10068:41;;10089:18;;:::i;:::-;10138:1;10125:15;;9949:197;-1:-1:-1;;;9949:197:12:o;10897:168::-;10964:6;10990:10;;;11002;;;10986:27;;11025:11;;;11022:37;;;11039:18;;:::i;:::-;11022:37;10897:168;;;;:::o;11070:344::-;11272:2;11254:21;;;11311:2;11291:18;;;11284:30;-1:-1:-1;;;11345:2:12;11330:18;;11323:50;11405:2;11390:18;;11070:344::o;11706:184::-;11776:6;11829:2;11817:9;11808:7;11804:23;11800:32;11797:52;;;11845:1;11842;11835:12;11797:52;-1:-1:-1;11868:16:12;;11706:184;-1:-1:-1;11706:184:12:o;12604:148::-;12692:4;12671:12;;;12685;;;12667:31;;12710:13;;12707:39;;;12726:18;;:::i;13584:496::-;13763:3;13801:6;13795:13;13817:66;13876:6;13871:3;13864:4;13856:6;13852:17;13817:66;:::i;:::-;13946:13;;13905:16;;;;13968:70;13946:13;13905:16;14015:4;14003:17;;13968:70;:::i;:::-;14054:20;;13584:496;-1:-1:-1;;;;13584:496:12:o;14425:168::-;14498:9;;;14529;;14546:15;;;14540:22;;14526:37;14516:71;;14567:18;;:::i;16576:128::-;16643:9;;;16664:11;;;16661:37;;;16678:18;;:::i;16709:125::-;16774:9;;;16795:10;;;16792:36;;;16808:18;;:::i;16965:545::-;17067:2;17062:3;17059:11;17056:448;;;17103:1;17128:5;17124:2;17117:17;17173:4;17169:2;17159:19;17243:2;17231:10;17227:19;17224:1;17220:27;17214:4;17210:38;17279:4;17267:10;17264:20;17261:47;;;-1:-1:-1;17302:4:12;17261:47;17357:2;17352:3;17348:12;17345:1;17341:20;17335:4;17331:31;17321:41;;17412:82;17430:2;17423:5;17420:13;17412:82;;;17475:17;;;17456:1;17445:13;17412:82;;;17416:3;;;16965:545;;;:::o;17686:1352::-;17812:3;17806:10;17839:18;17831:6;17828:30;17825:56;;;17861:18;;:::i;:::-;17890:97;17980:6;17940:38;17972:4;17966:11;17940:38;:::i;:::-;17934:4;17890:97;:::i;:::-;18042:4;;18106:2;18095:14;;18123:1;18118:663;;;;18825:1;18842:6;18839:89;;;-1:-1:-1;18894:19:12;;;18888:26;18839:89;-1:-1:-1;;17643:1:12;17639:11;;;17635:24;17631:29;17621:40;17667:1;17663:11;;;17618:57;18941:81;;18088:944;;18118:663;16912:1;16905:14;;;16949:4;16936:18;;-1:-1:-1;;18154:20:12;;;18272:236;18286:7;18283:1;18280:14;18272:236;;;18375:19;;;18369:26;18354:42;;18467:27;;;;18435:1;18423:14;;;;18302:19;;18272:236;;;18276:3;18536:6;18527:7;18524:19;18521:201;;;18597:19;;;18591:26;-1:-1:-1;;18680:1:12;18676:14;;;18692:3;18672:24;18668:37;18664:42;18649:58;18634:74;;18521:201;-1:-1:-1;;;;;18768:1:12;18752:14;;;18748:22;18735:36;;-1:-1:-1;17686:1352:12:o;19397:414::-;19599:2;19581:21;;;19638:2;19618:18;;;19611:30;19677:34;19672:2;19657:18;;19650:62;-1:-1:-1;;;19743:2:12;19728:18;;19721:48;19801:3;19786:19;;19397:414::o;19816:135::-;19855:3;19876:17;;;19873:43;;19896:18;;:::i;:::-;-1:-1:-1;19943:1:12;19932:13;;19816:135::o;19956:127::-;20017:10;20012:3;20008:20;20005:1;19998:31;20048:4;20045:1;20038:15;20072:4;20069:1;20062:15;20088:120;20128:1;20154;20144:35;;20159:18;;:::i;:::-;-1:-1:-1;20193:9:12;;20088:120::o;20213:112::-;20245:1;20271;20261:35;;20276:18;;:::i;:::-;-1:-1:-1;20310:9:12;;20213:112::o;20330:489::-;-1:-1:-1;;;;;20599:15:12;;;20581:34;;20651:15;;20646:2;20631:18;;20624:43;20698:2;20683:18;;20676:34;;;20746:3;20741:2;20726:18;;20719:31;;;20524:4;;20767:46;;20793:19;;20785:6;20767:46;:::i;:::-;20759:54;20330:489;-1:-1:-1;;;;;;20330:489:12:o;20824:249::-;20893:6;20946:2;20934:9;20925:7;20921:23;20917:32;20914:52;;;20962:1;20959;20952:12;20914:52;20994:9;20988:16;21013:30;21037:5;21013:30;:::i

Swarm Source

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