ETH Price: $3,154.91 (-3.07%)

YS 721 (YS)
 

Overview

TokenID

166

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
YSNFT

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: YSNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract YSNFT is Ownable, ReentrancyGuard, ERC721Enumerable {
    using Strings for uint256;

    string public baseTokenURI;
    bool public isPaused = false;

    uint256 public constant maxSupply = 1670;
    uint256 public constant price = 0.067 ether;
    uint256 public constant wlPrice = 0.06 ether;
    uint256 public constant mbPrice = 0.033 ether;
    address constant metaBoomAddr = 0x4C22D3B875437D43402F5B81aE4f61b8F764E1b1;

    uint256 public mbSaleStartTime = 1649674800;
    uint256 public mbSaleEndTime = 1649761199;

    uint256 public wlSaleStartTime = 1649764800;
    uint256 public wlSaleEndTime = 1649851199;

    uint256 public publicSaleStartTime = 1649854800;

    uint8 public mbAmountPerAddr = 3;
    uint8 public wlAmountPerAddr = 8;
    uint8 public amountPerAddr = 20;
    uint8 public amountPerTx = 5;
    uint16 public mbMaxSupply = 200;
    uint8 public airDropMaxSupply = 20;
    uint8 public totalAirdrop = 0;

    mapping(address => uint8) public holdedNumAry;
    mapping(address => bool) public whiteList;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC721(_name, _symbol) {
        baseTokenURI = _uri;
    }

    function publicSale(uint8 _purchaseNum)
        external
        payable
        onlyUser
        nonReentrant
    {
        require(!isPaused, "YSNFT: currently paused");
        require(
            block.timestamp >= publicSaleStartTime,
            "YSNFT: public sale is not started yet"
        );
        require(
            _purchaseNum <= amountPerTx,
            "YSNFT: can not purchase more than 5 each time"
        );
        require(
            (holdedNumAry[_msgSender()] + _purchaseNum) <= amountPerAddr,
            "YSNFT: Each Address can only purchase 20"
        );
        uint256 supply = totalSupply();
        require(
            (supply + _purchaseNum) <= (maxSupply - airDropMaxSupply),
            "YSNFT: reached max supply"
        );
        require(
            msg.value >= (price * _purchaseNum),
            "YSNFT: price is incorrect"
        );

        for (uint8 i = 1; i <= _purchaseNum; i++) {
            _safeMint(_msgSender(), supply + i);
        }
        holdedNumAry[_msgSender()] = holdedNumAry[_msgSender()] + _purchaseNum;
    }

    function whiteListSale(uint8 _purchaseNum)
        external
        payable
        onlyWhiteList
        onlyUser
        nonReentrant
    {
        require(!isPaused, "YSNFT: currently paused");
        require(
            block.timestamp >= wlSaleStartTime,
            "YSNFT: WhiteList sale is not started yet"
        );
        require(
            block.timestamp < wlSaleEndTime,
            "YSNFT: WhiteList sale is ended"
        );
        require(
            (holdedNumAry[_msgSender()] + _purchaseNum) <= wlAmountPerAddr,
            "YSNFT: Each Address can only hold 5"
        );
        uint256 supply = totalSupply();
        require(
            (supply + _purchaseNum) <= (maxSupply - airDropMaxSupply),
            "YSNFT: reached max supply"
        );
        require(
            msg.value >= (wlPrice * _purchaseNum),
            "YSNFT: price is incorrect"
        );
        for (uint8 i = 1; i <= _purchaseNum; i++) {
            _safeMint(_msgSender(), supply + i);
        }
        holdedNumAry[_msgSender()] = holdedNumAry[_msgSender()] + _purchaseNum;
    }

    function mbHolderSale(uint8 _purchaseNum)
        external
        payable
        onlyUser
        nonReentrant
    {
        require(!isPaused, "YSNFT: currently paused");
        require(
            block.timestamp >= mbSaleStartTime,
            "YSNFT: MB holder sale is not started yet"
        );
        require(
            block.timestamp < mbSaleEndTime,
            "YSNFT: MB holder sale is ended"
        );
        require(
            (holdedNumAry[_msgSender()] + _purchaseNum) <= mbAmountPerAddr,
            "YSNFT: Each Address can only hold 3"
        );
        uint256 supply = totalSupply();
        require(
            (supply + _purchaseNum) <= mbMaxSupply,
            "YSNFT: reached max supply"
        );
        require(
            msg.value >= (mbPrice * _purchaseNum),
            "YSNFT: price is incorrect"
        );
        ERC721 MetaBoom = ERC721(metaBoomAddr);
        require(
            MetaBoom.balanceOf(_msgSender()) > 0,
            "YSNFT: caller not Metaboom Holder"
        );

        for (uint8 i = 1; i <= _purchaseNum; i++) {
            _safeMint(_msgSender(), supply + i);
        }
        holdedNumAry[_msgSender()] = holdedNumAry[_msgSender()] + _purchaseNum;
    }

    function ownerMInt(address _addr, uint8 _amount) external onlyOwner {
        uint256 supply = totalSupply();
        require(
            (supply + _amount) <= (maxSupply - airDropMaxSupply),
            "YSNFT: reached max supply"
        );
        require(
            (holdedNumAry[_addr] + _amount) <= amountPerAddr,
            "YSNFT: Each Address can only hold 20"
        );

        for (uint8 i = 1; i <= _amount; i++) {
            _safeMint(_addr, supply + i);
        }
        holdedNumAry[_addr] = holdedNumAry[_addr] + _amount;
    }

    function ownerAirdropMInt(address _addr, uint8 _amount) external onlyOwner {
        require(
            (totalAirdrop + _amount) <= airDropMaxSupply,
            "YSNFT: reached max airdrop"
        );
        require(
            (holdedNumAry[_addr] + _amount) <= amountPerAddr,
            "YSNFT: Each Address can only hold 20"
        );
        uint256 supply = totalSupply();
        for (uint8 i = 1; i <= _amount; i++) {
            _safeMint(_addr, supply + i);
        }
        holdedNumAry[_addr] = holdedNumAry[_addr] + _amount;
        totalAirdrop = totalAirdrop + _amount;
    }

    modifier onlyWhiteList() {
        require(whiteList[_msgSender()], "YSNFT: caller not in WhiteList");
        _;
    }

    modifier onlyUser() {
        require(_msgSender() == tx.origin, "YSNFT: no contract mint");
        _;
    }

    function addBatchWhiteList(address[] memory _accounts) external onlyOwner {
        for (uint256 i = 0; i < _accounts.length; i++) {
            whiteList[_accounts[i]] = true;
        }
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseTokenURI = _baseURI;
    }

    function setPause(bool _isPaused) external onlyOwner returns (bool) {
        isPaused = _isPaused;
        return isPaused;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == 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 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addBatchWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropMaxSupply","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountPerAddr","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"","type":"address"}],"name":"holdedNumAry","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mbAmountPerAddr","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_purchaseNum","type":"uint8"}],"name":"mbHolderSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mbMaxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mbPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mbSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mbSaleStartTime","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":"address","name":"_addr","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"ownerAirdropMInt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"ownerMInt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_purchaseNum","type":"uint8"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAirdrop","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_purchaseNum","type":"uint8"}],"name":"whiteListSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlAmountPerAddr","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600d805460ff191690556362540a30600e556362555baf600f5563625569c0601055636256bb3f601155636256c950601255601380546001600160401b031916661400c8051408031790553480156200005c57600080fd5b5060405162003613380380620036138339810160408190526200007f91620002a0565b82826200008c33620000dd565b600180558151620000a59060029060208501906200012d565b508051620000bb9060039060208401906200012d565b50508151620000d39150600c9060208401906200012d565b505050506200036e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013b9062000331565b90600052602060002090601f0160209004810192826200015f5760008555620001aa565b82601f106200017a57805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001aa5782518255916020019190600101906200018d565b50620001b8929150620001bc565b5090565b5b80821115620001b85760008155600101620001bd565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001fb57600080fd5b81516001600160401b0380821115620002185762000218620001d3565b604051601f8301601f19908116603f01168101908282118183101715620002435762000243620001d3565b816040528381526020925086838588010111156200026057600080fd5b600091505b8382101562000284578582018301518183018401529082019062000265565b83821115620002965760008385830101525b9695505050505050565b600080600060608486031215620002b657600080fd5b83516001600160401b0380821115620002ce57600080fd5b620002dc87838801620001e9565b94506020860151915080821115620002f357600080fd5b6200030187838801620001e9565b935060408601519150808211156200031857600080fd5b506200032786828701620001e9565b9150509250925092565b600181811c908216806200034657607f821691505b602082108114156200036857634e487b7160e01b600052602260045260246000fd5b50919050565b613295806200037e6000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063b187bd26116100dc578063d547cfb711610095578063ea53dd4d1161006f578063ea53dd4d1461084f578063f2fde38b14610865578063f7727ae914610885578063fd93f919146108a557600080fd5b8063d547cfb7146107db578063d5abeb01146107f0578063e985e9c51461080657600080fd5b8063b187bd261461072b578063b88d4fde14610745578063bedb86fb14610765578063c7f8d01a14610785578063c87b56dd146107a0578063cfd05b1c146107c057600080fd5b80638462151c1161012e5780638462151c1461066f5780638da5cb5b1461069c57806395d89b41146106ba578063974bcad2146106cf578063a035b1fe146106f0578063a22cb4651461070b57600080fd5b80636352211e146105b45780636bb7b1d9146105d457806370a08231146105ea578063715018a61461060a57806372c985cb1461061f5780637be2e7891461063f57600080fd5b806338d5a590116102195780634f6ccce7116101d25780634f6ccce7146105105780634f7f73241461053057806355f804b31461054a5780635ce97dbb1461056a5780635f739ee91461058b578063629403f51461059e57600080fd5b806338d5a590146104655780633ccfd60b1461048657806342842e0e1461049b5780634481c66e146104bb57806345ea45e1146104da5780634916772c146104f057600080fd5b80631751b5541161026b5780631751b5541461039b57806318160ddd146103cd5780631bcc80ac146103e257806323b872dd146103f55780632f745c5914610415578063372c12b11461043557600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b31461034257806312892c461461036457806313fb99c114610388575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612924565b6108db565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610906565b6040516102df91906129a0565b34801561031657600080fd5b5061032a6103253660046129b3565b610998565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046129e3565b610a32565b005b34801561037057600080fd5b5061037a600e5481565b6040519081526020016102df565b610362610396366004612a1e565b610b48565b3480156103a757600080fd5b506013546103bb9062010000900460ff1681565b60405160ff90911681526020016102df565b3480156103d957600080fd5b50600a5461037a565b6103626103f0366004612a1e565b610e52565b34801561040157600080fd5b50610362610410366004612a39565b6110cf565b34801561042157600080fd5b5061037a6104303660046129e3565b611100565b34801561044157600080fd5b506102d3610450366004612a75565b60156020526000908152604090205460ff1681565b34801561047157600080fd5b506013546103bb906301000000900460ff1681565b34801561049257600080fd5b50610362611196565b3480156104a757600080fd5b506103626104b6366004612a39565b6111fd565b3480156104c757600080fd5b506013546103bb90610100900460ff1681565b3480156104e657600080fd5b5061037a60105481565b3480156104fc57600080fd5b5061036261050b366004612a90565b611218565b34801561051c57600080fd5b5061037a61052b3660046129b3565b6113cd565b34801561053c57600080fd5b506013546103bb9060ff1681565b34801561055657600080fd5b50610362610565366004612b62565b611460565b34801561057657600080fd5b506013546103bb90600160381b900460ff1681565b610362610599366004612a1e565b6114a1565b3480156105aa57600080fd5b5061037a60115481565b3480156105c057600080fd5b5061032a6105cf3660046129b3565b611815565b3480156105e057600080fd5b5061037a60125481565b3480156105f657600080fd5b5061037a610605366004612a75565b61188c565b34801561061657600080fd5b50610362611913565b34801561062b57600080fd5b5061036261063a366004612bab565b611949565b34801561064b57600080fd5b506103bb61065a366004612a75565b60146020526000908152604090205460ff1681565b34801561067b57600080fd5b5061068f61068a366004612a75565b6119db565b6040516102df9190612c58565b3480156106a857600080fd5b506000546001600160a01b031661032a565b3480156106c657600080fd5b506102fd611a9a565b3480156106db57600080fd5b506013546103bb90600160301b900460ff1681565b3480156106fc57600080fd5b5061037a66ee08251ff3800081565b34801561071757600080fd5b50610362610726366004612cac565b611aa9565b34801561073757600080fd5b50600d546102d39060ff1681565b34801561075157600080fd5b50610362610760366004612cd6565b611ab4565b34801561077157600080fd5b506102d3610780366004612d52565b611aec565b34801561079157600080fd5b5061037a66d529ae9e86000081565b3480156107ac57600080fd5b506102fd6107bb3660046129b3565b611b32565b3480156107cc57600080fd5b5061037a66753d533d96800081565b3480156107e757600080fd5b506102fd611b66565b3480156107fc57600080fd5b5061037a61068681565b34801561081257600080fd5b506102d3610821366004612d6d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085b57600080fd5b5061037a600f5481565b34801561087157600080fd5b50610362610880366004612a75565b611bf4565b34801561089157600080fd5b506103626108a0366004612a90565b611c8c565b3480156108b157600080fd5b506013546108c890640100000000900461ffff1681565b60405161ffff90911681526020016102df565b60006001600160e01b0319821663780e9d6360e01b1480610900575061090082611de8565b92915050565b60606002805461091590612d97565b80601f016020809104026020016040519081016040528092919081815260200182805461094190612d97565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610a165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a3d82611815565b9050806001600160a01b0316836001600160a01b03161415610aab5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a0d565b336001600160a01b0382161480610ac75750610ac78133610821565b610b395760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a0d565b610b438383611e38565b505050565b3360009081526015602052604090205460ff16610ba75760405162461bcd60e51b815260206004820152601e60248201527f59534e46543a2063616c6c6572206e6f7420696e2057686974654c69737400006044820152606401610a0d565b333214610bc65760405162461bcd60e51b8152600401610a0d90612dcc565b60026001541415610be95760405162461bcd60e51b8152600401610a0d90612e03565b6002600155600d5460ff1615610c115760405162461bcd60e51b8152600401610a0d90612e3a565b601054421015610c745760405162461bcd60e51b815260206004820152602860248201527f59534e46543a2057686974654c6973742073616c65206973206e6f74207374616044820152671c9d1959081e595d60c21b6064820152608401610a0d565b6011544210610cc55760405162461bcd60e51b815260206004820152601e60248201527f59534e46543a2057686974654c6973742073616c6520697320656e64656400006044820152606401610a0d565b6013543360009081526014602052604090205460ff610100909204821691610cef91849116612e87565b60ff161115610d4c5760405162461bcd60e51b815260206004820152602360248201527f59534e46543a204561636820416464726573732063616e206f6e6c7920686f6c60448201526264203560e81b6064820152608401610a0d565b6000610d57600a5490565b601354909150610d7390600160301b900460ff16610686612eac565b610d8060ff841683612ec3565b1115610d9e5760405162461bcd60e51b8152600401610a0d90612edb565b610db260ff831666d529ae9e860000612f12565b341015610dd15760405162461bcd60e51b8152600401610a0d90612f31565b60015b8260ff168160ff1611610e0a57610df8335b610df360ff841685612ec3565b611ea6565b80610e0281612f68565b915050610dd4565b5033600090815260146020526040902054610e2990839060ff16612e87565b336000908152601460205260409020805460ff191660ff92909216919091179055505060018055565b333214610e715760405162461bcd60e51b8152600401610a0d90612dcc565b60026001541415610e945760405162461bcd60e51b8152600401610a0d90612e03565b6002600155600d5460ff1615610ebc5760405162461bcd60e51b8152600401610a0d90612e3a565b601254421015610f1c5760405162461bcd60e51b815260206004820152602560248201527f59534e46543a207075626c69632073616c65206973206e6f742073746172746560448201526419081e595d60da1b6064820152608401610a0d565b60135460ff630100000090910481169082161115610f925760405162461bcd60e51b815260206004820152602d60248201527f59534e46543a2063616e206e6f74207075726368617365206d6f72652074686160448201526c6e203520656163682074696d6560981b6064820152608401610a0d565b6013543360009081526014602052604090205460ff62010000909204821691610fbd91849116612e87565b60ff16111561101f5760405162461bcd60e51b815260206004820152602860248201527f59534e46543a204561636820416464726573732063616e206f6e6c7920707572604482015267063686173652032360c41b6064820152608401610a0d565b600061102a600a5490565b60135490915061104690600160301b900460ff16610686612eac565b61105360ff841683612ec3565b11156110715760405162461bcd60e51b8152600401610a0d90612edb565b61108560ff831666ee08251ff38000612f12565b3410156110a45760405162461bcd60e51b8152600401610a0d90612f31565b60015b8260ff168160ff1611610e0a576110bd33610de6565b806110c781612f68565b9150506110a7565b6110d93382611ec0565b6110f55760405162461bcd60e51b8152600401610a0d90612f88565b610b43838383611fb7565b600061110b8361188c565b821061116d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a0d565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6000546001600160a01b031633146111c05760405162461bcd60e51b8152600401610a0d90612fd9565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156111fa573d6000803e3d6000fd5b50565b610b4383838360405180602001604052806000815250611ab4565b6000546001600160a01b031633146112425760405162461bcd60e51b8152600401610a0d90612fd9565b60135460ff600160301b8204811691611264918491600160381b900416612e87565b60ff1611156112b55760405162461bcd60e51b815260206004820152601a60248201527f59534e46543a2072656163686564206d61782061697264726f700000000000006044820152606401610a0d565b6013546001600160a01b03831660009081526014602052604090205460ff620100009092048216916112e991849116612e87565b60ff16111561130a5760405162461bcd60e51b8152600401610a0d9061300e565b6000611315600a5490565b905060015b8260ff168160ff161161134a5761133884610df360ff841685612ec3565b8061134281612f68565b91505061131a565b506001600160a01b03831660009081526014602052604090205461137290839060ff16612e87565b6001600160a01b0384166000908152601460205260409020805460ff191660ff9283161790556013546113ae918491600160381b900416612e87565b601360076101000a81548160ff021916908360ff160217905550505050565b60006113d8600a5490565b821061143b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a0d565b600a828154811061144e5761144e613052565b90600052602060002001549050919050565b6000546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610a0d90612fd9565b805161149d90600c906020840190612875565b5050565b3332146114c05760405162461bcd60e51b8152600401610a0d90612dcc565b600260015414156114e35760405162461bcd60e51b8152600401610a0d90612e03565b6002600155600d5460ff161561150b5760405162461bcd60e51b8152600401610a0d90612e3a565b600e5442101561156e5760405162461bcd60e51b815260206004820152602860248201527f59534e46543a204d4220686f6c6465722073616c65206973206e6f74207374616044820152671c9d1959081e595d60c21b6064820152608401610a0d565b600f5442106115bf5760405162461bcd60e51b815260206004820152601e60248201527f59534e46543a204d4220686f6c6465722073616c6520697320656e64656400006044820152606401610a0d565b6013543360009081526014602052604090205460ff918216916115e491849116612e87565b60ff1611156116415760405162461bcd60e51b815260206004820152602360248201527f59534e46543a204561636820416464726573732063616e206f6e6c7920686f6c60448201526264203360e81b6064820152608401610a0d565b600061164c600a5490565b601354909150640100000000900461ffff1661166b60ff841683612ec3565b11156116895760405162461bcd60e51b8152600401610a0d90612edb565b61169d60ff831666753d533d968000612f12565b3410156116bc5760405162461bcd60e51b8152600401610a0d90612f31565b734c22d3b875437d43402f5b81ae4f61b8f764e1b16000816370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561171e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117429190613068565b116117995760405162461bcd60e51b815260206004820152602160248201527f59534e46543a2063616c6c6572206e6f74204d657461626f6f6d20486f6c64656044820152603960f91b6064820152608401610a0d565b60015b8360ff168160ff16116117cc576117ba33610df360ff841686612ec3565b806117c481612f68565b91505061179c565b50336000908152601460205260409020546117eb90849060ff16612e87565b336000908152601460205260409020805460ff191660ff9290921691909117905550506001805550565b6000818152600460205260408120546001600160a01b0316806109005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a0d565b60006001600160a01b0382166118f75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a0d565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b0316331461193d5760405162461bcd60e51b8152600401610a0d90612fd9565b611947600061215e565b565b6000546001600160a01b031633146119735760405162461bcd60e51b8152600401610a0d90612fd9565b60005b815181101561149d5760016015600084848151811061199757611997613052565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806119d381613081565b915050611976565b606060006119e88361188c565b905080611a095760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611a2457611a24612ac3565b604051908082528060200260200182016040528015611a4d578160200160208202803683370190505b50905060005b82811015611a0157611a658582611100565b828281518110611a7757611a77613052565b602090810291909101015280611a8c81613081565b915050611a53565b50919050565b60606003805461091590612d97565b61149d3383836121ae565b611abe3383611ec0565b611ada5760405162461bcd60e51b8152600401610a0d90612f88565b611ae68484848461227d565b50505050565b600080546001600160a01b03163314611b175760405162461bcd60e51b8152600401610a0d90612fd9565b50600d805460ff191682151590811790915560ff165b919050565b6060600c611b3f836122b0565b604051602001611b509291906130b8565b6040516020818303038152906040529050919050565b600c8054611b7390612d97565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9f90612d97565b8015611bec5780601f10611bc157610100808354040283529160200191611bec565b820191906000526020600020905b815481529060010190602001808311611bcf57829003601f168201915b505050505081565b6000546001600160a01b03163314611c1e5760405162461bcd60e51b8152600401610a0d90612fd9565b6001600160a01b038116611c835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0d565b6111fa8161215e565b6000546001600160a01b03163314611cb65760405162461bcd60e51b8152600401610a0d90612fd9565b6000611cc1600a5490565b601354909150611cdd90600160301b900460ff16610686612eac565b611cea60ff841683612ec3565b1115611d085760405162461bcd60e51b8152600401610a0d90612edb565b6013546001600160a01b03841660009081526014602052604090205460ff62010000909204821691611d3c91859116612e87565b60ff161115611d5d5760405162461bcd60e51b8152600401610a0d9061300e565b60015b8260ff168160ff1611611d9057611d7e84610df360ff841685612ec3565b80611d8881612f68565b915050611d60565b506001600160a01b038316600090815260146020526040902054611db890839060ff16612e87565b6001600160a01b03939093166000908152601460205260409020805460ff191660ff909416939093179092555050565b60006001600160e01b031982166380ac58cd60e01b1480611e1957506001600160e01b03198216635b5e139f60e01b145b8061090057506301ffc9a760e01b6001600160e01b0319831614610900565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e6d82611815565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61149d8282604051806020016040528060008152506123ae565b6000818152600460205260408120546001600160a01b0316611f395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a0d565b6000611f4483611815565b9050806001600160a01b0316846001600160a01b03161480611f8b57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b80611faf5750836001600160a01b0316611fa484610998565b6001600160a01b0316145b949350505050565b826001600160a01b0316611fca82611815565b6001600160a01b03161461202e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a0d565b6001600160a01b0382166120905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0d565b61209b8383836123e1565b6120a6600082611e38565b6001600160a01b03831660009081526005602052604081208054600192906120cf908490612eac565b90915550506001600160a01b03821660009081526005602052604081208054600192906120fd908490612ec3565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156122105760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a0d565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612288848484611fb7565b61229484848484612499565b611ae65760405162461bcd60e51b8152600401610a0d9061315f565b6060816122d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122fe57806122e881613081565b91506122f79050600a836131c7565b91506122d8565b60008167ffffffffffffffff81111561231957612319612ac3565b6040519080825280601f01601f191660200182016040528015612343576020820181803683370190505b5090505b8415611faf57612358600183612eac565b9150612365600a866131db565b612370906030612ec3565b60f81b81838151811061238557612385613052565b60200101906001600160f81b031916908160001a9053506123a7600a866131c7565b9450612347565b6123b88383612597565b6123c56000848484612499565b610b435760405162461bcd60e51b8152600401610a0d9061315f565b6001600160a01b03831661243c5761243781600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b61245f565b816001600160a01b0316836001600160a01b03161461245f5761245f83826126e5565b6001600160a01b03821661247657610b4381612782565b826001600160a01b0316826001600160a01b031614610b4357610b438282612831565b60006001600160a01b0384163b1561258c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124dd9033908990889088906004016131ef565b6020604051808303816000875af1925050508015612518575060408051601f3d908101601f191682019092526125159181019061322c565b60015b612572573d808015612546576040519150601f19603f3d011682016040523d82523d6000602084013e61254b565b606091505b50805161256a5760405162461bcd60e51b8152600401610a0d9061315f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611faf565b506001949350505050565b6001600160a01b0382166125ed5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a0d565b6000818152600460205260409020546001600160a01b0316156126525760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a0d565b61265e600083836123e1565b6001600160a01b0382166000908152600560205260408120805460019290612687908490612ec3565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126f28461188c565b6126fc9190612eac565b60008381526009602052604090205490915080821461274f576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061279490600190612eac565b6000838152600b6020526040812054600a80549394509092849081106127bc576127bc613052565b9060005260206000200154905080600a83815481106127dd576127dd613052565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061281557612815613249565b6001900381819060005260206000200160009055905550505050565b600061283c8361188c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461288190612d97565b90600052602060002090601f0160209004810192826128a357600085556128e9565b82601f106128bc57805160ff19168380011785556128e9565b828001600101855582156128e9579182015b828111156128e95782518255916020019190600101906128ce565b506128f59291506128f9565b5090565b5b808211156128f557600081556001016128fa565b6001600160e01b0319811681146111fa57600080fd5b60006020828403121561293657600080fd5b81356129418161290e565b9392505050565b60005b8381101561296357818101518382015260200161294b565b83811115611ae65750506000910152565b6000815180845261298c816020860160208601612948565b601f01601f19169290920160200192915050565b6020815260006129416020830184612974565b6000602082840312156129c557600080fd5b5035919050565b80356001600160a01b0381168114611b2d57600080fd5b600080604083850312156129f657600080fd5b6129ff836129cc565b946020939093013593505050565b803560ff81168114611b2d57600080fd5b600060208284031215612a3057600080fd5b61294182612a0d565b600080600060608486031215612a4e57600080fd5b612a57846129cc565b9250612a65602085016129cc565b9150604084013590509250925092565b600060208284031215612a8757600080fd5b612941826129cc565b60008060408385031215612aa357600080fd5b612aac836129cc565b9150612aba60208401612a0d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612b0257612b02612ac3565b604052919050565b600067ffffffffffffffff831115612b2457612b24612ac3565b612b37601f8401601f1916602001612ad9565b9050828152838383011115612b4b57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612b7457600080fd5b813567ffffffffffffffff811115612b8b57600080fd5b8201601f81018413612b9c57600080fd5b611faf84823560208401612b0a565b60006020808385031215612bbe57600080fd5b823567ffffffffffffffff80821115612bd657600080fd5b818501915085601f830112612bea57600080fd5b813581811115612bfc57612bfc612ac3565b8060051b9150612c0d848301612ad9565b8181529183018401918481019088841115612c2757600080fd5b938501935b83851015612c4c57612c3d856129cc565b82529385019390850190612c2c565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c9057835183529284019291840191600101612c74565b50909695505050505050565b80358015158114611b2d57600080fd5b60008060408385031215612cbf57600080fd5b612cc8836129cc565b9150612aba60208401612c9c565b60008060008060808587031215612cec57600080fd5b612cf5856129cc565b9350612d03602086016129cc565b925060408501359150606085013567ffffffffffffffff811115612d2657600080fd5b8501601f81018713612d3757600080fd5b612d4687823560208401612b0a565b91505092959194509250565b600060208284031215612d6457600080fd5b61294182612c9c565b60008060408385031215612d8057600080fd5b612d89836129cc565b9150612aba602084016129cc565b600181811c90821680612dab57607f821691505b60208210811415611a9457634e487b7160e01b600052602260045260246000fd5b60208082526017908201527f59534e46543a206e6f20636f6e7472616374206d696e74000000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f59534e46543a2063757272656e746c7920706175736564000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168060ff03821115612ea457612ea4612e71565b019392505050565b600082821015612ebe57612ebe612e71565b500390565b60008219821115612ed657612ed6612e71565b500190565b60208082526019908201527f59534e46543a2072656163686564206d617820737570706c7900000000000000604082015260600190565b6000816000190483118215151615612f2c57612f2c612e71565b500290565b60208082526019908201527f59534e46543a20707269636520697320696e636f727265637400000000000000604082015260600190565b600060ff821660ff811415612f7f57612f7f612e71565b60010192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f59534e46543a204561636820416464726573732063616e206f6e6c7920686f6c6040820152630642032360e41b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561307a57600080fd5b5051919050565b600060001982141561309557613095612e71565b5060010190565b600081516130ae818560208601612948565b9290920192915050565b600080845481600182811c9150808316806130d457607f831692505b60208084108214156130f457634e487b7160e01b86526022600452602486fd5b818015613108576001811461311957613146565b60ff19861689528489019650613146565b60008b81526020902060005b8681101561313e5781548b820152908501908301613125565b505084890196505b505050505050613156818561309c565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826131d6576131d66131b1565b500490565b6000826131ea576131ea6131b1565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061322290830184612974565b9695505050505050565b60006020828403121561323e57600080fd5b81516129418161290e565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220efa50dc06eb04bf4874ad59bb5ff6a6af4594b4a4a60c3fe9a5a0412e9fb945c64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000006595320373231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6170692e66616e73692e6d652f4e46542f6c6567656e646172792f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e11610175578063b187bd26116100dc578063d547cfb711610095578063ea53dd4d1161006f578063ea53dd4d1461084f578063f2fde38b14610865578063f7727ae914610885578063fd93f919146108a557600080fd5b8063d547cfb7146107db578063d5abeb01146107f0578063e985e9c51461080657600080fd5b8063b187bd261461072b578063b88d4fde14610745578063bedb86fb14610765578063c7f8d01a14610785578063c87b56dd146107a0578063cfd05b1c146107c057600080fd5b80638462151c1161012e5780638462151c1461066f5780638da5cb5b1461069c57806395d89b41146106ba578063974bcad2146106cf578063a035b1fe146106f0578063a22cb4651461070b57600080fd5b80636352211e146105b45780636bb7b1d9146105d457806370a08231146105ea578063715018a61461060a57806372c985cb1461061f5780637be2e7891461063f57600080fd5b806338d5a590116102195780634f6ccce7116101d25780634f6ccce7146105105780634f7f73241461053057806355f804b31461054a5780635ce97dbb1461056a5780635f739ee91461058b578063629403f51461059e57600080fd5b806338d5a590146104655780633ccfd60b1461048657806342842e0e1461049b5780634481c66e146104bb57806345ea45e1146104da5780634916772c146104f057600080fd5b80631751b5541161026b5780631751b5541461039b57806318160ddd146103cd5780631bcc80ac146103e257806323b872dd146103f55780632f745c5914610415578063372c12b11461043557600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b31461034257806312892c461461036457806313fb99c114610388575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612924565b6108db565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610906565b6040516102df91906129a0565b34801561031657600080fd5b5061032a6103253660046129b3565b610998565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046129e3565b610a32565b005b34801561037057600080fd5b5061037a600e5481565b6040519081526020016102df565b610362610396366004612a1e565b610b48565b3480156103a757600080fd5b506013546103bb9062010000900460ff1681565b60405160ff90911681526020016102df565b3480156103d957600080fd5b50600a5461037a565b6103626103f0366004612a1e565b610e52565b34801561040157600080fd5b50610362610410366004612a39565b6110cf565b34801561042157600080fd5b5061037a6104303660046129e3565b611100565b34801561044157600080fd5b506102d3610450366004612a75565b60156020526000908152604090205460ff1681565b34801561047157600080fd5b506013546103bb906301000000900460ff1681565b34801561049257600080fd5b50610362611196565b3480156104a757600080fd5b506103626104b6366004612a39565b6111fd565b3480156104c757600080fd5b506013546103bb90610100900460ff1681565b3480156104e657600080fd5b5061037a60105481565b3480156104fc57600080fd5b5061036261050b366004612a90565b611218565b34801561051c57600080fd5b5061037a61052b3660046129b3565b6113cd565b34801561053c57600080fd5b506013546103bb9060ff1681565b34801561055657600080fd5b50610362610565366004612b62565b611460565b34801561057657600080fd5b506013546103bb90600160381b900460ff1681565b610362610599366004612a1e565b6114a1565b3480156105aa57600080fd5b5061037a60115481565b3480156105c057600080fd5b5061032a6105cf3660046129b3565b611815565b3480156105e057600080fd5b5061037a60125481565b3480156105f657600080fd5b5061037a610605366004612a75565b61188c565b34801561061657600080fd5b50610362611913565b34801561062b57600080fd5b5061036261063a366004612bab565b611949565b34801561064b57600080fd5b506103bb61065a366004612a75565b60146020526000908152604090205460ff1681565b34801561067b57600080fd5b5061068f61068a366004612a75565b6119db565b6040516102df9190612c58565b3480156106a857600080fd5b506000546001600160a01b031661032a565b3480156106c657600080fd5b506102fd611a9a565b3480156106db57600080fd5b506013546103bb90600160301b900460ff1681565b3480156106fc57600080fd5b5061037a66ee08251ff3800081565b34801561071757600080fd5b50610362610726366004612cac565b611aa9565b34801561073757600080fd5b50600d546102d39060ff1681565b34801561075157600080fd5b50610362610760366004612cd6565b611ab4565b34801561077157600080fd5b506102d3610780366004612d52565b611aec565b34801561079157600080fd5b5061037a66d529ae9e86000081565b3480156107ac57600080fd5b506102fd6107bb3660046129b3565b611b32565b3480156107cc57600080fd5b5061037a66753d533d96800081565b3480156107e757600080fd5b506102fd611b66565b3480156107fc57600080fd5b5061037a61068681565b34801561081257600080fd5b506102d3610821366004612d6d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085b57600080fd5b5061037a600f5481565b34801561087157600080fd5b50610362610880366004612a75565b611bf4565b34801561089157600080fd5b506103626108a0366004612a90565b611c8c565b3480156108b157600080fd5b506013546108c890640100000000900461ffff1681565b60405161ffff90911681526020016102df565b60006001600160e01b0319821663780e9d6360e01b1480610900575061090082611de8565b92915050565b60606002805461091590612d97565b80601f016020809104026020016040519081016040528092919081815260200182805461094190612d97565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610a165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a3d82611815565b9050806001600160a01b0316836001600160a01b03161415610aab5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a0d565b336001600160a01b0382161480610ac75750610ac78133610821565b610b395760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a0d565b610b438383611e38565b505050565b3360009081526015602052604090205460ff16610ba75760405162461bcd60e51b815260206004820152601e60248201527f59534e46543a2063616c6c6572206e6f7420696e2057686974654c69737400006044820152606401610a0d565b333214610bc65760405162461bcd60e51b8152600401610a0d90612dcc565b60026001541415610be95760405162461bcd60e51b8152600401610a0d90612e03565b6002600155600d5460ff1615610c115760405162461bcd60e51b8152600401610a0d90612e3a565b601054421015610c745760405162461bcd60e51b815260206004820152602860248201527f59534e46543a2057686974654c6973742073616c65206973206e6f74207374616044820152671c9d1959081e595d60c21b6064820152608401610a0d565b6011544210610cc55760405162461bcd60e51b815260206004820152601e60248201527f59534e46543a2057686974654c6973742073616c6520697320656e64656400006044820152606401610a0d565b6013543360009081526014602052604090205460ff610100909204821691610cef91849116612e87565b60ff161115610d4c5760405162461bcd60e51b815260206004820152602360248201527f59534e46543a204561636820416464726573732063616e206f6e6c7920686f6c60448201526264203560e81b6064820152608401610a0d565b6000610d57600a5490565b601354909150610d7390600160301b900460ff16610686612eac565b610d8060ff841683612ec3565b1115610d9e5760405162461bcd60e51b8152600401610a0d90612edb565b610db260ff831666d529ae9e860000612f12565b341015610dd15760405162461bcd60e51b8152600401610a0d90612f31565b60015b8260ff168160ff1611610e0a57610df8335b610df360ff841685612ec3565b611ea6565b80610e0281612f68565b915050610dd4565b5033600090815260146020526040902054610e2990839060ff16612e87565b336000908152601460205260409020805460ff191660ff92909216919091179055505060018055565b333214610e715760405162461bcd60e51b8152600401610a0d90612dcc565b60026001541415610e945760405162461bcd60e51b8152600401610a0d90612e03565b6002600155600d5460ff1615610ebc5760405162461bcd60e51b8152600401610a0d90612e3a565b601254421015610f1c5760405162461bcd60e51b815260206004820152602560248201527f59534e46543a207075626c69632073616c65206973206e6f742073746172746560448201526419081e595d60da1b6064820152608401610a0d565b60135460ff630100000090910481169082161115610f925760405162461bcd60e51b815260206004820152602d60248201527f59534e46543a2063616e206e6f74207075726368617365206d6f72652074686160448201526c6e203520656163682074696d6560981b6064820152608401610a0d565b6013543360009081526014602052604090205460ff62010000909204821691610fbd91849116612e87565b60ff16111561101f5760405162461bcd60e51b815260206004820152602860248201527f59534e46543a204561636820416464726573732063616e206f6e6c7920707572604482015267063686173652032360c41b6064820152608401610a0d565b600061102a600a5490565b60135490915061104690600160301b900460ff16610686612eac565b61105360ff841683612ec3565b11156110715760405162461bcd60e51b8152600401610a0d90612edb565b61108560ff831666ee08251ff38000612f12565b3410156110a45760405162461bcd60e51b8152600401610a0d90612f31565b60015b8260ff168160ff1611610e0a576110bd33610de6565b806110c781612f68565b9150506110a7565b6110d93382611ec0565b6110f55760405162461bcd60e51b8152600401610a0d90612f88565b610b43838383611fb7565b600061110b8361188c565b821061116d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a0d565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6000546001600160a01b031633146111c05760405162461bcd60e51b8152600401610a0d90612fd9565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156111fa573d6000803e3d6000fd5b50565b610b4383838360405180602001604052806000815250611ab4565b6000546001600160a01b031633146112425760405162461bcd60e51b8152600401610a0d90612fd9565b60135460ff600160301b8204811691611264918491600160381b900416612e87565b60ff1611156112b55760405162461bcd60e51b815260206004820152601a60248201527f59534e46543a2072656163686564206d61782061697264726f700000000000006044820152606401610a0d565b6013546001600160a01b03831660009081526014602052604090205460ff620100009092048216916112e991849116612e87565b60ff16111561130a5760405162461bcd60e51b8152600401610a0d9061300e565b6000611315600a5490565b905060015b8260ff168160ff161161134a5761133884610df360ff841685612ec3565b8061134281612f68565b91505061131a565b506001600160a01b03831660009081526014602052604090205461137290839060ff16612e87565b6001600160a01b0384166000908152601460205260409020805460ff191660ff9283161790556013546113ae918491600160381b900416612e87565b601360076101000a81548160ff021916908360ff160217905550505050565b60006113d8600a5490565b821061143b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a0d565b600a828154811061144e5761144e613052565b90600052602060002001549050919050565b6000546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610a0d90612fd9565b805161149d90600c906020840190612875565b5050565b3332146114c05760405162461bcd60e51b8152600401610a0d90612dcc565b600260015414156114e35760405162461bcd60e51b8152600401610a0d90612e03565b6002600155600d5460ff161561150b5760405162461bcd60e51b8152600401610a0d90612e3a565b600e5442101561156e5760405162461bcd60e51b815260206004820152602860248201527f59534e46543a204d4220686f6c6465722073616c65206973206e6f74207374616044820152671c9d1959081e595d60c21b6064820152608401610a0d565b600f5442106115bf5760405162461bcd60e51b815260206004820152601e60248201527f59534e46543a204d4220686f6c6465722073616c6520697320656e64656400006044820152606401610a0d565b6013543360009081526014602052604090205460ff918216916115e491849116612e87565b60ff1611156116415760405162461bcd60e51b815260206004820152602360248201527f59534e46543a204561636820416464726573732063616e206f6e6c7920686f6c60448201526264203360e81b6064820152608401610a0d565b600061164c600a5490565b601354909150640100000000900461ffff1661166b60ff841683612ec3565b11156116895760405162461bcd60e51b8152600401610a0d90612edb565b61169d60ff831666753d533d968000612f12565b3410156116bc5760405162461bcd60e51b8152600401610a0d90612f31565b734c22d3b875437d43402f5b81ae4f61b8f764e1b16000816370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561171e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117429190613068565b116117995760405162461bcd60e51b815260206004820152602160248201527f59534e46543a2063616c6c6572206e6f74204d657461626f6f6d20486f6c64656044820152603960f91b6064820152608401610a0d565b60015b8360ff168160ff16116117cc576117ba33610df360ff841686612ec3565b806117c481612f68565b91505061179c565b50336000908152601460205260409020546117eb90849060ff16612e87565b336000908152601460205260409020805460ff191660ff9290921691909117905550506001805550565b6000818152600460205260408120546001600160a01b0316806109005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a0d565b60006001600160a01b0382166118f75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a0d565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b0316331461193d5760405162461bcd60e51b8152600401610a0d90612fd9565b611947600061215e565b565b6000546001600160a01b031633146119735760405162461bcd60e51b8152600401610a0d90612fd9565b60005b815181101561149d5760016015600084848151811061199757611997613052565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806119d381613081565b915050611976565b606060006119e88361188c565b905080611a095760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611a2457611a24612ac3565b604051908082528060200260200182016040528015611a4d578160200160208202803683370190505b50905060005b82811015611a0157611a658582611100565b828281518110611a7757611a77613052565b602090810291909101015280611a8c81613081565b915050611a53565b50919050565b60606003805461091590612d97565b61149d3383836121ae565b611abe3383611ec0565b611ada5760405162461bcd60e51b8152600401610a0d90612f88565b611ae68484848461227d565b50505050565b600080546001600160a01b03163314611b175760405162461bcd60e51b8152600401610a0d90612fd9565b50600d805460ff191682151590811790915560ff165b919050565b6060600c611b3f836122b0565b604051602001611b509291906130b8565b6040516020818303038152906040529050919050565b600c8054611b7390612d97565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9f90612d97565b8015611bec5780601f10611bc157610100808354040283529160200191611bec565b820191906000526020600020905b815481529060010190602001808311611bcf57829003601f168201915b505050505081565b6000546001600160a01b03163314611c1e5760405162461bcd60e51b8152600401610a0d90612fd9565b6001600160a01b038116611c835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0d565b6111fa8161215e565b6000546001600160a01b03163314611cb65760405162461bcd60e51b8152600401610a0d90612fd9565b6000611cc1600a5490565b601354909150611cdd90600160301b900460ff16610686612eac565b611cea60ff841683612ec3565b1115611d085760405162461bcd60e51b8152600401610a0d90612edb565b6013546001600160a01b03841660009081526014602052604090205460ff62010000909204821691611d3c91859116612e87565b60ff161115611d5d5760405162461bcd60e51b8152600401610a0d9061300e565b60015b8260ff168160ff1611611d9057611d7e84610df360ff841685612ec3565b80611d8881612f68565b915050611d60565b506001600160a01b038316600090815260146020526040902054611db890839060ff16612e87565b6001600160a01b03939093166000908152601460205260409020805460ff191660ff909416939093179092555050565b60006001600160e01b031982166380ac58cd60e01b1480611e1957506001600160e01b03198216635b5e139f60e01b145b8061090057506301ffc9a760e01b6001600160e01b0319831614610900565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e6d82611815565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61149d8282604051806020016040528060008152506123ae565b6000818152600460205260408120546001600160a01b0316611f395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a0d565b6000611f4483611815565b9050806001600160a01b0316846001600160a01b03161480611f8b57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b80611faf5750836001600160a01b0316611fa484610998565b6001600160a01b0316145b949350505050565b826001600160a01b0316611fca82611815565b6001600160a01b03161461202e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a0d565b6001600160a01b0382166120905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0d565b61209b8383836123e1565b6120a6600082611e38565b6001600160a01b03831660009081526005602052604081208054600192906120cf908490612eac565b90915550506001600160a01b03821660009081526005602052604081208054600192906120fd908490612ec3565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156122105760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a0d565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612288848484611fb7565b61229484848484612499565b611ae65760405162461bcd60e51b8152600401610a0d9061315f565b6060816122d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122fe57806122e881613081565b91506122f79050600a836131c7565b91506122d8565b60008167ffffffffffffffff81111561231957612319612ac3565b6040519080825280601f01601f191660200182016040528015612343576020820181803683370190505b5090505b8415611faf57612358600183612eac565b9150612365600a866131db565b612370906030612ec3565b60f81b81838151811061238557612385613052565b60200101906001600160f81b031916908160001a9053506123a7600a866131c7565b9450612347565b6123b88383612597565b6123c56000848484612499565b610b435760405162461bcd60e51b8152600401610a0d9061315f565b6001600160a01b03831661243c5761243781600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b61245f565b816001600160a01b0316836001600160a01b03161461245f5761245f83826126e5565b6001600160a01b03821661247657610b4381612782565b826001600160a01b0316826001600160a01b031614610b4357610b438282612831565b60006001600160a01b0384163b1561258c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124dd9033908990889088906004016131ef565b6020604051808303816000875af1925050508015612518575060408051601f3d908101601f191682019092526125159181019061322c565b60015b612572573d808015612546576040519150601f19603f3d011682016040523d82523d6000602084013e61254b565b606091505b50805161256a5760405162461bcd60e51b8152600401610a0d9061315f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611faf565b506001949350505050565b6001600160a01b0382166125ed5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a0d565b6000818152600460205260409020546001600160a01b0316156126525760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a0d565b61265e600083836123e1565b6001600160a01b0382166000908152600560205260408120805460019290612687908490612ec3565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126f28461188c565b6126fc9190612eac565b60008381526009602052604090205490915080821461274f576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061279490600190612eac565b6000838152600b6020526040812054600a80549394509092849081106127bc576127bc613052565b9060005260206000200154905080600a83815481106127dd576127dd613052565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061281557612815613249565b6001900381819060005260206000200160009055905550505050565b600061283c8361188c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461288190612d97565b90600052602060002090601f0160209004810192826128a357600085556128e9565b82601f106128bc57805160ff19168380011785556128e9565b828001600101855582156128e9579182015b828111156128e95782518255916020019190600101906128ce565b506128f59291506128f9565b5090565b5b808211156128f557600081556001016128fa565b6001600160e01b0319811681146111fa57600080fd5b60006020828403121561293657600080fd5b81356129418161290e565b9392505050565b60005b8381101561296357818101518382015260200161294b565b83811115611ae65750506000910152565b6000815180845261298c816020860160208601612948565b601f01601f19169290920160200192915050565b6020815260006129416020830184612974565b6000602082840312156129c557600080fd5b5035919050565b80356001600160a01b0381168114611b2d57600080fd5b600080604083850312156129f657600080fd5b6129ff836129cc565b946020939093013593505050565b803560ff81168114611b2d57600080fd5b600060208284031215612a3057600080fd5b61294182612a0d565b600080600060608486031215612a4e57600080fd5b612a57846129cc565b9250612a65602085016129cc565b9150604084013590509250925092565b600060208284031215612a8757600080fd5b612941826129cc565b60008060408385031215612aa357600080fd5b612aac836129cc565b9150612aba60208401612a0d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612b0257612b02612ac3565b604052919050565b600067ffffffffffffffff831115612b2457612b24612ac3565b612b37601f8401601f1916602001612ad9565b9050828152838383011115612b4b57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612b7457600080fd5b813567ffffffffffffffff811115612b8b57600080fd5b8201601f81018413612b9c57600080fd5b611faf84823560208401612b0a565b60006020808385031215612bbe57600080fd5b823567ffffffffffffffff80821115612bd657600080fd5b818501915085601f830112612bea57600080fd5b813581811115612bfc57612bfc612ac3565b8060051b9150612c0d848301612ad9565b8181529183018401918481019088841115612c2757600080fd5b938501935b83851015612c4c57612c3d856129cc565b82529385019390850190612c2c565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c9057835183529284019291840191600101612c74565b50909695505050505050565b80358015158114611b2d57600080fd5b60008060408385031215612cbf57600080fd5b612cc8836129cc565b9150612aba60208401612c9c565b60008060008060808587031215612cec57600080fd5b612cf5856129cc565b9350612d03602086016129cc565b925060408501359150606085013567ffffffffffffffff811115612d2657600080fd5b8501601f81018713612d3757600080fd5b612d4687823560208401612b0a565b91505092959194509250565b600060208284031215612d6457600080fd5b61294182612c9c565b60008060408385031215612d8057600080fd5b612d89836129cc565b9150612aba602084016129cc565b600181811c90821680612dab57607f821691505b60208210811415611a9457634e487b7160e01b600052602260045260246000fd5b60208082526017908201527f59534e46543a206e6f20636f6e7472616374206d696e74000000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526017908201527f59534e46543a2063757272656e746c7920706175736564000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168060ff03821115612ea457612ea4612e71565b019392505050565b600082821015612ebe57612ebe612e71565b500390565b60008219821115612ed657612ed6612e71565b500190565b60208082526019908201527f59534e46543a2072656163686564206d617820737570706c7900000000000000604082015260600190565b6000816000190483118215151615612f2c57612f2c612e71565b500290565b60208082526019908201527f59534e46543a20707269636520697320696e636f727265637400000000000000604082015260600190565b600060ff821660ff811415612f7f57612f7f612e71565b60010192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f59534e46543a204561636820416464726573732063616e206f6e6c7920686f6c6040820152630642032360e41b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561307a57600080fd5b5051919050565b600060001982141561309557613095612e71565b5060010190565b600081516130ae818560208601612948565b9290920192915050565b600080845481600182811c9150808316806130d457607f831692505b60208084108214156130f457634e487b7160e01b86526022600452602486fd5b818015613108576001811461311957613146565b60ff19861689528489019650613146565b60008b81526020902060005b8681101561313e5781548b820152908501908301613125565b505084890196505b505050505050613156818561309c565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826131d6576131d66131b1565b500490565b6000826131ea576131ea6131b1565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061322290830184612974565b9695505050505050565b60006020828403121561323e57600080fd5b81516129418161290e565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220efa50dc06eb04bf4874ad59bb5ff6a6af4594b4a4a60c3fe9a5a0412e9fb945c64736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000006595320373231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025953000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6170692e66616e73692e6d652f4e46542f6c6567656e646172792f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): YS 721
