ETH Price: $2,487.65 (-1.65%)
Gas: 0.61 Gwei

Token

PGGameCard (PGGameCard)
 

Overview

Max Total Supply

87 PGGameCard

Holders

74

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PGGameCard
0xab1af81c86a7d624e806ff486d7f6d7162c448ab
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:
PGGameCard

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 27 : lx_prophetgamma2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

interface Prophetgamma {
    function balanceOf(address) external view returns (uint256);
}

contract PGGameCard is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;

    string public baseTokenURI;
    uint256 public maxSupply;
    bool public paused = false;
    Prophetgamma pg;

    constructor(
        uint256 _maxSupply,
        string memory _baseTokenURI,
        address pgAddress,
        address[] memory addresses
    ) ERC721('PGGameCard', 'PGGameCard') {
        maxSupply = _maxSupply;
        baseTokenURI = _baseTokenURI;
        pg = Prophetgamma(pgAddress);
        airDrop(addresses);
    }

    modifier pausedMintCompliance() {
        require(!paused, 'contract is paused');
        _;
    }

    function mint(address to) public payable pausedMintCompliance {
        require(balanceOf(to) < 5, 'address can not mint more than 5 times');
        require(totalSupply() < maxSupply, 'max supply exceeded');
        if (pg.balanceOf(to) > 0 && balanceOf(to) >= 1) {
            require(0.006 ether == msg.value, 'ether value you sent not correct, own Prophetgamma');
        }
        if (pg.balanceOf(to) == 0) {
            require(0.006 ether == msg.value, 'ether value you sent not correct, not own Prophetgamma');
        }
        currentTokenId.increment();
        uint256 itemId = currentTokenId.current();
        _safeMint(to, itemId);
    }

    function airDrop(address[] memory addresses) public onlyOwner {
        require(totalSupply() < maxSupply, 'max supply exceeded');
        for (uint256 i = 0; i < addresses.length; i++) {
           currentTokenId.increment();
           uint256 itemId = currentTokenId.current();
           _safeMint(addresses[i], itemId);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

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

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

File 2 of 27 : lx_diamond_1155.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC1155/ERC1155.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol';

contract LZ_DIAMOND_1 is ERC1155, Ownable, Pausable, ERC1155Supply, ERC1155Burnable, ReentrancyGuard {
    struct Special {
        string name;
        uint256 num;
    }

    uint256 public constant DIA = 0;
    uint256 public maxSupply;
    string private _name;
    string private _symbol;
    uint256 private _publicPrice;

    // Mapping for the combination if used
    mapping(string => bool) private _merged;
    mapping(uint256 => bool) private _t_merged;

    // Mapping for the special objects's nums
    mapping(string => uint256) private _special;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxSupply_,
        uint256 publicPrice_,
        Special[] memory special,
        string memory uri_
    ) ERC1155(uri_) {
        _name = name_;
        _symbol = symbol_;
        maxSupply = maxSupply_;
        _publicPrice = publicPrice_;
        initSpecial(special);
    }

    function initSpecial(Special[] memory special) private {
        for (uint256 i = 0; i < special.length; i++) {
            _special[special[i].name] = special[i].num;
        }
    }

    function merge(
        string memory curStr,
        uint256 tnum,
        string[] memory specials
    ) external whenNotPaused {
        require(balanceOf(msg.sender, DIA) > 0, 'balance must bigger than 0');
        require(!_merged[curStr], 'images you choosed was merged');
        require(!_t_merged[tnum], 'your the three gates image was merged');
        for (uint256 i = 0; i < specials.length; i++) {
            require(_special[specials[i]] > 0, 'one of images is out of use');
        }
        _merged[curStr] = true;
        _t_merged[tnum] = true;
        for (uint256 i = 0; i < specials.length; i++) {
            _special[specials[i]] -= 1;
        }
        burn(msg.sender, DIA, 1);
    }

    function getNums(string[] memory specials) external view whenNotPaused returns (Special[] memory) {
        Special[] memory list = new Special[](specials.length);
        for (uint256 i = 0; i < specials.length; i++) {
            list[i] = Special(specials[i], _special[specials[i]]);
        }
        return list;
    }

    function airDrop(address[] memory addrs, uint256 amount) external onlyOwner {
        require(totalSupply(DIA) + addrs.length * amount <= maxSupply, 'exceeded max supply');
        for (uint256 i = 0; i < addrs.length; i++) {
            _mint(addrs[i], DIA, amount, '');
        }
    }

    function mint(address to) external payable whenNotPaused {
        require(balanceOf(to, DIA) < 1, 'address can not mint more than 1 times');
        require(totalSupply(DIA) <= maxSupply, 'exceeded max supply');
        require(msg.value == _publicPrice, 'cost incorrect');
        _mint(to, DIA, 1, '');
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function setPublicPrice(uint256 price) public onlyOwner {
        _publicPrice = price;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function check(uint256 tnum) public view returns (bool) {
        return _t_merged[tnum];
    }

    function checkMerged(string memory curStr) public view returns (bool) {
        return _merged[curStr];
    }

    function selfMint(
        address account,
        uint256 amount,
        bytes memory data
    ) public onlyOwner {
        _mint(account, DIA, amount, data);
    }

    function selfMintBatch(
        address to,
        uint256 _amounts,
        bytes memory data
    ) public onlyOwner {
        uint256[] memory ids;
        uint256[] memory amounts;
        ids[0] = DIA;
        amounts[0] = _amounts;
        _mintBatch(to, ids, amounts, data);
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) whenNotPaused {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

File 3 of 27 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 4 of 27 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 5 of 27 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

File 6 of 27 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 7 of 27 : 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 8 of 27 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 9 of 27 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 10 of 27 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 27 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 12 of 27 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 27 : 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 14 of 27 : 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 15 of 27 : 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 16 of 27 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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 17 of 27 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 18 of 27 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 19 of 27 : 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 20 of 27 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 21 of 27 : nft_is_dead.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract NFTISDEAD is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;

    string public baseTokenURI;
    uint256 public maxSupply;
    bool public paused = true;

    constructor(uint256 _maxSupply, string memory _baseTokenURI) ERC721('NFT IS DEAD?', 'NFTISDEAD') {
        setPaused(false);
        maxSupply = _maxSupply;
        baseTokenURI = _baseTokenURI;
    }

    modifier pausedMintCompliance() {
        require(!paused, 'contract is paused');
        _;
    }

    function mint(address to) public pausedMintCompliance {
        require(balanceOf(to) < 1, 'address can not mint more than 1 times');
        require(totalSupply() < maxSupply, 'max supply exceeded');
        currentTokenId.increment();
        uint256 itemId = currentTokenId.current();
        _safeMint(to, itemId);
    }

    function selfMint(uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount < maxSupply, 'max supply exceeded');
        for (uint256 i = 0; i < _amount; i++) {
            currentTokenId.increment();
            uint256 itemId = currentTokenId.current();
            _safeMint(msg.sender, itemId);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function getAirdropList(uint256 _amount) external view onlyOwner returns (address[] memory) {
        uint256 amount = _amount < totalSupply() ? _amount : totalSupply();
        address[] memory airdropList = new address[](amount);
        for (uint256 i = 0; i < amount; i++) {
            airdropList[i] = ownerOf(i + 1);
        }
        return airdropList;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

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

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

File 22 of 27 : 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 23 of 27 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 24 of 27 : 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 25 of 27 : lx_prophetgamma.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract Prophetgamma is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;

    string public baseTokenURI;
    uint256 public maxSupply;
    bool public paused = true;

    constructor(uint256 _maxSupply, string memory _baseTokenURI) ERC721('Prophetgamma', 'Prophetgamma') {
        setPaused(true);
        maxSupply = _maxSupply;
        baseTokenURI = _baseTokenURI;
    }

    modifier pausedMintCompliance() {
        require(!paused, 'contract is paused');
        _;
    }

    function mint(address to) public payable pausedMintCompliance {
        require(balanceOf(to) < 1, 'address can not mint more than 1 times');
        require(totalSupply() < maxSupply, 'max supply exceeded');
        if (totalSupply() > 400) {
            require(0.006 ether == msg.value, 'ether value you sent not correct');
        }
        currentTokenId.increment();
        uint256 itemId = currentTokenId.current();
        _safeMint(to, itemId);
    }

    function selfMint(uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount < maxSupply, 'max supply exceeded');
        for (uint256 i = 0; i < _amount; i++) {
            currentTokenId.increment();
            uint256 itemId = currentTokenId.current();
            _safeMint(msg.sender, itemId);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

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

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

File 26 of 27 : lx_mfer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract TheThreeGates is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;

    string public baseTokenURI;
    uint256 public maxSupply;
    bool public paused = true;

    constructor(uint256 _maxSupply, string memory _baseTokenURI) ERC721('TheThreeGates', 'TTG') {
        setPaused(true);
        maxSupply = _maxSupply;
        baseTokenURI = _baseTokenURI;
    }

    modifier pausedMintCompliance() {
        require(!paused, 'contract is paused');
        _;
    }

    function mint(address to) public payable pausedMintCompliance {
        require(balanceOf(to) < 1, 'address can not mint more than 1 times');
        require(totalSupply() < maxSupply, 'max supply exceeded');
        if (totalSupply() >= 10) {
            require(0.01 ether == msg.value, 'ether value you sent not correct');
        }
        currentTokenId.increment();
        uint256 itemId = currentTokenId.current();
        _safeMint(to, itemId);
    }

    function selfMint(uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount < maxSupply, 'max supply exceeded');
        for (uint256 i = 0; i < _amount; i++) {
            currentTokenId.increment();
            uint256 itemId = currentTokenId.current();
            _safeMint(msg.sender, itemId);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function getAirdropList(uint256 _amount) external view onlyOwner returns (address[] memory) {
        uint256 amount = _amount < totalSupply() ? _amount : totalSupply();
        address[] memory airdropList = new address[](amount);
        for (uint256 i = 0; i < amount; i++) {
            airdropList[i] = ownerOf(i + 1);
        }
        return airdropList;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

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

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

File 27 of 27 : lx_fuck_cent.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract CryptoPowell is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;

    string public baseTokenURI;
    uint256 public maxSupply;
    bool public paused = true;

    constructor(uint256 _maxSupply, uint256 _airdropMount, string memory _baseTokenURI) ERC721('CryptoPowell', 'CryptoPowell') {
        setPaused(false);
        maxSupply = _maxSupply;
        baseTokenURI = _baseTokenURI;
        selfMint(_airdropMount);
    }

    modifier pausedMintCompliance() {
        require(!paused, 'contract is paused');
        _;
    }

    function mint(address to) public pausedMintCompliance {
        require(balanceOf(to) < 1, 'address can not mint more than 1 times');
        require(totalSupply() < maxSupply, 'max supply exceeded');
        currentTokenId.increment();
        uint256 itemId = currentTokenId.current();
        _safeMint(to, itemId);
    }

    function selfMint(uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount < maxSupply, 'max supply exceeded');
        for (uint256 i = 0; i < _amount; i++) {
            currentTokenId.increment();
            uint256 itemId = currentTokenId.current();
            _safeMint(msg.sender, itemId);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"address","name":"pgAddress","type":"address"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"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":"addresses","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600f60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200586738038062005867833981810160405281019062000052919062001220565b6040518060400160405280600a81526020017f504747616d6543617264000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f504747616d6543617264000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000e58565b508060019080519060200190620000ef92919062000e58565b50505062000112620001066200019660201b60201c565b6200019e60201b60201c565b6001600b8190555083600e8190555082600d90805190602001906200013992919062000e58565b5081600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200018c816200026460201b60201c565b5050505062001911565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002746200035360201b60201c565b600e5462000287620003e460201b60201c565b10620002ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c19062001331565b60405180910390fd5b60005b81518110156200034f57620002ee600c620003f160201b620013bd1760201c565b600062000307600c6200040760201b620013d31760201c565b90506200033883838151811062000323576200032262001353565b5b6020026020010151826200041560201b60201c565b5080806200034690620013b1565b915050620002cd565b5050565b620003636200019660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003896200043b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d9906200144e565b60405180910390fd5b565b6000600880549050905090565b6001816000016000828254019250508190555050565b600081600001549050919050565b620004378282604051806020016040528060008152506200046560201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004778383620004d360201b60201c565b6200048c6000848484620006cc60201b60201c565b620004ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c590620014e6565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000545576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053c9062001558565b60405180910390fd5b62000556816200087560201b60201c565b1562000599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059090620015ca565b60405180910390fd5b620005ad60008383620008e160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005ff9190620015ec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006c860008383620008fe60201b60201c565b5050565b6000620006fa8473ffffffffffffffffffffffffffffffffffffffff166200090360201b620013e11760201c565b1562000868578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200072c6200019660201b60201c565b8786866040518563ffffffff1660e01b8152600401620007509493929190620016c8565b6020604051808303816000875af19250505080156200078f57506040513d601f19601f820116820180604052508101906200078c919062001779565b60015b62000817573d8060008114620007c2576040519150601f19603f3d011682016040523d82523d6000602084013e620007c7565b606091505b5060008151036200080f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080690620014e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200086d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008f98383836200092660201b620014041760201c565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6200093e83838362000a6b60201b620015161760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200098a57620009848162000a7060201b60201c565b620009d2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009d157620009d0838262000ab960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a1e5762000a188162000c3660201b60201c565b62000a66565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a655762000a64828262000d1260201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000ad38462000d9e60201b62000fab1760201c565b62000adf9190620017ab565b905060006007600084815260200190815260200160002054905081811462000bc5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c4c9190620017ab565b905060006009600084815260200190815260200160002054905060006008838154811062000c7f5762000c7e62001353565b5b90600052602060002001549050806008838154811062000ca45762000ca362001353565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000cf65762000cf5620017e6565b5b6001900381819060005260206000200160009055905550505050565b600062000d2a8362000d9e60201b62000fab1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e08906200188b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e6690620018dc565b90600052602060002090601f01602090048101928262000e8a576000855562000ed6565b82601f1062000ea557805160ff191683800117855562000ed6565b8280016001018555821562000ed6579182015b8281111562000ed557825182559160200191906001019062000eb8565b5b50905062000ee5919062000ee9565b5090565b5b8082111562000f0457600081600090555060010162000eea565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000f318162000f1c565b811462000f3d57600080fd5b50565b60008151905062000f518162000f26565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000fac8262000f61565b810181811067ffffffffffffffff8211171562000fce5762000fcd62000f72565b5b80604052505050565b600062000fe362000f08565b905062000ff1828262000fa1565b919050565b600067ffffffffffffffff82111562001014576200101362000f72565b5b6200101f8262000f61565b9050602081019050919050565b60005b838110156200104c5780820151818401526020810190506200102f565b838111156200105c576000848401525b50505050565b600062001079620010738462000ff6565b62000fd7565b90508281526020810184848401111562001098576200109762000f5c565b5b620010a58482856200102c565b509392505050565b600082601f830112620010c557620010c462000f57565b5b8151620010d784826020860162001062565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200110d82620010e0565b9050919050565b6200111f8162001100565b81146200112b57600080fd5b50565b6000815190506200113f8162001114565b92915050565b600067ffffffffffffffff82111562001163576200116262000f72565b5b602082029050602081019050919050565b600080fd5b6000620011906200118a8462001145565b62000fd7565b90508083825260208201905060208402830185811115620011b657620011b562001174565b5b835b81811015620011e35780620011ce88826200112e565b845260208401935050602081019050620011b8565b5050509392505050565b600082601f83011262001205576200120462000f57565b5b81516200121784826020860162001179565b91505092915050565b600080600080608085870312156200123d576200123c62000f12565b5b60006200124d8782880162000f40565b945050602085015167ffffffffffffffff81111562001271576200127062000f17565b5b6200127f87828801620010ad565b935050604062001292878288016200112e565b925050606085015167ffffffffffffffff811115620012b657620012b562000f17565b5b620012c487828801620011ed565b91505092959194509250565b600082825260208201905092915050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600062001319601383620012d0565b91506200132682620012e1565b602082019050919050565b600060208201905081810360008301526200134c816200130a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013be8262000f1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620013f357620013f262001382565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001436602083620012d0565b91506200144382620013fe565b602082019050919050565b60006020820190508181036000830152620014698162001427565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620014ce603283620012d0565b9150620014db8262001470565b604082019050919050565b600060208201905081810360008301526200150181620014bf565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062001540602083620012d0565b91506200154d8262001508565b602082019050919050565b60006020820190508181036000830152620015738162001531565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620015b2601c83620012d0565b9150620015bf826200157a565b602082019050919050565b60006020820190508181036000830152620015e581620015a3565b9050919050565b6000620015f98262000f1c565b9150620016068362000f1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200163e576200163d62001382565b5b828201905092915050565b620016548162001100565b82525050565b620016658162000f1c565b82525050565b600081519050919050565b600082825260208201905092915050565b600062001694826200166b565b620016a0818562001676565b9350620016b28185602086016200102c565b620016bd8162000f61565b840191505092915050565b6000608082019050620016df600083018762001649565b620016ee602083018662001649565b620016fd60408301856200165a565b818103606083015262001711818462001687565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001753816200171c565b81146200175f57600080fd5b50565b600081519050620017738162001748565b92915050565b60006020828403121562001792576200179162000f12565b5b6000620017a28482850162001762565b91505092915050565b6000620017b88262000f1c565b9150620017c58362000f1c565b925082821015620017db57620017da62001382565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600062001873602983620012d0565b9150620018808262001815565b604082019050919050565b60006020820190508181036000830152620018a68162001864565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620018f557607f821691505b6020821081036200190b576200190a620018ad565b5b50919050565b613f4680620019216000396000f3fe60806040526004361061019b5760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d547cfb711610064578063d547cfb7146105b4578063d5abeb01146105df578063e985e9c51461060a578063f2fde38b146106475761019b565b8063a22cb46514610525578063b88d4fde1461054e578063c87b56dd146105775761019b565b806370a08231116100c657806370a082311461047b578063715018a6146104b85780638da5cb5b146104cf57806395d89b41146104fa5761019b565b80635c975abb146103f75780636352211e146104225780636a6278421461045f5761019b565b806318160ddd1161015957806330176e131161013357806330176e13146103515780633ccfd60b1461037a57806342842e0e146103915780634f6ccce7146103ba5761019b565b806318160ddd146102c057806323b872dd146102eb5780632f745c59146103145761019b565b8062b6849f146101a057806301ffc9a7146101c957806306fdde0314610206578063081812fc14610231578063095ea7b31461026e57806316c38b3c14610297575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c291906129b4565b610670565b005b3480156101d557600080fd5b506101f060048036038101906101eb9190612a55565b610723565b6040516101fd9190612a9d565b60405180910390f35b34801561021257600080fd5b5061021b610735565b6040516102289190612b40565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190612b98565b6107c7565b6040516102659190612bd4565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612bef565b61080d565b005b3480156102a357600080fd5b506102be60048036038101906102b99190612c5b565b610924565b005b3480156102cc57600080fd5b506102d5610949565b6040516102e29190612c97565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612cb2565b610956565b005b34801561032057600080fd5b5061033b60048036038101906103369190612bef565b6109b6565b6040516103489190612c97565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612dba565b610a5b565b005b34801561038657600080fd5b5061038f610a7d565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612cb2565b610b5a565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612b98565b610b7a565b6040516103ee9190612c97565b60405180910390f35b34801561040357600080fd5b5061040c610beb565b6040516104199190612a9d565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190612b98565b610bfe565b6040516104569190612bd4565b60405180910390f35b61047960048036038101906104749190612e03565b610caf565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612e03565b610fab565b6040516104af9190612c97565b60405180910390f35b3480156104c457600080fd5b506104cd611062565b005b3480156104db57600080fd5b506104e4611076565b6040516104f19190612bd4565b60405180910390f35b34801561050657600080fd5b5061050f6110a0565b60405161051c9190612b40565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612e30565b611132565b005b34801561055a57600080fd5b5061057560048036038101906105709190612f11565b611148565b005b34801561058357600080fd5b5061059e60048036038101906105999190612b98565b6111aa565b6040516105ab9190612b40565b60405180910390f35b3480156105c057600080fd5b506105c9611212565b6040516105d69190612b40565b60405180910390f35b3480156105eb57600080fd5b506105f46112a0565b6040516106019190612c97565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612f94565b6112a6565b60405161063e9190612a9d565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612e03565b61133a565b005b61067861151b565b600e54610683610949565b106106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba90613020565b60405180910390fd5b60005b815181101561071f576106d9600c6113bd565b60006106e5600c6113d3565b905061070b8383815181106106fd576106fc613040565b5b602002602001015182611599565b5080806107179061309e565b9150506106c6565b5050565b600061072e826115b7565b9050919050565b60606000805461074490613115565b80601f016020809104026020016040519081016040528092919081815260200182805461077090613115565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611631565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081882610bfe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f906131b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a761167c565b73ffffffffffffffffffffffffffffffffffffffff1614806108d657506108d5816108d061167c565b6112a6565b5b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c9061324a565b60405180910390fd5b61091f8383611684565b505050565b61092c61151b565b80600f60006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b61096761096161167c565b8261173d565b6109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906132dc565b60405180910390fd5b6109b18383836117d2565b505050565b60006109c183610fab565b8210610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f99061336e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a6361151b565b80600d9080519060200190610a79929190612746565b5050565b610a8561151b565b6002600b5403610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906133da565b60405180910390fd5b6002600b819055506000610adc611076565b73ffffffffffffffffffffffffffffffffffffffff1647604051610aff9061342b565b60006040518083038185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b4f57600080fd5b506001600b81905550565b610b7583838360405180602001604052806000815250611148565b505050565b6000610b84610949565b8210610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906134b2565b60405180910390fd5b60088281548110610bd957610bd8613040565b5b90600052602060002001549050919050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d9061351e565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff1615610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf69061358a565b60405180910390fd5b6005610d0a82610fab565b10610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061361c565b60405180910390fd5b600e54610d55610949565b10610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90613020565b60405180910390fd5b6000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610df29190612bd4565b602060405180830381865afa158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190613651565b118015610e4957506001610e4682610fab565b10155b15610e985734661550f7dca7000014610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906136f0565b60405180910390fd5b5b6000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610ef59190612bd4565b602060405180830381865afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190613651565b03610f855734661550f7dca7000014610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90613782565b60405180910390fd5b5b610f8f600c6113bd565b6000610f9b600c6113d3565b9050610fa78282611599565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613814565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61106a61151b565b6110746000611a38565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110af90613115565b80601f01602080910402602001604051908101604052809291908181526020018280546110db90613115565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b5050505050905090565b61114461113d61167c565b8383611afe565b5050565b61115961115361167c565b8361173d565b611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f906132dc565b60405180910390fd5b6111a484848484611c6a565b50505050565b60606111b582611631565b60006111bf611cc6565b905060008151116111df576040518060200160405280600081525061120a565b806111e984611d58565b6040516020016111fa9291906138bc565b6040516020818303038152906040525b915050919050565b600d805461121f90613115565b80601f016020809104026020016040519081016040528092919081815260200182805461124b90613115565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b505050505081565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61134261151b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a89061395d565b60405180910390fd5b6113ba81611a38565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61140f838383611516565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114515761144c81611eb8565b611490565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461148f5761148e8382611f01565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d2576114cd8161206e565b611511565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146115105761150f828261213f565b5b5b505050565b505050565b61152361167c565b73ffffffffffffffffffffffffffffffffffffffff16611541611076565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e906139c9565b60405180910390fd5b565b6115b38282604051806020016040528060008152506121be565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061162a575061162982612219565b5b9050919050565b61163a816122fb565b611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061351e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f783610bfe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061174983610bfe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061178b575061178a81856112a6565b5b806117c957508373ffffffffffffffffffffffffffffffffffffffff166117b1846107c7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117f282610bfe565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613a5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613aed565b60405180910390fd5b6118c2838383612367565b6118cd600082611684565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191d9190613b0d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119749190613b41565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a33838383612377565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390613be3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5d9190612a9d565b60405180910390a3505050565b611c758484846117d2565b611c818484848461237c565b611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790613c75565b60405180910390fd5b50505050565b6060600d8054611cd590613115565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0190613115565b8015611d4e5780601f10611d2357610100808354040283529160200191611d4e565b820191906000526020600020905b815481529060010190602001808311611d3157829003601f168201915b5050505050905090565b606060008203611d9f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb3565b600082905060005b60008214611dd1578080611dba9061309e565b915050600a82611dca9190613cc4565b9150611da7565b60008167ffffffffffffffff811115611ded57611dec612813565b5b6040519080825280601f01601f191660200182016040528015611e1f5781602001600182028036833780820191505090505b5090505b60008514611eac57600182611e389190613b0d565b9150600a85611e479190613cf5565b6030611e539190613b41565b60f81b818381518110611e6957611e68613040565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ea59190613cc4565b9450611e23565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f0e84610fab565b611f189190613b0d565b9050600060076000848152602001908152602001600020549050818114611ffd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506120829190613b0d565b90506000600960008481526020019081526020016000205490506000600883815481106120b2576120b1613040565b5b9060005260206000200154905080600883815481106120d4576120d3613040565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061212357612122613d26565b5b6001900381819060005260206000200160009055905550505050565b600061214a83610fab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6121c88383612503565b6121d5600084848461237c565b612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90613c75565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122f457506122f3826126dc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612372838383611404565b505050565b505050565b600061239d8473ffffffffffffffffffffffffffffffffffffffff166113e1565b156124f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123c661167c565b8786866040518563ffffffff1660e01b81526004016123e89493929190613daa565b6020604051808303816000875af192505050801561242457506040513d601f19601f820116820180604052508101906124219190613e0b565b60015b6124a6573d8060008114612454576040519150601f19603f3d011682016040523d82523d6000602084013e612459565b606091505b50600081510361249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249590613c75565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124fb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256990613e84565b60405180910390fd5b61257b816122fb565b156125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613ef0565b60405180910390fd5b6125c760008383612367565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126179190613b41565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126d860008383612377565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461275290613115565b90600052602060002090601f01602090048101928261277457600085556127bb565b82601f1061278d57805160ff19168380011785556127bb565b828001600101855582156127bb579182015b828111156127ba57825182559160200191906001019061279f565b5b5090506127c891906127cc565b5090565b5b808211156127e55760008160009055506001016127cd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61284b82612802565b810181811067ffffffffffffffff8211171561286a57612869612813565b5b80604052505050565b600061287d6127e9565b90506128898282612842565b919050565b600067ffffffffffffffff8211156128a9576128a8612813565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ea826128bf565b9050919050565b6128fa816128df565b811461290557600080fd5b50565b600081359050612917816128f1565b92915050565b600061293061292b8461288e565b612873565b90508083825260208201905060208402830185811115612953576129526128ba565b5b835b8181101561297c57806129688882612908565b845260208401935050602081019050612955565b5050509392505050565b600082601f83011261299b5761299a6127fd565b5b81356129ab84826020860161291d565b91505092915050565b6000602082840312156129ca576129c96127f3565b5b600082013567ffffffffffffffff8111156129e8576129e76127f8565b5b6129f484828501612986565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a32816129fd565b8114612a3d57600080fd5b50565b600081359050612a4f81612a29565b92915050565b600060208284031215612a6b57612a6a6127f3565b5b6000612a7984828501612a40565b91505092915050565b60008115159050919050565b612a9781612a82565b82525050565b6000602082019050612ab26000830184612a8e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612af2578082015181840152602081019050612ad7565b83811115612b01576000848401525b50505050565b6000612b1282612ab8565b612b1c8185612ac3565b9350612b2c818560208601612ad4565b612b3581612802565b840191505092915050565b60006020820190508181036000830152612b5a8184612b07565b905092915050565b6000819050919050565b612b7581612b62565b8114612b8057600080fd5b50565b600081359050612b9281612b6c565b92915050565b600060208284031215612bae57612bad6127f3565b5b6000612bbc84828501612b83565b91505092915050565b612bce816128df565b82525050565b6000602082019050612be96000830184612bc5565b92915050565b60008060408385031215612c0657612c056127f3565b5b6000612c1485828601612908565b9250506020612c2585828601612b83565b9150509250929050565b612c3881612a82565b8114612c4357600080fd5b50565b600081359050612c5581612c2f565b92915050565b600060208284031215612c7157612c706127f3565b5b6000612c7f84828501612c46565b91505092915050565b612c9181612b62565b82525050565b6000602082019050612cac6000830184612c88565b92915050565b600080600060608486031215612ccb57612cca6127f3565b5b6000612cd986828701612908565b9350506020612cea86828701612908565b9250506040612cfb86828701612b83565b9150509250925092565b600080fd5b600067ffffffffffffffff821115612d2557612d24612813565b5b612d2e82612802565b9050602081019050919050565b82818337600083830152505050565b6000612d5d612d5884612d0a565b612873565b905082815260208101848484011115612d7957612d78612d05565b5b612d84848285612d3b565b509392505050565b600082601f830112612da157612da06127fd565b5b8135612db1848260208601612d4a565b91505092915050565b600060208284031215612dd057612dcf6127f3565b5b600082013567ffffffffffffffff811115612dee57612ded6127f8565b5b612dfa84828501612d8c565b91505092915050565b600060208284031215612e1957612e186127f3565b5b6000612e2784828501612908565b91505092915050565b60008060408385031215612e4757612e466127f3565b5b6000612e5585828601612908565b9250506020612e6685828601612c46565b9150509250929050565b600067ffffffffffffffff821115612e8b57612e8a612813565b5b612e9482612802565b9050602081019050919050565b6000612eb4612eaf84612e70565b612873565b905082815260208101848484011115612ed057612ecf612d05565b5b612edb848285612d3b565b509392505050565b600082601f830112612ef857612ef76127fd565b5b8135612f08848260208601612ea1565b91505092915050565b60008060008060808587031215612f2b57612f2a6127f3565b5b6000612f3987828801612908565b9450506020612f4a87828801612908565b9350506040612f5b87828801612b83565b925050606085013567ffffffffffffffff811115612f7c57612f7b6127f8565b5b612f8887828801612ee3565b91505092959194509250565b60008060408385031215612fab57612faa6127f3565b5b6000612fb985828601612908565b9250506020612fca85828601612908565b9150509250929050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061300a601383612ac3565b915061301582612fd4565b602082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a982612b62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130db576130da61306f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061312d57607f821691505b6020821081036131405761313f6130e6565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131a2602183612ac3565b91506131ad82613146565b604082019050919050565b600060208201905081810360008301526131d181613195565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613234603e83612ac3565b915061323f826131d8565b604082019050919050565b6000602082019050818103600083015261326381613227565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006132c6602e83612ac3565b91506132d18261326a565b604082019050919050565b600060208201905081810360008301526132f5816132b9565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613358602b83612ac3565b9150613363826132fc565b604082019050919050565b600060208201905081810360008301526133878161334b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006133c4601f83612ac3565b91506133cf8261338e565b602082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b600081905092915050565b50565b60006134156000836133fa565b915061342082613405565b600082019050919050565b600061343682613408565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061349c602c83612ac3565b91506134a782613440565b604082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613508601883612ac3565b9150613513826134d2565b602082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000613574601283612ac3565b915061357f8261353e565b602082019050919050565b600060208201905081810360008301526135a381613567565b9050919050565b7f616464726573732063616e206e6f74206d696e74206d6f7265207468616e203560008201527f2074696d65730000000000000000000000000000000000000000000000000000602082015250565b6000613606602683612ac3565b9150613611826135aa565b604082019050919050565b60006020820190508181036000830152613635816135f9565b9050919050565b60008151905061364b81612b6c565b92915050565b600060208284031215613667576136666127f3565b5b60006136758482850161363c565b91505092915050565b7f65746865722076616c756520796f752073656e74206e6f7420636f727265637460008201527f2c206f776e2050726f7068657467616d6d610000000000000000000000000000602082015250565b60006136da603283612ac3565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f65746865722076616c756520796f752073656e74206e6f7420636f727265637460008201527f2c206e6f74206f776e2050726f7068657467616d6d6100000000000000000000602082015250565b600061376c603683612ac3565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137fe602983612ac3565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b600081905092915050565b600061384a82612ab8565b6138548185613834565b9350613864818560208601612ad4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138a6600583613834565b91506138b182613870565b600582019050919050565b60006138c8828561383f565b91506138d4828461383f565b91506138df82613899565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613947602683612ac3565b9150613952826138eb565b604082019050919050565b600060208201905081810360008301526139768161393a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139b3602083612ac3565b91506139be8261397d565b602082019050919050565b600060208201905081810360008301526139e2816139a6565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613a45602583612ac3565b9150613a50826139e9565b604082019050919050565b60006020820190508181036000830152613a7481613a38565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ad7602483612ac3565b9150613ae282613a7b565b604082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b6000613b1882612b62565b9150613b2383612b62565b925082821015613b3657613b3561306f565b5b828203905092915050565b6000613b4c82612b62565b9150613b5783612b62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8c57613b8b61306f565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bcd601983612ac3565b9150613bd882613b97565b602082019050919050565b60006020820190508181036000830152613bfc81613bc0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c5f603283612ac3565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ccf82612b62565b9150613cda83612b62565b925082613cea57613ce9613c95565b5b828204905092915050565b6000613d0082612b62565b9150613d0b83612b62565b925082613d1b57613d1a613c95565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d7c82613d55565b613d868185613d60565b9350613d96818560208601612ad4565b613d9f81612802565b840191505092915050565b6000608082019050613dbf6000830187612bc5565b613dcc6020830186612bc5565b613dd96040830185612c88565b8181036060830152613deb8184613d71565b905095945050505050565b600081519050613e0581612a29565b92915050565b600060208284031215613e2157613e206127f3565b5b6000613e2f84828501613df6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613e6e602083612ac3565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613eda601c83612ac3565b9150613ee582613ea4565b602082019050919050565b60006020820190508181036000830152613f0981613ecd565b905091905056fea264697066735822122044d9fa9d44f1d916bf215747ccbafc19285766e271370789312a3e8826a8d52c64736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000038300000000000000000000000000000000000000000000000000000000000000800000000000000000000000006ae978e0c8466eb5371592b1870bacc36bdbf16300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696867786470733573766173616b716534706a693467336f666f737370683361336e6e6475336e76626b70373366683368686364792f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000b1505fe87a026a3710b7912e7c0b7fd3fe82d206000000000000000000000000276007c236ab5bbbe2485d0eaefcd44616de7035000000000000000000000000b88b6c6a030bc11d5c680756826f446524571d54000000000000000000000000bfaaf96bfd2b860a09e2168a3605a01a76bc0d0e0000000000000000000000008bce11c4d7e54001de59dccadb3f0a5bf5c7b331000000000000000000000000f7a12aadfe3a5e1b3107a053e77aa43f1fa735db000000000000000000000000cc7ffdc1ff7d8f32e4940d32ffc32d3fb8c1fae90000000000000000000000009b1acd4336ebf7656f49224d14a892566fd48e68000000000000000000000000b479de67e0827cc72bf5c1727e3bf6fe15007554000000000000000000000000491befac53aac201e97cd6f4c750e4a958d22d460000000000000000000000008de4921b0729621496a41df811f2f0c402bb775000000000000000000000000025d49c5357788721b30bf17c426195d09c6480cd000000000000000000000000769ba16f31a73b635e75c17fccc3db4feb2521ab00000000000000000000000093ec07ba1648b54787748d6e960a66ee442b842400000000000000000000000000000000000a01757661bd51345cd95c403204800000000000000000000000006905435fa2e1cb31972bb0f0bff16f5744a918760000000000000000000000002d580e6aab2e0a5863e0a2a09c8400103354a6fd000000000000000000000000c9870f60415c62d998dfe3ded15aafc015f45acc000000000000000000000000b78fdfe0765363cdb5668ba555442aaa251058b900000000000000000000000006a069bb7fca3fbf761799686fcaa0d47e2dea660000000000000000000000001dc1cf2ce34f49ea1be697848087c71241b95cdd000000000000000000000000892f4311f028be8a58ad5a5e6159155867816647000000000000000000000000f6678c05e0f9bffdaeae26a0f9f19d8dd149af070000000000000000000000008cd519d58e38e37955fa19d20ef6f9d3074f1a3e000000000000000000000000912fbe8f87d1e66d5431197cda1f2656cb62eb6f00000000000000000000000097a33c4c04c5fac124ee815565f5e5bd2a030e6d000000000000000000000000d0d68bf506cce28380dae5aa9fb7c52913b3e2ef0000000000000000000000000b9e57c8431611d917937d1fc76bf1970f9a42630000000000000000000000000daae9d1dfb405e5fe3268e02a18c4e877d2c1f70000000000000000000000000e4dd15bc3dcf29bfb5c15831bcff6f0dc6aef4a0000000000000000000000003a791d366708ac8ff3ac67887f2cc6cb439e1e140000000000000000000000003e9e5315abd7c6988c01078a3246600d7d858d970000000000000000000000007630b4c25febf9996f722902af1aaede80930ceb00000000000000000000000082ced4c45a0140226c1ea3a1462a5ee9368dc6ac000000000000000000000000f703697f89510804e9bb02831f3d7db670697be200000000000000000000000004a8d64495f8067dadc09bdd07cc91896c3c4eba0000000000000000000000001c6a8da8cc0e9bb7c33cc05884df6c4f2ed70abb0000000000000000000000001d87297915f17cd24af97724cfc88d8608c2063000000000000000000000000055483b35f2a9c32af91a9ce11e6570ed4a8cd5f7000000000000000000000000698e41734141ab1557a6c9e1bfdfbc875248336b0000000000000000000000006cc68283d4e303df5aa07b72bdeca465fc252a300000000000000000000000008bce11c4d7e54001de59dccadb3f0a5bf5c7b331000000000000000000000000affaacccaacc03906346e85423a50bbf2d5ca7f6000000000000000000000000bef155308b2408f29868653d805310e0d7d08778000000000000000000000000c1a0a95eeecabebb15569a602bbbc5ffa69a23ea000000000000000000000000f84d6d2dc4a432b98a7d5b3160373d33158a4c84000000000000000000000000846288c4f9fe8aef9ac643863ebc3bc250ea88e8

Deployed Bytecode

0x60806040526004361061019b5760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d547cfb711610064578063d547cfb7146105b4578063d5abeb01146105df578063e985e9c51461060a578063f2fde38b146106475761019b565b8063a22cb46514610525578063b88d4fde1461054e578063c87b56dd146105775761019b565b806370a08231116100c657806370a082311461047b578063715018a6146104b85780638da5cb5b146104cf57806395d89b41146104fa5761019b565b80635c975abb146103f75780636352211e146104225780636a6278421461045f5761019b565b806318160ddd1161015957806330176e131161013357806330176e13146103515780633ccfd60b1461037a57806342842e0e146103915780634f6ccce7146103ba5761019b565b806318160ddd146102c057806323b872dd146102eb5780632f745c59146103145761019b565b8062b6849f146101a057806301ffc9a7146101c957806306fdde0314610206578063081812fc14610231578063095ea7b31461026e57806316c38b3c14610297575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c291906129b4565b610670565b005b3480156101d557600080fd5b506101f060048036038101906101eb9190612a55565b610723565b6040516101fd9190612a9d565b60405180910390f35b34801561021257600080fd5b5061021b610735565b6040516102289190612b40565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190612b98565b6107c7565b6040516102659190612bd4565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612bef565b61080d565b005b3480156102a357600080fd5b506102be60048036038101906102b99190612c5b565b610924565b005b3480156102cc57600080fd5b506102d5610949565b6040516102e29190612c97565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612cb2565b610956565b005b34801561032057600080fd5b5061033b60048036038101906103369190612bef565b6109b6565b6040516103489190612c97565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612dba565b610a5b565b005b34801561038657600080fd5b5061038f610a7d565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612cb2565b610b5a565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612b98565b610b7a565b6040516103ee9190612c97565b60405180910390f35b34801561040357600080fd5b5061040c610beb565b6040516104199190612a9d565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190612b98565b610bfe565b6040516104569190612bd4565b60405180910390f35b61047960048036038101906104749190612e03565b610caf565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612e03565b610fab565b6040516104af9190612c97565b60405180910390f35b3480156104c457600080fd5b506104cd611062565b005b3480156104db57600080fd5b506104e4611076565b6040516104f19190612bd4565b60405180910390f35b34801561050657600080fd5b5061050f6110a0565b60405161051c9190612b40565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612e30565b611132565b005b34801561055a57600080fd5b5061057560048036038101906105709190612f11565b611148565b005b34801561058357600080fd5b5061059e60048036038101906105999190612b98565b6111aa565b6040516105ab9190612b40565b60405180910390f35b3480156105c057600080fd5b506105c9611212565b6040516105d69190612b40565b60405180910390f35b3480156105eb57600080fd5b506105f46112a0565b6040516106019190612c97565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612f94565b6112a6565b60405161063e9190612a9d565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612e03565b61133a565b005b61067861151b565b600e54610683610949565b106106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba90613020565b60405180910390fd5b60005b815181101561071f576106d9600c6113bd565b60006106e5600c6113d3565b905061070b8383815181106106fd576106fc613040565b5b602002602001015182611599565b5080806107179061309e565b9150506106c6565b5050565b600061072e826115b7565b9050919050565b60606000805461074490613115565b80601f016020809104026020016040519081016040528092919081815260200182805461077090613115565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611631565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081882610bfe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f906131b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a761167c565b73ffffffffffffffffffffffffffffffffffffffff1614806108d657506108d5816108d061167c565b6112a6565b5b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c9061324a565b60405180910390fd5b61091f8383611684565b505050565b61092c61151b565b80600f60006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b61096761096161167c565b8261173d565b6109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906132dc565b60405180910390fd5b6109b18383836117d2565b505050565b60006109c183610fab565b8210610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f99061336e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a6361151b565b80600d9080519060200190610a79929190612746565b5050565b610a8561151b565b6002600b5403610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906133da565b60405180910390fd5b6002600b819055506000610adc611076565b73ffffffffffffffffffffffffffffffffffffffff1647604051610aff9061342b565b60006040518083038185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b4f57600080fd5b506001600b81905550565b610b7583838360405180602001604052806000815250611148565b505050565b6000610b84610949565b8210610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906134b2565b60405180910390fd5b60088281548110610bd957610bd8613040565b5b90600052602060002001549050919050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d9061351e565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff1615610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf69061358a565b60405180910390fd5b6005610d0a82610fab565b10610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061361c565b60405180910390fd5b600e54610d55610949565b10610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90613020565b60405180910390fd5b6000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610df29190612bd4565b602060405180830381865afa158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190613651565b118015610e4957506001610e4682610fab565b10155b15610e985734661550f7dca7000014610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906136f0565b60405180910390fd5b5b6000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610ef59190612bd4565b602060405180830381865afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190613651565b03610f855734661550f7dca7000014610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90613782565b60405180910390fd5b5b610f8f600c6113bd565b6000610f9b600c6113d3565b9050610fa78282611599565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613814565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61106a61151b565b6110746000611a38565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110af90613115565b80601f01602080910402602001604051908101604052809291908181526020018280546110db90613115565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b5050505050905090565b61114461113d61167c565b8383611afe565b5050565b61115961115361167c565b8361173d565b611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f906132dc565b60405180910390fd5b6111a484848484611c6a565b50505050565b60606111b582611631565b60006111bf611cc6565b905060008151116111df576040518060200160405280600081525061120a565b806111e984611d58565b6040516020016111fa9291906138bc565b6040516020818303038152906040525b915050919050565b600d805461121f90613115565b80601f016020809104026020016040519081016040528092919081815260200182805461124b90613115565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b505050505081565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61134261151b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a89061395d565b60405180910390fd5b6113ba81611a38565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61140f838383611516565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114515761144c81611eb8565b611490565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461148f5761148e8382611f01565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d2576114cd8161206e565b611511565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146115105761150f828261213f565b5b5b505050565b505050565b61152361167c565b73ffffffffffffffffffffffffffffffffffffffff16611541611076565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e906139c9565b60405180910390fd5b565b6115b38282604051806020016040528060008152506121be565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061162a575061162982612219565b5b9050919050565b61163a816122fb565b611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061351e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f783610bfe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061174983610bfe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061178b575061178a81856112a6565b5b806117c957508373ffffffffffffffffffffffffffffffffffffffff166117b1846107c7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117f282610bfe565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613a5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613aed565b60405180910390fd5b6118c2838383612367565b6118cd600082611684565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191d9190613b0d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119749190613b41565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a33838383612377565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390613be3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5d9190612a9d565b60405180910390a3505050565b611c758484846117d2565b611c818484848461237c565b611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790613c75565b60405180910390fd5b50505050565b6060600d8054611cd590613115565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0190613115565b8015611d4e5780601f10611d2357610100808354040283529160200191611d4e565b820191906000526020600020905b815481529060010190602001808311611d3157829003601f168201915b5050505050905090565b606060008203611d9f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb3565b600082905060005b60008214611dd1578080611dba9061309e565b915050600a82611dca9190613cc4565b9150611da7565b60008167ffffffffffffffff811115611ded57611dec612813565b5b6040519080825280601f01601f191660200182016040528015611e1f5781602001600182028036833780820191505090505b5090505b60008514611eac57600182611e389190613b0d565b9150600a85611e479190613cf5565b6030611e539190613b41565b60f81b818381518110611e6957611e68613040565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ea59190613cc4565b9450611e23565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f0e84610fab565b611f189190613b0d565b9050600060076000848152602001908152602001600020549050818114611ffd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506120829190613b0d565b90506000600960008481526020019081526020016000205490506000600883815481106120b2576120b1613040565b5b9060005260206000200154905080600883815481106120d4576120d3613040565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061212357612122613d26565b5b6001900381819060005260206000200160009055905550505050565b600061214a83610fab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6121c88383612503565b6121d5600084848461237c565b612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90613c75565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122f457506122f3826126dc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612372838383611404565b505050565b505050565b600061239d8473ffffffffffffffffffffffffffffffffffffffff166113e1565b156124f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123c661167c565b8786866040518563ffffffff1660e01b81526004016123e89493929190613daa565b6020604051808303816000875af192505050801561242457506040513d601f19601f820116820180604052508101906124219190613e0b565b60015b6124a6573d8060008114612454576040519150601f19603f3d011682016040523d82523d6000602084013e612459565b606091505b50600081510361249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249590613c75565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124fb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256990613e84565b60405180910390fd5b61257b816122fb565b156125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613ef0565b60405180910390fd5b6125c760008383612367565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126179190613b41565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126d860008383612377565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461275290613115565b90600052602060002090601f01602090048101928261277457600085556127bb565b82601f1061278d57805160ff19168380011785556127bb565b828001600101855582156127bb579182015b828111156127ba57825182559160200191906001019061279f565b5b5090506127c891906127cc565b5090565b5b808211156127e55760008160009055506001016127cd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61284b82612802565b810181811067ffffffffffffffff8211171561286a57612869612813565b5b80604052505050565b600061287d6127e9565b90506128898282612842565b919050565b600067ffffffffffffffff8211156128a9576128a8612813565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ea826128bf565b9050919050565b6128fa816128df565b811461290557600080fd5b50565b600081359050612917816128f1565b92915050565b600061293061292b8461288e565b612873565b90508083825260208201905060208402830185811115612953576129526128ba565b5b835b8181101561297c57806129688882612908565b845260208401935050602081019050612955565b5050509392505050565b600082601f83011261299b5761299a6127fd565b5b81356129ab84826020860161291d565b91505092915050565b6000602082840312156129ca576129c96127f3565b5b600082013567ffffffffffffffff8111156129e8576129e76127f8565b5b6129f484828501612986565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a32816129fd565b8114612a3d57600080fd5b50565b600081359050612a4f81612a29565b92915050565b600060208284031215612a6b57612a6a6127f3565b5b6000612a7984828501612a40565b91505092915050565b60008115159050919050565b612a9781612a82565b82525050565b6000602082019050612ab26000830184612a8e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612af2578082015181840152602081019050612ad7565b83811115612b01576000848401525b50505050565b6000612b1282612ab8565b612b1c8185612ac3565b9350612b2c818560208601612ad4565b612b3581612802565b840191505092915050565b60006020820190508181036000830152612b5a8184612b07565b905092915050565b6000819050919050565b612b7581612b62565b8114612b8057600080fd5b50565b600081359050612b9281612b6c565b92915050565b600060208284031215612bae57612bad6127f3565b5b6000612bbc84828501612b83565b91505092915050565b612bce816128df565b82525050565b6000602082019050612be96000830184612bc5565b92915050565b60008060408385031215612c0657612c056127f3565b5b6000612c1485828601612908565b9250506020612c2585828601612b83565b9150509250929050565b612c3881612a82565b8114612c4357600080fd5b50565b600081359050612c5581612c2f565b92915050565b600060208284031215612c7157612c706127f3565b5b6000612c7f84828501612c46565b91505092915050565b612c9181612b62565b82525050565b6000602082019050612cac6000830184612c88565b92915050565b600080600060608486031215612ccb57612cca6127f3565b5b6000612cd986828701612908565b9350506020612cea86828701612908565b9250506040612cfb86828701612b83565b9150509250925092565b600080fd5b600067ffffffffffffffff821115612d2557612d24612813565b5b612d2e82612802565b9050602081019050919050565b82818337600083830152505050565b6000612d5d612d5884612d0a565b612873565b905082815260208101848484011115612d7957612d78612d05565b5b612d84848285612d3b565b509392505050565b600082601f830112612da157612da06127fd565b5b8135612db1848260208601612d4a565b91505092915050565b600060208284031215612dd057612dcf6127f3565b5b600082013567ffffffffffffffff811115612dee57612ded6127f8565b5b612dfa84828501612d8c565b91505092915050565b600060208284031215612e1957612e186127f3565b5b6000612e2784828501612908565b91505092915050565b60008060408385031215612e4757612e466127f3565b5b6000612e5585828601612908565b9250506020612e6685828601612c46565b9150509250929050565b600067ffffffffffffffff821115612e8b57612e8a612813565b5b612e9482612802565b9050602081019050919050565b6000612eb4612eaf84612e70565b612873565b905082815260208101848484011115612ed057612ecf612d05565b5b612edb848285612d3b565b509392505050565b600082601f830112612ef857612ef76127fd565b5b8135612f08848260208601612ea1565b91505092915050565b60008060008060808587031215612f2b57612f2a6127f3565b5b6000612f3987828801612908565b9450506020612f4a87828801612908565b9350506040612f5b87828801612b83565b925050606085013567ffffffffffffffff811115612f7c57612f7b6127f8565b5b612f8887828801612ee3565b91505092959194509250565b60008060408385031215612fab57612faa6127f3565b5b6000612fb985828601612908565b9250506020612fca85828601612908565b9150509250929050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b600061300a601383612ac3565b915061301582612fd4565b602082019050919050565b6000602082019050818103600083015261303981612ffd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a982612b62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130db576130da61306f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061312d57607f821691505b6020821081036131405761313f6130e6565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131a2602183612ac3565b91506131ad82613146565b604082019050919050565b600060208201905081810360008301526131d181613195565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613234603e83612ac3565b915061323f826131d8565b604082019050919050565b6000602082019050818103600083015261326381613227565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006132c6602e83612ac3565b91506132d18261326a565b604082019050919050565b600060208201905081810360008301526132f5816132b9565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613358602b83612ac3565b9150613363826132fc565b604082019050919050565b600060208201905081810360008301526133878161334b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006133c4601f83612ac3565b91506133cf8261338e565b602082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b600081905092915050565b50565b60006134156000836133fa565b915061342082613405565b600082019050919050565b600061343682613408565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061349c602c83612ac3565b91506134a782613440565b604082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613508601883612ac3565b9150613513826134d2565b602082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000613574601283612ac3565b915061357f8261353e565b602082019050919050565b600060208201905081810360008301526135a381613567565b9050919050565b7f616464726573732063616e206e6f74206d696e74206d6f7265207468616e203560008201527f2074696d65730000000000000000000000000000000000000000000000000000602082015250565b6000613606602683612ac3565b9150613611826135aa565b604082019050919050565b60006020820190508181036000830152613635816135f9565b9050919050565b60008151905061364b81612b6c565b92915050565b600060208284031215613667576136666127f3565b5b60006136758482850161363c565b91505092915050565b7f65746865722076616c756520796f752073656e74206e6f7420636f727265637460008201527f2c206f776e2050726f7068657467616d6d610000000000000000000000000000602082015250565b60006136da603283612ac3565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f65746865722076616c756520796f752073656e74206e6f7420636f727265637460008201527f2c206e6f74206f776e2050726f7068657467616d6d6100000000000000000000602082015250565b600061376c603683612ac3565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137fe602983612ac3565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b600081905092915050565b600061384a82612ab8565b6138548185613834565b9350613864818560208601612ad4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138a6600583613834565b91506138b182613870565b600582019050919050565b60006138c8828561383f565b91506138d4828461383f565b91506138df82613899565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613947602683612ac3565b9150613952826138eb565b604082019050919050565b600060208201905081810360008301526139768161393a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139b3602083612ac3565b91506139be8261397d565b602082019050919050565b600060208201905081810360008301526139e2816139a6565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613a45602583612ac3565b9150613a50826139e9565b604082019050919050565b60006020820190508181036000830152613a7481613a38565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ad7602483612ac3565b9150613ae282613a7b565b604082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b6000613b1882612b62565b9150613b2383612b62565b925082821015613b3657613b3561306f565b5b828203905092915050565b6000613b4c82612b62565b9150613b5783612b62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8c57613b8b61306f565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bcd601983612ac3565b9150613bd882613b97565b602082019050919050565b60006020820190508181036000830152613bfc81613bc0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c5f603283612ac3565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ccf82612b62565b9150613cda83612b62565b925082613cea57613ce9613c95565b5b828204905092915050565b6000613d0082612b62565b9150613d0b83612b62565b925082613d1b57613d1a613c95565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d7c82613d55565b613d868185613d60565b9350613d96818560208601612ad4565b613d9f81612802565b840191505092915050565b6000608082019050613dbf6000830187612bc5565b613dcc6020830186612bc5565b613dd96040830185612c88565b8181036060830152613deb8184613d71565b905095945050505050565b600081519050613e0581612a29565b92915050565b600060208284031215613e2157613e206127f3565b5b6000613e2f84828501613df6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613e6e602083612ac3565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613eda601c83612ac3565b9150613ee582613ea4565b602082019050919050565b60006020820190508181036000830152613f0981613ecd565b905091905056fea264697066735822122044d9fa9d44f1d916bf215747ccbafc19285766e271370789312a3e8826a8d52c64736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000038300000000000000000000000000000000000000000000000000000000000000800000000000000000000000006ae978e0c8466eb5371592b1870bacc36bdbf16300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696867786470733573766173616b716534706a693467336f666f737370683361336e6e6475336e76626b70373366683368686364792f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000b1505fe87a026a3710b7912e7c0b7fd3fe82d206000000000000000000000000276007c236ab5bbbe2485d0eaefcd44616de7035000000000000000000000000b88b6c6a030bc11d5c680756826f446524571d54000000000000000000000000bfaaf96bfd2b860a09e2168a3605a01a76bc0d0e0000000000000000000000008bce11c4d7e54001de59dccadb3f0a5bf5c7b331000000000000000000000000f7a12aadfe3a5e1b3107a053e77aa43f1fa735db000000000000000000000000cc7ffdc1ff7d8f32e4940d32ffc32d3fb8c1fae90000000000000000000000009b1acd4336ebf7656f49224d14a892566fd48e68000000000000000000000000b479de67e0827cc72bf5c1727e3bf6fe15007554000000000000000000000000491befac53aac201e97cd6f4c750e4a958d22d460000000000000000000000008de4921b0729621496a41df811f2f0c402bb775000000000000000000000000025d49c5357788721b30bf17c426195d09c6480cd000000000000000000000000769ba16f31a73b635e75c17fccc3db4feb2521ab00000000000000000000000093ec07ba1648b54787748d6e960a66ee442b842400000000000000000000000000000000000a01757661bd51345cd95c403204800000000000000000000000006905435fa2e1cb31972bb0f0bff16f5744a918760000000000000000000000002d580e6aab2e0a5863e0a2a09c8400103354a6fd000000000000000000000000c9870f60415c62d998dfe3ded15aafc015f45acc000000000000000000000000b78fdfe0765363cdb5668ba555442aaa251058b900000000000000000000000006a069bb7fca3fbf761799686fcaa0d47e2dea660000000000000000000000001dc1cf2ce34f49ea1be697848087c71241b95cdd000000000000000000000000892f4311f028be8a58ad5a5e6159155867816647000000000000000000000000f6678c05e0f9bffdaeae26a0f9f19d8dd149af070000000000000000000000008cd519d58e38e37955fa19d20ef6f9d3074f1a3e000000000000000000000000912fbe8f87d1e66d5431197cda1f2656cb62eb6f00000000000000000000000097a33c4c04c5fac124ee815565f5e5bd2a030e6d000000000000000000000000d0d68bf506cce28380dae5aa9fb7c52913b3e2ef0000000000000000000000000b9e57c8431611d917937d1fc76bf1970f9a42630000000000000000000000000daae9d1dfb405e5fe3268e02a18c4e877d2c1f70000000000000000000000000e4dd15bc3dcf29bfb5c15831bcff6f0dc6aef4a0000000000000000000000003a791d366708ac8ff3ac67887f2cc6cb439e1e140000000000000000000000003e9e5315abd7c6988c01078a3246600d7d858d970000000000000000000000007630b4c25febf9996f722902af1aaede80930ceb00000000000000000000000082ced4c45a0140226c1ea3a1462a5ee9368dc6ac000000000000000000000000f703697f89510804e9bb02831f3d7db670697be200000000000000000000000004a8d64495f8067dadc09bdd07cc91896c3c4eba0000000000000000000000001c6a8da8cc0e9bb7c33cc05884df6c4f2ed70abb0000000000000000000000001d87297915f17cd24af97724cfc88d8608c2063000000000000000000000000055483b35f2a9c32af91a9ce11e6570ed4a8cd5f7000000000000000000000000698e41734141ab1557a6c9e1bfdfbc875248336b0000000000000000000000006cc68283d4e303df5aa07b72bdeca465fc252a300000000000000000000000008bce11c4d7e54001de59dccadb3f0a5bf5c7b331000000000000000000000000affaacccaacc03906346e85423a50bbf2d5ca7f6000000000000000000000000bef155308b2408f29868653d805310e0d7d08778000000000000000000000000c1a0a95eeecabebb15569a602bbbc5ffa69a23ea000000000000000000000000f84d6d2dc4a432b98a7d5b3160373d33158a4c84000000000000000000000000846288c4f9fe8aef9ac643863ebc3bc250ea88e8

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 899
Arg [1] : _baseTokenURI (string): ipfs://bafybeihgxdps5svasakqe4pji4g3ofossph3a3nndu3nvbkp73fh3hhcdy/
Arg [2] : pgAddress (address): 0x6Ae978e0C8466eB5371592b1870bACc36Bdbf163
Arg [3] : addresses (address[]): 0xb1505fE87A026A3710b7912e7c0B7fD3Fe82D206,0x276007c236Ab5bbbE2485d0EAEfcD44616De7035,0xb88B6C6a030bC11D5c680756826F446524571D54,0xBFAaf96BFD2b860A09e2168a3605a01a76bC0d0E,0x8BCe11c4D7e54001de59DCcaDb3f0a5bF5C7B331,0xf7a12AadFE3a5e1B3107a053E77aA43F1Fa735DB,0xcC7ffDc1Ff7d8f32E4940D32fFC32D3Fb8C1fAe9,0x9b1acD4336EBF7656f49224d14A892566fd48e68,0xb479DE67E0827Cc72bf5c1727e3bf6fe15007554,0x491BeFAC53aAc201E97Cd6F4C750e4A958d22D46,0x8De4921B0729621496a41dF811F2F0c402Bb7750,0x25D49C5357788721B30Bf17C426195d09C6480CD,0x769ba16f31a73B635E75c17fCcC3DB4FEB2521ab,0x93eC07Ba1648B54787748D6E960A66ee442B8424,0x00000000000A01757661bD51345cD95C40320480,0x6905435fa2e1cB31972bb0F0bFF16F5744A91876,0x2D580E6aAB2E0a5863E0A2a09c8400103354A6fd,0xc9870f60415C62D998DFe3DED15aAfc015f45ACC,0xB78FDfE0765363cDb5668bA555442AAa251058b9,0x06A069bB7FCA3fbF761799686fCAA0d47E2deA66,0x1Dc1cF2Ce34f49eA1Be697848087C71241b95CDd,0x892f4311F028BE8A58AD5A5e6159155867816647,0xf6678c05E0f9bffDAeAE26A0F9f19D8DD149AF07,0x8cd519D58E38E37955fa19d20ef6F9d3074F1A3e,0x912Fbe8F87d1E66D5431197cDA1F2656Cb62eB6f,0x97A33c4c04c5faC124eE815565f5E5BD2A030E6d,0xd0D68bf506ccE28380DAe5aA9FB7c52913b3E2Ef,0x0b9E57c8431611D917937d1Fc76bF1970F9A4263,0x0DaAe9d1Dfb405e5Fe3268e02a18c4e877D2C1F7,0x0E4DD15bC3dcF29bfB5C15831Bcff6f0DC6aef4a,0x3A791D366708ac8fF3AC67887F2cc6cb439E1E14,0x3E9e5315abD7c6988c01078a3246600d7d858d97,0x7630B4c25feBF9996F722902Af1aaEde80930ceB,0x82CED4c45a0140226C1EA3A1462a5ee9368dc6ac,0xf703697f89510804e9bb02831F3D7db670697bE2,0x04A8D64495F8067dadc09bDD07cC91896C3c4eba,0x1c6a8da8cc0E9bb7c33cC05884Df6c4F2ED70AbB,0x1d87297915F17CD24aF97724CfC88D8608C20630,0x55483b35F2a9c32aF91A9Ce11e6570ed4A8cd5F7,0x698E41734141ab1557a6C9e1BfDfbc875248336b,0x6cc68283D4e303Df5aa07b72BDecA465fc252a30,0x8BCe11c4D7e54001de59DCcaDb3f0a5bF5C7B331,0xafFaacCCaacc03906346E85423A50BBf2D5ca7f6,0xbeF155308B2408F29868653D805310e0D7d08778,0xc1A0A95eeECABEBb15569A602BBBC5fFA69a23Ea,0xf84d6D2dc4a432b98A7D5B3160373D33158A4C84,0x846288C4f9fE8aEf9AC643863eBC3Bc250ea88E8

-----Encoded View---------------
56 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000383
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000006ae978e0c8466eb5371592b1870bacc36bdbf163
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [5] : 697066733a2f2f626166796265696867786470733573766173616b716534706a
Arg [6] : 693467336f666f737370683361336e6e6475336e76626b703733666833686863
Arg [7] : 64792f0000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [9] : 000000000000000000000000b1505fe87a026a3710b7912e7c0b7fd3fe82d206
Arg [10] : 000000000000000000000000276007c236ab5bbbe2485d0eaefcd44616de7035
Arg [11] : 000000000000000000000000b88b6c6a030bc11d5c680756826f446524571d54
Arg [12] : 000000000000000000000000bfaaf96bfd2b860a09e2168a3605a01a76bc0d0e
Arg [13] : 0000000000000000000000008bce11c4d7e54001de59dccadb3f0a5bf5c7b331
Arg [14] : 000000000000000000000000f7a12aadfe3a5e1b3107a053e77aa43f1fa735db
Arg [15] : 000000000000000000000000cc7ffdc1ff7d8f32e4940d32ffc32d3fb8c1fae9
Arg [16] : 0000000000000000000000009b1acd4336ebf7656f49224d14a892566fd48e68
Arg [17] : 000000000000000000000000b479de67e0827cc72bf5c1727e3bf6fe15007554
Arg [18] : 000000000000000000000000491befac53aac201e97cd6f4c750e4a958d22d46
Arg [19] : 0000000000000000000000008de4921b0729621496a41df811f2f0c402bb7750
Arg [20] : 00000000000000000000000025d49c5357788721b30bf17c426195d09c6480cd
Arg [21] : 000000000000000000000000769ba16f31a73b635e75c17fccc3db4feb2521ab
Arg [22] : 00000000000000000000000093ec07ba1648b54787748d6e960a66ee442b8424
Arg [23] : 00000000000000000000000000000000000a01757661bd51345cd95c40320480
Arg [24] : 0000000000000000000000006905435fa2e1cb31972bb0f0bff16f5744a91876
Arg [25] : 0000000000000000000000002d580e6aab2e0a5863e0a2a09c8400103354a6fd
Arg [26] : 000000000000000000000000c9870f60415c62d998dfe3ded15aafc015f45acc
Arg [27] : 000000000000000000000000b78fdfe0765363cdb5668ba555442aaa251058b9
Arg [28] : 00000000000000000000000006a069bb7fca3fbf761799686fcaa0d47e2dea66
Arg [29] : 0000000000000000000000001dc1cf2ce34f49ea1be697848087c71241b95cdd
Arg [30] : 000000000000000000000000892f4311f028be8a58ad5a5e6159155867816647
Arg [31] : 000000000000000000000000f6678c05e0f9bffdaeae26a0f9f19d8dd149af07
Arg [32] : 0000000000000000000000008cd519d58e38e37955fa19d20ef6f9d3074f1a3e
Arg [33] : 000000000000000000000000912fbe8f87d1e66d5431197cda1f2656cb62eb6f
Arg [34] : 00000000000000000000000097a33c4c04c5fac124ee815565f5e5bd2a030e6d
Arg [35] : 000000000000000000000000d0d68bf506cce28380dae5aa9fb7c52913b3e2ef
Arg [36] : 0000000000000000000000000b9e57c8431611d917937d1fc76bf1970f9a4263
Arg [37] : 0000000000000000000000000daae9d1dfb405e5fe3268e02a18c4e877d2c1f7
Arg [38] : 0000000000000000000000000e4dd15bc3dcf29bfb5c15831bcff6f0dc6aef4a
Arg [39] : 0000000000000000000000003a791d366708ac8ff3ac67887f2cc6cb439e1e14
Arg [40] : 0000000000000000000000003e9e5315abd7c6988c01078a3246600d7d858d97
Arg [41] : 0000000000000000000000007630b4c25febf9996f722902af1aaede80930ceb
Arg [42] : 00000000000000000000000082ced4c45a0140226c1ea3a1462a5ee9368dc6ac
Arg [43] : 000000000000000000000000f703697f89510804e9bb02831f3d7db670697be2
Arg [44] : 00000000000000000000000004a8d64495f8067dadc09bdd07cc91896c3c4eba
Arg [45] : 0000000000000000000000001c6a8da8cc0e9bb7c33cc05884df6c4f2ed70abb
Arg [46] : 0000000000000000000000001d87297915f17cd24af97724cfc88d8608c20630
Arg [47] : 00000000000000000000000055483b35f2a9c32af91a9ce11e6570ed4a8cd5f7
Arg [48] : 000000000000000000000000698e41734141ab1557a6c9e1bfdfbc875248336b
Arg [49] : 0000000000000000000000006cc68283d4e303df5aa07b72bdeca465fc252a30
Arg [50] : 0000000000000000000000008bce11c4d7e54001de59dccadb3f0a5bf5c7b331
Arg [51] : 000000000000000000000000affaacccaacc03906346e85423a50bbf2d5ca7f6
Arg [52] : 000000000000000000000000bef155308b2408f29868653d805310e0d7d08778
Arg [53] : 000000000000000000000000c1a0a95eeecabebb15569a602bbbc5ffa69a23ea
Arg [54] : 000000000000000000000000f84d6d2dc4a432b98a7d5b3160373d33158a4c84
Arg [55] : 000000000000000000000000846288c4f9fe8aef9ac643863ebc3bc250ea88e8


Deployed Bytecode Sourcemap

458:2897:25:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1834:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3184:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2470:98:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2717:83:25;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:111:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4612:327:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1291:253:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:116:25;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2806:157;;;;;;;;;;;;;:::i;:::-;;5005:179:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1798:230:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;687:26:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2190:218:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1175:653:25;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1929:204:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;1201:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:102:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2297:292:25;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;625:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;657:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1834:340:25;1094:13:0;:11;:13::i;:::-;1930:9:25::1;;1914:13;:11;:13::i;:::-;:25;1906:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1978:9;1973:195;1997:9;:16;1993:1;:20;1973:195;;;2033:26;:14;:24;:26::i;:::-;2072:14;2089:24;:14;:22;:24::i;:::-;2072:41;;2126:31;2136:9;2146:1;2136:12;;;;;;;;:::i;:::-;;;;;;;;2150:6;2126:9;:31::i;:::-;2020:148;2015:3;;;;;:::i;:::-;;;;1973:195;;;;1834:340:::0;:::o;3184:169::-;3287:4;3310:36;3334:11;3310:23;:36::i;:::-;3303:43;;3184:169;;;:::o;2470:98:9:-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;3604:11;;:2;:11;;;3596:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3701:5;3685:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3710:37;3727:5;3734:12;:10;:12::i;:::-;3710:16;:37::i;:::-;3685:62;3664:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;2717:83:25:-;1094:13:0;:11;:13::i;:::-;2786:7:25::1;2777:6;;:16;;;;;;;;;;;;;;;;;;2717:83:::0;:::o;1615:111:12:-;1676:7;1702:10;:17;;;;1695:24;;1615:111;:::o;4612:327:9:-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;:::-;4612:327;;;:::o;1291:253:12:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1511:12;:19;1524:5;1511:19;;;;;;;;;;;;;;;:26;1531:5;1511:26;;;;;;;;;;;;1504:33;;1291:253;;;;:::o;2595:116:25:-;1094:13:0;:11;:13::i;:::-;2691::25::1;2676:12;:28;;;;;;;;;;;;:::i;:::-;;2595:116:::0;:::o;2806:157::-;1094:13:0;:11;:13::i;:::-;1744:1:2::1;2325:7;;:19:::0;2317:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2867:7:25::2;2888;:5;:7::i;:::-;2880:21;;2909;2880:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2866:69;;;2953:2;2945:11;;;::::0;::::2;;2856:107;1701:1:2::1;2628:7;:22;;;;2806:157:25:o:0;5005:179:9:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;:::-;5005:179;;;:::o;1798:230:12:-;1873:7;1908:30;:28;:30::i;:::-;1900:5;:38;1892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;;1997:24;;1798:230;;;:::o;687:26:25:-;;;;;;;;;;;;;:::o;2190:218:9:-;2262:7;2281:13;2297:7;:16;2305:7;2297:16;;;;;;;;;;;;;;;;;;;;;2281:32;;2348:1;2331:19;;:5;:19;;;2323:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2396:5;2389:12;;;2190:218;;;:::o;1175:653:25:-;1122:6;;;;;;;;;;;1121:7;1113:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1271:1:::1;1255:13;1265:2;1255:9;:13::i;:::-;:17;1247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1349:9;;1333:13;:11;:13::i;:::-;:25;1325:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1415:1;1396:2;;;;;;;;;;;:12;;;1409:2;1396:16;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:20;:42;;;;;1437:1;1420:13;1430:2;1420:9;:13::i;:::-;:18;;1396:42;1392:160;;;1477:9;1462:11;:24;1454:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1392:160;1585:1;1565:2;;;;;;;;;;;:12;;;1578:2;1565:16;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:21:::0;1561:143:::1;;1625:9;1610:11;:24;1602:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;1561:143;1713:26;:14;:24;:26::i;:::-;1749:14;1766:24;:14;:22;:24::i;:::-;1749:41;;1800:21;1810:2;1814:6;1800:9;:21::i;:::-;1237:591;1175:653:::0;:::o;1929:204:9:-;2001:7;2045:1;2028:19;;:5;:19;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2632:102:9:-;2688:13;2720:7;2713:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2632:102;:::o;4169:153::-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5250:315::-;5418:41;5437:12;:10;:12::i;:::-;5451:7;5418:18;:41::i;:::-;5410:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;2297:292:25:-;2370:13;2395:23;2410:7;2395:14;:23::i;:::-;2429:21;2453:10;:8;:10::i;:::-;2429:34;;2504:1;2486:7;2480:21;:25;:102;;;;;;;;;;;;;;;;;2532:7;2541:25;2558:7;2541:16;:25::i;:::-;2515:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2480:102;2473:109;;;2297:292;;;:::o;625:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;657:24::-;;;;:::o;4388:162:9:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;945:123:17:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;827:112::-;892:7;918;:14;;;911:21;;827:112;;;:::o;1175:320:15:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;2624:572:12:-;2763:45;2790:4;2796:2;2800:7;2763:26;:45::i;:::-;2839:1;2823:18;;:4;:18;;;2819:183;;2857:40;2889:7;2857:31;:40::i;:::-;2819:183;;;2926:2;2918:10;;:4;:10;;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;2914:88;2819:183;3029:1;3015:16;;:2;:16;;;3011:179;;3047:45;3084:7;3047:36;:45::i;:::-;3011:179;;;3119:4;3113:10;;:2;:10;;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;:::-;3109:81;3011:179;2624:572;;;:::o;13729:122:9:-;;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;7908:108:9:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;:::-;7908:108;;:::o;990:222:12:-;1092:4;1130:35;1115:50;;;:11;:50;;;;:90;;;;1169:36;1193:11;1169:23;:36::i;:::-;1115:90;1108:97;;990:222;;;:::o;11657:133:9:-;11738:16;11746:7;11738;:16::i;:::-;11730:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:133;:::o;640:96:16:-;693:7;719:10;712:17;;640:96;:::o;10959:171:9:-;11060:2;11033:15;:24;11049:7;11033:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11115:7;11111:2;11077:46;;11086:23;11101:7;11086:14;:23::i;:::-;11077:46;;;;;;;;;;;;10959:171;;:::o;7317:261::-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;7483:16;;:7;:16;;;:52;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7483:52;:87;;;;7563:7;7539:31;;:20;7551:7;7539:11;:20::i;:::-;:31;;;7483:87;7475:96;;;7317:261;;;;:::o;10242:605::-;10396:4;10369:31;;:23;10384:7;10369:14;:23::i;:::-;:31;;;10361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10474:1;10460:16;;:2;:16;;;10452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;10688:1;10669:9;:15;10679:4;10669:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10716:1;10699:9;:13;10709:2;10699:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10746:2;10727:7;:16;10735:7;10727:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10783:7;10779:2;10764:27;;10773:4;10764:27;;;;;;;;;;;;10802:38;10822:4;10828:2;10832:7;10802:19;:38::i;:::-;10242:605;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11266:307:9:-;11416:8;11407:17;;:5;:17;;;11399:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11502:8;11464:18;:25;11483:5;11464:25;;;;;;;;;;;;;;;:35;11490:8;11464:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11547:8;11525:41;;11540:5;11525:41;;;11557:8;11525:41;;;;;;:::i;:::-;;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6426:305;;;;:::o;2180:111:25:-;2240:13;2272:12;2265:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2180:111;:::o;392:703:18:-;448:13;674:1;665:5;:10;661:51;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;3902:161:12:-;4005:10;:17;;;;3978:15;:24;3994:7;3978:24;;;;;;;;;;;:44;;;;4032:10;4048:7;4032:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3902:161;:::o;4680:970::-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;4942:51;;5003:18;5024:17;:26;5042:7;5024:26;;;;;;;;;;;;5003:47;;5168:14;5154:10;:28;5150:323;;5198:19;5220:12;:18;5233:4;5220:18;;;;;;;;;;;;;;;:34;5239:14;5220:34;;;;;;;;;;;;5198:56;;5302:11;5269:12;:18;5282:4;5269:18;;;;;;;;;;;;;;;:30;5288:10;5269:30;;;;;;;;;;;:44;;;;5418:10;5385:17;:30;5403:11;5385:30;;;;;;;;;;;:43;;;;5184:289;5150:323;5566:17;:26;5584:7;5566:26;;;;;;;;;;;5559:33;;;5609:12;:18;5622:4;5609:18;;;;;;;;;;;;;;;:34;5628:14;5609:34;;;;;;;;;;;5602:41;;;4761:889;;4680:970;;:::o;5938:1061::-;6187:22;6232:1;6212:10;:17;;;;:21;;;;:::i;:::-;6187:46;;6243:18;6264:15;:24;6280:7;6264:24;;;;;;;;;;;;6243:45;;6610:19;6632:10;6643:14;6632:26;;;;;;;;:::i;:::-;;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6804:10;6773:15;:28;6789:11;6773:28;;;;;;;;;;;:41;;;;6942:15;:24;6958:7;6942:24;;;;;;;;;;;6935:31;;;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;3574:37;;3648:7;3621:12;:16;3634:2;3621:16;;;;;;;;;;;;;;;:24;3638:6;3621:24;;;;;;;;;;;:34;;;;3694:6;3665:17;:26;3683:7;3665:26;;;;;;;;;;;:35;;;;3564:143;3490:217;;:::o;8237:309:9:-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;8237:309;;;:::o;1570:300::-;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;7034:125::-;7099:4;7150:1;7122:30;;:7;:16;7130:7;7122:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7115:37;;7034:125;;;:::o;2969:209:25:-;3126:45;3153:4;3159:2;3163:7;3126:26;:45::i;:::-;2969:209;;;:::o;14223:121:9:-;;;;:::o;12342:831::-;12491:4;12511:15;:2;:13;;;:15::i;:::-;12507:660;;;12562:2;12546:36;;;12583:12;:10;:12::i;:::-;12597:4;12603:7;12612:4;12546:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12801:1;12784:6;:13;:18;12780:321;;12826:60;;;;;;;;;;:::i;:::-;;;;;;;;12780:321;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;12677:41;;;12667:51;;;:6;:51;;;;12660:58;;;;;12507:660;13152:4;13145:11;;12342:831;;;;;;;:::o;8868:427::-;8961:1;8947:16;;:2;:16;;;8939:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9019:16;9027:7;9019;:16::i;:::-;9018:17;9010:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;9152:1;9135:9;:13;9145:2;9135:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9182:2;9163:7;:16;9171:7;9163:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9225:7;9221:2;9200:33;;9217:1;9200:33;;;;;;;;;;;;9244:44;9272:1;9276:2;9280:7;9244:19;:44::i;:::-;8868:427;;:::o;829:155:19:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:27:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:102;498:6;549:2;545:7;540:2;533:5;529:14;525:28;515:38;;457:102;;;:::o;565:180::-;613:77;610:1;603:88;710:4;707:1;700:15;734:4;731:1;724:15;751:281;834:27;856:4;834:27;:::i;:::-;826:6;822:40;964:6;952:10;949:22;928:18;916:10;913:34;910:62;907:88;;;975:18;;:::i;:::-;907:88;1015:10;1011:2;1004:22;794:238;751:281;;:::o;1038:129::-;1072:6;1099:20;;:::i;:::-;1089:30;;1128:33;1156:4;1148:6;1128:33;:::i;:::-;1038:129;;;:::o;1173:311::-;1250:4;1340:18;1332:6;1329:30;1326:56;;;1362:18;;:::i;:::-;1326:56;1412:4;1404:6;1400:17;1392:25;;1472:4;1466;1462:15;1454:23;;1173:311;;;:::o;1490:117::-;1599:1;1596;1589:12;1613:126;1650:7;1690:42;1683:5;1679:54;1668:65;;1613:126;;;:::o;1745:96::-;1782:7;1811:24;1829:5;1811:24;:::i;:::-;1800:35;;1745:96;;;:::o;1847:122::-;1920:24;1938:5;1920:24;:::i;:::-;1913:5;1910:35;1900:63;;1959:1;1956;1949:12;1900:63;1847:122;:::o;1975:139::-;2021:5;2059:6;2046:20;2037:29;;2075:33;2102:5;2075:33;:::i;:::-;1975:139;;;;:::o;2137:710::-;2233:5;2258:81;2274:64;2331:6;2274:64;:::i;:::-;2258:81;:::i;:::-;2249:90;;2359:5;2388:6;2381:5;2374:21;2422:4;2415:5;2411:16;2404:23;;2475:4;2467:6;2463:17;2455:6;2451:30;2504:3;2496:6;2493:15;2490:122;;;2523:79;;:::i;:::-;2490:122;2638:6;2621:220;2655:6;2650:3;2647:15;2621:220;;;2730:3;2759:37;2792:3;2780:10;2759:37;:::i;:::-;2754:3;2747:50;2826:4;2821:3;2817:14;2810:21;;2697:144;2681:4;2676:3;2672:14;2665:21;;2621:220;;;2625:21;2239:608;;2137:710;;;;;:::o;2870:370::-;2941:5;2990:3;2983:4;2975:6;2971:17;2967:27;2957:122;;2998:79;;:::i;:::-;2957:122;3115:6;3102:20;3140:94;3230:3;3222:6;3215:4;3207:6;3203:17;3140:94;:::i;:::-;3131:103;;2947:293;2870:370;;;;:::o;3246:539::-;3330:6;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3533:1;3522:9;3518:17;3505:31;3563:18;3555:6;3552:30;3549:117;;;3585:79;;:::i;:::-;3549:117;3690:78;3760:7;3751:6;3740:9;3736:22;3690:78;:::i;:::-;3680:88;;3476:302;3246:539;;;;:::o;3791:149::-;3827:7;3867:66;3860:5;3856:78;3845:89;;3791:149;;;:::o;3946:120::-;4018:23;4035:5;4018:23;:::i;:::-;4011:5;4008:34;3998:62;;4056:1;4053;4046:12;3998:62;3946:120;:::o;4072:137::-;4117:5;4155:6;4142:20;4133:29;;4171:32;4197:5;4171:32;:::i;:::-;4072:137;;;;:::o;4215:327::-;4273:6;4322:2;4310:9;4301:7;4297:23;4293:32;4290:119;;;4328:79;;:::i;:::-;4290:119;4448:1;4473:52;4517:7;4508:6;4497:9;4493:22;4473:52;:::i;:::-;4463:62;;4419:116;4215:327;;;;:::o;4548:90::-;4582:7;4625:5;4618:13;4611:21;4600:32;;4548:90;;;:::o;4644:109::-;4725:21;4740:5;4725:21;:::i;:::-;4720:3;4713:34;4644:109;;:::o;4759:210::-;4846:4;4884:2;4873:9;4869:18;4861:26;;4897:65;4959:1;4948:9;4944:17;4935:6;4897:65;:::i;:::-;4759:210;;;;:::o;4975:99::-;5027:6;5061:5;5055:12;5045:22;;4975:99;;;:::o;5080:169::-;5164:11;5198:6;5193:3;5186:19;5238:4;5233:3;5229:14;5214:29;;5080:169;;;;:::o;5255:307::-;5323:1;5333:113;5347:6;5344:1;5341:13;5333:113;;;5432:1;5427:3;5423:11;5417:18;5413:1;5408:3;5404:11;5397:39;5369:2;5366:1;5362:10;5357:15;;5333:113;;;5464:6;5461:1;5458:13;5455:101;;;5544:1;5535:6;5530:3;5526:16;5519:27;5455:101;5304:258;5255:307;;;:::o;5568:364::-;5656:3;5684:39;5717:5;5684:39;:::i;:::-;5739:71;5803:6;5798:3;5739:71;:::i;:::-;5732:78;;5819:52;5864:6;5859:3;5852:4;5845:5;5841:16;5819:52;:::i;:::-;5896:29;5918:6;5896:29;:::i;:::-;5891:3;5887:39;5880:46;;5660:272;5568:364;;;;:::o;5938:313::-;6051:4;6089:2;6078:9;6074:18;6066:26;;6138:9;6132:4;6128:20;6124:1;6113:9;6109:17;6102:47;6166:78;6239:4;6230:6;6166:78;:::i;:::-;6158:86;;5938:313;;;;:::o;6257:77::-;6294:7;6323:5;6312:16;;6257:77;;;:::o;6340:122::-;6413:24;6431:5;6413:24;:::i;:::-;6406:5;6403:35;6393:63;;6452:1;6449;6442:12;6393:63;6340:122;:::o;6468:139::-;6514:5;6552:6;6539:20;6530:29;;6568:33;6595:5;6568:33;:::i;:::-;6468:139;;;;:::o;6613:329::-;6672:6;6721:2;6709:9;6700:7;6696:23;6692:32;6689:119;;;6727:79;;:::i;:::-;6689:119;6847:1;6872:53;6917:7;6908:6;6897:9;6893:22;6872:53;:::i;:::-;6862:63;;6818:117;6613:329;;;;:::o;6948:118::-;7035:24;7053:5;7035:24;:::i;:::-;7030:3;7023:37;6948:118;;:::o;7072:222::-;7165:4;7203:2;7192:9;7188:18;7180:26;;7216:71;7284:1;7273:9;7269:17;7260:6;7216:71;:::i;:::-;7072:222;;;;:::o;7300:474::-;7368:6;7376;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7678:2;7704:53;7749:7;7740:6;7729:9;7725:22;7704:53;:::i;:::-;7694:63;;7649:118;7300:474;;;;;:::o;7780:116::-;7850:21;7865:5;7850:21;:::i;:::-;7843:5;7840:32;7830:60;;7886:1;7883;7876:12;7830:60;7780:116;:::o;7902:133::-;7945:5;7983:6;7970:20;7961:29;;7999:30;8023:5;7999:30;:::i;:::-;7902:133;;;;:::o;8041:323::-;8097:6;8146:2;8134:9;8125:7;8121:23;8117:32;8114:119;;;8152:79;;:::i;:::-;8114:119;8272:1;8297:50;8339:7;8330:6;8319:9;8315:22;8297:50;:::i;:::-;8287:60;;8243:114;8041:323;;;;:::o;8370:118::-;8457:24;8475:5;8457:24;:::i;:::-;8452:3;8445:37;8370:118;;:::o;8494:222::-;8587:4;8625:2;8614:9;8610:18;8602:26;;8638:71;8706:1;8695:9;8691:17;8682:6;8638:71;:::i;:::-;8494:222;;;;:::o;8722:619::-;8799:6;8807;8815;8864:2;8852:9;8843:7;8839:23;8835:32;8832:119;;;8870:79;;:::i;:::-;8832:119;8990:1;9015:53;9060:7;9051:6;9040:9;9036:22;9015:53;:::i;:::-;9005:63;;8961:117;9117:2;9143:53;9188:7;9179:6;9168:9;9164:22;9143:53;:::i;:::-;9133:63;;9088:118;9245:2;9271:53;9316:7;9307:6;9296:9;9292:22;9271:53;:::i;:::-;9261:63;;9216:118;8722:619;;;;;:::o;9347:117::-;9456:1;9453;9446:12;9470:308;9532:4;9622:18;9614:6;9611:30;9608:56;;;9644:18;;:::i;:::-;9608:56;9682:29;9704:6;9682:29;:::i;:::-;9674:37;;9766:4;9760;9756:15;9748:23;;9470:308;;;:::o;9784:154::-;9868:6;9863:3;9858;9845:30;9930:1;9921:6;9916:3;9912:16;9905:27;9784:154;;;:::o;9944:412::-;10022:5;10047:66;10063:49;10105:6;10063:49;:::i;:::-;10047:66;:::i;:::-;10038:75;;10136:6;10129:5;10122:21;10174:4;10167:5;10163:16;10212:3;10203:6;10198:3;10194:16;10191:25;10188:112;;;10219:79;;:::i;:::-;10188:112;10309:41;10343:6;10338:3;10333;10309:41;:::i;:::-;10028:328;9944:412;;;;;:::o;10376:340::-;10432:5;10481:3;10474:4;10466:6;10462:17;10458:27;10448:122;;10489:79;;:::i;:::-;10448:122;10606:6;10593:20;10631:79;10706:3;10698:6;10691:4;10683:6;10679:17;10631:79;:::i;:::-;10622:88;;10438:278;10376:340;;;;:::o;10722:509::-;10791:6;10840:2;10828:9;10819:7;10815:23;10811:32;10808:119;;;10846:79;;:::i;:::-;10808:119;10994:1;10983:9;10979:17;10966:31;11024:18;11016:6;11013:30;11010:117;;;11046:79;;:::i;:::-;11010:117;11151:63;11206:7;11197:6;11186:9;11182:22;11151:63;:::i;:::-;11141:73;;10937:287;10722:509;;;;:::o;11237:329::-;11296:6;11345:2;11333:9;11324:7;11320:23;11316:32;11313:119;;;11351:79;;:::i;:::-;11313:119;11471:1;11496:53;11541:7;11532:6;11521:9;11517:22;11496:53;:::i;:::-;11486:63;;11442:117;11237:329;;;;:::o;11572:468::-;11637:6;11645;11694:2;11682:9;11673:7;11669:23;11665:32;11662:119;;;11700:79;;:::i;:::-;11662:119;11820:1;11845:53;11890:7;11881:6;11870:9;11866:22;11845:53;:::i;:::-;11835:63;;11791:117;11947:2;11973:50;12015:7;12006:6;11995:9;11991:22;11973:50;:::i;:::-;11963:60;;11918:115;11572:468;;;;;:::o;12046:307::-;12107:4;12197:18;12189:6;12186:30;12183:56;;;12219:18;;:::i;:::-;12183:56;12257:29;12279:6;12257:29;:::i;:::-;12249:37;;12341:4;12335;12331:15;12323:23;;12046:307;;;:::o;12359:410::-;12436:5;12461:65;12477:48;12518:6;12477:48;:::i;:::-;12461:65;:::i;:::-;12452:74;;12549:6;12542:5;12535:21;12587:4;12580:5;12576:16;12625:3;12616:6;12611:3;12607:16;12604:25;12601:112;;;12632:79;;:::i;:::-;12601:112;12722:41;12756:6;12751:3;12746;12722:41;:::i;:::-;12442:327;12359:410;;;;;:::o;12788:338::-;12843:5;12892:3;12885:4;12877:6;12873:17;12869:27;12859:122;;12900:79;;:::i;:::-;12859:122;13017:6;13004:20;13042:78;13116:3;13108:6;13101:4;13093:6;13089:17;13042:78;:::i;:::-;13033:87;;12849:277;12788:338;;;;:::o;13132:943::-;13227:6;13235;13243;13251;13300:3;13288:9;13279:7;13275:23;13271:33;13268:120;;;13307:79;;:::i;:::-;13268:120;13427:1;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13398:117;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13682:2;13708:53;13753:7;13744:6;13733:9;13729:22;13708:53;:::i;:::-;13698:63;;13653:118;13838:2;13827:9;13823:18;13810:32;13869:18;13861:6;13858:30;13855:117;;;13891:79;;:::i;:::-;13855:117;13996:62;14050:7;14041:6;14030:9;14026:22;13996:62;:::i;:::-;13986:72;;13781:287;13132:943;;;;;;;:::o;14081:474::-;14149:6;14157;14206:2;14194:9;14185:7;14181:23;14177:32;14174:119;;;14212:79;;:::i;:::-;14174:119;14332:1;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14303:117;14459:2;14485:53;14530:7;14521:6;14510:9;14506:22;14485:53;:::i;:::-;14475:63;;14430:118;14081:474;;;;;:::o;14561:169::-;14701:21;14697:1;14689:6;14685:14;14678:45;14561:169;:::o;14736:366::-;14878:3;14899:67;14963:2;14958:3;14899:67;:::i;:::-;14892:74;;14975:93;15064:3;14975:93;:::i;:::-;15093:2;15088:3;15084:12;15077:19;;14736:366;;;:::o;15108:419::-;15274:4;15312:2;15301:9;15297:18;15289:26;;15361:9;15355:4;15351:20;15347:1;15336:9;15332:17;15325:47;15389:131;15515:4;15389:131;:::i;:::-;15381:139;;15108:419;;;:::o;15533:180::-;15581:77;15578:1;15571:88;15678:4;15675:1;15668:15;15702:4;15699:1;15692:15;15719:180;15767:77;15764:1;15757:88;15864:4;15861:1;15854:15;15888:4;15885:1;15878:15;15905:233;15944:3;15967:24;15985:5;15967:24;:::i;:::-;15958:33;;16013:66;16006:5;16003:77;16000:103;;16083:18;;:::i;:::-;16000:103;16130:1;16123:5;16119:13;16112:20;;15905:233;;;:::o;16144:180::-;16192:77;16189:1;16182:88;16289:4;16286:1;16279:15;16313:4;16310:1;16303:15;16330:320;16374:6;16411:1;16405:4;16401:12;16391:22;;16458:1;16452:4;16448:12;16479:18;16469:81;;16535:4;16527:6;16523:17;16513:27;;16469:81;16597:2;16589:6;16586:14;16566:18;16563:38;16560:84;;16616:18;;:::i;:::-;16560:84;16381:269;16330:320;;;:::o;16656:220::-;16796:34;16792:1;16784:6;16780:14;16773:58;16865:3;16860:2;16852:6;16848:15;16841:28;16656:220;:::o;16882:366::-;17024:3;17045:67;17109:2;17104:3;17045:67;:::i;:::-;17038:74;;17121:93;17210:3;17121:93;:::i;:::-;17239:2;17234:3;17230:12;17223:19;;16882:366;;;:::o;17254:419::-;17420:4;17458:2;17447:9;17443:18;17435:26;;17507:9;17501:4;17497:20;17493:1;17482:9;17478:17;17471:47;17535:131;17661:4;17535:131;:::i;:::-;17527:139;;17254:419;;;:::o;17679:249::-;17819:34;17815:1;17807:6;17803:14;17796:58;17888:32;17883:2;17875:6;17871:15;17864:57;17679:249;:::o;17934:366::-;18076:3;18097:67;18161:2;18156:3;18097:67;:::i;:::-;18090:74;;18173:93;18262:3;18173:93;:::i;:::-;18291:2;18286:3;18282:12;18275:19;;17934:366;;;:::o;18306:419::-;18472:4;18510:2;18499:9;18495:18;18487:26;;18559:9;18553:4;18549:20;18545:1;18534:9;18530:17;18523:47;18587:131;18713:4;18587:131;:::i;:::-;18579:139;;18306:419;;;:::o;18731:233::-;18871:34;18867:1;18859:6;18855:14;18848:58;18940:16;18935:2;18927:6;18923:15;18916:41;18731:233;:::o;18970:366::-;19112:3;19133:67;19197:2;19192:3;19133:67;:::i;:::-;19126:74;;19209:93;19298:3;19209:93;:::i;:::-;19327:2;19322:3;19318:12;19311:19;;18970:366;;;:::o;19342:419::-;19508:4;19546:2;19535:9;19531:18;19523:26;;19595:9;19589:4;19585:20;19581:1;19570:9;19566:17;19559:47;19623:131;19749:4;19623:131;:::i;:::-;19615:139;;19342:419;;;:::o;19767:230::-;19907:34;19903:1;19895:6;19891:14;19884:58;19976:13;19971:2;19963:6;19959:15;19952:38;19767:230;:::o;20003:366::-;20145:3;20166:67;20230:2;20225:3;20166:67;:::i;:::-;20159:74;;20242:93;20331:3;20242:93;:::i;:::-;20360:2;20355:3;20351:12;20344:19;;20003:366;;;:::o;20375:419::-;20541:4;20579:2;20568:9;20564:18;20556:26;;20628:9;20622:4;20618:20;20614:1;20603:9;20599:17;20592:47;20656:131;20782:4;20656:131;:::i;:::-;20648:139;;20375:419;;;:::o;20800:181::-;20940:33;20936:1;20928:6;20924:14;20917:57;20800:181;:::o;20987:366::-;21129:3;21150:67;21214:2;21209:3;21150:67;:::i;:::-;21143:74;;21226:93;21315:3;21226:93;:::i;:::-;21344:2;21339:3;21335:12;21328:19;;20987:366;;;:::o;21359:419::-;21525:4;21563:2;21552:9;21548:18;21540:26;;21612:9;21606:4;21602:20;21598:1;21587:9;21583:17;21576:47;21640:131;21766:4;21640:131;:::i;:::-;21632:139;;21359:419;;;:::o;21784:147::-;21885:11;21922:3;21907:18;;21784:147;;;;:::o;21937:114::-;;:::o;22057:398::-;22216:3;22237:83;22318:1;22313:3;22237:83;:::i;:::-;22230:90;;22329:93;22418:3;22329:93;:::i;:::-;22447:1;22442:3;22438:11;22431:18;;22057:398;;;:::o;22461:379::-;22645:3;22667:147;22810:3;22667:147;:::i;:::-;22660:154;;22831:3;22824:10;;22461:379;;;:::o;22846:231::-;22986:34;22982:1;22974:6;22970:14;22963:58;23055:14;23050:2;23042:6;23038:15;23031:39;22846:231;:::o;23083:366::-;23225:3;23246:67;23310:2;23305:3;23246:67;:::i;:::-;23239:74;;23322:93;23411:3;23322:93;:::i;:::-;23440:2;23435:3;23431:12;23424:19;;23083:366;;;:::o;23455:419::-;23621:4;23659:2;23648:9;23644:18;23636:26;;23708:9;23702:4;23698:20;23694:1;23683:9;23679:17;23672:47;23736:131;23862:4;23736:131;:::i;:::-;23728:139;;23455:419;;;:::o;23880:174::-;24020:26;24016:1;24008:6;24004:14;23997:50;23880:174;:::o;24060:366::-;24202:3;24223:67;24287:2;24282:3;24223:67;:::i;:::-;24216:74;;24299:93;24388:3;24299:93;:::i;:::-;24417:2;24412:3;24408:12;24401:19;;24060:366;;;:::o;24432:419::-;24598:4;24636:2;24625:9;24621:18;24613:26;;24685:9;24679:4;24675:20;24671:1;24660:9;24656:17;24649:47;24713:131;24839:4;24713:131;:::i;:::-;24705:139;;24432:419;;;:::o;24857:168::-;24997:20;24993:1;24985:6;24981:14;24974:44;24857:168;:::o;25031:366::-;25173:3;25194:67;25258:2;25253:3;25194:67;:::i;:::-;25187:74;;25270:93;25359:3;25270:93;:::i;:::-;25388:2;25383:3;25379:12;25372:19;;25031:366;;;:::o;25403:419::-;25569:4;25607:2;25596:9;25592:18;25584:26;;25656:9;25650:4;25646:20;25642:1;25631:9;25627:17;25620:47;25684:131;25810:4;25684:131;:::i;:::-;25676:139;;25403:419;;;:::o;25828:225::-;25968:34;25964:1;25956:6;25952:14;25945:58;26037:8;26032:2;26024:6;26020:15;26013:33;25828:225;:::o;26059:366::-;26201:3;26222:67;26286:2;26281:3;26222:67;:::i;:::-;26215:74;;26298:93;26387:3;26298:93;:::i;:::-;26416:2;26411:3;26407:12;26400:19;;26059:366;;;:::o;26431:419::-;26597:4;26635:2;26624:9;26620:18;26612:26;;26684:9;26678:4;26674:20;26670:1;26659:9;26655:17;26648:47;26712:131;26838:4;26712:131;:::i;:::-;26704:139;;26431:419;;;:::o;26856:143::-;26913:5;26944:6;26938:13;26929:22;;26960:33;26987:5;26960:33;:::i;:::-;26856:143;;;;:::o;27005:351::-;27075:6;27124:2;27112:9;27103:7;27099:23;27095:32;27092:119;;;27130:79;;:::i;:::-;27092:119;27250:1;27275:64;27331:7;27322:6;27311:9;27307:22;27275:64;:::i;:::-;27265:74;;27221:128;27005:351;;;;:::o;27362:237::-;27502:34;27498:1;27490:6;27486:14;27479:58;27571:20;27566:2;27558:6;27554:15;27547:45;27362:237;:::o;27605:366::-;27747:3;27768:67;27832:2;27827:3;27768:67;:::i;:::-;27761:74;;27844:93;27933:3;27844:93;:::i;:::-;27962:2;27957:3;27953:12;27946:19;;27605:366;;;:::o;27977:419::-;28143:4;28181:2;28170:9;28166:18;28158:26;;28230:9;28224:4;28220:20;28216:1;28205:9;28201:17;28194:47;28258:131;28384:4;28258:131;:::i;:::-;28250:139;;27977:419;;;:::o;28402:241::-;28542:34;28538:1;28530:6;28526:14;28519:58;28611:24;28606:2;28598:6;28594:15;28587:49;28402:241;:::o;28649:366::-;28791:3;28812:67;28876:2;28871:3;28812:67;:::i;:::-;28805:74;;28888:93;28977:3;28888:93;:::i;:::-;29006:2;29001:3;28997:12;28990:19;;28649:366;;;:::o;29021:419::-;29187:4;29225:2;29214:9;29210:18;29202:26;;29274:9;29268:4;29264:20;29260:1;29249:9;29245:17;29238:47;29302:131;29428:4;29302:131;:::i;:::-;29294:139;;29021:419;;;:::o;29446:228::-;29586:34;29582:1;29574:6;29570:14;29563:58;29655:11;29650:2;29642:6;29638:15;29631:36;29446:228;:::o;29680:366::-;29822:3;29843:67;29907:2;29902:3;29843:67;:::i;:::-;29836:74;;29919:93;30008:3;29919:93;:::i;:::-;30037:2;30032:3;30028:12;30021:19;;29680:366;;;:::o;30052:419::-;30218:4;30256:2;30245:9;30241:18;30233:26;;30305:9;30299:4;30295:20;30291:1;30280:9;30276:17;30269:47;30333:131;30459:4;30333:131;:::i;:::-;30325:139;;30052:419;;;:::o;30477:148::-;30579:11;30616:3;30601:18;;30477:148;;;;:::o;30631:377::-;30737:3;30765:39;30798:5;30765:39;:::i;:::-;30820:89;30902:6;30897:3;30820:89;:::i;:::-;30813:96;;30918:52;30963:6;30958:3;30951:4;30944:5;30940:16;30918:52;:::i;:::-;30995:6;30990:3;30986:16;30979:23;;30741:267;30631:377;;;;:::o;31014:155::-;31154:7;31150:1;31142:6;31138:14;31131:31;31014:155;:::o;31175:400::-;31335:3;31356:84;31438:1;31433:3;31356:84;:::i;:::-;31349:91;;31449:93;31538:3;31449:93;:::i;:::-;31567:1;31562:3;31558:11;31551:18;;31175:400;;;:::o;31581:701::-;31862:3;31884:95;31975:3;31966:6;31884:95;:::i;:::-;31877:102;;31996:95;32087:3;32078:6;31996:95;:::i;:::-;31989:102;;32108:148;32252:3;32108:148;:::i;:::-;32101:155;;32273:3;32266:10;;31581:701;;;;;:::o;32288:225::-;32428:34;32424:1;32416:6;32412:14;32405:58;32497:8;32492:2;32484:6;32480:15;32473:33;32288:225;:::o;32519:366::-;32661:3;32682:67;32746:2;32741:3;32682:67;:::i;:::-;32675:74;;32758:93;32847:3;32758:93;:::i;:::-;32876:2;32871:3;32867:12;32860:19;;32519:366;;;:::o;32891:419::-;33057:4;33095:2;33084:9;33080:18;33072:26;;33144:9;33138:4;33134:20;33130:1;33119:9;33115:17;33108:47;33172:131;33298:4;33172:131;:::i;:::-;33164:139;;32891:419;;;:::o;33316:182::-;33456:34;33452:1;33444:6;33440:14;33433:58;33316:182;:::o;33504:366::-;33646:3;33667:67;33731:2;33726:3;33667:67;:::i;:::-;33660:74;;33743:93;33832:3;33743:93;:::i;:::-;33861:2;33856:3;33852:12;33845:19;;33504:366;;;:::o;33876:419::-;34042:4;34080:2;34069:9;34065:18;34057:26;;34129:9;34123:4;34119:20;34115:1;34104:9;34100:17;34093:47;34157:131;34283:4;34157:131;:::i;:::-;34149:139;;33876:419;;;:::o;34301:224::-;34441:34;34437:1;34429:6;34425:14;34418:58;34510:7;34505:2;34497:6;34493:15;34486:32;34301:224;:::o;34531:366::-;34673:3;34694:67;34758:2;34753:3;34694:67;:::i;:::-;34687:74;;34770:93;34859:3;34770:93;:::i;:::-;34888:2;34883:3;34879:12;34872:19;;34531:366;;;:::o;34903:419::-;35069:4;35107:2;35096:9;35092:18;35084:26;;35156:9;35150:4;35146:20;35142:1;35131:9;35127:17;35120:47;35184:131;35310:4;35184:131;:::i;:::-;35176:139;;34903:419;;;:::o;35328:223::-;35468:34;35464:1;35456:6;35452:14;35445:58;35537:6;35532:2;35524:6;35520:15;35513:31;35328:223;:::o;35557:366::-;35699:3;35720:67;35784:2;35779:3;35720:67;:::i;:::-;35713:74;;35796:93;35885:3;35796:93;:::i;:::-;35914:2;35909:3;35905:12;35898:19;;35557:366;;;:::o;35929:419::-;36095:4;36133:2;36122:9;36118:18;36110:26;;36182:9;36176:4;36172:20;36168:1;36157:9;36153:17;36146:47;36210:131;36336:4;36210:131;:::i;:::-;36202:139;;35929:419;;;:::o;36354:191::-;36394:4;36414:20;36432:1;36414:20;:::i;:::-;36409:25;;36448:20;36466:1;36448:20;:::i;:::-;36443:25;;36487:1;36484;36481:8;36478:34;;;36492:18;;:::i;:::-;36478:34;36537:1;36534;36530:9;36522:17;;36354:191;;;;:::o;36551:305::-;36591:3;36610:20;36628:1;36610:20;:::i;:::-;36605:25;;36644:20;36662:1;36644:20;:::i;:::-;36639:25;;36798:1;36730:66;36726:74;36723:1;36720:81;36717:107;;;36804:18;;:::i;:::-;36717:107;36848:1;36845;36841:9;36834:16;;36551:305;;;;:::o;36862:175::-;37002:27;36998:1;36990:6;36986:14;36979:51;36862:175;:::o;37043:366::-;37185:3;37206:67;37270:2;37265:3;37206:67;:::i;:::-;37199:74;;37282:93;37371:3;37282:93;:::i;:::-;37400:2;37395:3;37391:12;37384:19;;37043:366;;;:::o;37415:419::-;37581:4;37619:2;37608:9;37604:18;37596:26;;37668:9;37662:4;37658:20;37654:1;37643:9;37639:17;37632:47;37696:131;37822:4;37696:131;:::i;:::-;37688:139;;37415:419;;;:::o;37840:237::-;37980:34;37976:1;37968:6;37964:14;37957:58;38049:20;38044:2;38036:6;38032:15;38025:45;37840:237;:::o;38083:366::-;38225:3;38246:67;38310:2;38305:3;38246:67;:::i;:::-;38239:74;;38322:93;38411:3;38322:93;:::i;:::-;38440:2;38435:3;38431:12;38424:19;;38083:366;;;:::o;38455:419::-;38621:4;38659:2;38648:9;38644:18;38636:26;;38708:9;38702:4;38698:20;38694:1;38683:9;38679:17;38672:47;38736:131;38862:4;38736:131;:::i;:::-;38728:139;;38455:419;;;:::o;38880:180::-;38928:77;38925:1;38918:88;39025:4;39022:1;39015:15;39049:4;39046:1;39039:15;39066:185;39106:1;39123:20;39141:1;39123:20;:::i;:::-;39118:25;;39157:20;39175:1;39157:20;:::i;:::-;39152:25;;39196:1;39186:35;;39201:18;;:::i;:::-;39186:35;39243:1;39240;39236:9;39231:14;;39066:185;;;;:::o;39257:176::-;39289:1;39306:20;39324:1;39306:20;:::i;:::-;39301:25;;39340:20;39358:1;39340:20;:::i;:::-;39335:25;;39379:1;39369:35;;39384:18;;:::i;:::-;39369:35;39425:1;39422;39418:9;39413:14;;39257:176;;;;:::o;39439:180::-;39487:77;39484:1;39477:88;39584:4;39581:1;39574:15;39608:4;39605:1;39598:15;39625:98;39676:6;39710:5;39704:12;39694:22;;39625:98;;;:::o;39729:168::-;39812:11;39846:6;39841:3;39834:19;39886:4;39881:3;39877:14;39862:29;;39729:168;;;;:::o;39903:360::-;39989:3;40017:38;40049:5;40017:38;:::i;:::-;40071:70;40134:6;40129:3;40071:70;:::i;:::-;40064:77;;40150:52;40195:6;40190:3;40183:4;40176:5;40172:16;40150:52;:::i;:::-;40227:29;40249:6;40227:29;:::i;:::-;40222:3;40218:39;40211:46;;39993:270;39903:360;;;;:::o;40269:640::-;40464:4;40502:3;40491:9;40487:19;40479:27;;40516:71;40584:1;40573:9;40569:17;40560:6;40516:71;:::i;:::-;40597:72;40665:2;40654:9;40650:18;40641:6;40597:72;:::i;:::-;40679;40747:2;40736:9;40732:18;40723:6;40679:72;:::i;:::-;40798:9;40792:4;40788:20;40783:2;40772:9;40768:18;40761:48;40826:76;40897:4;40888:6;40826:76;:::i;:::-;40818:84;;40269:640;;;;;;;:::o;40915:141::-;40971:5;41002:6;40996:13;40987:22;;41018:32;41044:5;41018:32;:::i;:::-;40915:141;;;;:::o;41062:349::-;41131:6;41180:2;41168:9;41159:7;41155:23;41151:32;41148:119;;;41186:79;;:::i;:::-;41148:119;41306:1;41331:63;41386:7;41377:6;41366:9;41362:22;41331:63;:::i;:::-;41321:73;;41277:127;41062:349;;;;:::o;41417:182::-;41557:34;41553:1;41545:6;41541:14;41534:58;41417:182;:::o;41605:366::-;41747:3;41768:67;41832:2;41827:3;41768:67;:::i;:::-;41761:74;;41844:93;41933:3;41844:93;:::i;:::-;41962:2;41957:3;41953:12;41946:19;;41605:366;;;:::o;41977:419::-;42143:4;42181:2;42170:9;42166:18;42158:26;;42230:9;42224:4;42220:20;42216:1;42205:9;42201:17;42194:47;42258:131;42384:4;42258:131;:::i;:::-;42250:139;;41977:419;;;:::o;42402:178::-;42542:30;42538:1;42530:6;42526:14;42519:54;42402:178;:::o;42586:366::-;42728:3;42749:67;42813:2;42808:3;42749:67;:::i;:::-;42742:74;;42825:93;42914:3;42825:93;:::i;:::-;42943:2;42938:3;42934:12;42927:19;;42586:366;;;:::o;42958:419::-;43124:4;43162:2;43151:9;43147:18;43139:26;;43211:9;43205:4;43201:20;43197:1;43186:9;43182:17;43175:47;43239:131;43365:4;43239:131;:::i;:::-;43231:139;;42958:419;;;:::o

Swarm Source

ipfs://44d9fa9d44f1d916bf215747ccbafc19285766e271370789312a3e8826a8d52c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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