Arg [1] : _symbol (string): YS
Arg [2] : _uri (string): https://api.fansi.me/NFT/legendary/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 5953203732310000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5953000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [8] : 68747470733a2f2f6170692e66616e73692e6d652f4e46542f6c6567656e6461
Arg [9] : 72792f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

170:7341:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989:290:4;;;;;;;;;;-1:-1:-1;989:290:4;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;989:290:4;;;;;;;;2623:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4257:295::-;;;;;;;;;;-1:-1:-1;4257:295:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:14;;;1696:51;;1684:2;1669:18;4257:295:3;1550:203:14;3795:401:3;;;;;;;;;;-1:-1:-1;3795:401:3;;;;;:::i;:::-;;:::i;:::-;;613:43:13;;;;;;;;;;;;;;;;;;;2341:25:14;;;2329:2;2314:18;613:43:13;2195:177:14;2480:1094:13;;;;;;:::i;:::-;;:::i;937:31::-;;;;;;;;;;-1:-1:-1;937:31:13;;;;;;;;;;;;;;2897:4:14;2885:17;;;2867:36;;2855:2;2840:18;937:31:13;2725:184:14;1760:111:4;;;;;;;;;;-1:-1:-1;1847:10:4;:17;1760:111;;1391:1083:13;;;;;;:::i;:::-;;:::i;5134:364:3:-;;;;;;;;;;-1:-1:-1;5134:364:3;;;;;:::i;:::-;;:::i;1358:331:4:-;;;;;;;;;;-1:-1:-1;1358:331:4;;;;;:::i;:::-;;:::i;1172:41:13:-;;;;;;;;;;-1:-1:-1;1172:41:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;974:28;;;;;;;;;;-1:-1:-1;974:28:13;;;;;;;;;;;6656:104;;;;;;;;;;;;;:::i;5564:179:3:-;;;;;;;;;;-1:-1:-1;5564:179:3;;;;;:::i;:::-;;:::i;899:32:13:-;;;;;;;;;;-1:-1:-1;899:32:13;;;;;;;;;;;710:43;;;;;;;;;;;;;;;;5370:597;;;;;;;;;;-1:-1:-1;5370:597:13;;;;;:::i;:::-;;:::i;1943:308:4:-;;;;;;;;;;-1:-1:-1;1943:308:4;;;;;:::i;:::-;;:::i;861:32:13:-;;;;;;;;;;-1:-1:-1;861:32:13;;;;;;;;6411:103;;;;;;;;;;-1:-1:-1;6411:103:13;;;;;:::i;:::-;;:::i;1085:29::-;;;;;;;;;;-1:-1:-1;1085:29:13;;;;-1:-1:-1;;;1085:29:13;;;;;;3580:1227;;;;;;:::i;:::-;;:::i;759:41::-;;;;;;;;;;;;;;;;2248:313:3;;;;;;;;;;-1:-1:-1;2248:313:3;;;;;:::i;:::-;;:::i;807:47:13:-;;;;;;;;;;;;;;;;1908:283:3;;;;;;;;;;-1:-1:-1;1908:283:3;;;;;:::i;:::-;;:::i;1683:101:10:-;;;;;;;;;;;;;:::i;6213:192:13:-;;;;;;;;;;-1:-1:-1;6213:192:13;;;;;:::i;:::-;;:::i;1121:45::-;;;;;;;;;;-1:-1:-1;1121:45:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;6766:518;;;;;;;;;;-1:-1:-1;6766:518:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1051:85:10:-;;;;;;;;;;-1:-1:-1;1097:7:10;1123:6;-1:-1:-1;;;;;1123:6:10;1051:85;;2785:102:3;;;;;;;;;;;;;:::i;1045:34:13:-;;;;;;;;;;-1:-1:-1;1045:34:13;;;;-1:-1:-1;;;1045:34:13;;;;;;382:43;;;;;;;;;;;;414:11;382:43;;4619:181:3;;;;;;;;;;-1:-1:-1;4619:181:3;;;;;:::i;:::-;;:::i;301:28:13:-;;;;;;;;;;-1:-1:-1;301:28:13;;;;;;;;5809:354:3;;;;;;;;;;-1:-1:-1;5809:354:3;;;;;:::i;:::-;;:::i;6520:130:13:-;;;;;;;;;;-1:-1:-1;6520:130:13;;;;;:::i;:::-;;:::i;431:44::-;;;;;;;;;;;;465:10;431:44;;7290:219;;;;;;;;;;-1:-1:-1;7290:219:13;;;;;:::i;:::-;;:::i;481:45::-;;;;;;;;;;;;515:11;481:45;;269:26;;;;;;;;;;;;;:::i;336:40::-;;;;;;;;;;;;372:4;336:40;;4866:206:3;;;;;;;;;;-1:-1:-1;4866:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;5030:25:3;;;5003:4;5030:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4866:206;662:41:13;;;;;;;;;;;;;;;;1933:232:10;;;;;;;;;;-1:-1:-1;1933:232:10;;;;;:::i;:::-;;:::i;4813:551:13:-;;;;;;;;;;-1:-1:-1;4813:551:13;;;;;:::i;:::-;;:::i;1008:31::-;;;;;;;;;;-1:-1:-1;1008:31:13;;;;;;;;;;;;;;8293:6:14;8281:19;;;8263:38;;8251:2;8236:18;1008:31:13;8119:188:14;989:290:4;1131:4;-1:-1:-1;;;;;;1170:50:4;;-1:-1:-1;;;1170:50:4;;:102;;;1236:36;1260:11;1236:23;:36::i;:::-;1151:121;989:290;-1:-1:-1;;989:290:4:o;2623:98:3:-;2677:13;2709:5;2702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2623:98;:::o;4257:295::-;4373:7;7757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7757:16:3;4396:107;;;;-1:-1:-1;;;4396:107:3;;8899:2:14;4396:107:3;;;8881:21:14;8938:2;8918:18;;;8911:30;8977:34;8957:18;;;8950:62;-1:-1:-1;;;9028:18:14;;;9021:42;9080:19;;4396:107:3;;;;;;;;;-1:-1:-1;4521:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4521:24:3;;4257:295::o;3795:401::-;3875:13;3891:23;3906:7;3891:14;:23::i;:::-;3875:39;;3938:5;-1:-1:-1;;;;;3932:11:3;:2;-1:-1:-1;;;;;3932:11:3;;;3924:57;;;;-1:-1:-1;;;3924:57:3;;9312:2:14;3924:57:3;;;9294:21:14;9351:2;9331:18;;;9324:30;9390:34;9370:18;;;9363:62;-1:-1:-1;;;9441:18:14;;;9434:31;9482:19;;3924:57:3;9110:397:14;3924:57:3;719:10:1;-1:-1:-1;;;;;4013:21:3;;;;:62;;-1:-1:-1;4038:37:3;4055:5;719:10:1;4866:206:3;:::i;4038:37::-;3992:165;;;;-1:-1:-1;;;3992:165:3;;9714:2:14;3992:165:3;;;9696:21:14;9753:2;9733:18;;;9726:30;9792:34;9772:18;;;9765:62;9863:26;9843:18;;;9836:54;9907:19;;3992:165:3;9512:420:14;3992:165:3;4168:21;4177:2;4181:7;4168:8;:21::i;:::-;3865:331;3795:401;;:::o;2480:1094:13:-;719:10:1;6016:23:13;;;;:9;:23;;;;;;;;6008:66;;;;-1:-1:-1;;;6008:66:13;;10139:2:14;6008:66:13;;;10121:21:14;10178:2;10158:18;;;10151:30;10217:32;10197:18;;;10190:60;10267:18;;6008:66:13;9937:354:14;6008:66:13;719:10:1;6152:9:13::1;6136:25;6128:61;;;;-1:-1:-1::0;;;6128:61:13::1;;;;;;;:::i;:::-;1744:1:11::2;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:11::2;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;2639:8:13::3;::::0;::::3;;2638:9;2630:45;;;;-1:-1:-1::0;;;2630:45:13::3;;;;;;;:::i;:::-;2725:15;;2706;:34;;2685:121;;;::::0;-1:-1:-1;;;2685:121:13;;11562:2:14;2685:121:13::3;::::0;::::3;11544:21:14::0;11601:2;11581:18;;;11574:30;11640:34;11620:18;;;11613:62;-1:-1:-1;;;11691:18:14;;;11684:38;11739:19;;2685:121:13::3;11360:404:14::0;2685:121:13::3;2855:13;;2837:15;:31;2816:108;;;::::0;-1:-1:-1;;;2816:108:13;;11971:2:14;2816:108:13::3;::::0;::::3;11953:21:14::0;12010:2;11990:18;;;11983:30;12049:32;12029:18;;;12022:60;12099:18;;2816:108:13::3;11769:354:14::0;2816:108:13::3;3002:15;::::0;719:10:1;2956:26:13::3;::::0;;;:12:::3;:26;::::0;;;;;3002:15:::3;;::::0;;::::3;::::0;::::3;::::0;2956:41:::3;::::0;2985:12;;2956:26:::3;:41;:::i;:::-;2955:62;;;;2934:144;;;::::0;-1:-1:-1;;;2934:144:13;;12671:2:14;2934:144:13::3;::::0;::::3;12653:21:14::0;12710:2;12690:18;;;12683:30;12749:34;12729:18;;;12722:62;-1:-1:-1;;;12800:18:14;;;12793:33;12843:19;;2934:144:13::3;12469:399:14::0;2934:144:13::3;3088:14;3105:13;1847:10:4::0;:17;;1760:111;3105:13:13::3;3189:16;::::0;3088:30;;-1:-1:-1;3177:28:13::3;::::0;-1:-1:-1;;;3189:16:13;::::3;;;372:4;3177:28;:::i;:::-;3150:21;;::::0;::::3;:6:::0;:21:::3;:::i;:::-;3149:57;;3128:129;;;;-1:-1:-1::0;;;3128:129:13::3;;;;;;;:::i;:::-;3302:22;;::::0;::::3;465:10;3302:22;:::i;:::-;3288:9;:37;;3267:109;;;;-1:-1:-1::0;;;3267:109:13::3;;;;;;;:::i;:::-;3401:1;3386:102;3409:12;3404:17;;:1;:17;;;3386:102;;3442:35;719:10:1::0;3452:12:13::3;3466:10;;::::0;::::3;:6:::0;:10:::3;:::i;:::-;3442:9;:35::i;:::-;3423:3:::0;::::3;::::0;::::3;:::i;:::-;;;;3386:102;;;-1:-1:-1::0;719:10:1;3526:26:13::3;::::0;;;:12:::3;:26;::::0;;;;;:41:::3;::::0;3555:12;;3526:26:::3;;:41;:::i;:::-;719:10:1::0;3497:26:13::3;::::0;;;:12:::3;:26;::::0;;;;:70;;-1:-1:-1;;3497:70:13::3;;::::0;;;::::3;::::0;;;::::3;::::0;;-1:-1:-1;;;2628:22:11;;2480:1094:13:o;1391:1083::-;719:10:1;6152:9:13;6136:25;6128:61;;;;-1:-1:-1;;;6128:61:13;;;;;;;:::i;:::-;1744:1:11::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:11::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;1525:8:13::2;::::0;::::2;;1524:9;1516:45;;;;-1:-1:-1::0;;;1516:45:13::2;;;;;;;:::i;:::-;1611:19;;1592:15;:38;;1571:122;;;::::0;-1:-1:-1;;;1571:122:13;;14399:2:14;1571:122:13::2;::::0;::::2;14381:21:14::0;14438:2;14418:18;;;14411:30;14477:34;14457:18;;;14450:62;-1:-1:-1;;;14528:18:14;;;14521:35;14573:19;;1571:122:13::2;14197:401:14::0;1571:122:13::2;1740:11;::::0;::::2;::::0;;;::::2;::::0;::::2;1724:27:::0;;::::2;;;1703:119;;;::::0;-1:-1:-1;;;1703:119:13;;14805:2:14;1703:119:13::2;::::0;::::2;14787:21:14::0;14844:2;14824:18;;;14817:30;14883:34;14863:18;;;14856:62;-1:-1:-1;;;14934:18:14;;;14927:43;14987:19;;1703:119:13::2;14603:409:14::0;1703:119:13::2;1900:13;::::0;719:10:1;1854:26:13::2;::::0;;;:12:::2;:26;::::0;;;;;1900:13:::2;::::0;;;::::2;::::0;::::2;::::0;1854:41:::2;::::0;1883:12;;1854:26:::2;:41;:::i;:::-;1853:60;;;;1832:147;;;::::0;-1:-1:-1;;;1832:147:13;;15219:2:14;1832:147:13::2;::::0;::::2;15201:21:14::0;15258:2;15238:18;;;15231:30;15297:34;15277:18;;;15270:62;-1:-1:-1;;;15348:18:14;;;15341:38;15396:19;;1832:147:13::2;15017:404:14::0;1832:147:13::2;1989:14;2006:13;1847:10:4::0;:17;;1760:111;2006:13:13::2;2090:16;::::0;1989:30;;-1:-1:-1;2078:28:13::2;::::0;-1:-1:-1;;;2090:16:13;::::2;;;372:4;2078:28;:::i;:::-;2051:21;;::::0;::::2;:6:::0;:21:::2;:::i;:::-;2050:57;;2029:129;;;;-1:-1:-1::0;;;2029:129:13::2;;;;;;;:::i;:::-;2203:20;;::::0;::::2;414:11;2203:20;:::i;:::-;2189:9;:35;;2168:107;;;;-1:-1:-1::0;;;2168:107:13::2;;;;;;;:::i;:::-;2301:1;2286:102;2309:12;2304:17;;:1;:17;;;2286:102;;2342:35;719:10:1::0;2352:12:13::2;640:96:1::0;2342:35:13::2;2323:3:::0;::::2;::::0;::::2;:::i;:::-;;;;2286:102;;5134:364:3::0;5336:41;719:10:1;5369:7:3;5336:18;:41::i;:::-;5315:137;;;;-1:-1:-1;;;5315:137:3;;;;;;;:::i;:::-;5463:28;5473:4;5479:2;5483:7;5463:9;:28::i;1358:331:4:-;1495:7;1547:23;1564:5;1547:16;:23::i;:::-;1539:5;:31;1518:121;;;;-1:-1:-1;;;1518:121:4;;16046:2:14;1518:121:4;;;16028:21:14;16085:2;16065:18;;;16058:30;16124:34;16104:18;;;16097:62;-1:-1:-1;;;16175:18:14;;;16168:41;16226:19;;1518:121:4;15844:407:14;1518:121:4;-1:-1:-1;;;;;;1656:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1358:331::o;6656:104:13:-;1097:7:10;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;1097:7;1123:6;;6705:48:13::1;::::0;-1:-1:-1;;;;;1123:6:10;;;;6731:21:13::1;6705:48:::0;::::1;;;::::0;6731:21;;6705:48;1097:7:10;6705:48:13;6731:21;1123:6:10;6705:48:13;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;6656:104::o:0;5564:179:3:-;5697:39;5714:4;5720:2;5724:7;5697:39;;;;;;;;;;;;:16;:39::i;5370:597:13:-;1097:7:10;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;5504:16:13::1;::::0;::::1;-1:-1:-1::0;;;5504:16:13;::::1;::::0;::::1;::::0;5477:22:::1;::::0;5492:7;;-1:-1:-1;;;5477:12:13;::::1;;:22;:::i;:::-;5476:44;;;;5455:117;;;::::0;-1:-1:-1;;;5455:117:13;;16819:2:14;5455:117:13::1;::::0;::::1;16801:21:14::0;16858:2;16838:18;;;16831:30;16897:28;16877:18;;;16870:56;16943:18;;5455:117:13::1;16617:350:14::0;5455:117:13::1;5638:13;::::0;-1:-1:-1;;;;;5604:19:13;::::1;;::::0;;;:12:::1;:19;::::0;;;;;5638:13:::1;::::0;;;::::1;::::0;::::1;::::0;5604:29:::1;::::0;5626:7;;5604:19:::1;:29;:::i;:::-;5603:48;;;;5582:131;;;;-1:-1:-1::0;;;5582:131:13::1;;;;;;;:::i;:::-;5723:14;5740:13;1847:10:4::0;:17;;1760:111;5740:13:13::1;5723:30:::0;-1:-1:-1;5778:1:13::1;5763:90;5786:7;5781:12;;:1;:12;;;5763:90;;5814:28;5824:5:::0;5831:10:::1;;::::0;::::1;:6:::0;:10:::1;:::i;5814:28::-;5795:3:::0;::::1;::::0;::::1;:::i;:::-;;;;5763:90;;;-1:-1:-1::0;;;;;;5884:19:13;::::1;;::::0;;;:12:::1;:19;::::0;;;;;:29:::1;::::0;5906:7;;5884:19:::1;;:29;:::i;:::-;-1:-1:-1::0;;;;;5862:19:13;::::1;;::::0;;;:12:::1;:19;::::0;;;;:51;;-1:-1:-1;;5862:51:13::1;;::::0;;::::1;;::::0;;5938:12:::1;::::0;:22:::1;::::0;5953:7;;-1:-1:-1;;;5938:12:13;::::1;;:22;:::i;:::-;5923:12;;:37;;;;;;;;;;;;;;;;;;5445:522;5370:597:::0;;:::o;1943:308:4:-;2058:7;2110:30;1847:10;:17;;1760:111;2110:30;2102:5;:38;2081:129;;;;-1:-1:-1;;;2081:129:4;;17579:2:14;2081:129:4;;;17561:21:14;17618:2;17598:18;;;17591:30;17657:34;17637:18;;;17630:62;-1:-1:-1;;;17708:18:14;;;17701:42;17760:19;;2081:129:4;17377:408:14;2081:129:4;2227:10;2238:5;2227:17;;;;;;;;:::i;:::-;;;;;;;;;2220:24;;1943:308;;;:::o;6411:103:13:-;1097:7:10;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;6484:23:13;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;6411:103:::0;:::o;3580:1227::-;719:10:1;6152:9:13;6136:25;6128:61;;;;-1:-1:-1;;;6128:61:13;;;;;;;:::i;:::-;1744:1:11::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:11::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;3716:8:13::2;::::0;::::2;;3715:9;3707:45;;;;-1:-1:-1::0;;;3707:45:13::2;;;;;;;:::i;:::-;3802:15;;3783;:34;;3762:121;;;::::0;-1:-1:-1;;;3762:121:13;;18124:2:14;3762:121:13::2;::::0;::::2;18106:21:14::0;18163:2;18143:18;;;18136:30;18202:34;18182:18;;;18175:62;-1:-1:-1;;;18253:18:14;;;18246:38;18301:19;;3762:121:13::2;17922:404:14::0;3762:121:13::2;3932:13;;3914:15;:31;3893:108;;;::::0;-1:-1:-1;;;3893:108:13;;18533:2:14;3893:108:13::2;::::0;::::2;18515:21:14::0;18572:2;18552:18;;;18545:30;18611:32;18591:18;;;18584:60;18661:18;;3893:108:13::2;18331:354:14::0;3893:108:13::2;4079:15;::::0;719:10:1;4079:15:13::2;4033:26:::0;;;:12:::2;:26;::::0;;;;;4079:15:::2;::::0;;::::2;::::0;4033:41:::2;::::0;4062:12;;4033:26:::2;:41;:::i;:::-;4032:62;;;;4011:144;;;::::0;-1:-1:-1;;;4011:144:13;;18892:2:14;4011:144:13::2;::::0;::::2;18874:21:14::0;18931:2;18911:18;;;18904:30;18970:34;18950:18;;;18943:62;-1:-1:-1;;;19021:18:14;;;19014:33;19064:19;;4011:144:13::2;18690:399:14::0;4011:144:13::2;4165:14;4182:13;1847:10:4::0;:17;;1760:111;4182:13:13::2;4253:11;::::0;4165:30;;-1:-1:-1;4253:11:13;;::::2;;;4227:21;;::::0;::::2;4165:30:::0;4227:21:::2;:::i;:::-;4226:38;;4205:110;;;;-1:-1:-1::0;;;4205:110:13::2;;;;;;;:::i;:::-;4360:22;;::::0;::::2;515:11;4360:22;:::i;:::-;4346:9;:37;;4325:109;;;;-1:-1:-1::0;;;4325:109:13::2;;;;;;;:::i;:::-;564:42;4444:15;564:42:::0;4513:18:::2;719:10:1::0;4513:32:13::2;::::0;-1:-1:-1;;;;;;4513:32:13::2;::::0;;;;;;-1:-1:-1;;;;;1714:32:14;;;4513::13::2;::::0;::::2;1696:51:14::0;1669:18;;4513:32:13::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;4492:116;;;::::0;-1:-1:-1;;;4492:116:13;;19485:2:14;4492:116:13::2;::::0;::::2;19467:21:14::0;19524:2;19504:18;;;19497:30;19563:34;19543:18;;;19536:62;-1:-1:-1;;;19614:18:14;;;19607:31;19655:19;;4492:116:13::2;19283:397:14::0;4492:116:13::2;4634:1;4619:102;4642:12;4637:17;;:1;:17;;;4619:102;;4675:35;719:10:1::0;4699::13::2;;::::0;::::2;:6:::0;:10:::2;:::i;4675:35::-;4656:3:::0;::::2;::::0;::::2;:::i;:::-;;;;4619:102;;;-1:-1:-1::0;719:10:1;4759:26:13::2;::::0;;;:12:::2;:26;::::0;;;;;:41:::2;::::0;4788:12;;4759:26:::2;;:41;:::i;:::-;719:10:1::0;4730:26:13::2;::::0;;;:12:::2;:26;::::0;;;;:70;;-1:-1:-1;;4730:70:13::2;;::::0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;2628:22:11;;-1:-1:-1;3580:1227:13:o;2248:313:3:-;2360:7;2399:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2399:16:3;2446:19;2425:107;;;;-1:-1:-1;;;2425:107:3;;19887:2:14;2425:107:3;;;19869:21:14;19926:2;19906:18;;;19899:30;19965:34;19945:18;;;19938:62;-1:-1:-1;;;20016:18:14;;;20009:39;20065:19;;2425:107:3;19685:405:14;1908:283:3;2020:7;-1:-1:-1;;;;;2064:19:3;;2043:108;;;;-1:-1:-1;;;2043:108:3;;20297:2:14;2043:108:3;;;20279:21:14;20336:2;20316:18;;;20309:30;20375:34;20355:18;;;20348:62;-1:-1:-1;;;20426:18:14;;;20419:40;20476:19;;2043:108:3;20095:406:14;2043:108:3;-1:-1:-1;;;;;;2168:16:3;;;;;:9;:16;;;;;;;1908:283::o;1683:101:10:-;1097:7;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;1747:30:::1;1774:1;1747:18;:30::i;:::-;1683:101::o:0;6213:192:13:-;1097:7:10;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;6302:9:13::1;6297:102;6321:9;:16;6317:1;:20;6297:102;;;6384:4;6358:9;:23;6368:9;6378:1;6368:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;6358:23:13::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;6358:23:13;:30;;-1:-1:-1;;6358:30:13::1;::::0;::::1;;::::0;;;::::1;::::0;;6339:3;::::1;::::0;::::1;:::i;:::-;;;;6297:102;;6766:518:::0;6852:16;6884:18;6905:17;6915:6;6905:9;:17::i;:::-;6884:38;-1:-1:-1;6936:15:13;6932:346;;6974:16;;;6988:1;6974:16;;;;;;;;;;;-1:-1:-1;6967:23:13;6766:518;-1:-1:-1;;;6766:518:13:o;6932:346::-;7021:23;7061:10;7047:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7047:25:13;;7021:51;;7086:13;7113:128;7137:10;7129:5;:18;7113:128;;;7192:34;7212:6;7220:5;7192:19;:34::i;:::-;7176:6;7183:5;7176:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;7149:7;;;;:::i;:::-;;;;7113:128;;6932:346;6874:410;6766:518;;;:::o;2785:102:3:-;2841:13;2873:7;2866:14;;;;;:::i;4619:181::-;4741:52;719:10:1;4774:8:3;4784;4741:18;:52::i;5809:354::-;5991:41;719:10:1;6024:7:3;5991:18;:41::i;:::-;5970:137;;;;-1:-1:-1;;;5970:137:3;;;;;;;:::i;:::-;6117:39;6131:4;6137:2;6141:7;6150:5;6117:13;:39::i;:::-;5809:354;;;;:::o;6520:130:13:-;6582:4;1123:6:10;;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;-1:-1:-1;6598:8:13::1;:20:::0;;-1:-1:-1;;6598:20:13::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;6635:8:::0;1333:1:10::1;6520:130:13::0;;;:::o;7290:219::-;7388:13;7460:12;7474:26;7491:8;7474:16;:26::i;:::-;7443:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7417:85;;7290:219;;;:::o;269:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1933:232:10:-;1097:7;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2034:22:10;::::1;2013:107;;;::::0;-1:-1:-1;;;2013:107:10;;22343:2:14;2013:107:10::1;::::0;::::1;22325:21:14::0;22382:2;22362:18;;;22355:30;22421:34;22401:18;;;22394:62;-1:-1:-1;;;22472:18:14;;;22465:36;22518:19;;2013:107:10::1;22141:402:14::0;2013:107:10::1;2130:28;2149:8;2130:18;:28::i;4813:551:13:-:0;1097:7:10;1123:6;-1:-1:-1;;;;;1123:6:10;719:10:1;1263:23:10;1255:68;;;;-1:-1:-1;;;1255:68:10;;;;;;;:::i;:::-;4891:14:13::1;4908:13;1847:10:4::0;:17;;1760:111;4908:13:13::1;4987:16;::::0;4891:30;;-1:-1:-1;4975:28:13::1;::::0;-1:-1:-1;;;4987:16:13;::::1;;;372:4;4975:28;:::i;:::-;4953:16;;::::0;::::1;:6:::0;:16:::1;:::i;:::-;4952:52;;4931:124;;;;-1:-1:-1::0;;;4931:124:13::1;;;;;;;:::i;:::-;5121:13;::::0;-1:-1:-1;;;;;5087:19:13;::::1;;::::0;;;:12:::1;:19;::::0;;;;;5121:13:::1;::::0;;;::::1;::::0;::::1;::::0;5087:29:::1;::::0;5109:7;;5087:19:::1;:29;:::i;:::-;5086:48;;;;5065:131;;;;-1:-1:-1::0;;;5065:131:13::1;;;;;;;:::i;:::-;5222:1;5207:90;5230:7;5225:12;;:1;:12;;;5207:90;;5258:28;5268:5:::0;5275:10:::1;;::::0;::::1;:6:::0;:10:::1;:::i;5258:28::-;5239:3:::0;::::1;::::0;::::1;:::i;:::-;;;;5207:90;;;-1:-1:-1::0;;;;;;5328:19:13;::::1;;::::0;;;:12:::1;:19;::::0;;;;;:29:::1;::::0;5350:7;;5328:19:::1;;:29;:::i;:::-;-1:-1:-1::0;;;;;5306:19:13;;;::::1;;::::0;;;:12:::1;:19;::::0;;;;:51;;-1:-1:-1;;5306:51:13::1;;::::0;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;4813:551:13:o;1505:344:3:-;1647:4;-1:-1:-1;;;;;;1686:40:3;;-1:-1:-1;;;1686:40:3;;:104;;-1:-1:-1;;;;;;;1742:48:3;;-1:-1:-1;;;1742:48:3;1686:104;:156;;;-1:-1:-1;;;;;;;;;;981:40:2;;;1806:36:3;829:199:2;11806:171:3;11880:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11880:29:3;-1:-1:-1;;;;;11880:29:3;;;;;;;;:24;;11933:23;11880:24;11933:14;:23::i;:::-;-1:-1:-1;;;;;11924:46:3;;;;;;;;;;;11806:171;;:::o;8720:108::-;8795:26;8805:2;8809:7;8795:26;;;;;;;;;;;;:9;:26::i;7952:438::-;8077:4;7757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7757:16:3;8097:107;;;;-1:-1:-1;;;8097:107:3;;22750:2:14;8097:107:3;;;22732:21:14;22789:2;22769:18;;;22762:30;22828:34;22808:18;;;22801:62;-1:-1:-1;;;22879:18:14;;;22872:42;22931:19;;8097:107:3;22548:408:14;8097:107:3;8214:13;8230:23;8245:7;8230:14;:23::i;:::-;8214:39;;8282:5;-1:-1:-1;;;;;8271:16:3;:7;-1:-1:-1;;;;;8271:16:3;;:64;;;-1:-1:-1;;;;;;5030:25:3;;;5003:4;5030:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8303:32;8271:111;;;;8375:7;-1:-1:-1;;;;;8351:31:3;:20;8363:7;8351:11;:20::i;:::-;-1:-1:-1;;;;;8351:31:3;;8271:111;8263:120;7952:438;-1:-1:-1;;;;7952:438:3:o;11056:639::-;11223:4;-1:-1:-1;;;;;11196:31:3;:23;11211:7;11196:14;:23::i;:::-;-1:-1:-1;;;;;11196:31:3;;11175:115;;;;-1:-1:-1;;;11175:115:3;;23163:2:14;11175:115:3;;;23145:21:14;23202:2;23182:18;;;23175:30;23241:34;23221:18;;;23214:62;-1:-1:-1;;;23292:18:14;;;23285:35;23337:19;;11175:115:3;22961:401:14;11175:115:3;-1:-1:-1;;;;;11308:16:3;;11300:65;;;;-1:-1:-1;;;11300:65:3;;23569:2:14;11300:65:3;;;23551:21:14;23608:2;23588:18;;;23581:30;23647:34;23627:18;;;23620:62;-1:-1:-1;;;23698:18:14;;;23691:34;23742:19;;11300:65:3;23367:400:14;11300:65:3;11376:39;11397:4;11403:2;11407:7;11376:20;:39::i;:::-;11477:29;11494:1;11498:7;11477:8;:29::i;:::-;-1:-1:-1;;;;;11517:15:3;;;;;;:9;:15;;;;;:20;;11536:1;;11517:15;:20;;11536:1;;11517:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11547:13:3;;;;;;:9;:13;;;;;:18;;11564:1;;11547:13;:18;;11564:1;;11547:18;:::i;:::-;;;;-1:-1:-1;;11575:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11575:21:3;-1:-1:-1;;;;;11575:21:3;;;;;;;;;11612:27;;11575:16;;11612:27;;;;;;;3865:331;3795:401;;:::o;2319:187:10:-;2392:16;2411:6;;-1:-1:-1;;;;;2427:17:10;;;-1:-1:-1;;;;;;2427:17:10;;;;;;2459:40;;2411:6;;;;;;;2459:40;;2392:16;2459:40;2382:124;2319:187;:::o;12112:307:3:-;12262:8;-1:-1:-1;;;;;12253:17:3;:5;-1:-1:-1;;;;;12253:17:3;;;12245:55;;;;-1:-1:-1;;;12245:55:3;;23974:2:14;12245:55:3;;;23956:21:14;24013:2;23993:18;;;23986:30;24052:27;24032:18;;;24025:55;24097:18;;12245:55:3;23772:349:14;12245:55:3;-1:-1:-1;;;;;12310:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12310:46:3;;;;;;;;;;12371:41;;540::14;;;12371::3;;513:18:14;12371:41:3;;;;;;;12112:307;;;:::o;7025:341::-;7176:28;7186:4;7192:2;7196:7;7176:9;:28::i;:::-;7235:48;7258:4;7264:2;7268:7;7277:5;7235:22;:48::i;:::-;7214:145;;;;-1:-1:-1;;;7214:145:3;;;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:12;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;9049:311:3;9174:18;9180:2;9184:7;9174:5;:18::i;:::-;9223:54;9254:1;9258:2;9262:7;9271:5;9223:22;:54::i;:::-;9202:151;;;;-1:-1:-1;;;9202:151:3;;;;;;;:::i;2847:572:4:-;-1:-1:-1;;;;;3046:18:4;;3042:183;;3080:40;3112:7;4228:10;:17;;4201:24;;;;:15;:24;;;;;:44;;;4255:24;;;;;;;;;;;;4125:161;3080:40;3042:183;;;3149:2;-1:-1:-1;;;;;3141:10:4;:4;-1:-1:-1;;;;;3141:10:4;;3137:88;;3167:47;3200:4;3206:7;3167:32;:47::i;:::-;-1:-1:-1;;;;;3238:16:4;;3234:179;;3270:45;3307:7;3270:36;:45::i;3234:179::-;3342:4;-1:-1:-1;;;;;3336:10:4;:2;-1:-1:-1;;;;;3336:10:4;;3332:81;;3362:40;3390:2;3394:7;3362:27;:40::i;12972:950:3:-;13122:4;-1:-1:-1;;;;;13142:13:3;;1465:19:0;:23;13138:778:3;;13193:170;;-1:-1:-1;;;13193:170:3;;-1:-1:-1;;;;;13193:36:3;;;;;:170;;719:10:1;;13285:4:3;;13311:7;;13340:5;;13193:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13193:170:3;;;;;;;;-1:-1:-1;;13193:170:3;;;;;;;;;;;;:::i;:::-;;;13173:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13542:13:3;;13538:312;;13584:106;;-1:-1:-1;;;13584:106:3;;;;;;;:::i;13538:312::-;13802:6;13796:13;13787:6;13783:2;13779:15;13772:38;13173:691;-1:-1:-1;;;;;;13425:51:3;-1:-1:-1;;;13425:51:3;;-1:-1:-1;13418:58:3;;13138:778;-1:-1:-1;13901:4:3;12972:950;;;;;;:::o;9682:427::-;-1:-1:-1;;;;;9761:16:3;;9753:61;;;;-1:-1:-1;;;9753:61:3;;25880:2:14;9753:61:3;;;25862:21:14;;;25899:18;;;25892:30;25958:34;25938:18;;;25931:62;26010:18;;9753:61:3;25678:356:14;9753:61:3;7734:4;7757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7757:16:3;:30;9824:58;;;;-1:-1:-1;;;9824:58:3;;26241:2:14;9824:58:3;;;26223:21:14;26280:2;26260:18;;;26253:30;26319;26299:18;;;26292:58;26367:18;;9824:58:3;26039:352:14;9824:58:3;9893:45;9922:1;9926:2;9930:7;9893:20;:45::i;:::-;-1:-1:-1;;;;;9949:13:3;;;;;;:9;:13;;;;;:18;;9966:1;;9949:13;:18;;9966:1;;9949:18;:::i;:::-;;;;-1:-1:-1;;9977:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9977:21:3;-1:-1:-1;;;;;9977:21:3;;;;;;;;10014:33;;9977:16;;;10014:33;;9977:16;;10014:33;6484:23:13::1;6411:103:::0;:::o;4903:982:4:-;5177:22;5227:1;5202:22;5219:4;5202:16;:22::i;:::-;:26;;;;:::i;:::-;5238:18;5259:26;;;:17;:26;;;;;;5177:51;;-1:-1:-1;5389:28:4;;;5385:323;;-1:-1:-1;;;;;5455:18:4;;5433:19;5455:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5504:30;;;;;;:44;;;5620:30;;:17;:30;;;;;:43;;;5385:323;-1:-1:-1;5801:26:4;;;;:17;:26;;;;;;;;5794:33;;;-1:-1:-1;;;;;5844:18:4;;;;;:12;:18;;;;;:34;;;;;;;5837:41;4903:982::o;6173:1061::-;6447:10;:17;6422:22;;6447:21;;6467:1;;6447:21;:::i;:::-;6478:18;6499:24;;;:15;:24;;;;;;6867:10;:26;;6422:46;;-1:-1:-1;6499:24:4;;6422:46;;6867:26;;;;;;:::i;:::-;;;;;;;;;6845:48;;6929:11;6904:10;6915;6904:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;7008:28;;;:15;:28;;;;;;;:41;;;7177:24;;;;;7170:31;7211:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6244:990;;;6173:1061;:::o;3713:217::-;3797:14;3814:20;3831:2;3814:16;:20::i;:::-;-1:-1:-1;;;;;3844:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3888:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3713:217:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:14:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:14;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:14;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:14:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:14;;1365:180;-1:-1:-1;1365:180:14:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:14;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:14:o;2377:156::-;2443:20;;2503:4;2492:16;;2482:27;;2472:55;;2523:1;2520;2513:12;2538:182;2595:6;2648:2;2636:9;2627:7;2623:23;2619:32;2616:52;;;2664:1;2661;2654:12;2616:52;2687:27;2704:9;2687:27;:::i;2914:328::-;2991:6;2999;3007;3060:2;3048:9;3039:7;3035:23;3031:32;3028:52;;;3076:1;3073;3066:12;3028:52;3099:29;3118:9;3099:29;:::i;:::-;3089:39;;3147:38;3181:2;3170:9;3166:18;3147:38;:::i;:::-;3137:48;;3232:2;3221:9;3217:18;3204:32;3194:42;;2914:328;;;;;:::o;3247:186::-;3306:6;3359:2;3347:9;3338:7;3334:23;3330:32;3327:52;;;3375:1;3372;3365:12;3327:52;3398:29;3417:9;3398:29;:::i;3438:256::-;3504:6;3512;3565:2;3553:9;3544:7;3540:23;3536:32;3533:52;;;3581:1;3578;3571:12;3533:52;3604:29;3623:9;3604:29;:::i;:::-;3594:39;;3652:36;3684:2;3673:9;3669:18;3652:36;:::i;:::-;3642:46;;3438:256;;;;;:::o;3699:127::-;3760:10;3755:3;3751:20;3748:1;3741:31;3791:4;3788:1;3781:15;3815:4;3812:1;3805:15;3831:275;3902:2;3896:9;3967:2;3948:13;;-1:-1:-1;;3944:27:14;3932:40;;4002:18;3987:34;;4023:22;;;3984:62;3981:88;;;4049:18;;:::i;:::-;4085:2;4078:22;3831:275;;-1:-1:-1;3831:275:14:o;4111:407::-;4176:5;4210:18;4202:6;4199:30;4196:56;;;4232:18;;:::i;:::-;4270:57;4315:2;4294:15;;-1:-1:-1;;4290:29:14;4321:4;4286:40;4270:57;:::i;:::-;4261:66;;4350:6;4343:5;4336:21;4390:3;4381:6;4376:3;4372:16;4369:25;4366:45;;;4407:1;4404;4397:12;4366:45;4456:6;4451:3;4444:4;4437:5;4433:16;4420:43;4510:1;4503:4;4494:6;4487:5;4483:18;4479:29;4472:40;4111:407;;;;;:::o;4523:451::-;4592:6;4645:2;4633:9;4624:7;4620:23;4616:32;4613:52;;;4661:1;4658;4651:12;4613:52;4701:9;4688:23;4734:18;4726:6;4723:30;4720:50;;;4766:1;4763;4756:12;4720:50;4789:22;;4842:4;4834:13;;4830:27;-1:-1:-1;4820:55:14;;4871:1;4868;4861:12;4820:55;4894:74;4960:7;4955:2;4942:16;4937:2;4933;4929:11;4894:74;:::i;4979:952::-;5063:6;5094:2;5137;5125:9;5116:7;5112:23;5108:32;5105:52;;;5153:1;5150;5143:12;5105:52;5193:9;5180:23;5222:18;5263:2;5255:6;5252:14;5249:34;;;5279:1;5276;5269:12;5249:34;5317:6;5306:9;5302:22;5292:32;;5362:7;5355:4;5351:2;5347:13;5343:27;5333:55;;5384:1;5381;5374:12;5333:55;5420:2;5407:16;5442:2;5438;5435:10;5432:36;;;5448:18;;:::i;:::-;5494:2;5491:1;5487:10;5477:20;;5517:28;5541:2;5537;5533:11;5517:28;:::i;:::-;5579:15;;;5649:11;;;5645:20;;;5610:12;;;;5677:19;;;5674:39;;;5709:1;5706;5699:12;5674:39;5733:11;;;;5753:148;5769:6;5764:3;5761:15;5753:148;;;5835:23;5854:3;5835:23;:::i;:::-;5823:36;;5786:12;;;;5879;;;;5753:148;;;5920:5;4979:952;-1:-1:-1;;;;;;;;4979:952:14:o;5936:632::-;6107:2;6159:21;;;6229:13;;6132:18;;;6251:22;;;6078:4;;6107:2;6330:15;;;;6304:2;6289:18;;;6078:4;6373:169;6387:6;6384:1;6381:13;6373:169;;;6448:13;;6436:26;;6517:15;;;;6482:12;;;;6409:1;6402:9;6373:169;;;-1:-1:-1;6559:3:14;;5936:632;-1:-1:-1;;;;;;5936:632:14:o;6573:160::-;6638:20;;6694:13;;6687:21;6677:32;;6667:60;;6723:1;6720;6713:12;6738:254;6803:6;6811;6864:2;6852:9;6843:7;6839:23;6835:32;6832:52;;;6880:1;6877;6870:12;6832:52;6903:29;6922:9;6903:29;:::i;:::-;6893:39;;6951:35;6982:2;6971:9;6967:18;6951:35;:::i;6997:667::-;7092:6;7100;7108;7116;7169:3;7157:9;7148:7;7144:23;7140:33;7137:53;;;7186:1;7183;7176:12;7137:53;7209:29;7228:9;7209:29;:::i;:::-;7199:39;;7257:38;7291:2;7280:9;7276:18;7257:38;:::i;:::-;7247:48;;7342:2;7331:9;7327:18;7314:32;7304:42;;7397:2;7386:9;7382:18;7369:32;7424:18;7416:6;7413:30;7410:50;;;7456:1;7453;7446:12;7410:50;7479:22;;7532:4;7524:13;;7520:27;-1:-1:-1;7510:55:14;;7561:1;7558;7551:12;7510:55;7584:74;7650:7;7645:2;7632:16;7627:2;7623;7619:11;7584:74;:::i;:::-;7574:84;;;6997:667;;;;;;;:::o;7669:180::-;7725:6;7778:2;7766:9;7757:7;7753:23;7749:32;7746:52;;;7794:1;7791;7784:12;7746:52;7817:26;7833:9;7817:26;:::i;7854:260::-;7922:6;7930;7983:2;7971:9;7962:7;7958:23;7954:32;7951:52;;;7999:1;7996;7989:12;7951:52;8022:29;8041:9;8022:29;:::i;:::-;8012:39;;8070:38;8104:2;8093:9;8089:18;8070:38;:::i;8312:380::-;8391:1;8387:12;;;;8434;;;8455:61;;8509:4;8501:6;8497:17;8487:27;;8455:61;8562:2;8554:6;8551:14;8531:18;8528:38;8525:161;;;8608:10;8603:3;8599:20;8596:1;8589:31;8643:4;8640:1;8633:15;8671:4;8668:1;8661:15;10296:347;10498:2;10480:21;;;10537:2;10517:18;;;10510:30;10576:25;10571:2;10556:18;;10549:53;10634:2;10619:18;;10296:347::o;10648:355::-;10850:2;10832:21;;;10889:2;10869:18;;;10862:30;10928:33;10923:2;10908:18;;10901:61;10994:2;10979:18;;10648:355::o;11008:347::-;11210:2;11192:21;;;11249:2;11229:18;;;11222:30;11288:25;11283:2;11268:18;;11261:53;11346:2;11331:18;;11008:347::o;12128:127::-;12189:10;12184:3;12180:20;12177:1;12170:31;12220:4;12217:1;12210:15;12244:4;12241:1;12234:15;12260:204;12298:3;12334:4;12331:1;12327:12;12366:4;12363:1;12359:12;12401:3;12395:4;12391:14;12386:3;12383:23;12380:49;;;12409:18;;:::i;:::-;12445:13;;12260:204;-1:-1:-1;;;12260:204:14:o;12873:125::-;12913:4;12941:1;12938;12935:8;12932:34;;;12946:18;;:::i;:::-;-1:-1:-1;12983:9:14;;12873:125::o;13003:128::-;13043:3;13074:1;13070:6;13067:1;13064:13;13061:39;;;13080:18;;:::i;:::-;-1:-1:-1;13116:9:14;;13003:128::o;13136:349::-;13338:2;13320:21;;;13377:2;13357:18;;;13350:30;13416:27;13411:2;13396:18;;13389:55;13476:2;13461:18;;13136:349::o;13490:168::-;13530:7;13596:1;13592;13588:6;13584:14;13581:1;13578:21;13573:1;13566:9;13559:17;13555:45;13552:71;;;13603:18;;:::i;:::-;-1:-1:-1;13643:9:14;;13490:168::o;13663:349::-;13865:2;13847:21;;;13904:2;13884:18;;;13877:30;13943:27;13938:2;13923:18;;13916:55;14003:2;13988:18;;13663:349::o;14017:175::-;14054:3;14098:4;14091:5;14087:16;14127:4;14118:7;14115:17;14112:43;;;14135:18;;:::i;:::-;14184:1;14171:15;;14017:175;-1:-1:-1;;14017:175:14:o;15426:413::-;15628:2;15610:21;;;15667:2;15647:18;;;15640:30;15706:34;15701:2;15686:18;;15679:62;-1:-1:-1;;;15772:2:14;15757:18;;15750:47;15829:3;15814:19;;15426:413::o;16256:356::-;16458:2;16440:21;;;16477:18;;;16470:30;16536:34;16531:2;16516:18;;16509:62;16603:2;16588:18;;16256:356::o;16972:400::-;17174:2;17156:21;;;17213:2;17193:18;;;17186:30;17252:34;17247:2;17232:18;;17225:62;-1:-1:-1;;;17318:2:14;17303:18;;17296:34;17362:3;17347:19;;16972:400::o;17790:127::-;17851:10;17846:3;17842:20;17839:1;17832:31;17882:4;17879:1;17872:15;17906:4;17903:1;17896:15;19094:184;19164:6;19217:2;19205:9;19196:7;19192:23;19188:32;19185:52;;;19233:1;19230;19223:12;19185:52;-1:-1:-1;19256:16:14;;19094:184;-1:-1:-1;19094:184:14:o;20506:135::-;20545:3;-1:-1:-1;;20566:17:14;;20563:43;;;20586:18;;:::i;:::-;-1:-1:-1;20633:1:14;20622:13;;20506:135::o;20772:185::-;20814:3;20852:5;20846:12;20867:52;20912:6;20907:3;20900:4;20893:5;20889:16;20867:52;:::i;:::-;20935:16;;;;;20772:185;-1:-1:-1;;20772:185:14:o;20962:1174::-;21138:3;21167:1;21200:6;21194:13;21230:3;21252:1;21280:9;21276:2;21272:18;21262:28;;21340:2;21329:9;21325:18;21362;21352:61;;21406:4;21398:6;21394:17;21384:27;;21352:61;21432:2;21480;21472:6;21469:14;21449:18;21446:38;21443:165;;;-1:-1:-1;;;21507:33:14;;21563:4;21560:1;21553:15;21593:4;21514:3;21581:17;21443:165;21624:18;21651:104;;;;21769:1;21764:320;;;;21617:467;;21651:104;-1:-1:-1;;21684:24:14;;21672:37;;21729:16;;;;-1:-1:-1;21651:104:14;;21764:320;20719:1;20712:14;;;20756:4;20743:18;;21859:1;21873:165;21887:6;21884:1;21881:13;21873:165;;;21965:14;;21952:11;;;21945:35;22008:16;;;;21902:10;;21873:165;;;21877:3;;22067:6;22062:3;22058:16;22051:23;;21617:467;;;;;;;22100:30;22126:3;22118:6;22100:30;:::i;:::-;22093:37;20962:1174;-1:-1:-1;;;;;20962:1174:14:o;24126:414::-;24328:2;24310:21;;;24367:2;24347:18;;;24340:30;24406:34;24401:2;24386:18;;24379:62;-1:-1:-1;;;24472:2:14;24457:18;;24450:48;24530:3;24515:19;;24126:414::o;24545:127::-;24606:10;24601:3;24597:20;24594:1;24587:31;24637:4;24634:1;24627:15;24661:4;24658:1;24651:15;24677:120;24717:1;24743;24733:35;;24748:18;;:::i;:::-;-1:-1:-1;24782:9:14;;24677:120::o;24802:112::-;24834:1;24860;24850:35;;24865:18;;:::i;:::-;-1:-1:-1;24899:9:14;;24802:112::o;24919:500::-;-1:-1:-1;;;;;25188:15:14;;;25170:34;;25240:15;;25235:2;25220:18;;25213:43;25287:2;25272:18;;25265:34;;;25335:3;25330:2;25315:18;;25308:31;;;25113:4;;25356:57;;25393:19;;25385:6;25356:57;:::i;:::-;25348:65;24919:500;-1:-1:-1;;;;;;24919:500:14:o;25424:249::-;25493:6;25546:2;25534:9;25525:7;25521:23;25517:32;25514:52;;;25562:1;25559;25552:12;25514:52;25594:9;25588:16;25613:30;25637:5;25613:30;:::i;26396:127::-;26457:10;26452:3;26448:20;26445:1;26438:31;26488:4;26485:1;26478:15;26512:4;26509:1;26502:15

Swarm Source

ipfs://efa50dc06eb04bf4874ad59bb5ff6a6af4594b4a4a60c3fe9a5a0412e9fb945c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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